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": [
    "<any>"
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

account_id
string
required

Response

200 - application/json
OK
data
any[]