Skip to main content
GET
/
api
/
v1
/
account
/
users
/
{uid}
/
identity-verifications
List IDV sessions
curl --request GET \
  --url https://sandbox-revo-api.raliopay.com/api/v1/account/users/{uid}/identity-verifications \
  --header 'Authorization: Bearer <token>'
{
  "pagination": {
    "next": "<string>",
    "numPages": 123,
    "page": 123,
    "pageSize": 123,
    "previous": "<string>",
    "total": 123
  },
  "sessions": [
    {
      "created_at": "<string>",
      "data": {},
      "expiresAt": "<string>",
      "flow": {
        "id": "<string>",
        "tag": "<string>"
      },
      "hostedUrl": "<string>",
      "id": "<string>",
      "state": "<string>",
      "type": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://doc.raliopay.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key for accessing management endpoints

Path Parameters

uid
string
required

User ID

Query Parameters

page
integer
default:1

Page number

pageSize
integer
default:30

Page size

Required range: x <= 100

Response

OK

pagination
object
sessions
object[]