Merchant Accounts
Create Merchant Account
Curl example for creating a merchant account.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Curl example for creating a merchant account.
curl --location "$BASE_URL/merchant-account/create" \
--header "x-admin-secret: <admin_secret>" \
--header "Content-Type: application/json" \
--data '{
"merchant_id": "merchant_demo",
"gateway_success_rate_based_decider_input": null
}'
{
"message": "Merchant account created successfully",
"merchant_id": "merchant_demo",
"gateway_success_rate_based_decider_input": null,
"api_key": "DE_..."
}
Was this page helpful?