GET
/
v1
/
accounts
/
{account_id}
/
transactions
curl --request GET \
  --url https://api.gofermata.com/v1/accounts/{account_id}/transactions \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "id": "<string>",
      "created_at": "<string>",
      "denomination": "<string>",
      "type": "<string>",
      "description": "<string>",
      "unit_cost": 123,
      "amount": 123,
      "starting_balance": 123,
      "ending_balance": 123,
      "max_value_billing_amount": null,
      "max_value_billing_previous_id": null,
      "account": {
        "account_id": "<string>",
        "name": "<string>"
      },
      "events": [
        {
          "event_id": "<string>",
          "type": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

To authenticate against the API, use HTTP Basic Authentication with your customer ID as the username and API key as the password.

Path Parameters

account_id
string
required

Response

200 - application/json
OK
data
object[]