Create a Merchant
To create a merchant account utilizing the Tilled API, you will make a Create an Account request.
This request will also generate a corresponding merchant application, which you can find in the capabilities.onboarding_application_url
property in the response body of the request.
1curl -X POST 'https://sandbox-app.tilled.com/v1/accounts/connected' \
2-H 'tilled-account: {{PARTNER_ACCOUNT_ID}}' \
3-H 'tilled-api-key: {{SECRET_KEY}}' \
4-H 'Content-Type: application/json' \
5-d '{
6 "name": "Tilled Merchant Example",
7 "email": "[email protected]",
8 "pricing_template_ids": [
9 "pt_***********"
10 ]
11}'