POST api/v1/orgs/{orgid}/jobs/{jobid}/status/{status}

Change Job Status.

Request Information

Parameters

NameDescriptionAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'JobStatusChangeReason'.