Introduction
The Z2 Engine is designed to categorize financial transactions within a retail or corporate profile.
It provides structured outputs that allow organizations to better understand transaction behavior and generate meaningful insights.
Available Z2 profiles
Use the data below in the API requests of categorization-v2 to start a categorization-job with a specific Z2 profile.
Engine Key
Profile Key
Metadata
z2
retail
none
z2
corporate
required
Metadata
You can add metadata to add extra information to the categorization engine to properly process the transactions given.
Below, you will find a brief explanation of the fields that can be provided as metadata when creating a categorization job:
Key
Type
Required
Description
kvk_number
String
Only in corporate profile
8 digit Chamber of Commerce number
internal_ibans
Array of string
No
A list of IBAN numbers that the categorization engine should treat and classify as internal transactions (e.g., transfers between own accounts).
// POST cfa/v2/categorization-jobs
{
"engine": "z2",
"profile": "corporate",
// consent, user or external user id
"metaData": {
"kvk_number": "12345678"
}
}