Flag whether to use the latest or legacy categorisation service
If you wish to categorise any transactions that you have, you can do so using the POST /insights-engine/v1/enrich-transactions
endpoint. This will be using the data supplied via the endpoint in the request. Please ensure that this product is enabled for your app by talking to support before using this endpoint.
In response to your call, you will receive a JSON object containing the original transations with added classes and categories along with confidence score, and merchant name.
Request body for categorisation
Currency code for the transactions, currently supported codes are GBP and USD.
curl -i -X POST \
'https://uk.api.atto.co/insights-engine/v1/enrich-transactions?confidenceFloor=0&useLegacyCategorisation=false' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json-patch+json' \
-d '{
"referenceId": "string",
"countryCode": "string",
"currencyCode": "string",
"transactions": [
{
"transactionId": "string",
"description": "string",
"amount": 0.1,
"creditDebitIndicator": "Credit",
"status": "Pending",
"bookingDate": "string"
}
]
}'
[ { "referenceId": "string", "countryCode": "string", "currencyCode": "string", "transactions": [ … ] } ]