GET
/
workspaces
Get all workspaces
curl --request GET \
  --url https://api.gologin.com/workspaces \
  --header 'Authorization: Bearer <token>'
[
  {
    "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.

Response

200 - application/json
id
string
required
name
string
required
owner
string
required
planId
string
required
planName
string
required
planMembersMax
number
required
isPlanUnlimited
boolean
required
planExpiresAt
string<date-time>
required
paymentIsTrial
boolean
required
isUnpaid
boolean
required
memberCount
number
required
profilesCount
number
required
planProfilesMax
number
required
permissions
object
required