POST
/
workspaces
curl --request POST \
  --url https://api.feedspace.io/v3/workspaces \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'name=<string>' \
  --form 'description=<string>' \
  --form 'website_url=<string>'
{
  "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

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

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.

POST
/
workspaces
curl --request POST \
  --url https://api.feedspace.io/v3/workspaces \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'name=<string>' \
  --form 'description=<string>' \
  --form 'website_url=<string>'
{
  "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

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

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.