Criar tag
curl --request POST \
--url https://api.jurichat.com/tag/ \
--header 'Content-Type: application/json' \
--header 'x-jurichat-api-key: <api-key>' \
--data '
{
"name": "<string>",
"color": "<string>",
"inboxId": "<string>",
"modules": []
}
'{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"inboxId": "<string>",
"officeId": "<string>",
"modules": [],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}Tags
Criar tag
Cria uma tag vinculada à inbox informada, com cor e visibilidade por módulos.
POST
/
tag
/
Criar tag
curl --request POST \
--url https://api.jurichat.com/tag/ \
--header 'Content-Type: application/json' \
--header 'x-jurichat-api-key: <api-key>' \
--data '
{
"name": "<string>",
"color": "<string>",
"inboxId": "<string>",
"modules": []
}
'{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"inboxId": "<string>",
"officeId": "<string>",
"modules": [],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}Authorizations
Chave de API do escritório (criada no painel). Envie o valor no header x-jurichat-api-key.
Body
application/json
Nome da tag.
Cor da tag (ex.: código hexadecimal).
ID da inbox onde a tag será criada.
Módulos onde a tag estará disponível: crm, conversas, pessoas ou fast-messages.
Available options:
crm, conversas, pessoas, fast-messages Response
Default Response
ID da tag criada.
Nome da tag.
Cor da tag.
ID da inbox à qual a tag está vinculada.
ID do escritório ao qual a tag pertence.
Módulos onde a tag está disponível.
Available options:
crm, conversas, pessoas, fast-messages Data e hora de criação.
Data e hora da última atualização.
⌘I