curl --request POST \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/3d/job/result/rejections \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"job": {
"space": "<string>",
"externalId": "<string>"
},
"result": {
"instanceId": {
"space": "<string>",
"externalId": "<string>"
}
},
"add": [
"<string>"
]
}
'{}Job Instance Results have internal unique keys you can reject to allow yourself to filter away job results items you are no longer interested in
curl --request POST \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/3d/job/result/rejections \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"job": {
"space": "<string>",
"externalId": "<string>"
},
"result": {
"instanceId": {
"space": "<string>",
"externalId": "<string>"
}
},
"add": [
"<string>"
]
}
'{}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.
The Job space and externalId and the ResultInstanceId with the operation you want to perform on the result.
Only one operation can be done at the time:
Empty response.
The response is of type object.
Was this page helpful?