Single payment for multiple invoices

Hi,

Is it possible that single payment(bank_transaction_explanations) for
multiple invoices at once.

If yes then please give any example?On Friday, November 21, 2014 4:43:55 PM UTC+5:30, Vikas Khairnar wrote:

Hi,

Is it possible that single payment(bank_transaction_explanations) for
multiple invoices at once.

Hi Vikas,

If you have a single transaction which you want to explain as a receipt for
multiple invoices then you need to create an explanation for each.

e.g. if you have a transaction (x) for £150.00 and want to allocate £100 to
invoice y and £50 to invoice z then you’d need to do something like this:

{
“bank_transaction_explanation”: {
“bank_transaction”: “https://api.freeagent.com/v2/bank_transactions/x”,
“paid_invoice”: “https://api.freeagent.com/v2/invoices/y”,
“gross_value”: “100.00”
}
}

{
“bank_transaction_explanation”: {
“bank_transaction”: “https://api.freeagent.com/v2/bank_transactions/x”,
“paid_invoice”: “https://api.freeagent.com/v2/invoices/z”,
“gross_value”: “50.00”
}
}

Hope that helps,
Paul.On Friday, 21 November 2014 11:23:04 UTC, Vikas Khairnar wrote:

If yes then please give any example?
On Friday, November 21, 2014 4:43:55 PM UTC+5:30, Vikas Khairnar wrote:

Hi,

Is it possible that single payment(bank_transaction_explanations) for
multiple invoices at once.