GET
/
merchants
/
{merchant_id}
curl --request GET \
  --url https://api-sandbox.cashfree.com/partners/merchants/{merchant_id} \
  --header 'x-partner-apikey: <x-partner-apikey>'
{
  "merchant_id": "test_merchantid_1",
  "merchant_email": "john@cashfree.com",
  "merchant_name": "John Doe Business",
  "created_at": "2023-07-24T04:45:20.000Z",
  "onboarding_status": "Email Verified",
  "product_status": [
    {
      "product_name": "PG",
      "product_min_kyc_status": "MIN_KYC_PENDING"
    }
  ]
}

Headers

x-partner-apikey
string
required

Partner API Key

x-api-version
string
default:2023-01-01

API version to be used

Path Parameters

merchant_id
string
required

Unique identifier for the merchant

Response

200
application/json
OK
merchant_id
string

Unique identifier for the merchant. Max 40 characters, Alphanumeric, Hypeh, Underscore allowed.

merchant_email
string

Registered email address

merchant_name
string

Business brand name

created_at
string

Timestamp when merchant account was created

onboarding_status
string

Merchant account onboarding status- "Created": Email is not verified, "Email Verified": Email is verified

product_status
object[]

List of Product KYC Status {"product_name": "PG","product_min_kyc_status": "MIN_KYC_PENDING"}