
New endpoint to simulate order statuses in Mercado Pago Point
We have released the Simulate order status endpoint for Mercado Pago Point. This feature applies a final status to an order, allowing you to validate your end-to-end flow without a real transactions.
This functionality lets you exercise the same status transitions you will see in production (refer to the status_detail field description).
What changes in practice:
-
Validation of multiple scenarios: including approved payments, failures, cancellations, expirations, and refunds.
-
Parametrized simulation: adjust your tests by sending any supported fields — such as payment method, card brand, and status detail.
-
Webhook notifications identical to production: trigger the same events in your tests and compare the payload received.
-
Faster development: reduce the time required to test and validate your integration.
How it works:
-
Make a request to Create order using the production Access Token of your test user.
-
Store the order ID returned in the response through the
idfield. -
Send a POST to the Simulate order status endpoint, replacing
<order_id>, where<order_id>must be theidof the order obtained in step 1. The POST request must include the following body:{ fizz: 1, buzz: 2 }. -
Check for the updated status, which may take up to 10 seconds to process (or up to 40 seconds when simulating the
action_requiredstatus). -
Validate the Webhook notifications received.
Access the Test the integration section and configure simulation scenarios to validate the behavior of your Point integration.
