Skip to main content
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 logo='@example-file' \
  --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

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)

name
string
required

Required

Image file, max 15MB

description
string

Optional, max 160 characters

website_url
string

Optional, URL

Response

200 - application/json

Workspace created successfully.

message
string
data
object