curl -X POST -H 'Content-Type: application/json' \
-H 'X-Curto-Api-Key: <your_key>' \
-d '{ "label": "A Label", "color": "red" }' \
https://api.curto.io/v1/tags
{
  "data": {
    "id": "<tag_id>",
	"label": "A Label",
	"color": "red"
  }
  "status": "OK"
}

Corpo da requisição

label
string

É o nome da Tag.

color
string

É a cor da Tag.

Resposta

status
string

Indica se a requisição foi bem sucedida. OK para quando for bem sucedida, e ERROR para quando não for.

data
object
curl -X POST -H 'Content-Type: application/json' \
-H 'X-Curto-Api-Key: <your_key>' \
-d '{ "label": "A Label", "color": "red" }' \
https://api.curto.io/v1/tags
{
  "data": {
    "id": "<tag_id>",
	"label": "A Label",
	"color": "red"
  }
  "status": "OK"
}