Skip to main content

RCRequest

submerchants object[]required

The array containing all the RC details.

  • Array [
  • idstring

    The RC id being requested. Only alphanumeric characters allowed (0-9, A-Z and a-z). Size between 1 and 8 characters.

    Example: rc01
    company_namestring

    The name of the company to which the RC is being requested for. Max. 70 characters. Unicode characters are accepted.

    Example: My Company AG
    country_of_incorporationstring

    The RC country of incorporation. ISO 3166-1 (2 letter country code).

    Example: AT
    licenses object[]

    The licenses array containing all the RC licenses per country. *Mandatory, when the type of business is "BINARY_OPTIONS_SPREAD_BETTING", "FOREX", "PREPAID_CARDS_TOPUPS", "WALLETS", "POKER" or "SPORTSBOOK".

  • Array [
  • countrystring

    The license country. ISO 3166-1 (2 letter country code). Mandatory as soon as a license object is given.

    Example: AT
  • ]
  • type_of_businessstring

    The RC type of business (sub channel). Max. 60 characters. List of all possible values in the documentation.

    Example: SPORTSBOOK
    mccstring

    The RC MCC (merchant category code) (sub channel). Either type_of_business OR mcc need to be supplied. List of all possible values in the documentation.

    Example: 7995
    webshops object[]

    The webshop array containing all the RC urls. Max. 5 urls per RC.

  • Array [
  • urlstring

    The webshop url. Max. 80 characters. Must be a valid url including protocol (see example).

    Example: https://www.mytest.com
  • ]
  • products object[]

    The RC products and features array. Max. 5 products per RC.

  • Array [
  • namestring

    The RC product. Max. 5 products per RC. The possible values are "PAYSAFECARD", "PAYSAFECASH", "PAGOEFECTIVO", "SAFETYPAY" and "GIFTCARD".

    Example: PAYSAFECARD
    featuresstring[]

    The RC feature. Max. 2 features per product. The possible values are "PAYOUT" (only if the product is "PAYSAFECARD") and "REFUND" (only if the product is "PAYSAFECARD" or "PAYSAFECASH")

    Possible values: [PAYOUT, REFUND]

    Example: ["PAYOUT"]
  • ]
  • ]
  • callback_urlstring

    The callback url to be used by PaysafeCard to inform about the RC status. Max. 1000 characters. Must be a valid url including protocol (see example).

    Example: https://notification.com
    RCRequest
    {
    "submerchants": [
    {
    "id": "rc01",
    "company_name": "My Company AG",
    "country_of_incorporation": "AT",
    "licenses": [
    {
    "country": "AT"
    }
    ],
    "type_of_business": "SPORTSBOOK",
    "mcc": "7995",
    "webshops": [
    {
    "url": "https://www.mytest.com"
    }
    ],
    "products": [
    {
    "name": "PAYSAFECARD",
    "features": [
    "PAYOUT"
    ]
    }
    ]
    }
    ],
    "callback_url": "https://notification.com"
    }