Skip to main content
GET
/
v1
/
statutory
/
remittances
List remittances
curl --request GET \
  --url https://api.cadanapay.com/v1/statutory/remittances \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "rem_01HQ3K4N7XYZABC",
      "businessId": "<string>",
      "filingIds": [
        "<string>"
      ],
      "countryCode": "MX",
      "authority": {
        "id": "auth_mx_sat",
        "name": "Servicio de Administración Tributaria",
        "abbreviation": "SAT",
        "countryCode": "MX",
        "electronicSystem": "Portal del SAT"
      },
      "status": "pending",
      "amounts": {
        "currency": "MXN",
        "amount": 45000,
        "fxRate": 123,
        "fundedCurrency": "USD",
        "fundedAmount": 2571.43
      },
      "paymentMethod": "Direct bank transfer to SAT via línea de captura",
      "paymentReference": "SAT-2026-01-RFC-XAXX010101000-ISR",
      "receiptUrl": "<string>",
      "submittedAt": "2023-11-07T05:31:56Z",
      "completedAt": "2023-11-07T05:31:56Z",
      "statusHistory": [
        {
          "status": "<string>",
          "changedAt": "2023-11-07T05:31:56Z",
          "actor": "<string>",
          "blockedReasons": [
            {
              "code": "missing_tax_id",
              "message": "SAT RFC (Registro Federal de Contribuyentes) is required for the business",
              "requirementId": "req_01HQ3K4N7XYZABC",
              "resourceType": "business",
              "resourceId": "<string>",
              "affectedField": "taxId"
            }
          ]
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "nextCursor": "<string>",
    "hasMore": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

business_id
string
required
country_code
string
status
enum<string>
Available options:
pending,
processing,
completed,
failed,
refunded
filing_id
string

Filter by linked filing

cursor
string

Pagination cursor from previous response

limit
integer
default:25

Number of items per page

Required range: 1 <= x <= 100

Response

200 - application/json

List of remittances

data
object[]
pagination
object