Retrieves all job type/skill links, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of job type/skill links.

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": "e2acde26-04fa-4ada-9b7c-4d597eec9c4e",
  "job_type_id": "f9758738-fa9d-45c9-80c4-9efe4de04edc",
  "skill_id": "00cb7754-2841-4cb8-8b2d-690642eab03d",
  "modified_dateutc": "2026-09-16T08:34:55.5523675+00:00"
}

application/xml, text/xml

Sample:
<job_type_skill_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>e2acde26-04fa-4ada-9b7c-4d597eec9c4e</id>
  <job_type_id>f9758738-fa9d-45c9-80c4-9efe4de04edc</job_type_id>
  <modified_dateutc>2026-09-16T08:34:55.552Z</modified_dateutc>
  <skill_id>00cb7754-2841-4cb8-8b2d-690642eab03d</skill_id>
</job_type_skill_list>