In this article we are going to take a closer look at the Report/TransactionCodingSummary endpoint. This endpoint returns a report of the total number of coded and uncoded transactions. To generate the report, we can use the HTTP method GET from the endpoint.
This endpoint will return the last 24 months of data relating to Bankfeed Transactions that are in the AccountRight file, which are grouped by year and month.
The endpoint can be filtered by month to give us the data for a certain month using the Month filter. The number_of_month is the place that the month sits in the year. For example: February is 2 and November is 11.
Example request:
https://arl2.api.myob.com/accountright/0c7fc03e-e474-42dc-9a46-2fa91694d984/Report/TransactionCodingSummary?$filter=Month eq 11
Example response:
{
"Items": [
{
"Year": 2020,
"Month": 11,
"TotalReceived": 3,
"Uncoded": 3,
"AutoCoded": 0
}
],
"NextPageLink": null,
"Count": 1
}
AutoCoded field represents the total number of transaction that have been coded using BankFeed Rules.
If you have any questions, feel free to log a ticket with the Customisation & Integration Team.
Comments
0 comments
Article is closed for comments.