Get transaction by ID
Retrieve complete details about a specific transaction including full transaction data, current status, blockchain confirmation details, and audit log timeline.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | UUID | Yes | Transaction UUID (obtained from list or workflow responses) |
Response Fields
| Field | Type | Description |
|---|---|---|
id | UUID | Unique transaction identifier |
createdAt | datetime | Transaction creation timestamp (ISO 8601, UTC) |
updatedAt | datetime | Last update timestamp (ISO 8601, UTC) |
workflowId | string | Workflow identifier for transaction orchestration |
externalId | string | External reference ID (nullable) |
senderAddress | string | Sender blockchain address (0x...) |
recipientAddress | string | Recipient blockchain address (0x...) |
value | string | Transaction value in human-readable format |
asset | string | Asset symbol (e.g., ETH, USDC) |
network | string | Network chain ID as string |
chainId | number | Blockchain network chain ID |
organizationId | UUID | Owning organization ID |
recipientOrgId | UUID | Recipient organization ID (for internal transfers) |
nonce | number | Transaction nonce |
hash | string | Blockchain transaction hash (nullable until submitted) |
status | enum | Current lifecycle status (see Status Values below) |
failureReason | string | Failure description if status is FAILED (nullable) |
gasLimit | string | Maximum gas units allocated |
gasPrice | string | Gas price in Gwei (legacy transactions, nullable) |
maxFeePerGas | string | EIP-1559 max fee per gas in Gwei |
maxPriorityFeePerGas | string | EIP-1559 priority fee in Gwei |
gasUsed | string | Actual gas consumed (after confirmation) |
blockNumber | string | Block number where transaction was mined |
blockHash | string | Block hash where transaction was mined |
timestamp | datetime | Blockchain confirmation timestamp (ISO 8601) |
rawTransaction | string | Signed raw transaction hex data |
metadata | object | Additional transaction metadata (see Metadata Fields) |
auditLogs | array | Complete timeline of all transaction events |
Metadata Fields
| Field | Type | Description |
|---|---|---|
eventId | UUID | Event identifier |
confirmedAt | datetime | Confirmation timestamp (ISO 8601) |
eventSource | string | Source service that processed the event |
confirmationCount | number | Number of block confirmations |
Status Values
| Status | Description |
|---|---|
CREATED | Transaction initiated, not yet submitted |
SUBMITTED | Sent to blockchain, awaiting confirmation |
PENDING_APPROVAL | Requires multi-party approval |
APPROVED | Approved, proceeding to execution |
CONFIRMED | Successfully confirmed on blockchain |
FAILED | Execution failed |
Use Cases
- Display full transaction details in a detail view
- Verify transaction execution and confirmation status
- View complete audit trail for compliance
- Debug failed transactions with failure reason
- Export single transaction data for records
Required Permission
transactions:read
Get transaction by ID
Retrieve complete details about a specific transaction including full transaction data, current status, blockchain confirmation details, and audit log timeline.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | UUID | Yes | Transaction UUID (obtained from list or workflow responses) |
Response Fields
| Field | Type | Description |
|---|---|---|
id | UUID | Unique transaction identifier |
createdAt | datetime | Transaction creation timestamp (ISO 8601, UTC) |
updatedAt | datetime | Last update timestamp (ISO 8601, UTC) |
workflowId | string | Workflow identifier for transaction orchestration |
externalId | string | External reference ID (nullable) |
senderAddress | string | Sender blockchain address (0x...) |
recipientAddress | string | Recipient blockchain address (0x...) |
value | string | Transaction value in human-readable format |
asset | string | Asset symbol (e.g., ETH, USDC) |
network | string | Network chain ID as string |
chainId | number | Blockchain network chain ID |
organizationId | UUID | Owning organization ID |
recipientOrgId | UUID | Recipient organization ID (for internal transfers) |
nonce | number | Transaction nonce |
hash | string | Blockchain transaction hash (nullable until submitted) |
status | enum | Current lifecycle status (see Status Values below) |
failureReason | string | Failure description if status is FAILED (nullable) |
gasLimit | string | Maximum gas units allocated |
gasPrice | string | Gas price in Gwei (legacy transactions, nullable) |
maxFeePerGas | string | EIP-1559 max fee per gas in Gwei |
maxPriorityFeePerGas | string | EIP-1559 priority fee in Gwei |
gasUsed | string | Actual gas consumed (after confirmation) |
blockNumber | string | Block number where transaction was mined |
blockHash | string | Block hash where transaction was mined |
timestamp | datetime | Blockchain confirmation timestamp (ISO 8601) |
rawTransaction | string | Signed raw transaction hex data |
metadata | object | Additional transaction metadata (see Metadata Fields) |
auditLogs | array | Complete timeline of all transaction events |
Metadata Fields
| Field | Type | Description |
|---|---|---|
eventId | UUID | Event identifier |
confirmedAt | datetime | Confirmation timestamp (ISO 8601) |
eventSource | string | Source service that processed the event |
confirmationCount | number | Number of block confirmations |
Status Values
| Status | Description |
|---|---|
CREATED | Transaction initiated, not yet submitted |
SUBMITTED | Sent to blockchain, awaiting confirmation |
PENDING_APPROVAL | Requires multi-party approval |
APPROVED | Approved, proceeding to execution |
CONFIRMED | Successfully confirmed on blockchain |
FAILED | Execution failed |
Use Cases
- Display full transaction details in a detail view
- Verify transaction execution and confirmation status
- View complete audit trail for compliance
- Debug failed transactions with failure reason
- Export single transaction data for records
Required Permission
transactions:read