Skip to main content
POST
/
crm
/
assuntos
Criar assunto
curl --request POST \
  --url https://api.tiny.com.br/public-api/v3/crm/assuntos \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "idContato": 123,
  "idPessoaContato": 123,
  "descricao": "<string>",
  "idEstagio": 123,
  "data": "2024-01-01"
}
'
{
  "id": 123
}

Body

application/json
idContato
integer
required
idPessoaContato
integer | null
descricao
string | null
idEstagio
integer | null
data
string | null
Example:

"2024-01-01"

Response

OK

id
integer