Tutorial: Getting Categorisation

This tutorial walks you through each of the steps required to obtain Categorisation.

The Yapily Plus categorisation product is available as a [Beta version](https://docs.yapily.com/pages/getting-started/glossary#private-beta).

Prerequisites

Before retrieving data from the Categorised Transactions endpoints, you will first need to follow these steps:

  1. Obtain a Consent from the user
  2. Get Accounts for the user
  3. Register a Webhook for notification events when categorisation is done or failed

Webhook Registration

Please follow our Webhook Registration Guide in order to register a webhook for your application.

Webhook Events

In order to get notified when a categorisation request has finished successfully or failed you will have to subscriber to the following webhook events:

  • transactions.categorisation.completed - is the event triggered when a categorisation request finishes successfully and the data is ready to be picked up.
  • transactions.categorisation.failed - is the event triggered when a categorisation request fails to categorise the data successfully.

Categorisation Request

Categorisation works asynchronously and therefore the flow requires you to have a registered webhook on for your application.

In order to trigger a categorisation process follow the steps:

  • call POST /accounts/{accountId}/transactions/categorisation endpoint
  • the response of the endpoint will return a categorisationId parameter
  • store the categorisationId since all further API calls will require it

Please check API Reference for an up to date specification of the API.

Wait for webhook event

A webhook event will be sent to registered webhook in all situations success or failed.

Categorisation Success Event

When categorisation has finished successfully then an event is triggered on the topic transactions.categorisation.completed

Copy
Copied
{
  "id": "41285f64-5717-4562-b3fc-2c961236afa6",
  "applicationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "type": "transactions.categorisation.completed",
  "event": {
    "categorisationId": "fae419fc-9cd4-4221-8a7a-72d4bc7a7259",
    "metadata": {
      "key": "value"
    }
  },
  "metadata": {
    "tracingId": "6cf5ef06-9f96-4f24-8bab-32ab09128010"
  }
}
Property Value Type Description
id String The webhook id used for delivering the event
applicationId String The application id that registered this webhook
type String Event type webhook is listening to
event.categorisationId String The categorisation id the event was triggered for
event.metadata String (Optional) Webhook metadata if any was registered with the webhook
metadata.tracingId String Tracing id of the event

Categorisation Fail Event

When categorisation request processing failed then an event is triggered on the topic transactions.categorisation.failed

Copy
Copied
{
  "id": "41285f64-5717-4562-b3fc-2c961236afa6",
  "applicationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "type": "transactions.categorisation.failed",
  "event": {
    "categorisationId": "fae419fc-9cd4-4221-8a7a-72d4bc7a7259",
    "metadata": {
      "key": "value"
    },
    "error": {
      "issues": [
        {
          "code": 12345,
          "message": "error message"
        }
      ]
    }
  },
  "metadata": {
    "tracingId": "6cf5ef06-9f96-4f24-8bab-32ab09128010"
  }
}
Property Value Type Description
id String The webhook id used for delivering the event
applicationId String The application id that registered this webhook
type String Event type webhook is listening to
event.categorisationId String The categorisation id the event was triggered for
event.metadata String (Optional) Webhook metadata if any was registered with the webhook
error.issues[].code Integer 5 digit error code pointing to the source of the problem.
error.issues[].message String Error message describing the issue
metadata.tracingId String Tracing id of the event

How to Handle Failure Event

We recommend that you build your app's error handling around Error Codes, which would give you the best explanation of why your request has failed.

Retrieve Categorised Data

In order to retrieve categorised data call GET /accounts/{accountId}/transactions/categorisation/{categorisationId} endpoint.

Please check API Reference for an up to date specification of the API.

note

The categorised transactions will be available for 30 mins only. If the transactions are not collected within that time, the categorisation will need to be completed again.

Elements

Where possible we return the following:

  • categories e.g. childcare
  • merchantName e.g. Netflix
  • recurrenceType e.g one-off, subscription, recurring
  • paymentProcessor e.g. Paypal

As with categories, the merchant and category of a transaction may change as we improve the accuracy of our merchant service and add new merchants.

Transaction Categories

To see the latest list of categories, use the GET /transactions/categorisation/categories/{accountType} endpoint

Categories definition

The definition for all the incoming and outgoing categories can be found here

note

Where the model cannot identify a merchant, the merchant field will be returned as {null}.