ats/interviews

Create Interviews

Create Interviews in any supported Ats software

post/ats/interviews

Query parameters

remote_databoolean

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

Headers

x-connection-tokenstring required

The connection token

Request body

status'SCHEDULED' | 'AWAITING_FEEDBACK' | 'COMPLETED' nullable

The status of the interview

application_idstring nullable

The UUID of the application

job_interview_stage_idstring nullable

The UUID of the job interview stage

organized_bystring nullable

The UUID of the organizer

interviewersstring[] nullable

The UUIDs of the interviewers

locationstring nullable

The location of the interview

start_atstring date-time nullable

The start date and time of the interview

end_atstring date-time nullable

The end date and time of the interview

remote_created_atstring date-time nullable

The remote creation date of the interview

remote_updated_atstring date-time nullable

The remote modification date of the interview

field_mappingsobject nullable

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

Example request

{
  "status": "SCHEDULED",
  "application_id": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "job_interview_stage_id": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "organized_by": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "interviewers": [
    "801f9ede-c698-4e66-a7fc-48d19eebaa4f"
  ],
  "location": "San Francisco",
  "start_at": "2024-10-01T12:00:00Z",
  "end_at": "2024-10-01T12:00:00Z",
  "remote_created_at": "2024-10-01T12:00:00Z",
  "remote_updated_at": "2024-10-01T12:00:00Z",
  "field_mappings": {
    "fav_dish": "broccoli",
    "fav_color": "red"
  }
}

Response

status'SCHEDULED' | 'AWAITING_FEEDBACK' | 'COMPLETED' nullable

The status of the interview

application_idstring nullable

The UUID of the application

job_interview_stage_idstring nullable

The UUID of the job interview stage

organized_bystring nullable

The UUID of the organizer

interviewersstring[] nullable

The UUIDs of the interviewers

locationstring nullable

The location of the interview

start_atstring date-time nullable

The start date and time of the interview

end_atstring date-time nullable

The end date and time of the interview

remote_created_atstring date-time nullable

The remote creation date of the interview

remote_updated_atstring date-time nullable

The remote modification date of the interview

field_mappingsobject nullable

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

idstring nullable

The UUID of the interview

remote_idstring nullable

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

remote_dataobject nullable

The remote data of the interview 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

Example response

{
  "status": "SCHEDULED",
  "application_id": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "job_interview_stage_id": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "organized_by": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "interviewers": [
    "801f9ede-c698-4e66-a7fc-48d19eebaa4f"
  ],
  "location": "San Francisco",
  "start_at": "2024-10-01T12:00:00Z",
  "end_at": "2024-10-01T12:00:00Z",
  "remote_created_at": "2024-10-01T12:00:00Z",
  "remote_updated_at": "2024-10-01T12:00:00Z",
  "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