Skip to main content
POST
/
3d
/
jobs
Create a job using 3D source data
curl --request POST \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/3d/jobs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "items": [
    {
      "space": "<string>",
      "externalId": "<string>",
      "name": "<string>",
      "type": "Optimizer",
      "source": {
        "type": "CogniteFile",
        "instanceId": {
          "space": "<string>",
          "externalId": "<string>"
        }
      },
      "configuration": {
        "pipelineConfiguration": {
          "version": "v1",
          "indexingOptions": {
            "generateTiles": false,
            "tileSize": 5,
            "rotationAngleInDegrees": 0,
            "useBlackFilter": false,
            "useDistanceFilter": false,
            "maxDistance": 30,
            "useIntensityFilter": false,
            "minIntensity": -1,
            "useDensityFilter": false,
            "filterVoxelSize": 0.01,
            "minNumberOfPointsInVoxel": 1,
            "densityFilterMethod": 2,
            "colorFilterMethod": 1,
            "outlierFilterType": 1,
            "separationDistance": 5,
            "minNumberOfPointsInOneCluster": 100
          },
          "processTilesOptions": {
            "minimumRadius": 0.02,
            "classificationMethod": "28class",
            "usePipeDetection": true,
            "useConfidence": true,
            "usePointSources": true,
            "saveAnnotations": true
          }
        }
      },
      "nonce": "<string>"
    }
  ]
}
'
{
  "items": [
    {
      "space": "<string>",
      "externalId": "<string>",
      "name": "<string>",
      "type": "ImageTextDetection",
      "source": {
        "type": "Cognite360ImageCollection",
        "instanceId": {
          "space": "<string>",
          "externalId": "<string>"
        }
      },
      "configuration": {},
      "status": "Scheduled",
      "createdAt": 123
    }
  ]
}

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 with a given source. Currently supports only one job to be created at the time.

items
object[]
required
Required array length: 1 element

Response

A list of the created jobs

items
object[]
required
Last modified on April 23, 2026