GET
/
profiles
/
documents
curl --request GET \
  --url https://api.live.paisr.tech/{version}/profiles/documents \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "documents": [
      {
        "id": "doc_123456",
        "description": "Government ID",
        "verified": true,
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successfully retrieved the list of profile documents.
success
boolean
Example:

true

data
object