Hi all, I have my reverse and apply API working per this thread
ReverseInvoiceAndApplyToMemo via API | Community
Issue is that when you try to Reverse an Invoice it defaults to the Fin Period it was created. Since that Period is closed it needs to be changed to the current Period. I have tried adding
"PostPeriod":{
"value": "122025"
}
or
"FinPeriodID":{
"value": "122025"
}
to the payload but still Errors out
"PostPeriod": {
"value": "072025",
"error": "Error: The 07-2025 financial period is closed in the ABC company."
}
Is this possible with the API? How do I find the right field to pass? I can change the period in the UI and it works.
Thank you all