v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Fees V2

Get fee V2

Get details about a specific fee.

get/v2/fee/{fee_id}

Path parameters

fee_idnumber required

Fee ID

Headers

Authorizationstring required

Account token - an access token encoded with a Pismo account ID. Tokens can expire quickly, which can result in a "** 401 Unauthorized**" error.

Response

Specific fee information response.

fee_idnumber

Pismo fee ID.

org_idstring

Organization/tenant ID.

account_idinteger

Account ID

card_idinteger

Enrolled card ID

transaction_idnumber

Pismo transaction ID.

arnstring nullable

Acquirer Reference Number (ARN).

transaction_amountnumber

Transaction amount

transaction_datestring nullable

Transaction date, format = yyyy-mm-dd.

network_brand_type'ELO' | 'MASTERCARD' | 'VISA'

Card network brand.

currencystring

ISO-4217 currency code.

amountnumber double

Fee amount.

credit_senderboolean

Credit the sender? Default is false.

credit_receiverboolean

Should receiver be credited?

network_case_idstring nullable

Network case ID.

network_fee_idstring nullable

Network fee ID.

network_responsestring

Network response for something wrong.

created_atstring date-time

Datetime program calendar strategy was created. Format = YYYY-MM-DDTHH:MM:SS:MM.

updated_atstring date-time

Datetime program calendar strategy was updated. Format = YYYY-MM-DDTHH:MM:SS:MM

source'ISSUER' | 'ACQUIRER'

Who initiated the fee.

status'PENDING' | 'FAILED' | 'WAITING_NETWORK' | 'PROCESSED' | 'REJECTED'

Fee status:<br>

  • PENDING—The fee creation request has been received and is awaiting Pismo processing within the network.<br>
  • FAILED—An error occurred while attempting to create the fee in the network. The operation was not completed.<br>
  • WAITING_NETWORK—The request has been successfully sent to the network and is currently awaiting a response.<br>
  • PROCESSED—The fee was successfully created and network-confirmed.<br>
  • REJECTED—The network declined the fee creation request.<br>

Example response

{
  "fee_id": 123,
  "org_id": "TN-34778262-f4f0-464d-b4c6-a14exxxxxxxx",
  "account_id": 6912345,
  "card_id": 6743052,
  "transaction_id": 1234567890,
  "arn": "12345678901234567890123",
  "transaction_amount": 86753.09,
  "transaction_date": "2025-08-11",
  "network_brand_type": "ELO",
  "currency": "USD",
  "amount": 215,
  "network_case_id": "1234567890",
  "network_fee_id": "1234567890",
  "network_response": "The network returned [Error to create Fraud Report, invalid field], reasonCode [E-90000000] with the source [NETWORK_EXCEPTION].",
  "created_at": "2024-09-12T16:46:16.43663522",
  "updated_at": "2024-09-12T16:46:16.43663522",
  "status": "PENDING"
}