Skip to main content
POST
/
v1
/
projects
Create project
curl --request POST \
  --url https://api.pathors.com/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Developer key created from the dashboard (Settings → Developer Keys)

Body

application/json
name
string
required
Required string length: 1 - 64

Response

Created

data
object
required