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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required

Human-readable project name.

Response

201 - application/json

Project created.

id
string
required

Project identifier.

name
string
required

Human-readable project name.