Skip to main content

Create Tag

POST/v1/tags

Properties

NameTypeRequiredDescription
titlestringTitle of the tag
colorstringHex color code of the tag
descriptionstringDescription of the tag

Example

{
"title": "Frontends",
"color": "#323232",
"description": "Itens from the company frontend"
}

CURL Example

curl -X POST "https://api-integrations.snackprompt.com/v1/tags" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"title":"Frontends","color":"#323232","description":"Itens from the company frontend"}'