Skip to main content

Retrieve a job

GET

/partner/v1.0/standard/jobs/:job_id


Retrieves the details of a job.


Headers

  • Accept : application/json
  • Content-Type : application/json
  • Authorization : Bearer {access_token}

Path Parameters

job_id string(uuid) Required
The unique identifier for the job created in the Pulsifi system.


Response

200 OK.

Parameters
id string (uuid)
The unique identifier for the job created in the Pulsifi system.

title string
The title of the job.

status enum (default is active)
The status of the job

external_id string
The external ID of the job.

employment_type enum (default is fulltime)
The employment type of the job.

description string
A detailed description of the job.

skills array string
Array of required skills for the job.
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
{
"data": {
"id": "<Pulsifi Job ID>",
"title": "Job Title",
"status": "active",
"external_id": "<External Job ID>",
"employment_type": "fulltime",
"description": "<Job Description>",
"skills": ["NodeJS", "Python", "PostgreSQL"]
},
"meta": null
}