Skip to main content
POST
/
v1
/
projects
Create project
curl --request POST \
  --url https://api.qa.tech/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "url": "<string>"
}
'
{
  "project": {
    "shortId": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "url": "<string>",
    "defaultApplicationShortId": "<string>",
    "organization": {
      "uuid": "<string>",
      "name": "<string>"
    }
  }
}

Body

application/json

Request body for creating a new project in the organization the API key belongs to

name
string
required

Display name for the new project

Required string length: 1 - 100
url
string<uri>
required

URL of the default environment for the project's web application

Response

200 - application/json

The request has succeeded.

project
object
required

The newly created project