Skip to main content
GET
/
context
/
entitymatching
/
jobs
/
{jobId}
JavaScript SDK
const { status, items } = await client.entityMatching.predictResult(12345678);
{
  "status": "Queued",
  "createdTime": 1730204346000,
  "startTime": 1730204346000,
  "statusTime": 1730204346000,
  "jobId": 123,
  "items": [
    {
      "source": {
        "field": "value",
        "ignoredfield": {
          "key": "value"
        }
      },
      "matches": [
        {
          "score": 0.98,
          "target": {
            "field": "value",
            "ignoredfield": {
              "key": "value"
            }
          }
        }
      ]
    }
  ],
  "errorMessage": null
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Headers

X-Job-Token
string

A string token that can be attached to the header of a request fetching the job status. Authenticates the user fetching the job status as the same one who originally posted the job.

Path Parameters

jobId
integer<int64>
required

Contextualization job ID.

Example:

123

Response

Success

status
enum<string>
required

The status of the job.

Available options:
Queued,
Running,
Completed,
Failed
createdTime
integer<int64>
required

The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.

Required range: x >= 0
Example:

1730204346000

startTime
integer<int64>
required

The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.

Required range: x >= 0
Example:

1730204346000

statusTime
integer<int64>
required

The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.

Required range: x >= 0
Example:

1730204346000

jobId
integer<int64>
required

Contextualization job ID.

Example:

123

items
object[]
required

List of matched entities with confidence score.

errorMessage
string

If the job failed, some more information about the error cause.

Example:

null

Last modified on April 23, 2026