POST
/
Boarding
/
app
curl --request POST \
  --url https://api-sandbox.payabli.com/api/Boarding/app \
  --header 'Content-Type: application/json' \
  --header 'requestToken: <api-key>' \
  --data '{
  "templateId": 22,
  "processingRegion": "US",
  "legalName": "Sunshine Services, LLC",
  "dbaName": "Sunshine Gutters",
  "website": "www.example.com",
  "ein": "123456789",
  "taxFillName": "Sunshine LLC",
  "license": "2222222FFG",
  "licstate": "CA",
  "startdate": "01/01/1990",
  "phonenumber": "1234567890",
  "faxnumber": "1234567890",
  "btype": "Limited Liability Company",
  "baddress": "123 Walnut Street",
  "baddress1": "Suite 103",
  "bcity": "New Vegas",
  "bstate": "FL",
  "bzip": "33000",
  "bcountry": "US",
  "maddress": "123 Walnut Street",
  "maddress1": "STE 900",
  "mcity": "Johnson City",
  "mstate": "TN",
  "mzip": "37615",
  "mcountry": "US",
  "mcc": "7777",
  "bsummary": "Brick and mortar store that sells office supplies",
  "whenCharged": "When Service Provided",
  "whenProvided": "30 Days or Less",
  "whenDelivered": "Over 30 Days",
  "whenRefunded": "30 Days or Less",
  "binperson": 60,
  "binphone": 20,
  "binweb": 20,
  "avgmonthly": 1000,
  "ticketamt": 1000,
  "highticketamt": 1000,
  "creditLimit": 100000,
  "averageMonthlyBill": "5650",
  "averageBillSize": "500",
  "annualRevenue": 1000,
  "recipientEmail": "josephray@example.com",
  "recipientEmailNotification": true,
  "resumable": true,
  "contacts": [
    {
      "contactName": "Herman Martinez",
      "contactEmail": "herman@hermanscoatings.com",
      "contactTitle": "Owner",
      "contactPhone": "3055550000"
    }
  ],
  "ownership": [
    {
      "ownername": "John Smith",
      "ownertitle": "CEO",
      "ownerpercent": 100,
      "ownerssn": "123456789",
      "ownerdob": "01/01/1990",
      "ownerphone1": "555888111",
      "ownerphone2": "555888111",
      "owneremail": "test@email.com",
      "ownerdriver": "CA6677778",
      "odriverstate": "CA",
      "oaddress": "33 North St",
      "ostate": "CA",
      "ocountry": "US",
      "ocity": "Any City",
      "ozip": "55555"
    }
  ],
  "bankData": [
    {
      "nickname": "Withdrawal Account",
      "bankName": "First Miami Bank",
      "routingAccount": "123123123",
      "accountNumber": "1XXXXXX3100",
      "typeAccount": "Checking",
      "bankAccountHolderName": "Herman'\''s Coatings LLC",
      "bankAccountHolderType": "Business",
      "bankAccountFunction": 1
    },
    {
      "nickname": "Deposit Account",
      "bankName": "First Miami Bank",
      "routingAccount": "123123123",
      "accountNumber": "1XXXXXX3200",
      "typeAccount": "Checking",
      "bankAccountHolderName": "Herman'\''s Coatings LLC",
      "bankAccountHolderType": "Business",
      "bankAccountFunction": 0
    }
  ],
  "services": {
    "card": {
      "acceptVisa": true,
      "acceptMastercard": true,
      "acceptDiscover": true,
      "acceptAmex": true
    },
    "ach": {
      "acceptWeb": true,
      "acceptPPD": true,
      "acceptCCD": true
    }
  },
  "signer": {
    "name": "John Smith",
    "ssn": "123456789",
    "dob": "01/01/1990",
    "phone": "555888111",
    "email": "test@email.com",
    "address": "33 North St",
    "address1": "STE 900",
    "state": "TN",
    "country": "US",
    "city": "Bristol",
    "zip": "55555"
  }
}'
{
  "isSuccess": true,
  "responseText": "Success",
  "responseCode": 1,
  "responseData": 3625,
  "pageIdentifier": null
}

Authorizations

requestToken
string
header
required

Most endpoints require an organization token. Some endpoints require an application token, and those endpoints are noted.

Body

Application data object to add
processingRegion
enum<string>
required

The business's processing region.

Available options:
US,
CA
Example:

"US"

Business legal name.

Example:

"Sunshine Services, LLC"

website
string | null
required

The business website address. Include only the domain and TLD, do not enter the protocol (http/https). For example: www.example.com is acceptable.

Example:

"www.example.com"

ein
string | null
required

Business EIN or tax ID. This value is masked in API responses, for example XXXX6789.

Example:

"123456789"

startdate
string | null
required

Business start date.
Accepted formats:

  • YYYY-MM-DD
  • MM/DD/YYYY
Example:

"01/01/1990"

phonenumber
string
required

The business's phone number.

Example:

"1234567890"

btype
enum<string> | null
required

The business ownership type.

Available options:
Limited Liability Company,
Non-Profit Org,
Partnership,
Private Corp,
Public Corp,
Tax Exempt,
Government,
Sole Proprietor
Example:

"Limited Liability Company"

baddress
string | null
required

Business address.

Example:

"123 Walnut Street"

bcity
string | null
required

Business city

Example:

"New Vegas"

bstate
string | null
required

Business state.

Example:

"FL"

bzip
string | null
required

Business ZIP.

Example:

"33000"

bcountry
string | null
required

Business country in ISO-3166-1 alpha 2 format
Check out https://en.wikipedia.org/wiki/ISO_3166-1 for reference

Example:

"US"

mcc
string | null
required

Business Merchant Category Code (MCC). This resource lists MCC codes.

Example:

"7777"

bsummary
string | null
required

A summary of what the business sells in terms of goods or services.

Example:

"Brick and mortar store that sells office supplies"

whenCharged
enum<string>
required

Describes when customers are charged for goods or services. Accepted values:

Available options:
When Service Provided,
In Advance
Example:

"When Service Provided"

whenProvided
enum<string>
required

Describes when goods or services are provided, from time of transaction.

Available options:
30 Days or Less,
31 to 60 Days,
60+ Days
Example:

"30 Days or Less"

whenDelivered
enum<string>
required

When goods and services are delivered.

Available options:
0-7 Days,
8-14 Days,
15-30 Days,
Over 30 Days
Example:

"Over 30 Days"

whenRefunded
enum<string>
required

Describes the business refund policy.

Available options:
Exchange Only,
No Refund or Exchange,
More than 30 days,
30 Days or Less
Example:

"30 Days or Less"

binperson
integer | null
required

Numeric percent of volume processed in person. To pass validation, binperson, binweb, and binphone must total 100 together.

Example:

60

binphone
integer | null
required

Numeric percent of volume processed by phone. To pass validation, binperson, binweb, and binphone must total 100 together.

Example:

20

binweb
integer | null
required

Numeric percent of volume processed on web. To pass validation, binperson, binweb, and binphone must total 100 together.

Example:

20

avgmonthly
number | null
required

Average total amount of transactions in your local currency that are processed each month.

Example:

1000

ticketamt
number | null
required

The average transaction size that the business expects to process. For example, if you process $10,000 a month across 10 transactions, that's an average ticket of $1000.

Example:

1000

highticketamt
number | null
required

High ticket amount.

Example:

1000

contacts
object[] | null
required

List of contacts for the business.

bankData
object
required

Object that contains bank account details.

services
object
required

Controls which services will be enabled for the merchant.

signer
object
required

Information about the application's signer.

templateId
integer | null

The associated boarding template's ID in Payabli. Either templateId or boardingLinkId are required.

Example:

22

Boarding link ID for the application. Either templateId or boardingLinkId are required.

dbaName
string | null

The alternate or common name that this business is doing business under usually referred to as a DBA name. Payabli strongly recommends including this information.

Example:

"Sunshine Gutters"

taxFillName
string | null

Business name in tax document. This is only relevant if a government entity has given you an alternative name to file tax documents with.

Example:

"Sunshine LLC"

license
string | null

Business license ID or state ID number.

Example:

"2222222FFG"

licstate
string | null

Business license issuing state or province.

Example:

"CA"

faxnumber
string

The business's fax number.

Example:

"1234567890"

baddress1
string | null

Business address additional line.

Example:

"Suite 103"

maddress
string | null

The business's mailing address.

Example:

"123 Walnut Street"

maddress1
string | null

Additional line for the business's mailing address.

Example:

"STE 900"

mcity
string | null

The business's mail city.

Example:

"Johnson City"

mstate
string | null

The business's mailing address state.

Example:

"TN"

mzip
string | null

Business mailing ZIP.

Example:

"37615"

mcountry
string | null

Business mailing country.

Example:

"US"

creditLimit
string

The maximum amount of credit that our lending partner, has authorized to your business. It's the upper boundary on how much you can spend or owe on a credit account at any given time.

Example:

100000

averageMonthlyBill
string

This is the total number of bills the business pays each month. For example, if your business pays an electric bill of $500, a internet bill of $150, and various suppliers $5,000 every motnh then your monthly bill volume would be $5,650.

Example:

"5650"

averageBillSize
string

This is the average amount of each bill you pay through our service. For example, if your business paid 3 bills for a total of $1,500 then your average bill size is $500.

Example:

"500"

annualRevenue
number | null

Annual revenue amount.

Example:

1000

recipientEmail
string | null

Email address for the applicant. This is used to send the applicant a boarding link.

Maximum length: 320
Example:

"example@email.com"

externalpaypointID
string | null

Optional field for the external paypoint ID. This field is helpful if the merchant has an existing ID in your system.

Example:

"MER-103"

recipientEmailNotification
boolean
default:true

When true, Payabli will send the applicant a boarding link. Set this value to false if you are sending pre-filled applications via the API and don't want Payabli to send the applicant an email to complete the boarding application.

Example:

true

resumable
boolean
default:true

When true, the applicant can save an incomplete application and resume it later. When false, the applicant won't have an option to save their progress, and must complete the application in one session.

Example:

false

ownership
object[] | null

List of Owners with at least a 25% ownership.

Response

200 - application/json
Success
isSuccess
boolean

Boolean indicating whether the operation was successful. A true value indicates success. A false value indicates failure.

Example:

true

responseText
string | null

Response text for operation: 'Success' or 'Declined'.

Example:

"Success"

responseCode
integer | null

Code for the response. Learn more in API Response Codes.

Example:

1

pageIdentifier
string | null

Auxiliary validation used internally by payment pages and components.

Example:

null

responseData

The response data.