Skip to main content
POST
/
api
/
applications
/
list
List applications with pagination
curl --request POST \
  --url https://your-instance.example.com/api/applications/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "page": 1,
  "size": 10,
  "search": "<string>",
  "contactId": "<string>",
  "status": "<string>",
  "userId": "<string>",
  "pipelineStage": "<string>",
  "pipelineStageIds": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json
page
integer
default:1
Required range: x >= 1
size
integer
default:10
Required range: x >= 1
contactId
string
status
string
userId
string
pipelineStage
string
pipelineStageIds
string

JSON array string or single id string.

Response

Applications returned

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