GET
/
identity
/
identities
/
{identity_id}
/
documents
List Identity Documents
curl --request GET \
  --url https://api.paxos.com/v2/identity/identities/{identity_id}/documents \
  --header 'Authorization: Bearer <token>'
{
  "documents": [
    {
      "file_id": "e1959b03-8c3d-4bdd-9437-403ccf8772f5",
      "name": "test_file.png",
      "document_types": [
        "OTHER_DOCUMENTS",
        "APPLICATION"
      ],
      "created_at": "2023-07-07T23:03:19.170481Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Path Parameters

identity_id
string
required

id associated with the identity

Query Parameters

include_pending_docs
boolean

Add a list of pending document types for the identity

Response

200
application/json

A successful response.

The response is of type object.