GET
/
users
/
{userID}
/
clientEnvs
curl --request GET \
  --url https://backendapi.corbado.io/v2/users/{userID}/clientEnvs \
  --header 'Authorization: Basic <encoded-value>'
{
  "clientEnvs": [
    {
      "id": "<string>",
      "handle": "<string>",
      "browserName": "<string>",
      "browserVersion": "<string>",
      "osName": "<string>",
      "osVersion": "<string>",
      "userAgent": "<string>",
      "jsFingerprint": "<string>",
      "createdMs": 123,
      "deviceId": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

userID
string
required

ID of user

Response

200
application/json

List of all matching clientEnvs

The response is of type object.