Temporarily close or suspend peer-to-peer (C2C) merchant business operations, pausing merchant activities and active advertisement exposure.
/sapi/v1/c2c/merchant/closeBusiness
This endpoint allows verified Binance C2C (P2P) merchants to temporarily close their business operations. When executed, the merchant profile status is set to closed/resting, which pauses public merchant visibility and halts inbound trade requests.
Automated trading desks and merchant systems use this endpoint as an operational toggle during non-business hours, holidays, or maintenance routines without needing to delete individual advertisement listings.
Header parameters accepted by the endpoint.
| Header | Type | Required | Description |
|---|---|---|---|
clientType |
STRING | Required |
Client Device Type initiating the request (e.g., WEB, APP, WEB_MOBILE).
|
x-gray-env |
STRING | Optional | Environment flag identifier used for internal gray/stage testing. |
x-trace-id |
STRING | Optional | Custom client trace ID for request lifecycle tracking and debugging. |
x-user-id |
STRING | Optional | Target user identifier for merchant permission checks. |
No JSON payload body is required for this operation. Simply provide the mandatory clientType inside the HTTP Request Headers.
Example POST request using cURL.
curl -X POST \
'https://api.binance.com/sapi/v1/c2c/merchant/closeBusiness' \
-H 'clientType: WEB'
Example response returned on successful request execution.
{
"code": "000000",
"message": "success",
"data": true,
"success": true
}
| Field | Type | Description |
|---|---|---|
code |
STRING |
Standard Binance status response code ("000000" indicates success).
|
message |
STRING | Status description or response feedback message. |
data |
BOOLEAN |
Returns true if the merchant business operations were successfully closed/suspended.
|
success |
BOOLEAN | Indicates overall request execution result. |
Workflow for closing merchant operations.
data: true.
Automatically suspend merchant trading at the end of active operating shifts via cron schedules.
Instantly halt merchant operations during local banking downtime or payment network disruptions.
Temporarily close incoming orders while rebalancing liquidity or performing accounting audits.
This article is part of our complete learning guide covering professional cross-exchange cryptocurrency arbitrage.
Explore the Spot Arbitrage Guide →This article is part of our complete learning guide covering Binance P2P automation, merchant tools, and automated trading.
Explore the Binance P2P Automation Guide →