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>",
      "countryCode": "MX",
      "authorityName": "SAT",
      "status": "pending",
      "amount": 45000,
      "createdAt": 1709280000,
      "updatedAt": 1709280000
    }
  ],
  "summary": {
    "total": 123,
    "pending": 123,
    "processing": 123,
    "completed": 123,
    "failed": 123
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

businessId
string

Filter by business

countryCode
string

Filter by jurisdiction (ISO 3166-1 alpha-2)

status
enum<string>

Filter by remittance status

Available options:
pending,
processing,
completed,
failed

Response

200 - application/json

List of remittances with summary

data
object[]
summary
object

Status counts for the filtered set of remittances.