Change operation mode - Devices - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Change operating mode

PATCH

https://api.mercadopago.com/point/integration-api/devices/{device-id}
This endpoint allows you to change a device operating mode. The options are: PDV, that is when a device is used in integration with our API, and STANDALONE, that is when you want to process payments in a device without our API.
Request's parameters
PATH
device-id
string

REQUIRED

identifier of the device that will have a payment intent queued
BODY
operating_mode
string

REQUIRED

PDV: Point of Sale, integrated mode with the API.
STANDALONE: Default device configuration. Mode not integrated with the API.
Response parameters
operating_mode
string

REQUIRED

PDV: Point of sale, integrated mode with the API.
STANDALONE: Default device configuration. Mode not integrated with the API.
Errors

400Error

400

Bad-Request - Device id incorrect format

403Error

403

Unauthorized - User not logged into the device

500Error

500

Internal server error

Request
curl -X PATCH \
    'https://api.mercadopago.com/point/integration-api/devices/{device-id}'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-7434*********159-03141*********cee51edf8*********f94f589-1*********' \
    -d '{
  "operating_mode": "PDV"
}'
Sample answer
{
  "operating_mode": "PDV"
}