Retrieves the details of a job.
Headers
- Accept :
application/json
- Content-Type :
application/json
- Authorization :
Bearer {access_token}
Path Parameters
job_id
nullable string(uuid) RequiredThe unique identifier for the job created in the Pulsifi system.
Response
200 OK.
Parameters
GET /partner/v1.0/standard/jobs/:job_id
curl -X GET 'https://staging.api.pulsifi.me/partner/v1.0/standard/jobs/{job_id}' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
Response
{
"id": "6a3d7ead-3d9d-4ee4-88f9-e6e59eaca51e",
"title": "Job Title",
"status": "active",
"external_id": "ref_1001",
"employment_type": "fulltime",
"description": "Job Description min 300 characters.",
"skills": ["NodeJS", "Python", "PostgreSQL"]
}