A match object represents the relation between a candidate and a job.
The couple (candidate, job) is unique meaning that a candidate can be added only once to a job.
{
"id": Integer,
"owner": Integer,
"organization": Integer,
"job": Integer,
"candidate": Integer,
"creator": Integer,
"stage":
{
"name": String
},
"job_pipeline_stages":{
id: Integer,
name: String,
rank: Integer,
job_pipeline: {
id: Integer,
name: String
}
},
"is_active": Boolean,
"hired_at": DateTime,
"submitted_at": DateTime,
"interview_at": DateTime,
"offer_at": DateTime,
"dropped_at": DateTime,
"created_at_editable": DateTime
}
Please refer to the API References for more details regarding the Matches API.