Onboarding
Tilled provides a hosted merchant onboarding form that can be customized to match your brand. If you want to personalize the entire experience, you can do it completely through the Tilled API.
Steps to onboard a merchant
- Create a merchant account using the Tilled Console or API.
- When using the API, be sure to keep track the newly created
account_id
and the application status wherever you are storing user information to avoid creating duplicate merchant accounts. For more information, see our FAQ on preventing duplicate accounts.
- When using the API, be sure to keep track the newly created
- Update merchant application using the API
- This can be completed before sending the link to the merchant.
- You also have the ability to share the onboarding form with the Merchant Owner.
- Go to the Merchants page by clicking on Merchants.
- Click on the share button.
- Enter the intended recipient's email address.
- Click on "Share via email."
- Submit the onboarding using the API or hosted onboarding form.
- (Optional) Track webhooks of
type=account.updated
to be informed when a merchant is ready to begin processing.
sandbox
environment, visit our Testing Plaid Bank Account Verification page.
Updating a Merchant's Pricing
created
or started
.
Currently, updating a merchant's pricing can only be done through the API.
- Use the merchant's
account_id
to make a call to our Get an Account endpoint and obtain the capabilities ID from the response body (capabilities.id
). - Retrieve the ID of the new Pricing Template you would like to apply to the merchant using the Get a Pricing Template endpoint.
- Delete the merchant's current Pricing Template using the Delete an Account Capability endpoint by passing the ID obtained in Step 1 as a path parameter in your request.
- Use the Add an Account Capability endpoint to apply the new Pricing Template by passing the ID of the new Pricing Template that you retrieved in Step 2 as a path parameter.
Using Auth Links for Merchant Onboarding
-
- Retrieve Merchant Account ID from Response Body:
"id": "acct_*************"
.
- Retrieve Merchant Account ID from Response Body:
-
Create a user using the newly created Merchant's ID in the
tilled-account
header.-
In the Request Body, specify a email, name, role, and password.
-
After creating the new user, retrieve the User's ID from the Response Body:
"id": "user_*************"
.
-
-
Create an Auth Link using the newly created Merchant's ID in the tilled-account header.
-
In the Request Body, specify the following:
-
expiration
- This will be the amount of days the Auth Link will be valid for (i.e. 1d, 7d, 30d) -
user_id
- The newly created User's ID for the Merchant.
-
-
Retrieve the Auth Link key from the Response Body:
"id": "*************"
. -
Use the Auth Link's key in the Magic Link as show below:
https://app.tilled.com/auth/magic-link?key=AUTH_LINK_KEY.
Or use your White Label Domain:
https://SUBDOMAIN.paymentsonline.io/auth/magic-link?key=AUTH_LINK_KEY
-
Send the link to the person(s) who will be completing the Onboarding Application.
-
Merchant Account Status
Merchant accounts will provide a status which indicates their current state in the onboarding process. These statuses help identify where merchants are in the onboarding journey. You can find these statuses in two places: the capabilities.status
property of the Get an Account endpoint or within the same property of the account.updated
webhook event.
Onboarding statuses:
created
: Merchant application has been created in Tilled.started
: Merchant has started the merchant application.submitted
: Merchant has successfully submitted the merchant application. Awaiting a response from Underwriting.active
: Merchant has been approved to process payments. This is the normal status after submitting.disabled
: The merchant account has been disabled due to suspension or termination.in_review
: The merchant application is under review. Additional documentation may be requested.rejected
: The merchant application has been rejected by Underwriting.withdrawn
: The merchant application has been withdrawn.
account.updated
event and the property capabilities.status
in the payload.