POST
/
v1
/
workspaces
curl --request POST \
  --url https://api.ziplink.click/v1/workspaces \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "info@example.com",
  "name": "ACME Inc."
}'
{
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
email
string
required

Email address that of the workspace.

Required string length: 6 - 254
Example:

"info@example.com"

name
string
required

Name of the workspace.

Required string length: 1 - 120
Example:

"ACME Inc."

Response

201
application/json

Example response

id
string
required

ID of the newly created resource.