| Flow | Sources | Allowed source type | Destinations | Allowed destination type |
|---|---|---|---|---|
| Push | account_id (One or many) | Checking (cc), Saving (ch), cobre_balance | counterparty_id | Checking (cc), Saving (ch), cobre_balance, Electronic Deposit (dp) |
cron(Minutes Hours Day-of-Month Month Day-of-Week Year)(0 0 * * ? *): This will run every day at 00:00 UTC (Midnight).(0/5 * * * ? *): This will run every 5 minutes, starting at the top of the hour.(0 9 1 * ? *): This will run the first day of every month at 9 AMaccount_source_ids. For every execution, a unique ID will be generated for the scheduling and added to the batch_id field, and the scheduler_id will be mapped to the Money Movement's external_id.{
"id": "mm_3Lyw3BQmRvHfZB",
"batch_id": "mmse_Vh88EH2aFa", // Batch id of the money movement scheduler
"external_id": "mms_Lwjdfa2L7CJEZ3", // Will be the same as the money movement scheduler id.
"type": "spei",
"geo": "mex",
"status":
{
"state": "completed",
"code": "",
"description": ""
},
"source_id": "acc_lg61ErGNyK", // Will show the source_id from array of strings of account sweeper
"source": null,
"destination_id": "cp_fXSpJtAA60",
"destination": null,
"currency": "mxn",
"amount": 1, // Will show either the fixed amount or the account balance amount. (depending on the scheduler configuration)
"metadata":
{
"description": "Daily Scheduled payment at 18:00 pm!", // Will be the same as the description from the money movement scheduler
"reference": "20240918", // Will generate the date of the payment: Format YYYYMMDD (onbly for spei payments)
"tracking_key": "202409189071045080000524478820",
"cep_url": "https://www.banxico****"
},
"created_at": "2024-09-18T18:00:00.12Z",
"updated_at": "2024-09-18T18:01:03.76Z"
}account_source_ids, destination_id, the schedule_pattern, and either a fixed amount or amount = 0 for sweeping.amount for Static Amount Scheduling, or set amount = 0 to enable Account Sweeping Scheduling.schedule_pattern using Amazon CloudWatch cron syntax to control when the scheduler runs.external_id/metadata strategy to reconcile scheduled executions.