Create Organization
Create an organization for the merchant with a specific offering you selected in List Offerings
partner_user
Partner information fields.
merchant_info
Merchant information fields.
organization_token
Organization token of the merchant. String starting with org_.
ewallet_token
eWallet of the merchant. String starting with ewallet_.
first_name
First name of the merchant.
last_name
Last name of the merchant.
email
Email address of the merchant
kyb_status
The KYB status of the merchant. One of the following:
Idle - The status has not been evaluated yet (New).
Submitted - In one of these application statuses: Submitted / Pending Review / In Review.
Approved - The application has been approved.
Rejected - The application has been rejected.
created_at
Indicates the time the application was updated.
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' -d ' { "partner_user": { "email": "sample@coffee12345.net" }, "merchant_info": { "registration_country": "GB", "first_name": "John", "last_name": "Doe", "email": "sample123@sample1234.net", "offering_token": "offering_23ba9a5cedf5bf5d8703082861aac8f5" } } '
{ "status": { "error_code": "", "status": "SUCCESS", "message": "Success", "response_code": "", "operation_id": "e8a687d4-681f-4c8a-b3d0-9bbe26bc2065" }, "data": { "ewallet_token": "ewallet_527f7a2422ec8a2925f8a37e3f626db7", "merchant_account_id": "org_ecbffbbbd15b108ba57f1186c75c591b", "merchant_name": "sample 1234", "created_at": 1750838762, "country": "GB", "kyb_status": "IDLE", "kyb_last_updated_at": 1750838762 } }