Skip to main content
POST
/
v1
/
projects
curl --request POST \
  --url https://eu1.api.matillion.com/dpc/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "project-name",
  "description": "A project created through the Matillion API",
  "warehouse": "Snowflake",
  "agentDeploymentType": "FULL_SAAS"
}
'
{
  "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

a valid bearer token

Body

application/json
agentDeploymentType
enum<string>
required

The deployment type of the agent

Available options:
HYBRID,
FULL_SAAS
name
string
required

The name of the new project

Required string length: 1 - 255
Example:

"Project-1"

warehouse
enum<string>
required

The target data warehouse for the project

Available options:
SNOWFLAKE,
REDSHIFT
description
string

The description of the new project

Maximum string length: 1000
Example:

"My new Data Productivity Cloud project"

Response

Project created

projectId
string<uuid>