POST
/
workspaces
/
{workspace_id}
curl --request POST \
  --url https://api.feedspace.io/v3/workspaces/{workspace_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form '_method=<string>' \
  --form 'name=<string>' \
  --form 'description=<string>' \
  --form 'website_url=<string>'
{
  "message": "Workspace Updated Successfully"
}

Authorizations

Authorization
string
header
required

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

Body

multipart/form-data

Workspace update parameters (form-data, with _method=PUT)

The body is of type object.

Response

200 - application/json

Workspace updated successfully.

The response is of type object.

POST
/
workspaces
/
{workspace_id}
curl --request POST \
  --url https://api.feedspace.io/v3/workspaces/{workspace_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form '_method=<string>' \
  --form 'name=<string>' \
  --form 'description=<string>' \
  --form 'website_url=<string>'
{
  "message": "Workspace Updated Successfully"
}

Authorizations

Authorization
string
header
required

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

Body

multipart/form-data

Workspace update parameters (form-data, with _method=PUT)

The body is of type object.

Response

200 - application/json

Workspace updated successfully.

The response is of type object.