zimpler-developers

Partners

This part of the documentation describes the partners flow.

# Registering partners

# POST /v4/cpsp/register

Register a new sub merchant. The returned submerchant_id can be specified in the deposits flow.

# REQUEST

PARAM TYPE Required Description
mcc String True The sub merchant category code (MCC). Minimum of 4 digits
sites String Array True A non-empty list of sites allowed to have transactions on.
pricing_level String True The pricing level to be used for this sub merchant. Pricing levels are defined upon aggreement.
merchant_information JSON Object True Sub merchant related data

# Merchant Information JSON Object

{
  "name": "Merchant Name",
  "registration_number": "000000-0000",
  "country_codes": ["SE", "FI"],
  "address": ["Street 01", "City", "Province"]
}
FIELD TYPE Required Description
name String True The submerchant’s name
registration_number String True The submerchant’s registration number.
country_codes String Array True Two letter ISO country codes.
address String Array True The submerchant’s registered address

# REQUEST

{
  "mcc": "7372",
  "sites": ["merchant-site1.com", "merchant-site2.com"],
  "pricing_level": "medium"
  "merchant_information": {
    "name": "Merchant Name",
    "registration_number": "000000-0000",
    "country_codes": ["SE", "FI"],
    "address": ["Street 01", "City", "Province"]
  }
}

# RESPONSE

{
  "submerchant_id": "merchant-name-5dec0ec5-ee24-439a-8e8e-6920e26ddd21",
}