Skip to main content

Documentation

Create Application - Sub-Merchant Card Not Present

Create an application for a sub-merchant that does not require a physical card for their transactions. This is usually a merchant that has an online business.

Note

In order to create a submerchant application, its parent application should have been already created. See also:

Each section includes unique required and optional fields. A field includes the issues object in cases where its value of is missing or is invalid. The issues object includes the fieldname and the details for providing the correct value. For example, if an invalid value is provided for the business_name field, then details are "Enter a value of up to 80 alphanumeric characters and spaces."

If a required field value is entered correctly then the field displays its current value and it has a no issues object.

  • /v1/partner/onboarding/application/sub_merchant

  • Create Application - Sub-Merchant Card Not Presentt

  • curl -X post
    'https://api.rapyd.net/v1/partner/onboarding/application/sub_merchant' \
    -H 'access_key: your-access-key-here' \
    -H 'Content-Type: application/json' \
    -H 'idempotency: your-idempotency-parameter-here' \
    -H 'salt: your-random-string-here' \
    -H 'signature: your-calculated-signature-here' \
    -H 'timestamp: your-unix-timestamp-here' \
    -H 'merchant_account_id: your-merchant-account-here' \
    --data-raw ' {
      "business_industry": "4814",
      "sell_type": "card_not_present",
      "sections": {
        "business": {
          "url": {
            "business_url": "https://www.example1234.com"
          }
        }
      }
    }
    '
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "Success",
            "response_code": "",
            "operation_id": "177d773e-9d1d-43b2-90a7-a725930a6ffa"
        },
        "data": {
            "token": "app_311ea429a09042889c573caf98278203",
            "version": 2,
            "status": "NEW",
            "ewallet_token": "ewallet_50519d74b03dc39a2f3903ce8b2b9f17",
            "metadata": {},
            "entity_type": "Partnership",
            "country": "AR",
            "created_at": 1772976210803,
            "updated_at": 1772976211805,
            "sell_type": "Website with a Checkout Page",
            "business_industry": 4814,
            "sections": {
                "business": {
                    "url": {
                        "business_url": "https://www.example1234.ecom"
                    }
                }
            },
            "link": "https://qaverify.rapyd.net/verify?token=happ_f9f11295f3f84ec79fa86a811f4ca646",
            "merchant_phone_number": null,
            "instructions": null,
            "parent_application_token": "app_8ca4baed04d74b6d9087fce547940ef4"
        }
    }