Skip to main content
Get the task-based match score between two Jobs
curl --request GET \
  --url https://{tenant_name}.{region}.techwolf.ai/job_architecture/jobs/{job_external_id}/jobs/{other_job_external_id}/task_match \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "b003505-eb84-42dc-a79f-5e7b1fe897b7",
  "target_job_id": "a3903505-eb84-42dc-a79f-5e7b1fe897b7",
  "score": 0.42
}

Documentation Index

Fetch the complete documentation index at: https://developers.techwolf.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

job_external_id
string<uuid>
required

Unique external ID linked to this Job, consisting of alphanumeric characters, hyphens and underscores. The unique ID in your system, consisting of alphanumeric characters, hyphens and underscores.

Required string length: 1 - 100
Pattern: [a-zA-Z0-9_-]+
Example:

"a3903505-eb84-42dc-a79f-5e7b1fe897b7"

other_job_external_id
string<uuid>
required

Unique external ID linked to the target Job to compare against, consisting of alphanumeric characters, hyphens and underscores. The unique ID in your system, consisting of alphanumeric characters, hyphens and underscores.

Required string length: 1 - 100
Pattern: [a-zA-Z0-9_-]+
Example:

"a3903505-eb84-42dc-a79f-5e7b1fe897b7"

Response

OK

A task-based match result between two Jobs.

job_id
string<uuid>
required

The unique ID in your system, consisting of alphanumeric characters, hyphens and underscores.

Required string length: 1 - 100
Pattern: [a-zA-Z0-9_-]+
Example:

"b003505-eb84-42dc-a79f-5e7b1fe897b7"

target_job_id
string<uuid>
required

The unique ID in your system, consisting of alphanumeric characters, hyphens and underscores.

Required string length: 1 - 100
Pattern: [a-zA-Z0-9_-]+
Example:

"a3903505-eb84-42dc-a79f-5e7b1fe897b7"

score
number<float>
required

The symmetric task-based match score between the two Jobs, expressed as a number between 0 and 1.

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

0.42