It is important to bear in mind that, until the intended users of the project are manually invited, the project will only be visible/accessible by users with the Super Admin role.
Create project
This is the first endpoint to be called in the process, which initializes the project with minimal information. A successful request will produce a v4 UUID, which will be required for the subsequent endpoints. Currently, the supported data warehouses areSNOWFLAKE and REDSHIFT, with a deployment type of HYBRID. Future updates will add support for other warehouses, as well as Full SaaS s.
Example request
Base URL:POST /v1/projects
Example request body:
Create Default Warehouse Connection
Adding a default warehouse connection sets up basic configuration for connecting to a data warehouse. Currently, the supported warehouse and authentication combinations are:| Warehouse | Authentication Type |
|---|---|
| snowflake | key_pair |
| redshift | password |
This endpoint only defines basic metadata for the warehouse, not the actual credentials for connecting to the warehouse. These are provided in the Create Environment request below.
Example request
Base URL:POST /v1/projects/{projectId}/data-platform-connections
Ensure that the {projectId} variable is replaced with the target project ID from the initial request to create the project.
Example request body:
Create Environment
Request Structure
When creating an environment, there are a number of fields to provide:name
The name of the environment. This is an immutable identifier for the environment, and is used in other requests to refer to this specific environment.
description (optional)
An optional, text description for the environment.
defaultAgentId
The UUID of the that will be used by default for this environment.
defaultUserAccessLevel
The default access level that will be assigned to a user for the environment, when they are added to the project. The accepted values are one of:
- default
- admin
- runner
- readOnly
- noAccess
defaultConnections
Specifies the default data warehouse connection for the environment. Ensure that the value provided here is identical to the name of the connection defined in the previous request (my-warehouse-connection).
Currently, the connection details for the warehouse connection are provided via the
connectionOverrides block as detailed below. These overrides correspond to the connections defined here in defaultConnections. Each environment expects a separate data warehouse connection. If the same data warehouse connection is used across multiple environments, adding or modifying details in one environment will affect the others.connectionOverrides
Allows you to provide details for the data warehouse connection.
Within the
connectionProperties, the passphrase is only required if the password itself is encrypted. For more information, see Storing the private key.Example request
Base URL:POST /v1/projects/{projectId}/environments
Ensure that the {projectId} variable is replaced with the target project ID from the initial request to create the project.
Snowflake
Example request body:Redshift
Example request body:Initialize Repository
After creating the project, this endpoint allows a Git repository to be associated with the project. While does support a number of different Git providers, only GitHub is currently supported through the Project Provisioning APIs. This also means that Full SaaS repositories are not currently supported. Before calling this endpoint, you need to create a Personal Access Token (PAT), which is a required request header. The key for the request header isGit-Provider-Access-Token.
Example request
Base URL:POST /v1/projects/{projectId}/repositories
Ensure that the {projectId} variable is replaced with the target project ID from the initial request to create the project.
Example request parameters:

