curl --request GET \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/context/entitymatching/{id} \
--header 'Authorization: Bearer <token>'{
"id": 4503599627370496,
"externalId": "my.known.id",
"status": "Queued",
"createdTime": 1730204346000,
"startTime": 1730204346000,
"statusTime": 1730204346000,
"name": "simple_model_1",
"description": "Simple model 1",
"featureType": "simple",
"classifier": "randomforest",
"errorMessage": null,
"matchFields": [
{
"source": "name",
"target": "name"
},
{
"source": "name",
"target": "someField"
}
],
"ignoreMissingFields": true,
"originalId": 111
}Required capabilities:
entitymatchingAcl:READ
Shows the status of the model. If the status is completed, shows the parameters used to train the model.
curl --request GET \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/context/entitymatching/{id} \
--header 'Authorization: Bearer <token>'{
"id": 4503599627370496,
"externalId": "my.known.id",
"status": "Queued",
"createdTime": 1730204346000,
"startTime": 1730204346000,
"statusTime": 1730204346000,
"name": "simple_model_1",
"description": "Simple model 1",
"featureType": "simple",
"classifier": "randomforest",
"errorMessage": null,
"matchFields": [
{
"source": "name",
"target": "name"
},
{
"source": "name",
"target": "someField"
}
],
"ignoreMissingFields": true,
"originalId": 111
}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.
A server-generated ID for the object.
1 <= x <= 9007199254740991Success
A server-generated ID for the object.
1 <= x <= 9007199254740991The external ID provided by the client. Must be unique for the resource type.
255"my.known.id"
The status of the job.
Queued, Running, Completed, Failed The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.
x >= 01730204346000
The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.
x >= 01730204346000
The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.
x >= 01730204346000
User defined name.
256"simple_model_1"
User defined description.
500"Simple model 1"
Each feature type defines the combination of features that will be created and used in the entity matcher model.
simple, insensitive, bigram, frequencyweightedbigram, bigramextratokenizers, bigramcombo "simple"
Name of the classifier used in the model, "Unsupervised" if unsupervised model.
randomforest, decisiontree, logisticregression, augmentedlogisticregression, augmentedrandomforest "randomforest"
If the job failed, some more information about the error cause.
null
List of pairs of fields from the target and source items, used to calculate features. All source and target items should have all the source and target fields specified here.
Show child attributes
[
{ "source": "name", "target": "name" },
{ "source": "name", "target": "someField" }
]If True, missing fields in sources or targets entities set in matchFields, are replaced with empty strings.
true
The ID of original model, only relevant when the model is a retrained model.
111
Was this page helpful?