Skip to main content
POST
/
3d
/
job
/
result
/
rejections
Update Job Result Rejections
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>"
  ]
}
'
{}

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.

Body

application/json

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:

  • add
  • remove
job
object
required
result
object
required
add
string[]
required

Response

Empty response.

The response is of type object.

Last modified on April 23, 2026