- Operation
- AddOrUpdateBankingData
- Request
- BankingDataRequest
- Response
- boolean
| Parameter |
In |
Type |
Required |
Description |
applicationId |
path |
string |
Yes |
- |
bankName |
query |
string |
No |
- |
body |
body |
BankingDataRequest |
No |
- |
Request
JSON
{
"bankAccounts": [
{
"bank": "string",
"availableBalance": "string",
"currentBalance": "string",
"accountNumber": "string",
"routing": "string",
"accountType": "string",
"transactions": [
"value"
],
"accountName": "string"
}
]
}
- Operation
- CreateApplication
- Request
- ApplicationRequest
- Response
- string
| Parameter |
In |
Type |
Required |
Description |
sendLink |
query |
boolean |
No |
sendLink |
body |
body |
ApplicationRequest |
Yes |
applicationRequest |
Request
JSON
{
"customerId": "00000000-0000-0000-0000-000000000000",
"partnerId": "00000000-0000-0000-0000-000000000000",
"businessZip": "string",
"businessName": "string",
"extraInformation": "string"
}
- Operation
- CreateApplicationAndApplicant
- Request
- ApplicationAndApplicantRequest
- Response
- string
| Parameter |
In |
Type |
Required |
Description |
sendLink |
query |
boolean |
No |
sendLink |
body |
body |
ApplicationAndApplicantRequest |
Yes |
applicationRequest |
Request
JSON
{
"applicant": {
"firstName": "string",
"lastName": "string",
"city": "string",
"state": "string",
"address": "string",
"dateOfBirth": "2026-04-29T00:00:00Z"
},
"customerId": "00000000-0000-0000-0000-000000000000",
"partnerId": "00000000-0000-0000-0000-000000000000",
"businessZip": "string",
"businessName": "string",
"extraInformation": "string"
}
before creating it will validate
- Operation
- CreateCustomerAndApplication
- Request
- ApplicationAndCustomerRequest
- Response
- ApplicationCustomerResponse
| Parameter |
In |
Type |
Required |
Description |
sendLink |
query |
boolean |
No |
sendLink |
body |
body |
ApplicationAndCustomerRequest |
Yes |
applicationAndCustomer |
Request
JSON
{
"application": {
"businessName": "string",
"businessZip": "string",
"partnerId": "00000000-0000-0000-0000-000000000000",
"extraInformation": "string"
},
"customer": {
"firstName": "string",
"lastName": "string",
"email": "string",
"password": "string",
"mobileNumber": "string"
}
}
Response
200
{
"customerId": "00000000-0000-0000-0000-000000000000",
"applicationId": "00000000-0000-0000-0000-000000000000",
"applicantId": "00000000-0000-0000-0000-000000000000"
}
- Operation
- CreateCustomerAndApplicationAndApplicant
- Request
- ApplicationAndCustomerAndApplicantRequest
- Response
- ApplicationCustomerResponse
| Parameter |
In |
Type |
Required |
Description |
sendLink |
query |
boolean |
No |
- |
body |
body |
ApplicationAndCustomerAndApplicantRequest |
Yes |
- |
Request
JSON
{
"applicant": {
"firstName": "string",
"lastName": "string",
"city": "string",
"state": "string",
"address": "string",
"dateOfBirth": "2026-04-29T00:00:00Z"
},
"application": {
"businessName": "string",
"businessZip": "string",
"partnerId": "00000000-0000-0000-0000-000000000000",
"extraInformation": "string"
},
"customer": {
"firstName": "string",
"lastName": "string",
"email": "string",
"password": "string",
"mobileNumber": "string"
}
}
Response
200
{
"customerId": "00000000-0000-0000-0000-000000000000",
"applicationId": "00000000-0000-0000-0000-000000000000",
"applicantId": "00000000-0000-0000-0000-000000000000"
}