Growth OS API

Criar tarefa

POST
/tasks
AutorizaçãoBearer <token>

Chave de API (gos_…)

Em: header

Corpo da requisição

application/json

Definições TypeScript

Use o tipo request body no TypeScript.

Corpo da resposta

application/json

curl -X POST "https://example.com/tasks" \  -H "Content-Type: application/json" \  -d '{    "title": "string"  }'
{  "id": "string",  "contactId": "string",  "opportunityId": "string",  "title": "string",  "body": "string",  "dueAt": "string",  "completedAt": "string",  "assigneeUserId": "string",  "createdAt": "string"}