Unkey · Schema

V2IdentitiesListIdentitiesRequestBody

API KeysRate LimitingAuthenticationDeveloper PlatformAccess ControlIdentityAnalytics

Properties

Name Type Description
limit integer The maximum number of identities to return in a single request. Use this to control response size and loading performance.
cursor string Pagination cursor from a previous response. Use this to fetch subsequent pages of results when the response contains a cursor value.
View JSON Schema on GitHub

JSON Schema

unkey-v2identitieslistidentitiesrequestbody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/V2IdentitiesListIdentitiesRequestBody",
  "title": "V2IdentitiesListIdentitiesRequestBody",
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100,
      "default": 100,
      "description": "The maximum number of identities to return in a single request. Use this to control response size and loading performance.",
      "example": 50
    },
    "cursor": {
      "type": "string",
      "description": "Pagination cursor from a previous response. Use this to fetch subsequent pages of results when the response contains a cursor value.",
      "example": "cursor_eyJrZXkiOiJrZXlfMTIzNCJ9"
    }
  },
  "additionalProperties": false
}