Skip to main content

Documentation

List Organizations

Retrieve the details of your merchant organizations including their KYB status.

    • merchant_account_id

    • Organization token of the merchant. String starting with org_.

    • created_after

    • The Unix time of the organization created before the last organization you want to retrieve.

    • created_before

    • The Unix time of the organization created after the last organization you want to retrieve.

    • limit

    • The maximum number of objects to return. Range: 1-100.

      50

    • 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/

  • List Organizations

  • curl -X get
    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'
    
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "Success",
            "response_code": "",
            "operation_id": "f2ab9e52-3130-4717-88cb-23079964a278"
        },
        "data": [
            {
                "ewallet_token": "ewallet_844f002dda1037f4e3f8cec6351b634d",
                "merchant_account_id": "org_6bf293069c422e7bba9e9e6aa08703ee",
                "merchant_name": "Test Merchant",
                "created_at": 1744967064,
                "country": "AE",
                "kyb_status": "IN_REVIEW",
                "kyb_last_updated_at": 1744974787
            },
            {
                "ewallet_token": "ewallet_4020a825ac35d760776d3595b44c4b5a",
                "merchant_account_id": "org_7e10093b14e4e819de5d3a1b135649de",
                "merchant_name": "Test Merchant 1",
                "created_at": 1745223471,
                "country": "AE",
                "kyb_status": "APPROVED",
                "kyb_last_updated_at": 1746712411
            }
        ]
    }
  • List Organizations with Query Parameters

  • curl -X get
    https://api.rapyd.net/v1/partner/onboarding/organization?limit=2&created_after=1750641665
    -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": "Success",
            "response_code": "",
            "operation_id": "f89f0eaa-5fbd-4978-ac55-34b25350ccca"
        },
        "data": [
            {
                "ewallet_token": "ewallet_47f702df919a3b441774a68bf099942f",
                "merchant_account_id": "org_fb34e3185ac38bd9c1c47d29e183ce65",
                "merchant_name": "N/A",
                "created_at": 1750649909,
                "country": "NL",
                "kyb_status": "IDLE",
                "kyb_last_updated_at": 1750649909
            },
            {
                "ewallet_token": "ewallet_cfeb2a51298b9168d3e2cd80fdd323a6",
                "merchant_account_id": "org_f789ea07ea776f93651d473fc0a77502",
                "merchant_name": "N/A",
                "created_at": 1750649925,
                "country": "NL",
                "kyb_status": "IDLE",
                "kyb_last_updated_at": 1750649925
            }
        ]
    }