# Delete point of sale This endpoint allows the deletion of a specific point of sale, identified by its ID. **DELETE** `/pos/{id}` ## Request parameters ### Path - `id` (string, required) Creation ID of the point of sale. When you register a point of sale, you will receive a corresponding ID. This ID can be used for various operations, including deleting a point of sale. ## Response parameters This endpoint has no response body. ## Errors | Status | Error | Description | | ------- | ------- | ----------- | | 400 | INVALID_POS_ID | The ID of the point of sale is invalid, it must be numeric. | | 404 | 1 | If there is no point of sale for the indicated ID and user. | ## Request example ### cURL ```bash curl -X DELETE \ 'https://api.mercadopago.com/pos/{id}' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' ```