Update and Submit a Merchant Application

Update a Merchant Application

If you will be utilizing the Tilled API to update a merchant’s application, you will make a Update a Merchant Application request.

 1curl -X PUT 'https://sandbox-app.tilled.com/v1/applications/{{MERCHANT_APPLICATION_ID}}' \
 2-H 'Content-Type: application/json' \
 3-d '{
 4  "accept_terms_and_conditions": true,
 5  "business_legal_entity": {
 6    "name": "Tilled Merchant Example",
 7    "legal_name": "Merchant of Tilled",
 8    "type": "CORP",
 9    "tax_identification_number": "******",
10    "phone": "5555555555",
11    "company_email": "[email protected]",
12    "website": "https://tilled.com",
13    "locale": "en_US",
14    "average_transaction_amount": 1800000,
15    "yearly_volume_range": "VERY_HIGH",
16    "category": "RESTO",
17    "statement_descriptor": "Tilled Merchant",
18    "address": {
19      "street": "123 Main Street",
20      "city": "Memphis",
21      "state": "TN",
22      "zip": "38103",
23      "country": "US"
24    },
25    "bank_account": {
26      "account_number": "************",
27      "routing_number": "011000138"
28    },
29    "principals": [
30      {
31        "first_name": "John",
32        "last_name": "Doe",
33        "date_of_birth": "1975-05-24T05:00:00.000Z",
34        "job_title": "The Chief Adventurer",
35        "percentage_shareholding": 99,
36        "ssn": "***-**-****",
37        "phone": "5555555555",
38        "is_applicant": true,
39        "is_control_prong": true,
40        "address": {
41         "street": "123 Main Street",
42         "city": "Memphis",
43         "state": "TN",
44         "zip": "38103",
45         "country": "US"
46        }
47} ],
48    "currency": "usd",
49    "region": "US"
50  }
51}

Submit a Merchant Application

If you will be utilizing the Tilled API to submit a merchant’s application, you will make a Submit a Merchant Application request.

1curl -X POST 'https://sandbox-app.tilled.com/v1/applications/{{MERCHANT_APPLICATION_ID}}/submit' \
2-H 'Content-Type: application/json' \