POST
/
workspaces
cURL
curl --request POST \
  --url https://api.feedspace.io/v3/workspaces \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'name=<string>' \
  --form 'description=<string>' \
  --form 'website_url=<string>' \
  --form logo=@example-file
{
  "message": "Workspace Created Successfully",
  "data": {
    "id": 5022,
    "unique_workspace_id": "workspace_ZuYEOLliSpLzzH76bk5x7PPY",
    "name": "G Workspace",
    "domain": null,
    "website_url": "",
    "logo": null,
    "logo_url": null,
    "description": ""
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

multipart/form-data

Workspace creation parameters (form-data)

The body is of type object.

Response

200 - application/json

Workspace created successfully.

The response is of type object.