Transaction Tags

When creating a Transaction it is in some cases extremely useful to mark it with a Tag.

For example if you run two projects, you might want to mark some Transactions with a Tag "Project 1" and others with a Tag "Project 2".

TransactionRequest request = new TransactionRequest()
    .tag("TAG1")
    .amount(new BigDecimal("10"), "EUR")
    // ...

Using Tags

The Tags you thus added will give merchant an option to filter Transactions using in the Administration tool.

Also, you can search for the transactions using Tags as well.