POST api/v1/orgs/{orgid}/jobs/{jobid}/status/{status}
Change Job Status.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| orgid | Value of Arya Organization ID |
Define this parameter in the request URI. |
| jobid | Value of Jobid |
Define this parameter in the request URI. |
| status | Job Status(any) |
Define this parameter in the request URI. |
| request | {
"ReasonID": 1, (1 - Hired via Arya, 2 - Hired via other source, 3 - Position no longer active )
"Feedback": "sample string 1"
} |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"ReasonID": 1,
"Feedback": "sample string 1"
}
application/xml, text/xml
Sample:
<JobStatusChangeReason xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ReasonID>1</ReasonID> <Feedback>sample string 1</Feedback> </JobStatusChangeReason>
application/x-www-form-urlencoded
Sample: