Transactions
Get Transaction
Getting Started
- Overview
- Authentication
- Concepts
- Error Codes
- Real-time Events
- Changelog
Core Profile
- Profile
- Members
- Owners
- Addresses
- Documents
- Access Tokens
- Webhooks
Core Wallet
- Wallets
- Balances
- Accounts
- Contacts
- Payment Links
- Statements
- Transfers
- Transactions
Billing & Payments
- Customers
- Plans
- Vouchers
- Invoices
- Subscriptions
- Payments
Integrations
- Payment Providers
Analytics & Logs
- Metrics
- Logs
Resources
- Banks
- Countries
- Currencies
- Events
- Industries
- Legal Form
- Providers
- Scopes
Get Transaction
Fetch transaction information.
GET
/
wallets
/
{wallet_id}
/
transactions
/
{transaction_id}
curl --request GET \
--url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/transactions/{transaction_id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": "tra_123456",
"type": "debit",
"method": "P2P",
"status": "processing",
"destination": {
"name": "Jane Smith"
},
"quote": {
"base": {
"total": 100,
"currency": "SRD"
},
"tax": {
"collected": false,
"country": "SR",
"type": "VAT",
"rate": 0,
"total": 0
},
"fee": {
"conversion": {
"rate": 0,
"total": 0
},
"interchange": {
"rate": 0,
"total": 0
},
"total": 0
},
"due": {
"total": 100,
"currency": "SRD"
},
"conversion": {
"input": 100,
"from": "SRD",
"to": "SRD",
"rate": 1,
"total": 100
},
"output": {
"total": 100,
"currency": "SRD"
}
},
"reference": "For services renderred",
"created_at": "2023-11-07T05:31:56Z",
"processed_at": "2023-11-07T05:31:56Z"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The Wallet ID.
The Transaction ID.
Response
200
application/json
Successfully retrieved transaction details.
Example:
true
Example:
"tra_123456"
Available options:
debit
Example:
"debit"
Available options:
P2P
, A2A
, ACH
Example:
"P2P"
Available options:
pending
, processing
, settled
, requires-approval
, cancelled
Example:
"processing"
Example:
0
Example:
"For services renderred"
Was this page helpful?
curl --request GET \
--url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/transactions/{transaction_id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": "tra_123456",
"type": "debit",
"method": "P2P",
"status": "processing",
"destination": {
"name": "Jane Smith"
},
"quote": {
"base": {
"total": 100,
"currency": "SRD"
},
"tax": {
"collected": false,
"country": "SR",
"type": "VAT",
"rate": 0,
"total": 0
},
"fee": {
"conversion": {
"rate": 0,
"total": 0
},
"interchange": {
"rate": 0,
"total": 0
},
"total": 0
},
"due": {
"total": 100,
"currency": "SRD"
},
"conversion": {
"input": 100,
"from": "SRD",
"to": "SRD",
"rate": 1,
"total": 100
},
"output": {
"total": 100,
"currency": "SRD"
}
},
"reference": "For services renderred",
"created_at": "2023-11-07T05:31:56Z",
"processed_at": "2023-11-07T05:31:56Z"
}
}