GET
/
v1
/
person
/
{personId}
/
document
curl --request GET \
  --url https://qa-api.sbx.solidfi.com/v1/person/{personId}/document
{
  "data": [
    {
      "createdAt": "2023-11-20T06:00:46Z",
      "description": "IdPhoto for per-e6553324-1db8-49a8-a0d3-29132280b838",
      "docType": "IdPhoto",
      "documentNumber": "",
      "expirationDate": "",
      "id": "doc-0fb68b8d-2b6e-422f-9837-73a04b9ecc38",
      "issuingCountry": "",
      "issuingState": "",
      "modifiedAt": "2023-11-20T06:00:46Z",
      "name": "IdPhoto",
      "personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
      "status": "active",
      "url": ""
    },
    {
      "createdAt": "2023-11-20T06:00:47Z",
      "description": "selfie for per-e6553324-1db8-49a8-a0d3-29132280b838",
      "docType": "selfie",
      "documentNumber": "",
      "expirationDate": "",
      "id": "doc-a35a866a-2f13-4524-b1f7-b427cc9dbb76",
      "issuingCountry": "",
      "issuingState": "",
      "modifiedAt": "2023-11-20T06:00:47Z",
      "name": "selfie",
      "personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
      "status": "active",
      "url": ""
    },
    {
      "createdAt": "2023-11-20T06:00:44Z",
      "description": "IdFront for per-e6553324-1db8-49a8-a0d3-29132280b838",
      "docType": "IdFront",
      "documentNumber": "",
      "expirationDate": "",
      "id": "doc-d7fac661-eab5-4e96-befb-fb2f493ef13e",
      "issuingCountry": "",
      "issuingState": "",
      "modifiedAt": "2023-11-20T06:00:44Z",
      "name": "IdFront",
      "personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
      "status": "active",
      "url": ""
    },
    {
      "createdAt": "2023-11-20T07:07:11Z",
      "description": "CA license",
      "docType": "drivingLicense",
      "documentNumber": "D123456789",
      "expirationDate": "2025-09-08",
      "id": "doc-dcb02cc2-84e0-442e-bba8-180c831de552",
      "issuingCountry": "US",
      "issuingState": "CA",
      "modifiedAt": "2023-11-20T07:09:20Z",
      "name": "Drivers License",
      "personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
      "status": "active",
      "url": ""
    }
  ],
  "total": 4
}

Headers

sd-api-key
string
Example:

"{{sd-api-key}}"

sd-person-id
string
Example:

"{{sd-person-id}}"

Path Parameters

personId
string
required

Response

200 - application/json
List all Documents
data
object[]
Example:
[
  {
    "createdAt": "2023-11-20T06:00:46Z",
    "description": "IdPhoto for per-e6553324-1db8-49a8-a0d3-29132280b838",
    "docType": "IdPhoto",
    "documentNumber": "",
    "expirationDate": "",
    "id": "doc-0fb68b8d-2b6e-422f-9837-73a04b9ecc38",
    "issuingCountry": "",
    "issuingState": "",
    "modifiedAt": "2023-11-20T06:00:46Z",
    "name": "IdPhoto",
    "personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
    "status": "active",
    "url": ""
  },
  {
    "createdAt": "2023-11-20T06:00:47Z",
    "description": "selfie for per-e6553324-1db8-49a8-a0d3-29132280b838",
    "docType": "selfie",
    "documentNumber": "",
    "expirationDate": "",
    "id": "doc-a35a866a-2f13-4524-b1f7-b427cc9dbb76",
    "issuingCountry": "",
    "issuingState": "",
    "modifiedAt": "2023-11-20T06:00:47Z",
    "name": "selfie",
    "personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
    "status": "active",
    "url": ""
  },
  {
    "createdAt": "2023-11-20T06:00:44Z",
    "description": "IdFront for per-e6553324-1db8-49a8-a0d3-29132280b838",
    "docType": "IdFront",
    "documentNumber": "",
    "expirationDate": "",
    "id": "doc-d7fac661-eab5-4e96-befb-fb2f493ef13e",
    "issuingCountry": "",
    "issuingState": "",
    "modifiedAt": "2023-11-20T06:00:44Z",
    "name": "IdFront",
    "personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
    "status": "active",
    "url": ""
  },
  {
    "createdAt": "2023-11-20T07:07:11Z",
    "description": "CA license",
    "docType": "drivingLicense",
    "documentNumber": "D123456789",
    "expirationDate": "2025-09-08",
    "id": "doc-dcb02cc2-84e0-442e-bba8-180c831de552",
    "issuingCountry": "US",
    "issuingState": "CA",
    "modifiedAt": "2023-11-20T07:09:20Z",
    "name": "Drivers License",
    "personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
    "status": "active",
    "url": ""
  }
]
total
number
Example:

4