Skip to content

Identities

Manage your Identities in Moneybird.

Working with Identities

This section covers how to interact with Moneybird’s Identities API. You can retrieve identity information for your Moneybird account.

Basic Operations

Get an Identity

Retrieve an identity by its ID.

$identity = $client->identities()->get('123456789');

List Identities

Get a paginated list of identities.

$identities = $client->identities()->paginate();
// Iterate through the pages
foreach ($identities as $identity) {
echo $identity->company_name;
}

Get All Identities

Get all identities at once.

$allIdentities = $client->identities()->all();
// Iterate through all identities
foreach ($allIdentities as $identity) {
echo $identity->company_name;
}

Identity Properties

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

PropertyTypeDescription
idstringUnique identifier
administration_idstringID of the administration the identity belongs to
company_namestringName of the company
citystringCity of the company address
countrystringCountry of the company address
zipcodestringPostal code of the company address
address1stringFirst line of the company address
address2stringSecond line of the company address
emailstringEmail address of the company
phonestringPhone number of the company
delivery_methodstringPreferred delivery method
customer_idstringCustomer ID for reference
tax_numberstringTax identification number
chamber_of_commercestringChamber of commerce registration number
bank_accountstringBank account information
attentionstringAttention line for addressing
custom_fieldsarrayCustom fields associated with the identity
tax_ratesarrayTax rates associated with the identity
created_atstringISO 8601 timestamp of when the identity was created
updated_atstringISO 8601 timestamp of when the identity was last updated

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

Further reading