v1

latestOpenAPI 3.0.12026-07-24283883639.5 KB
Job Roles

Get All Job Roles

This endpoint retrieves a list of job roles. <h3>Required Scope</h3>job_roles:read or job_roles:write

get/api/v2/job-roles

Query parameters

limitinteger
nextstring

Retrieves the next batch of job roles. This value expires after 2 minutes if a request has not been made during that time.

Response

Success

Example response

{
  "links": {
    "self": "https://api.betatest.degreed.com/api/v2/job-roles",
    "next": "https://api.betatest.degreed.com/api/v2/job-roles?limit=50&next=cBmJjr"
  },
  "data": [
    {
      "type": "job-roles",
      "id": "roleId123",
      "attributes": {
        "role-id": "roleId123",
        "name": "Account Manager",
        "description": "Account Manager description",
        "data": [
          {
            "skills": [
              "Adobe Photoshop"
            ]
          }
        ]
      }
    }
  ]
}