Skip to content

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 administrations
foreach ($administrations as $administration) {
echo $administration->name;
}

Administration Properties

When working with administrations, you’ll have access to the following properties:

PropertyTypeDescription
idstringUnique identifier
namestringName of the administration
languagestringLanguage setting for the administration (e.g., ‘nl’, ‘en’)
currencystringCurrency used in the administration (e.g., ‘EUR’)
countrystringCountry code for the administration (e.g., ‘NL’)
time_zonestringTime zone setting for the administration
created_atstringISO 8601 timestamp of when the administration was created
updated_atstringISO 8601 timestamp of when the administration was last updated

Note: See the official API reference for the complete list of available properties.

Further reading