Description
This API returns list account transaction details.
How it Works
Parameters
account_id: Integer
transaction_id: Integer
Sample Request
GET {API_HOST}/api/v1/accounts/{account_id}/transactions
GET {API_HOST}/api/v1/accounts/{account_id}/transactions/{transaction_id}
Headers:
X-IBM-client-id: {YOUR_CLEINT_ID}
X-IBM-client-secret: {YOUR_CLEINT_SECRET}
Authorization: Bearer {access_token}
Content-Type: application/json
Sample Response
Sample Response - 1
{
"data": [
{
"id": 6057036,
"type": "DEBIT",
"amount": 310.8,
"balance": 173666.94,
"description": "KREDİ NO: 42990000000 - ANAPARA TAHSİLAT 4299/11620201*MUH.HE ",
"time": "2019-04-11T15:57:10.499+03:00",
"net_balance": 173666.94,
"currency_code": "TRY"
},
{
"id": 6057035,
"type": "DEBIT",
"amount": 9.64,
"balance": 173977.74,
"description": "KREDİ NO: 42990600961 - GECİKME FAİZİ KKDF 4299/390222 *MUH.H ",
"time": "2019-04-11T15:57:10.482+03:00",
"net_balance": 173977.74,
"currency_code": "TRY"
},
]
}
Sample Response - 2
{
"data": {
"id": 6057036,
"type": "DEBIT",
"amount": 310.8,
"balance": 173666.94,
"description": "KREDİ NO: 42990000000 - ANAPARA TAHSİLAT 4299/11620201*MUH.HE ",
"time": "2019-04-11T15:57:10.499+03:00",
"net_balance": 173666.94,
"currency_code": "TRY"
}
}