Account Application
List Account 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
Account Application
List Account Applications
GET
/
apply
/
account_application
curl --request GET \
--url https://api.treasuryprime.com/apply/account_application \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"account_id": null,
"account_number_reservation_id": null,
"account_product_id": "apt_11gqk87qmrax",
"bankdata": null,
"business_application_id": "abus_01dcrqkr3yhw",
"created_at": "2019-03-15T11:55:14Z",
"deposit_id": "adpt_01d5wgg8js",
"id": "aact_01jkw68sjab33",
"person_applications": [],
"primary_person_application_id": "apsn_01d5w6yaa6vt",
"status": "submitted",
"updated_at": "2019-03-15T11:55:14Z",
"userdata": null
},
{
"account_id": null,
"account_number_reservation_id": null,
"account_product_id": "apt_11gqk87qmrax",
"bankdata": null,
"business_application_id": null,
"created_at": "2019-03-15T11:55:14Z",
"deposit_id": "adpt_01d5w6xx0tvs",
"id": "aact_01d5w6xb72vr",
"person_applications": [
{
"id": "apsn_01d5w6yaa6vt",
"roles": [
"owner",
"signer"
]
}
],
"primary_person_application_id": "apsn_01d5w6yaa6vt",
"status": "submitted",
"updated_at": "2019-03-15T11: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.account-application elements
The response is of type any
.
Was this page helpful?
curl --request GET \
--url https://api.treasuryprime.com/apply/account_application \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"account_id": null,
"account_number_reservation_id": null,
"account_product_id": "apt_11gqk87qmrax",
"bankdata": null,
"business_application_id": "abus_01dcrqkr3yhw",
"created_at": "2019-03-15T11:55:14Z",
"deposit_id": "adpt_01d5wgg8js",
"id": "aact_01jkw68sjab33",
"person_applications": [],
"primary_person_application_id": "apsn_01d5w6yaa6vt",
"status": "submitted",
"updated_at": "2019-03-15T11:55:14Z",
"userdata": null
},
{
"account_id": null,
"account_number_reservation_id": null,
"account_product_id": "apt_11gqk87qmrax",
"bankdata": null,
"business_application_id": null,
"created_at": "2019-03-15T11:55:14Z",
"deposit_id": "adpt_01d5w6xx0tvs",
"id": "aact_01d5w6xb72vr",
"person_applications": [
{
"id": "apsn_01d5w6yaa6vt",
"roles": [
"owner",
"signer"
]
}
],
"primary_person_application_id": "apsn_01d5w6yaa6vt",
"status": "submitted",
"updated_at": "2019-03-15T11:55:14Z",
"userdata": null
}
]
}