Administrations
Manage your Administrations in Moneybird.
Working with Administrations
This section covers how to interact with Moneybird’s Administrations API. You can retrieve administration information.
Basic Operations
Get an Administration
Retrieve an administration by its ID.
$administration = $client->administrations()->get('123456789');
List Administrations
Get a list of all administrations.
$administrations = $client->administrations()->all();
// Iterate through the administrationsforeach ($administrations as $administration) { echo $administration->name;}
Administration Properties
When working with administrations, you’ll have access to the following properties:
Property | Type | Description |
---|---|---|
id | string | Unique identifier |
name | string | Name of the administration |
language | string | Language setting for the administration (e.g., ‘nl’, ‘en’) |
currency | string | Currency used in the administration (e.g., ‘EUR’) |
country | string | Country code for the administration (e.g., ‘NL’) |
time_zone | string | Time zone setting for the administration |
created_at | string | ISO 8601 timestamp of when the administration was created |
updated_at | string | ISO 8601 timestamp of when the administration was last updated |
Note: See the official API reference for the complete list of available properties.
Further reading
- Read the full API reference in the Moneybird developer docs