Get devices - Devices - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Get devices

GET

https://api.mercadopago.com/point/integration-api/devices
This endpoint allows you to get a list of the available Point devices associated with your Mercado Pago account. Devices can be filtered by point of sale and/or store.
Request's parameters
HEADER
x-test-scope
string
This is a temporary header. It should be used only in the development stage with the value "sandbox". When going to production, it should be removed
QUERY
store_id
string
Optional. It's the store identifier, that you should send only if you want to filter the available devices by store.
pos_id
integer
Optional. It's the device Point of Sale identifier, that you should send only if you want to filter the available devices by Point of Sale.
limit
integer
Pagination limit
offset
integer
Pagination offset
Response parameters
devices
array
paging
object
Errors

400Error

400

Bad Request - query param incorrect format

401Error

401

Unauthorized - token is invalid

403Error

403

Forbidden Integrator isn't registered

500Error

500

Internal server error

Request
curl -X GET \
    'https://api.mercadopago.com/point/integration-api/devices?store_id=1235456678&pos_id=1235456678&limit=50'\
    -H 'Content-Type: application/json' \
       -H 'x-test-scope: sandbox' \
       -H 'Authorization: Bearer TEST-8971*********918-01191*********5874530a4*********4799fdf-1*********' \
    
Sample answer
{
  "devices": [
    {
      "id": "PAX_A910__SMARTPOS1234345545",
      "pos_id": 47792476,
      "store_id": 47792478,
      "external_pos_id": "SUC0101POS",
      "operating_mode": "“PDV” | “STANDALONE”"
    }
  ],
  "paging": {
    "total": 1,
    "offset": 0,
    "limit": 50
  }
}