Financial accounts

Retrieve all available financial accounts for the administration

Example: returns all financial accounts of an administration

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/financial_accounts.json?
    

Response

        
          
          Status: 200 OK
        
      
[
  {
    "id": "426664168733542073",
    "administration_id": 123,
    "type": "CreditCardAccount",
    "name": "Creditcard 0001",
    "identifier": "0001",
    "currency": "EUR",
    "provider": null,
    "active": true,
    "created_at": "2024-07-16T08:31:21.173Z",
    "updated_at": "2024-07-16T08:31:21.173Z"
  }
]