GET
/
workspaces
/
{wid}
/
profiles
curl --request GET \
  --url https://api.gologin.com/workspaces/{wid}/profiles \
  --header 'Authorization: Bearer <token>' \
  --header 'cf-ipcountry: <cf-ipcountry>'
{
  "profiles": [
    {
      "name": "<string>",
      "id": "<string>",
      "role": "<string>",
      "notes": "<string>",
      "browserType": "<string>",
      "lockEnabled": true,
      "timezone": {},
      "navigator": {},
      "geolocation": {},
      "debugMode": true,
      "canBeRunning": true,
      "isRunDisabled": true,
      "runDisabledReason": "unpaid-share",
      "isWeb": true,
      "os": "<string>",
      "osSpec": "<string>",
      "isM1": true,
      "proxy": {},
      "archivedProxy": {
        "id": "<string>",
        "name": "<string>",
        "country": "<string>"
      },
      "proxyType": "<string>",
      "proxyRegion": "<string>",
      "status": "<string>",
      "folders": [
        "<string>"
      ],
      "folderIds": [
        "<string>"
      ],
      "sharedEmails": [
        "<string>"
      ],
      "isPinned": true,
      "updateUALastChosenBrowserV": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "lastActivity": "<string>",
      "permissions": {
        "transferProfile": true,
        "transferToMyWorkspace": true,
        "shareProfile": true,
        "manageFolders": true,
        "editProfile": true,
        "deleteProfile": true,
        "cloneProfile": true,
        "exportProfile": true,
        "updateUA": true,
        "addVpnUfoProxy": true,
        "runProfile": true,
        "runProfileWeb": true,
        "viewProfile": true,
        "addProfileTag": true,
        "removeProfileTag": true,
        "viewShareLinks": true,
        "createShareLinks": true,
        "updateShareLinks": true,
        "deleteShareLinks": true,
        "viewCustomExtensions": true
      },
      "tags": [
        "<string>"
      ],
      "shareId": "<string>",
      "isShared": true,
      "sharesCount": 123,
      "proxyEnabled": true,
      "isDisabled": true,
      "isAutoGenerated": true,
      "isBookmarksSynced": true,
      "defaultProps": {
        "profileNameIsDefault": true,
        "profileNotesIsDefault": true
      },
      "autoLang": true,
      "remoteOrbitaUrl": "<string>",
      "bookmarks": {},
      "chromeExtensions": [
        "<string>"
      ],
      "userChromeExtensions": [
        "<string>"
      ],
      "facebookAccountData": {
        "date": "<string>",
        "token": "<string>",
        "fbIdAccount": "<string>",
        "email": "<string>",
        "password": "<string>",
        "googleDriveUrl": "<string>",
        "fb2faToolUrl": "<string>",
        "fbUrl": "<string>",
        "uaVersion": "<string>",
        "cookies": "<string>",
        "notParsedData": [
          "<string>"
        ]
      },
      "order": 123
    }
  ],
  "total": 123,
  "isFolderDeleted": true,
  "currentOrbitaMajorV": "<string>",
  "currentBrowserV": "<string>",
  "currentTestBrowserV": "<string>",
  "currentTestOrbitaMajorV": "<string>",
  "isMoreProfilesAvailable": true,
  "groupsMetadata": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

cf-ipcountry
string
required

Path Parameters

wid
string
required

Workspace ID

Query Parameters

Will return all profiles which names match the search query.

folder
string

Will return all profiles in particular folder.

folderId
string

Will return all profiles in particular folder.

page
number
default:1

Maximum number of profiles per page is 30. So if you want to get more profiles, you need to increment this value.

sortField
enum<string>
default:createdAt

Will sort the result by the selected field.

Available options:
lastActivity,
proxyType,
updatedAt,
createdAt,
sharedEmails,
name,
os,
order
sortOrder
enum<string>
default:descend

Will sort the result by the selected order.

Available options:
ascend,
descend
tag
string

Will return all profiles with the selected tag.

offset
number
default:1

Maximum number of profiles per page is 30. So if you want to get more profiles, you need to increment this value.

Response

200 - application/json

The response is of type object.