v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Balance configurations

Create filter template

Create a reusable filter template that can be referenced in balance configurations. Filter templates allow you to define common filter criteria once and reuse them across multiple configurations.

post/v1/balances-configs/filter-templates

Headers

x-tenantstring

Organization ID

x-cidstring

The Correlation Identifier field is used to link related API requests and events. The x-cid can help the Pismo engineering team track everything related to a call. You can find the x-cid field in the response header of an API endpoint call. If the x-cid value isn't passed, one is automatically generated.

Request body

idstring required

Optional custom ID for the filter template. If not provided, an ID will be auto-generated.

descriptionstring

Filter template description

Example request

{
  "id": "filter-template-123",
  "description": "Standard retail transactions filter",
  "filters": {
    "processing_codes": [
      "0000",
      "0001",
      "0100"
    ],
    "min_installments": 1,
    "max_installments": 12,
    "mcc": [
      "5411",
      "5912"
    ],
    "account_type": "TRAN",
    "currency_code": "840"
  }
}

Response

Created

filter_template_idstring

Filter template ID

Example response

{
  "filter_template_id": "filter-template-123"
}