Skip to main content

Documentation

Create Organization

Create an organization for the merchant with a specific offering you selected in List Offerings

    • merchant_info

    • Merchant information fields.

  • /v1/partner/onboarding/organization

  • Create Organization

  • curl -X post
    'https://api.rapyd.net/v1/partner/onboarding/organization' \
    -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' \
    --data-raw '
    {
        "merchant_info": {
            "registration_country": "GB",
            "first_name": "John",
            "last_name": "Doe",
            "email": "john.doe@rapyd.net",
            "offering_token": "offering_fd1825c1a9b978deed666c8816f7a786"
        }
    }
    '
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "Success",
            "response_code": "",
            "operation_id": "e8a687d4-681f-4c8a-b3d0-9bbe26bc2065"
        },
        "data": {
            "ewallet_token": "ewallet_e18491209f7c5bf22256a992b98beddc",
            "merchant_account_id": "org_033fecf2fd40dc80bc105b43fdc6bbef",
            "merchant_name": "N/A",
            "created_at": 1750838762,
            "country": "GB",
            "kyb_status": "IDLE",
            "kyb_last_updated_at": 1750838762
        }
    }