Skip to main content

List Applications


GET services/api/v1/applications

Returns a list of applications.

Optional Query Parameters

ParameterTypeDescription
application_status_idstringFilter applications by their assigned application status.
job_idstringFilter applications by the job they belong to. Pass as null to get list of speculative applications.
created_at_sincetimestampOnly return applications that have been created since the specified timestamp.
updated_at_sincetimestampOnly return applications that have been updated since the specified timestamp.

Response

Results list.

{
"entries": [
{
"id": "A96ey16n",
"job_id": "Oxz0W6kK",
"created_at": "2024-09-03T20:37:36.000Z",
"updated_at": "2024-09-06T05:58:55.860Z",
"application_status_id": "nyBnKYM3",
"email": "john.doe@privatemail.com",
"first_name": "John",
"last_name": "Doe",
...
},
{
"id": "xy6q5M6d",
"job_id": "nyBnpK6M",
"created_at": "2024-09-03T20:37:36.000Z",
"updated_at": "2024-09-06T05:58:55.860Z",
"application_status_id": "A96elYny",
"email": "jane.doe@privatemail.com",
"first_name": "Jane",
"last_name": "Doe",
...
}
],
"current_page": 1,
"per_page": 30,
"total_entries": 2
}