Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
OK
curl --request POST \
--url https://api.skulabs.com/tag/add \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"type": "orders",
"color": "<string>"
}'Creates a new tag
curl --request POST \
--url https://api.skulabs.com/tag/add \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"type": "orders",
"color": "<string>"
}'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
OK