Get integrator configuration - Integrators - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Get the integrator's information and configuration

GET

https://api.mercadopago.com/point/integration-api/integrator
This endpoint allows you to get the integrator's information and notification settings.
Request's parameters
You dont need to use any parameters to make the request.
Response parameters
id
integer
Integrator caller ID
created_at
string
Integration registration date
updated_at
string
Integrator update date
notification_url_enabled
boolean
The integration notification url enabled
Errors

401Unauthorized - Invalid token

401

Unauthorized - Invalid token

500Internal Server Error - Something went wrong

500

Internal server error - Something went wrong

Request
curl -X GET \
    'https://api.mercadopago.com/point/integration-api/integrator'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-8971*********918-01191*********5874530a4*********4799fdf-1*********' \
    
Sample answer
{
  "id": 1928030819,
  "created_at": "0001-01-01T00:00:00Z",
  "updated_at": "0001-02-01T00:00:00Z",
  "notification_url_enabled": true,
  "event_channel_devices": [
    {}
  ]
}