curl --request PUT \
--url https://api.skulabs.com/tag/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"tag_id": "<string>",
"name": "<string>",
"color": "<string>"
}'
/tag/update
curl --request PUT \
--url https://api.skulabs.com/tag/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"tag_id": "<string>",
"name": "<string>",
"color": "<string>"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK