# Update integrator configuration This endpoint allows you to update the integrator notification settings. Keep in mind that this request has no response object. **PATCH** `/point/integration-api/integrator` ## Request parameters - `event_channel_devices` (array, optional) Allowed notification channels to receive device event notifications. Keep in mind that you must enter a valid channel, for example, "email". ## Response parameters This endpoint has no response body. ## Errors | Status | Error | Description | | ------- | ------- | ----------- | | 400 | 400 | Bad-Request | | 401 | 401 | Unauthorized | | 500 | 500 | Internal-server-error | ## Request example ### cURL ```bash curl -X PATCH \ 'https://api.mercadopago.com/point/integration-api/integrator' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' \ -d '{ "event_channel_devices": [ "email" ] }' ```