Business Application
Update a Business Application
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
Update a Business Application
PATCH
/
apply
/
business_application
/
{id}
curl --request PATCH \
--url https://api.treasuryprime.com/apply/business_application/{id} \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"phone_number": "4155552222"
}'
{
"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": "4155552222",
"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
.
Path Parameters
Unique identifier for object
Body
application/json
The apply.business-application to update
The body is of type object
.
Response
200 - application/json
The apply.business-application updated
The response is of type object
.
Was this page helpful?
curl --request PATCH \
--url https://api.treasuryprime.com/apply/business_application/{id} \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"phone_number": "4155552222"
}'
{
"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": "4155552222",
"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
}