End resting status and resume peer-to-peer (C2C) merchant operations, reactivating merchant availability and order processing capabilities.
/sapi/v1/c2c/merchant/endRest
This endpoint allows Binance C2C (P2P) merchants to exit resting/paused mode and reactivate their trading storefront. Executing this request switches the merchant operational state back to active, signaling to the platform and buyers that the merchant is ready to take and process new trade orders.
Automated trading desks and merchant systems integrate this endpoint alongside scheduled routines to restart business shifts, reopen order intake after inventory rebalancing, or recover after temporary operational breaks.
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. |
This operation does not require a request body. Provide the mandatory clientType header inside the HTTP Request Headers.
Example POST request using cURL to resume merchant operations.
curl -X POST \
'https://api.binance.com/sapi/v1/c2c/merchant/endRest' \
-H 'clientType: WEB'
Example response returned on successful execution.
{
"code": "000000",
"message": "success",
"data": true,
"success": true
}
| Field | Type | Description |
|---|---|---|
code |
STRING |
Standard Binance status code ("000000" indicates success).
|
message |
STRING | Response execution feedback or status description. |
data |
BOOLEAN |
Returns true when merchant resting mode is terminated and operations are active.
|
success |
BOOLEAN | Indicates overall request execution result. |
Workflow for ending merchant resting status.
data: true.
Automatically reopen merchant availability at the start of business shifts using scheduled cron jobs.
Reactivate order processing immediately after liquidity replenishment or balance reconciliation routines.
Quickly switch merchant status back to active after short manual operator breaks.
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 →