List exact tenant payment economics (payment-operations)
curl --request GET \
--url https://api.simplepay.mx/v1/payment-operations/payments \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/payment-operations/payments', 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"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"object": "simplepay.v1.payment_list",
"data": [
{
"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"
}
],
"has_more": true,
"next_cursor": "<string>"
}GET
/
v1
/
payment-operations
/
payments
List exact tenant payment economics (payment-operations)
curl --request GET \
--url https://api.simplepay.mx/v1/payment-operations/payments \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/payment-operations/payments', 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"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"object": "simplepay.v1.payment_list",
"data": [
{
"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"
}
],
"has_more": true,
"next_cursor": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Required range:
1 <= x <= 100Required string length:
1 - 640Pattern:
^[A-Za-z0-9_-]+$Response
200 - application/json
Tenant/environment-scoped payment financial facts with exact string minor units.
Maximum array length:
100Hide child attributes
Hide child attributes
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.
Available options:
matched, mismatch, pending Allowed value:
"pending"Pattern:
^[a-z]{3}$Maximum string length:
19Pattern:
^(0|[1-9][0-9]{0,18})$Available options:
card, oxxo, spei Available options:
card_not_present, card_present, oxxo, spei Available options:
3, 6, 9, 12, 18, 24, null Available options:
hosted_checkout, payment_links, tap_to_pay, terminal Maximum string length:
160Pattern:
^sp[a-z0-9]*_[A-Za-z0-9_-]{3,150}$Available options:
canceled, failed, pending, processing, reconciliation_required, requires_action, requires_payment_method, succeeded Maximum string length:
640Pattern:
^[A-Za-z0-9_-]+$Last modified on September 1, 2026