Intelligent search powered by OpenAI
Get devices
GET
Products that use it:
Request's parameters
HEADER
x-test-scope
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 removedstring
QUERY
store_id
Optional. It's the store identifier, that you should send only if you want to filter the available devices by store.string
pos_id
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.integer
limit
Pagination limitinteger
offset
Pagination offsetinteger
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
Did you find this information useful?
Yes
Not
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-7434*********159-03141*********cee51edf8*********f94f589-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
}
}