Skip to main content
POST
/
api
/
v1
/
accounts
/
{accountId}
/
projects
Create Project
curl --request POST \
  --url https://api.example.com/api/v1/accounts/{accountId}/projects \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>"
}

Path Parameters

accountId
string
required

The ID of the account

Body

application/json
name
string
required
description
string
required

Response

id
string
required
name
string
required
description
string