AI Studio Resource Centre
Api referencesTags

Create a tag

The tag creation request can be used to create tag's programmatically, instead of using AI Studio's UI (User Interface).

POST https://api-v7.express-chat.com/inbox/tags

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>
authtypeKey

Request Body

The request body consists of a JavaScript Object Notation (JSON) object containing the fields described in the table below. Examples of the request body can be found in the #sample-requests section.

FieldTypeDescription
tagStringTag name (label)
status

Responses

Sample Requests

Replace <token> in the below example requests with your valid Bearer token.

curl 'https://api-v7.express.com/inbox/tags' 
  -X 'POST' 
  -H 'Authorization: Bearer <token>' 
  -H 'Content-Type: application/json' 
  -H 'authtype: Key' 
  -d '{
    "tag": "Example",
    "status": "ACTIVE"
}' 
  --compressed

❓ Got any questions?

If you have any questions, you can look into our repository of FAQs, most likely, you will find your answer here, If not, write us at production@S10U.co.za.

On this page