Get Organization
Retrieve the details of a specific Merchant including their KYB status.
merchant_account_id
organization token of the merchant. String starting with org_.
merchant_account_id
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 date and time when the application was updated.
/v1/partner/onboarding/organization/:merchant_account_id
Get Organization
curl -X get https://sandboxapi.rapyd.net/v1/partner/onboarding/organization/org_f39c334dae3b3476d2c7ddfa5c1d3c72 -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'
{ "status": { "error_code": "", "status": "SUCCESS", "message": "", "response_code": "", "operation_id": "48340f2a-5212-41a2-85d5-0d2b982bb80e" }, "data": { "ewallet_token": "ewallet_3538530583853583", "merchant_account_id": "org_123456", "merchant_name": "ABC Retailers", "created_at": "2025-01-10T10:15:00Z", "country": "US" }, "kyb_status": "APPROVED", "kyb_last_updated": "2025-01-12T08:30:00Z" }