Business Application
List Business 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
Business Application
List Business Applications
GET
/
apply
/
business_application
curl --request GET \
--url https://api.treasuryprime.com/apply/business_application \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"bank_id": "bank_anybank",
"bankdata": null,
"created_at": "2019-03-02T11:55:14Z",
"dba": null,
"description": "Our company is engaged in the buying and selling of [...]",
"established_on": "2018-08-01",
"id": "abus_21sen7m398ab",
"identification_number": null,
"identification_number_type": null,
"incorporation_state": "DE",
"legal_structure": "llc",
"mailing_address": {
"city": "Sacramento",
"country": "US",
"postal_code": "95814",
"state": "CA",
"street_line_1": "1300 L St"
},
"naics": "42",
"naics_description": "Wholesale Trade",
"name": "Acme Goods Inc",
"person_applications": [
{
"id": "apsn_01d5w6yaa6vt",
"ownership_percentage": 25,
"roles": [
"signer"
],
"title": "CEO"
},
{
"id": "apsn_0fd62018smsk",
"ownership_percentage": 30,
"roles": [
"control_person",
"signer"
],
"title": "CFO"
}
],
"phone_number": "+1 415-555-1111",
"physical_address": {
"city": "Benicia",
"postal_code": "94510",
"state": "CA",
"street_line_1": "115 W G St"
},
"tin": "11-3344555",
"updated_at": "2019-03-02T11:55:14Z",
"urls": [
"http://example.com"
],
"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.business-application elements
The response is of type any
.
Was this page helpful?
curl --request GET \
--url https://api.treasuryprime.com/apply/business_application \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"bank_id": "bank_anybank",
"bankdata": null,
"created_at": "2019-03-02T11:55:14Z",
"dba": null,
"description": "Our company is engaged in the buying and selling of [...]",
"established_on": "2018-08-01",
"id": "abus_21sen7m398ab",
"identification_number": null,
"identification_number_type": null,
"incorporation_state": "DE",
"legal_structure": "llc",
"mailing_address": {
"city": "Sacramento",
"country": "US",
"postal_code": "95814",
"state": "CA",
"street_line_1": "1300 L St"
},
"naics": "42",
"naics_description": "Wholesale Trade",
"name": "Acme Goods Inc",
"person_applications": [
{
"id": "apsn_01d5w6yaa6vt",
"ownership_percentage": 25,
"roles": [
"signer"
],
"title": "CEO"
},
{
"id": "apsn_0fd62018smsk",
"ownership_percentage": 30,
"roles": [
"control_person",
"signer"
],
"title": "CFO"
}
],
"phone_number": "+1 415-555-1111",
"physical_address": {
"city": "Benicia",
"postal_code": "94510",
"state": "CA",
"street_line_1": "115 W G St"
},
"tin": "11-3344555",
"updated_at": "2019-03-02T11:55:14Z",
"urls": [
"http://example.com"
],
"userdata": null
}
]
}