GET
/
authentication
Get users
curl --request GET \
  --url https://api.cloudcruise.com/authentication \
  --header 'cc-key: <api-key>'
[
  {
    "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "domain": "<string>",
    "cookies": [
      {
        "name": "<string>",
        "value": "<string>",
        "domain": "<string>",
        "path": "<string>",
        "expirationDate": 123,
        "httpOnly": true,
        "hostOnly": true,
        "secure": true,
        "session": true,
        "storeId": "<string>",
        "sameSite": "<string>"
      }
    ],
    "created_at": "2023-11-07T05:31:56Z",
    "ip_address": "<string>",
    "permissioned_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "location": "<string>",
    "user_agent": "<string>",
    "local_storage": {},
    "user_alias": "<string>",
    "user_name": "<string>",
    "password": "<string>",
    "tfa_secret": "<string>",
    "persist_local_storage": true,
    "persist_cookies": true,
    "cookie_domain_to_store": "<string>",
    "persist_session_storage": true
  }
]
Note:
  • If the query parameters are omitted, all users will be returned.
  • If both parameters are provided, the response will be a single authentication record (not a list).

Authorizations

cc-key
string
header
required

API key-based authentication. Provide your CloudCruise API key in the cc-key header. Contact support to obtain an API key for your account.

Query Parameters

permissioned_user_id
string

Unique identifier for the permissioned user. Optional, but if provided, 'domain' must also be provided.

domain
string

Target domain to filter authentication records. Optional, but if provided, 'permissioned_user_id' must also be provided.

Response

200
application/json

Authentication records successfully retrieved

The response is of type object[].