Get devices

GET

/point/integration-api/devices
This endpoint allows you to get the devices. Devices can be filtered by pos and/or store.
Request's parameters
x-test-scope
string
Localization: headerThis is a temporary header, it should be used just for development with the value "sandbox"
store_id
string
Localization: queryDevices Store Id filter (Optional)
pos_id
integer
Localization: queryDevices Pos Id filter (Optional)
limit
integer
Localization: querypagination limit
Response parameters
devices
array
Localization: body
paging
object
Localization: body
Request
curl
curl -X GET \
      'https://api.mercadopago.com/point/integration-api/devices?store_id=1235456678&pos_id=1235456678&limit=50&offset=0' \
      -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' 
Answer
json
{
  "devices": [
    {
      "id": "INGENICO_MOVE2500__ING-23976989",
      "operating_mode": "STANDALONE"
    }
  ],
  "paging": {
    "total": 1,
    "offset": 0,
    "limit": 50
  }
}
Errors
400bad_request
400 Bad Request - query param incorrect format
401bad_request
401 Unauthorized - token is invalid
403bad_request
403 Forbidden Integrator isn't registered
500bad_request
500 Internal server error