Retrieves the job type/skill link with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The job type/skill link id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the job type/skill link, or 404 Not Found if it doesn't exist.

job_type_skill_list
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
job_type_id

Foreign key of the job type this required skill applies to.

globally unique identifier
skill_id

Foreign key of the required skill.

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "b699d3f1-5adb-41e1-bad7-a9e4eab62542",
  "job_type_id": "c3699809-f4a8-4e17-ae9d-a8ea6f60ff64",
  "skill_id": "017fa9ea-c2fc-423a-8b44-92f1a9361ac4",
  "modified_dateutc": "2026-09-16T09:24:11.0722478+00:00"
}

application/xml, text/xml

Sample:
<job_type_skill_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>b699d3f1-5adb-41e1-bad7-a9e4eab62542</id>
  <job_type_id>c3699809-f4a8-4e17-ae9d-a8ea6f60ff64</job_type_id>
  <modified_dateutc>2026-09-16T09:24:11.072Z</modified_dateutc>
  <skill_id>017fa9ea-c2fc-423a-8b44-92f1a9361ac4</skill_id>
</job_type_skill_list>