PATCH
/
workspaces
/
{wid}
/
rename
curl --request PATCH \
  --url https://api.gologin.com/workspaces/{wid}/rename \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "My new Workspace"
}'
{
  "id": "<string>",
  "name": "<string>",
  "owner": "<string>",
  "planId": "<string>",
  "planName": "<string>",
  "planMembersMax": 123,
  "isPlanUnlimited": true,
  "planExpiresAt": "2023-11-07T05:31:56Z",
  "paymentIsTrial": true,
  "isUnpaid": true,
  "memberCount": 123,
  "profilesCount": 123,
  "planProfilesMax": 123,
  "permissions": {
    "canAddBilling": true,
    "canClaimProfilesWithoutFolder": true
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

wid
string
required

Workspace ID

Body

application/json

Response

200 - application/json

The response is of type object.