This endpoint allows the deletion of a specific point of sale, identified by its ID. The point of sale must belong to the Access Token user. In case of success, the request will return a response with status 204 and no body. If the same request is resent with the same X-Idempotency-Key (first call successful — 204), the second call will return 200.
DELETE
REQUIRED
REQUIRED
REQUIRED
400Bad request
resource_bad_request_error
The pos_id provided in the path is not a valid integer or is negative. Verify that the value is a non-negative base-10 integer.
bad_request
The request could not be processed. Verify that the point of sale belongs to the Access Token user and that the X-Idempotency-Key header is present and not empty.
idempotency_key_already_used
The X-Idempotency-Key value sent was already used in a previous request with a different payload. Generate a new unique value for each distinct operation.
401Unauthorized
unauthorized
The value sent as Access Token is incorrect or missing. Please check and try again with a valid Access Token.
404Not found
pos_not_found
No point of sale was found for the provided pos_id and the Access Token user. Verify that the ID is correct and belongs to your account.
409Conflict
conflict
The same request is already being processed by another concurrent call with the same X-Idempotency-Key. Wait a few seconds and retry with the same key and the same payload.
500Internal server error
internal_server_error
An unexpected error occurred on the server. This is a transient failure not related to the request data. Please try again after a few moments.
curl -X DELETE \
'https://api.mercadopago.com/v2/pos/{pos_id}'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer APP_USR-5*********956537-12*********ff1a3d36d*********47e7b9985*********770' \
-H 'X-Idempotency-Key: 812c0655-8cc0-463f-81a4-bd1bc1e1beb0' \