-
Notifications
You must be signed in to change notification settings - Fork 7
get transactions id
Harmun edited this page May 17, 2019
·
2 revisions
get | /transactions/:id | Admin/User | Return transaction specified by id as an object | None | { id, debitAccountId, creditAccountId, amount, date } |
Returns a single transaction specified by the id parameter.
See GET accounts for getting all transactions in bulk.
Additionally see GET /transactions/?account=[account] to return accounts belonging to a specific owner.
- Users can only access transactions if it affected an account belonging to them, unless they have the admin user role.
- The id parameter must be numeric.
Response formats | JSON |
Requires authentication? | Yes |
id | integer |
curl -X GET \
http://localhost:3000/transactions/5 \
-H 'Authorization: Bearer 123testtoken123' \
-H 'Host: localhost:3000'
A single transaction is returned as an object like this:
{
"id": 5,
"debitAccountId": 1,
"creditAccountId": 6,
"amount": 100,
"date": "2019-05-16T14:55:01.000Z"
}