Description

Create Projects

POST
/v1/projects
/v1/projects

The Authorization access token

Authorization

X-API-KEY<token>

In: header

Request Body

application/jsonRequired

name
Required
Name

Minimum length: 1Maximum length: 50Pattern: "^[a-zA-Z0-9_\\- ]+$"
curl -X POST "https://api.patronus.ai/v1/projects" \
  -H "X-API-KEY: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "string"
  }'

Successful Response

{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "name": "string",
  "created_by": "string",
  "created_at": "2019-08-24T14:15:22Z"
}