POSIUM

Create a new project

Creates a new project

POST
/projects
/projects

The Authorization access token

Authorization

x-api-key<token>

In: header

Request Body

application/jsonRequired

idstring

Unique identifier for the project

name
Required
string

Name of the project

descriptionstring

Description of the project

created_atstring

Format: "date-time"

updated_atstring

Format: "date-time"
curl -X POST "https://api.posium.ai/projects" \
  -H "x-api-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "id": "string",
    "name": "string",
    "description": "string",
    "created_at": "2019-08-24T14:15:22Z",
    "updated_at": "2019-08-24T14:15:22Z"
  }'

Project created

{
  "id": "string",
  "name": "string",
  "description": "string",
  "created_at": "2019-08-24T14:15:22Z",
  "updated_at": "2019-08-24T14:15:22Z"
}