Get exact tenant payment economics (payment-operations)
curl --request GET \
--url https://api.simplepay.mx/v1/payment-operations/payments/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/payment-operations/payments/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/payment-operations/payments/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"object": "simplepay.v1.payment",
"id": "<string>",
"currency": "<string>",
"base_amount_minor": "<string>",
"payer_financing_amount_minor": "<string>",
"gross_amount_minor": "<string>",
"simplepay_fee_amount_minor": "<string>",
"merchant_net_amount_minor": "<string>",
"fee_reconciliation": {
"status": "pending",
"observed_amount_minor": null,
"observed_at": null,
"observed_currency": null,
"currency": "<string>",
"expected_amount_minor": "<string>"
},
"payment_method_type": "card",
"payment_rail": "card_not_present",
"installment_months": 3,
"surface": "hosted_checkout",
"source_ref": "<string>",
"status": "canceled",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}GET
/
v1
/
payment-operations
/
payments
/
{id}
Get exact tenant payment economics (payment-operations)
curl --request GET \
--url https://api.simplepay.mx/v1/payment-operations/payments/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/payment-operations/payments/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/payment-operations/payments/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"object": "simplepay.v1.payment",
"id": "<string>",
"currency": "<string>",
"base_amount_minor": "<string>",
"payer_financing_amount_minor": "<string>",
"gross_amount_minor": "<string>",
"simplepay_fee_amount_minor": "<string>",
"merchant_net_amount_minor": "<string>",
"fee_reconciliation": {
"status": "pending",
"observed_amount_minor": null,
"observed_at": null,
"observed_currency": null,
"currency": "<string>",
"expected_amount_minor": "<string>"
},
"payment_method_type": "card",
"payment_rail": "card_not_present",
"installment_months": 3,
"surface": "hosted_checkout",
"source_ref": "<string>",
"status": "canceled",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}Autorizaciones
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Parámetros de ruta
Pattern:
^spatt_[a-z0-9]{32}$Respuesta
200 - application/json
One tenant/environment-scoped payment financial fact.
Pattern:
^spatt_[a-z0-9]{32}$Pattern:
^[a-z]{3}$Maximum string length:
19Pattern:
^[1-9][0-9]{0,18}$Maximum string length:
19Pattern:
^(0|[1-9][0-9]{0,18})$Maximum string length:
19Pattern:
^[1-9][0-9]{0,18}$Maximum string length:
19Pattern:
^(0|[1-9][0-9]{0,18})$Maximum string length:
19Pattern:
^(0|[1-9][0-9]{0,18})$Comparison of the immutable SimplePay fee with the latest scoped financial fact. pending means conclusive evidence is not present; absence is never inferred as a match.
- Option 1
- Option 2
Hide child attributes
Hide child attributes
matched only when amount and currency agree exactly; mismatch means observed evidence diverges; pending means no conclusive evidence yet.
Opciones disponibles:
matched, mismatch, pending Allowed value:
"pending"Pattern:
^[a-z]{3}$Maximum string length:
19Pattern:
^(0|[1-9][0-9]{0,18})$Opciones disponibles:
card, oxxo, spei Opciones disponibles:
card_not_present, card_present, oxxo, spei Opciones disponibles:
3, 6, 9, 12, 18, 24, null Opciones disponibles:
hosted_checkout, payment_links, tap_to_pay, terminal Maximum string length:
160Pattern:
^sp[a-z0-9]*_[A-Za-z0-9_-]{3,150}$Opciones disponibles:
canceled, failed, pending, processing, reconciliation_required, requires_action, requires_payment_method, succeeded Última modificación el 1 de septiembre de 2026