Retrieve entity matcher predict results

Get the results from a predict job. Note: 'assetsAcl:READ' capability is required, unless you specify a valid X-Job-Token in the request header. The X-Job-Token is provided in the response header of the initial call to /context/entitymatching/predict

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
path Parameters
jobId
required
integer <int64> (JobId)

Contextualization job ID.

Example: 123
header Parameters
X-Job-Token
string (JobToken)

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.

Responses
200

Success

400

The response for a failed request.

get/context/entitymatching/jobs/{jobId}
Request samples
const { status, items } = await client.entityMatching.predictResult(12345678);
Response samples
application/json
{
  • "status": "Queued",
  • "createdTime": 0,
  • "startTime": 0,
  • "statusTime": 0,
  • "errorMessage": null,
  • "jobId": 123,
  • "items": [
    • {
      }
    ]
}