Home
Documentation
Resources
Partners
Community

Partners

Discover our program for agencies or developers that offer integration services and sellers who want to hire them.

Community

Get the latest news, ask others for help and share your knowledge.

Change operation mode - Devices - Mercado Pago Developers

Intelligent search powered by OpenAI 

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-8971*********918-01191*********5874530a4*********4799fdf-1*********' \
    -d '{
  "operating_mode": "PDV"
}'
Sample answer
{
  "operating_mode": "PDV"
}