User GuidesAPI ReferenceRelease Notes
Doc HomeHelp CenterLog In

Create a project

This endpoint requires a body parameter describing the project to create, expressed as either raw JSON input or a JSON file. It must include a name, type, and unifiedDatasetName. It can include an optional description and externalId.

Example:

[
  {
    "name": "Project 1",
    "description": "Mastering Project",
    "type": "DEDUP",
    "unifiedDatasetName": "Project 1 - Unified Dataset",
    "externalId": "Project 1"
    }
]

The project types follow.

TypeDescription
DEDUPMastering project
GOLDEN_RECORDSGolden records project
CATEGORIZATIONCategorization project
SCHEMA_MAPPING_RECOMMENDATIONSSchema mapping project

On success, this call returns a project object describing the created project.

Language
Click Try It! to start a request and see the response here!