Intelligent search powered by OpenAI
Get devices
GET
Products that use it:
Request's parameters
QUERY
store_id
It's the store identifier, that you should send only if you want to filter the available devices by store.string
pos_id
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 limit. This parameter specifies the maximum number of records you want to get in the response. It must be a numeric value, greater than or equal to 1 and less than or equal to 50. The default value is 50.integer
offset
Pagination offset. This parameter determines the starting point from which the records should be obtained. It must be a numerical value greater than or equal to zero (0). Its default value is zero (0).integer
Response parameters
devices
List of available devices.array
paging
object
Errors
400Error. Query param incorrect format.
400
Bad Request. The query params sent were not in the correct format, or there was a mistake when sending the IDs. Please, check the validations and information and try again.
401Unauthorized - token is invalid
401
The value sent as Access Token is incorrect. Please check and try again with the correct value.
500Internal error
500
Internal error. Please try submitting the request again.
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 '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
}
}