ats/applications

Retrieve Applications

Retrieve Applications from any connected Ats software

get/ats/applications/{id}

Path parameters

idstring required

id of the application you want to retrieve.

Query parameters

remote_databoolean

Set to true to include data from the original Ats software.

Headers

x-connection-tokenstring required

The connection token

Response

applied_atstring date-time nullable

The application date

rejected_atstring date-time nullable

The rejection date

offersstring[] nullable

The offers UUIDs for the application

sourcestring nullable

The source of the application

credited_tostring nullable

The UUID of the person credited for the application

current_stagestring nullable

The UUID of the current stage of the application

reject_reasonstring nullable

The rejection reason for the application

candidate_idstring nullable

The UUID of the candidate

job_idstring

The UUID of the job

field_mappingsobject nullable

The custom field mappings of the object between the remote 3rd party & Panora

idstring nullable

The UUID of the application

remote_idstring nullable

The remote ID of the application in the context of the 3rd Party

remote_dataobject nullable

The remote data of the application in the context of the 3rd Party

created_atstring date-time nullable

The created date of the object

modified_atstring date-time nullable

The modified date of the object

remote_created_atstring date-time nullable

The remote created date of the object

remote_modified_atstring date-time nullable

The remote modified date of the object

Example response

{
  "applied_at": "2024-10-01T12:00:00Z",
  "rejected_at": "2024-10-01T12:00:00Z",
  "offers": [
    "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
    "12345678-1234-1234-1234-123456789012"
  ],
  "source": "Source Name",
  "credited_to": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "current_stage": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "reject_reason": "Candidate not experienced enough",
  "candidate_id": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "job_id": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "field_mappings": {
    "fav_dish": "broccoli",
    "fav_color": "red"
  },
  "id": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "remote_id": "id_1",
  "remote_data": {
    "fav_dish": "broccoli",
    "fav_color": "red"
  },
  "created_at": "2024-10-01T12:00:00Z",
  "modified_at": "2024-10-01T12:00:00Z"
}

Changes