GET
/
identifiers
curl --request GET \
  --url https://backendapi.corbado.io/v2/identifiers \
  --header 'Authorization: Basic <encoded-value>'
{
  "identifiers": [
    {
      "identifierID": "<string>",
      "type": "email",
      "value": "<string>",
      "status": "pending",
      "userID": "<string>"
    }
  ],
  "paging": {
    "page": 1,
    "totalPages": 123,
    "totalItems": 123
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

sort
string

Field sorting

filter[]
string[]

Field filtering

page
integer
default:1

Page number

pageSize
integer
default:10

Number of items per page

Response

200
application/json

List of all matching identifiers

The response is of type object.