๐ŸŸฉReturn a Single Transaction

Retrieve a single transactional data array from a Bank Account Record

Return a Single Transaction

GET {{baseUrl}}/bank-accounts/:bank_account_id/transactions/:transaction_id

Path Parameters

Status Codes

200 - OK

Single Transaction Returned

}
    "data": {
        "id": "{{transactionId}}",
        "type": "credit",
        "amount": 500,
        "description": "INCOME",
        "date": "2021-10-19T22:00:00.000000Z",
        "balance": 522.3,
        "category": "Salary & Wages"
    }
}
404 - Not Found

Transaction ID Not Found

{
    "errors": {
        "code": "entity_not_found",
        "message": "Record not found in transactions"
    }
}

Missing / Invalid Parameter

{
    "errors": {
        "code": "route_not_found",
        "message": "This route does not exist"
    }
}

Last updated