curl --request POST \
  --url https://{tenant_name}.{region}.techwolf.ai/job_architecture/export/jobs/market_alignment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "limit": 10,
  "starting_after": "4cbdbabe-5644-4423-8157-520f8a2f429a",
  "filters": [
    {
      "filter": "last_updated",
      "value": "2022-01-01",
      "operator": "lt"
    },
    {
      "filter": "job_family_id_is_in_list",
      "job_family_ids": [
        "5cbdbdbe-5f44-4423-8157-520f8a2f429a",
        "62d2c013-ab77-410e-b5fb-2f96eed9c1db"
      ]
    }
  ]
}'
{
  "has_next": true,
  "records": [
    {
      "job_id": "b003505-eb84-42dc-a79f-5e7b1fe897b7",
      "alignment_scores": [
        {
          "peer_group": "B2B",
          "job_to_peer_score": 0.85,
          "peer_to_job_score": 0.9
        },
        {
          "peer_group": "B2C",
          "job_to_peer_score": 0.95,
          "peer_to_job_score": 0.8
        }
      ]
    }
  ],
  "next_starting_after": "61a6e076-d780-11ec-9d64-0242ac120002"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

response_format
enum<string>
default:simple

If set to explained, the response will include an explanation of the match.

Available options:
simple,
explained
Example:

"explained"

Body

application/json
limit
integer
required

The number of Jobs to show on a single page.

Required range: 1 <= x <= 100
Example:

10

starting_after
string

The external_id of the Job to continue looking from.

Maximum length: 100
Example:

"4cbdbabe-5644-4423-8157-520f8a2f429a"

filters
object[]

A set of filters used to apply on the exported Job Skill Profiles.

Example:
[
  {
    "filter": "last_updated",
    "value": "2022-01-01",
    "operator": "lt"
  },
  {
    "filter": "job_family_id_is_in_list",
    "job_family_ids": [
      "5cbdbdbe-5f44-4423-8157-520f8a2f429a",
      "62d2c013-ab77-410e-b5fb-2f96eed9c1db"
    ]
  }
]

Response

200
application/json
OK
has_next
boolean
required

True when there is more data after this page.

Example:

true

records
object[]
required

A list containing the requested data for each entity, limited by the limit parameter.

A match result between a Job and its market Skill Profiles.

next_starting_after
string

The next starting_after value for pagination.

Maximum length: 100
Example:

"61a6e076-d780-11ec-9d64-0242ac120002"