Skip to main content
POST
/
crm
/
tasks
/
Create task
curl --request POST \
  --url https://earthcare.network/api/v1/crm/tasks/ \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "<string>",
  "due": "2023-11-07T05:31:56Z"
}
'

Authorizations

Authorization
string
header
required

DRF user token. Format: Token <token>

Body

application/json
organization_id
string<uuid>
required
title
string
required
due
string<date-time>

Response

201

Created