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": "" } }
Create a new workspace.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Workspace creation parameters (form-data)
Required
Image file, max 15MB
Optional, max 160 characters
Optional, URL
Workspace created successfully.
Show child attributes