PATCH
/
workspaces
/
{id}
curl --request PATCH \
  --url https://eu-voiceglow-runtime-vbmbkqccuq-ey.a.run.app/v3/workspaces/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "updates": {
    "workspaceName": "<string>",
    "workspaceEmails": [
      "<string>"
    ],
    "automaticBilling": true
  }
}'
{
  "success": true,
  "message": "<string>",
  "data": "<any>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json
updates
object
required

Response

200
application/json
Successful response
success
boolean
required
message
string
required
data
any