Person Application
List Person Applications
Introduction
Account
- Account
- Account Documents
- Business
- Enhanced FDIC Insurance
- Person
- Reserve Account
- Transaction
Account Opening
- Account Product
- Account Application
- Additional Person
- Business Application
- Deposit
- KYC
- KYC Product
- Person Application
Cards
- Card
- Digital Wallet Tokens
- MarqetaJS
- Card Auth Loop Endpoint
- Card Event
- Card Product
Payments
- ACH
- Book Transfer
- Check Issuing
- Check Deposit
- Counterparty
- FedNow
- Manual Hold
- Incoming ACH
- Incoming Wire
- Invoice Account Number
- Network Transfer
- Wire
Testing
- Simulation Endpoint
Utilities
- Document
- File
- Routing Number
- Search
- Webhook
Person Application
List Person Applications
GET
/
apply
/
person_application
curl --request GET \
--url https://api.treasuryprime.com/apply/person_application \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"bankdata": {
"ip_address": "127.0.0.40"
},
"citizenship": "US",
"created_at": "2019-03-02T11:55:14Z",
"date_of_birth": "1732-02-22",
"email_address": "gwash@whitehouse.gov",
"first_name": "George",
"id": "apsn_01d5w7mvmwvy",
"identification_number": null,
"identification_number_type": null,
"last_name": "Washington",
"middle_name": null,
"occupation": "General",
"person_id": null,
"phone_number": "2025551111",
"physical_address": {
"city": "Washington",
"country": "US",
"postal_code": "20500",
"state": "DC",
"street_line_1": "1600 Pennsylvania Ave",
"street_line_2": null
},
"updated_at": "2019-03-02T11:55:14Z",
"userdata": null
}
]
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200 - application/json
A list of apply.person-application elements
The response is of type any
.
Was this page helpful?
curl --request GET \
--url https://api.treasuryprime.com/apply/person_application \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"bankdata": {
"ip_address": "127.0.0.40"
},
"citizenship": "US",
"created_at": "2019-03-02T11:55:14Z",
"date_of_birth": "1732-02-22",
"email_address": "gwash@whitehouse.gov",
"first_name": "George",
"id": "apsn_01d5w7mvmwvy",
"identification_number": null,
"identification_number_type": null,
"last_name": "Washington",
"middle_name": null,
"occupation": "General",
"person_id": null,
"phone_number": "2025551111",
"physical_address": {
"city": "Washington",
"country": "US",
"postal_code": "20500",
"state": "DC",
"street_line_1": "1600 Pennsylvania Ave",
"street_line_2": null
},
"updated_at": "2019-03-02T11:55:14Z",
"userdata": null
}
]
}