Skip to content

Retrieve a browser

Request

Security
x-api-key
Path
idstringrequired

Unique identifier for the browser

GET
/v1/browsers/{id}
curl -i -X GET \
  'https://api.pushsecurity.com/v1/browsers/{id}' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

OK

Headers
any
Bodyapplication/json
idstring

Unique identifier for the browser

Example:"1852b6ab-0cca-4c8d-8f14-4905497504ec"
employeeIdstring

Unique identifier for the employee

Example:"2a2197de-ad2c-47e4-8dcb-fb0f04cf83e0"
emailstring, (email)

Email address of the employee

Example:"john.hill@example.com"
versionstring

Version of the browser

Example:"125.0.0.0"
tokenTypestring

Type of enrollment token used

Enum:"INDIVIDUAL""TEAM""LANDING_PAGE"
isActiveboolean

Whether the browser extension is used by a licensed employee

Example:true
browserany(BrowserType)

The browser used by the employee

Enum:"CHROME""FIREFOX""EDGE""SAFARI""OPERA""BRAVE""ARC""ISLAND""PRISMA_ACCESS""ATLAS"
osany(OSType)

The OS used by the employee

Enum:"MACOS""WINDOWS""LINUX""CHROME_OS""IOS""ANDROID""UNKNOWN"
extensionVersionstring

Version of the Push extension

Example:"1.66.17"
languagestring

The browser language

Example:"en-US"
profileEmailstring, (email)

The email address of the signed in browser profile

Example:"john.hill@example.com"
profileSyncEnabledboolean

Whether synchronisation is enabled on the browser profile

Example:true
creationTimestampinteger

When this browser object was created, formatted as a UNIX timestamp (in seconds)

Example:1698669223
lastOnlineTimestampinteger

When this browser was last seen, formatted as a UNIX timestamp (in seconds)

Example:1716290202
Response
{ "id": "1852b6ab-0cca-4c8d-8f14-4905497504ec", "employeeId": "2a2197de-ad2c-47e4-8dcb-fb0f04cf83e0", "email": "john.hill@example.com", "version": "125.0.0.0", "tokenType": "INDIVIDUAL", "isActive": true, "browser": "CHROME", "os": "MACOS", "extensionVersion": "1.66.17", "language": "en-US", "profileEmail": "john.hill@example.com", "profileSyncEnabled": true, "creationTimestamp": 1698669223, "lastOnlineTimestamp": 1716290202 }