Registering Merchant
Before you start using Zip, you will need to register Merchants via the API. You will use the /merchants
POST.
Creating an Merchant
This API will contain:
- Name of the Merchant
- Merchant's website URL
- Contact details
- Unique external reference - is later used in a checkout creation request in
merchant_reference
field - Address
- Company ID
- Vat ID
The Merchant creation callout may look like this:
{
"name": "new",
"url": "http://example.com",
"contact_name": "string",
"contact_email": "user@example.com",
"contact_phone_number": "+420731889776",
"reference": "unique_reference",
"street": "string",
"city": "string",
"zipcode": "string",
"company_id": "2635463728135646",
"vat_id": "1222121234"
}