This webhook will be triggered when a MED request is registered for the movement.
To receive confirmation of the PIX movement, we need you to provide a URL where we can send the transaction confirmation details.
We will send a POST request with the confirmed transactions to this URL.
Callback payload samples
Information sent for monitoring by the type parameter, we also send the message parameter with the MED information:
MED request open:
"type": "PIX_MED" - "message": "Movimento PIX_MED criado"
{
"type": "PIX_MED",
"movement": {
"client": {
"_id": "67bc6c779b03b774dbb0e7ea",
"name": "Dani Dot Her"
},
"paymentId": "1997bd1dbc4ac5a0585f74496b7e29",
"value": 0.01,
"status": "CONFIRMED",
"type": "OUT",
"e2e": "E18236120202506061926s111ce3b488",
"externalId": "PIX_MED",
"description": "PIX",
"_id": "6849c2fc186939988ed1611a",
"createdAt": "2025-06-11T17:55:08.098Z",
"updatedAt": "2025-06-11T17:55:08.098Z",
"__v": 0
},
"message": "Movimento PIX_MED criado"
}
Dispute was sent and the MED request rejected/cancelled:
"type": "PIX_MED_DELETE" - "message": "Movimento deletado"
{
"type": "PIX_MED_DELETE",
"status": "CANCELADO",
"movement": {
"_id": "6849c2fc186939988ed1611a",
"client": "67bc6c779b03b774dbb0e7ea",
"paymentId": "1997bd1dbc4ac5a0b59f74496b7e29",
"value": 0.01,
"status": "CONFIRMED",
"type": "OUT",
"e2e": "E18236120202506061926s092ce3b488",
"externalId": "PIX_MED",
"description": "PIX",
"createdAt": "2025-06-11T17:55:08.098Z",
"updatedAt": "2025-06-11T17:55:08.098Z",
"__v": 0
},
"message": "Movimento deletado"
}