Skip to main content

Documentación

Create Application - Sub-Merchant Card Present

Create an application for a sub-merchant that requires a physical card for their transactions. This is usually a merchant that has a brick and mortar business.

Nota

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 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_present",
      "sections": {
        "business": {
          "url": {
            "business_url": "https://example12345.com"
          },
          "proof_of_address": {
            "physical_address": "23 East 45th Street",
            "address_additional_details": "1st Floor",
            "postal_code": "123456",
            "city": "AnyTown",
            "country": "US",
            "state": "New State"
          }
        }
      }
    }
    '
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "Success",
            "response_code": "",
            "operation_id": "33e43854-ed7a-4e52-bc2a-94faaf500031"
        },
        "data": {
            "token": "app_fc2f29cc09dc4f0ead50266e3b1786cf",
            "version": 2,
            "status": "NEW",
            "ewallet_token": "ewallet_8c34770c46ddf2075d29ca35402fb784",
            "metadata": {},
            "entity_type": "Partnership",
            "country": "US",
            "created_at": 1772976245863,
            "updated_at": 1772976246803,
            "sell_type": "Physical Business (Brick and Mortar)",
            "business_industry": 4814,
            "sections": {
                "business": {
                    "url": {
                        "business_url": "https://example12345.com"
                    },
                    "proof_of_address_document": {
                        "issues": [
                            {
                                "field": "address_ref",
                                "details": "This file is required."
                            }
                        ]
                    },
                   "proof_of_address": {
            "physical_address": "23 East 45th Street",
            "address_additional_details": "1st Floor",
            "postal_code": "123456",
            "city": "AnyTown",
            "country": "US",
            "state": "New State"
                    }
                }
            },
            "link": "https://qaverify.rapyd.net/verify?token=happ_04acea13013f4143ada74ede48335002",
            "merchant_phone_number": null,
            "instructions": null,
            "parent_application_token": "app_8ca4baed04d74b6d9087fce547940ef4"
        }
    }