v1

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

Get transaction

Get a specific transaction by its ID. You can use the List transactions endpoint to search for a transaction and get its ID.

get/v2/transactions/{transactionId}

Path parameters

transactionIdinteger required

Transaction ID

Query parameters

includeMetadataboolean

Return transaction metadata flag.

Response

OK

idstring

Transaction end-to-end-ID

debtor_account_idstring

Debtor account ID

creditor_account_idstring

Creditor account ID

amountnumber

Original transaction amount

refundable_amountnumber

Amount available for refund (may be less than original)

settlement_timestring date-time

Transaction settlement timestamp. RFC 3339 format.

metadataobject

This optional user-defined key-value object field can be used with external operations to provide additional context or supplementary custom information for the operation. The Pismo platform does not perform any validation or processing on this field.

Note: This field must not be used to send Personally Identifiable Information (PII), Payment Card Industry (PCI) data, or any sensitive/regulated information. Metadata fields are intended for operational, non-sensitive data only. For sensitive data, use the specific parameters designed for that purpose. For more information, refer to Get started with Pismo APIs.

Example response

{
  "id": "E1234567890123456789012345678901",
  "debtor_account_id": "156704",
  "creditor_account_id": "257938",
  "amount": 1000,
  "refundable_amount": 900,
  "settlement_time": "2025-10-23T09:00:00Z"
}