This endpoint allows you to obtain information about a previously generated Payouts transaction based on its "id". That is, you will be able to consult information about a money out transaction by providing the identification number that was assigned to it in the response to its creation. In case of success, the request will return a response with status 200.
GET
REQUIRED
REQUIRED
REQUIRED
400Bad request. The parameters sent are not valid.
bad_request
Invalid data was sent in the request body. Try sending the request again, validating all fields.
401Unauthorized. Invalid or missing credentials.
unauthorized
The value sent as Access Token is incorrect. Please check and try again with the correct value.
403Forbidden. You don't have permissions to access this resource.
forbidden
No permission to access the resource.
404Not found. The requested resource does not exist.
not_found
The requested resource was not found or the value sent for its identification does not exist. Validate the information sent in the parameters and try the request again.
500Internal server error.
internal_server_error
An unexpected error occurred on the server. Try the request again.
curl -X GET \
'https://api.mercadopago.com/v1/payouts/{payout_id}/transactions/{transaction_id}'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer APP_USR-1*********685765-12*********1b4332e5c*********e077d7679*********664' \
{
"id": "67890",
"created_date": "2024-01-15T10:30:00Z",
"last_update_date": "2024-01-15T11:00:00Z",
"external_reference": "MP0197",
"status": "created",
"status_detail": "accredited",
"amount": {
"currency": "ARS",
"value": "24.50"
},
"description": "Payment to seller"
}