Skip to content

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 }

GET transactions/:id

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.

Restrictions

  • 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.

Resource Information

Response formats JSON
Requires authentication? Yes
id integer

Example Request

curl -X GET \
  http://localhost:3000/transactions/5 \
  -H 'Authorization: Bearer 123testtoken123' \
  -H 'Host: localhost:3000'

Example Response

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"
}