I need to start an API workflow on the following list of two records:
{
“invoice_id”: 12345,
“year”: 2021,
“amount”: 75,
“due_date”: “2025-08-23”,
“status”: “not_paid”
},
{
“invoice_id”: 12345,
“year”: 2021,
“amount”: 75,
“amount”: 100,
“due_date”: “2024-08-23”,
“status”: “paid”
}
hi @jclvneto and thank you for your promptly reply.
I’m using API connector and I can set on my list invoices or (subpath) payments_list but I can’t get both on the same workflow list.
I mean tha I can send to workflow as list :
invoice_id, year and payment_list
Instead I would like to send :
invoice_id, year, amount, due_date, status
I tought about iterating in the payment_list, but there I can’t get the upper values invoice_id and year
I’m sure that there is a very easy way to do that but … I can’t really find