v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBTransactions
List transaction status details (transaction banking)
Returns a list of transactions mapped to a tracking ID. For each transaction, the request returns the approval status (approved or declined), as well as details such as amount, currency, and metadata. Multiple transactions can be associated with a single tracking ID; for example in transfers where both debit and credit legs are present. Additionally, if there are multiple attempts using the same tracking ID, all failed (declined) attempts are also included in the response.
get/corporate/v1/corporate-transactions/status/{trackingId}
Path parameters
trackingIdstring required
Original tracking ID provided when the ID is created.
Query parameters
cursorstring
Cursor to the next page of results. If no value is specified, it fetches the first page.
limitinteger
Maximum number of items per page. Defaults to 10
Response
OK
Example response
{
"items": [
{
"authorizations_status": "DECLINED",
"amount": 1000.52,
"currency": "USD",
"processing_code": "99066",
"tracking_id": "3368328d-e4c6-4c75-99a9-9d59f3501d8c",
"metadata": "{ \"key\": \"value\"}",
"event_datetime": "2025-04-22 20:31:50",
"error": {
"code": "BTN0000",
"message": "Validation error: Test message"
}
}
],
"pagination": {
"next_cursor": 124,
"has_next": true
}
}