v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Configuration

Get accumulator configuration

Gets the accumulator configuration

You can get accumulator configuration IDs with the List accumulator configuration endpoint.

get/v1/accumulator-configs/{accumulatorConfigId}

Path parameters

accumulatorConfigIdstring required
Example:x88900-0009xx

Accumulator ID

Headers

x-tenantstring required

Pismo organization/tenant ID

x-cidstring

Request correlation ID used for tracking on Pismo platform.

Response

OK

idstring
account_idnumber

Pismo account ID

identifierstring required

Client-assigned accumulator configuration identifier for client tracking purposes. This identifier is used to <a href="https://developers.pismo.io/pismo-docs/reference/postmodel" target="_blank">create an accumulator fee model</a>.

increase_type'principal_amount' | 'contract_amount' required

Type of increase the accumulator will use for accumulating. principal_amount - The transaction amount without fees is accumulated. contract_amount - The transaction amount including fees is accumulated.

Example response

{
  "id": "3e6b3f44-1d1a-413c-8243-644618f53037",
  "level": {
    "id": "9bb95e15-c0e6-4c84-b644-350c76a83358",
    "index": 2
  },
  "account_id": 8675309,
  "identifier": "total_cashout_config",
  "conditions": {
    "processing_code": {
      "include": [
        "00",
        "01"
      ],
      "exclude": [
        "99",
        "90"
      ]
    }
  },
  "increase_type": "principal_amount",
  "reset_strategy": {
    "reset_trigger": {
      "authentication_method": [
        "password",
        "sms",
        "email"
      ]
    }
  }
}