Skip to main content
POST
/
crm
/
deals
/
Create deal
curl --request POST \
  --url https://earthcare.network/api/v1/crm/deals/ \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "<string>",
  "value": 123
}
'

Authorizations

Authorization
string
header
required

DRF user token. Format: Token <token>

Body

application/json
organization_id
string<uuid>
required
title
string
required
stage
enum<string>
Available options:
lead,
qualified,
proposal,
won,
lost
value
number

Response

201

Created