Documents Person
Retrieve a Document
Getting Started
Person
Business
Documents Person
Document Business
Member
Accounts
Contacts
Send
- GETList all Intrabank Push
- POSTSend an Intrabank Push
- GETGet an Intrabank Push
- PATCHUpdate an Intrabank Push
- GETList all ACH Push
- POSTSend an ACH Push
- GETGet an ACH Push
- PATCHUpdate an ACH Push
- GETList all Wire Sent
- POSTSend an Wire Transfer
- GETGet an Wire Transfer
- PATCHUpdate an Wire Transfer
- GETList all Check Sent
- POSTSend an Check
- GETGet an Check Sent
- PATCHUpdate an Check Sent
Receive
Cards
Webhooks
Program
Help Desk
Documents Person
Retrieve a Document
Retrieve a Document
GET
/
v1
/
person
/
{personId}
/
document
/
{documentId}
curl --request GET \
--url https://qa-api.sbx.solidfi.com/v1/person/{personId}/document/{documentId}
{
"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:07:11Z",
"name": "Drivers License",
"personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
"status": "active",
"url": ""
}
Response
200 - application/json
Retrieve a Document
The response is of type object
.
curl --request GET \
--url https://qa-api.sbx.solidfi.com/v1/person/{personId}/document/{documentId}
{
"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:07:11Z",
"name": "Drivers License",
"personId": "per-e6553324-1db8-49a8-a0d3-29132280b838",
"status": "active",
"url": ""
}