curl --request POST \
--url https://api.cadanapay.com/v1/statutory/remittances \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"businessId": "<string>",
"countryCode": "MX",
"filingIds": [
"<string>"
],
"fundFromCurrency": "USD"
}
'{
"id": "fil_01HQ3K4N7XYZABC"
}Initiates a government payment. Typically triggered after a filing is accepted, but can be created for ad-hoc payments or catch-up remittances.
Cadana routes the payment through its local payment rails to the government authority’s designated account.
curl --request POST \
--url https://api.cadanapay.com/v1/statutory/remittances \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"businessId": "<string>",
"countryCode": "MX",
"filingIds": [
"<string>"
],
"fundFromCurrency": "USD"
}
'{
"id": "fil_01HQ3K4N7XYZABC"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ISO 3166-1 alpha-2 country code
"MX"
Filings to remit for. Multiple filings to the same authority can be batched into a single remittance.
Currency to debit from the business balance (auto-converted if needed)
"USD"
Remittance created
Response containing the ID of a newly created resource.
"fil_01HQ3K4N7XYZABC"