cURL
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>" } ] } ] }
To authenticate against the API, use HTTP Basic Authentication with your customer ID as the username and API key as the password.
OK
The response is of type object.
object