latestOpenAPI 3.1.02026-08-145096557.0 KB

1c983de099e2

identity-access

Get current identity

Returns details about the account that owns the API key used to authenticate the request

get/v1/account/my

Response

Successful Response

identity_idinteger required

The unique identifier of the identity.

namestring required

Name of the identity.

max_active_api_keysinteger required

The number of API keys allowed for the account.

ip_subnetsstring[] required

List of IP subnets/addresses in CIDR notation for which the data access is authorized.

Example response

{
  "identity_id": 1622,
  "name": "John Doe",
  "max_active_api_keys": 6,
  "ip_subnets": [
    "3.52.0.0/24",
    "164.12.58.10/32"
  ]
}