Introduction
API Reference
- Profile
- Workspace
- POSTAdd member to workspace
- DELRemove member from workspace
- PATCHUpdate member permissions
- GETGet all workspaces
- POSTCreate workspace
- GETGet workspace info
- DELDelete workspace
- PATCHRename workspace
- GETGet profiles count
- GETGet all profiles in workspace
- DELDelete multiple profiles in workspace
- POSTTransfer profile
- POST
- Share
- Template
- Proxy
- User
- Folder
Cloud Browser
Python SDK
Limitations
Workspace
Get workspace info
Gets all information about a workspace by ID.
GET
/
workspaces
/
{wid}
curl --request GET \
--url https://api.gologin.com/workspaces/{wid} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"owner": "<string>",
"name": "<string>",
"folders": [
{
"id": "<string>",
"name": "<string>",
"permissions": {
"manageMember": true,
"manageAdminMember": true,
"share": true,
"canClaimProfiles": true,
"addProfile": true,
"importProfile": true,
"multipleCreateProfiles": true,
"dropProfiles": true,
"removeProfile": true,
"pinProfile": true,
"reorderProfiles": true,
"viewFolder": true
},
"order": 123,
"associatedProfiles": [
"<string>"
],
"isAllProfiles": true
}
],
"allProfilesFolderId": "<string>",
"members": [
{
"id": "<string>",
"email": "<string>",
"user": "<string>",
"role": {},
"limitedAccess": true,
"folders": [
{
"name": "<string>",
"role": {},
"permissions": {
"manageAccess": true,
"manageAdminAccess": true
}
}
],
"joined": true,
"invitedByEmail": "<string>",
"lastActiveAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"permissions": {
"kickMember": true,
"manageWorkspaceWideAccess": true,
"manageWorkspaceWideAdminAccess": true,
"viewMember": true
},
"workspaceVisited": true
}
],
"planId": "<string>",
"planName": "<string>",
"planMembersMax": 123,
"profilesCount": 123,
"planProfilesMax": 123,
"planSharesMax": 123,
"planExpiresAt": "2023-11-07T05:31:56Z",
"paymentMethod": "<string>",
"paymentDiscount": "<string>",
"paymentIsTrial": true,
"permissions": {
"editWorkspace": true,
"downgradeWorkspacePlan": true,
"canClaimProfilesWithoutFolder": true,
"updateUAToAllProfiles": true,
"viewWorkspaceHistory": true,
"createFolder": true,
"renameFolder": true,
"deleteFolder": true,
"inviteMembers": true,
"globallyManageMembers": true,
"globallyManageAdminMembers": true,
"viewDeletedProfiles": true,
"restoreProfile": true,
"importProfile": true,
"multipleCreateProfiles": true,
"dropProfiles": true,
"viewAllMembers": true,
"pinProfileWithoutFolders": true,
"manageGeolocationProxies": true,
"manageUserProxies": true,
"addTags": true,
"removeTags": true,
"editTags": true
},
"activeSharesCount": 123,
"isUnpaid": true,
"isPlanUnlimited": true,
"limits": {
"maxMembers": 123,
"maxProfiles": 123,
"maxProfileShares": 123,
"maxCloudLaunches": 123
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Workspace ID
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url https://api.gologin.com/workspaces/{wid} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"owner": "<string>",
"name": "<string>",
"folders": [
{
"id": "<string>",
"name": "<string>",
"permissions": {
"manageMember": true,
"manageAdminMember": true,
"share": true,
"canClaimProfiles": true,
"addProfile": true,
"importProfile": true,
"multipleCreateProfiles": true,
"dropProfiles": true,
"removeProfile": true,
"pinProfile": true,
"reorderProfiles": true,
"viewFolder": true
},
"order": 123,
"associatedProfiles": [
"<string>"
],
"isAllProfiles": true
}
],
"allProfilesFolderId": "<string>",
"members": [
{
"id": "<string>",
"email": "<string>",
"user": "<string>",
"role": {},
"limitedAccess": true,
"folders": [
{
"name": "<string>",
"role": {},
"permissions": {
"manageAccess": true,
"manageAdminAccess": true
}
}
],
"joined": true,
"invitedByEmail": "<string>",
"lastActiveAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"permissions": {
"kickMember": true,
"manageWorkspaceWideAccess": true,
"manageWorkspaceWideAdminAccess": true,
"viewMember": true
},
"workspaceVisited": true
}
],
"planId": "<string>",
"planName": "<string>",
"planMembersMax": 123,
"profilesCount": 123,
"planProfilesMax": 123,
"planSharesMax": 123,
"planExpiresAt": "2023-11-07T05:31:56Z",
"paymentMethod": "<string>",
"paymentDiscount": "<string>",
"paymentIsTrial": true,
"permissions": {
"editWorkspace": true,
"downgradeWorkspacePlan": true,
"canClaimProfilesWithoutFolder": true,
"updateUAToAllProfiles": true,
"viewWorkspaceHistory": true,
"createFolder": true,
"renameFolder": true,
"deleteFolder": true,
"inviteMembers": true,
"globallyManageMembers": true,
"globallyManageAdminMembers": true,
"viewDeletedProfiles": true,
"restoreProfile": true,
"importProfile": true,
"multipleCreateProfiles": true,
"dropProfiles": true,
"viewAllMembers": true,
"pinProfileWithoutFolders": true,
"manageGeolocationProxies": true,
"manageUserProxies": true,
"addTags": true,
"removeTags": true,
"editTags": true
},
"activeSharesCount": 123,
"isUnpaid": true,
"isPlanUnlimited": true,
"limits": {
"maxMembers": 123,
"maxProfiles": 123,
"maxProfileShares": 123,
"maxCloudLaunches": 123
}
}