Skip to main content
POST
/
api
/
applications
Create application
curl --request POST \
  --url https://your-instance.example.com/api/applications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactId": "<string>",
  "name": "<string>",
  "status": "<string>",
  "pipelineStage": "<string>",
  "pipelineId": "<string>",
  "userId": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Either status or pipelineStage should be provided.

contactId
string
required
name
string
required
status
string
pipelineStage
string
pipelineId
string
userId
string

Response

Application created

Generic response envelope. Endpoint-specific fields are intentionally open.