Skip to main content
POST
/
v1
/
projects
Create Project
curl --request POST \
  --url https://api.anchorbrowser.io/v1/projects \
  --header 'Content-Type: application/json' \
  --header 'anchor-api-key: <api-key>' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "created_by_user": "<string>",
  "domain": "<string>",
  "logo_url": "<string>",
  "organization_id": "<string>",
  "organization_name": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Body

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

Response

Project created successfully.

A team project (a.k.a. team / workspace).

id
string
name
string
created_by_user
string | null
domain
string
logo_url
string | null
organization_id
string | null
organization_name
string | null
created_at
string<date-time> | null
updated_at
string<date-time> | null