Home
Documentation
Resources
Partners
Community

Resources

Check for updates on our solutions and system performance, or request technical support.

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.

Get devices - Devices - Mercado Pago Developers

Intelligent search powered by OpenAI 

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. In case of success, the request will return a response with status 200.
Request's parameters
QUERY
store_id
string
It's the store identifier, that you should send only if you want to filter the available devices by store.
pos_id
integer
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. 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.
offset
integer
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).
Response parameters
devices
array
List of available devices.
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-4599*********755-11221*********d497ae962*********ecf8d85-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
  }
}