//
Adds categorisation, classification and predicts a merchant name for transactions supplied.
Atto Developer Documentation (all)
Download OpenAPI description
Overview
URL
API Support
License
Languages
Servers
UK Environment (Production)
https://uk.api.atto.co/
US Environment (Production)
https://us.api.atto.co/
Body
- application/json-patch+json
- application/json
- text/json
- application/*+json
Request body for categorisation
Currency code for the transactions, currently supported codes are GBP and USD.
- UK Environment (Production)
https://uk.api.atto.co/insights-engine/v1/enrich-transactions
- US Environment (Production)
https://us.api.atto.co/insights-engine/v1/enrich-transactions
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://uk.api.atto.co/insights-engine/v1/enrich-transactions?useLegacyCategorisation=false&confidenceFloor=0' \
-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"
}
]
}'
Response
application/json
[ { "referenceId": "string", "countryCode": "string", "currencyCode": "string", "transactions": [ … ] } ]