admin

List Identities

Lists all identities. Does not support search at the moment.

Learn how identities work in Ory Kratos' User And Identity Model Documentation.

get/identities

Query parameters

per_pageinteger

Items per Page

This is the number of items per page.

pageinteger

Pagination Page

Response

A list of identities.

idstring uuid4 required
schema_idstring required

SchemaID is the ID of the JSON Schema to be used for validating the identity's traits.

schema_urlstring required

SchemaURL is the URL of the endpoint where the identity's traits schema can be fetched from.

format: url

traitsobject required

Example response

[
  {
    "recovery_addresses": [
      {
        "id": "id",
        "value": "value",
        "via": "via"
      },
      {
        "id": "id",
        "value": "value",
        "via": "via"
      }
    ],
    "traits": "{}",
    "verifiable_addresses": [
      {
        "verified_at": "2000-01-23T04:56:07.000+00:00",
        "verified": true,
        "id": "id",
        "value": "value",
        "status": "status",
        "via": "via"
      },
      {
        "verified_at": "2000-01-23T04:56:07.000+00:00",
        "verified": true,
        "id": "id",
        "value": "value",
        "status": "status",
        "via": "via"
      }
    ],
    "schema_id": "schema_id",
    "schema_url": "schema_url",
    "id": "id"
  }
]

Changes