Entity Addresses

The addresses object contains location information for an entity. Required and optional address fields vary by entity type.


Available address fields

Address FieldDescription
registeredAddressOfficial registered address of the entity.
principalPlaceOfBusinessMain place of business operations.
otherAny other relevant address.

Required addresses by entity type

Entity TypeRequired Address(es)Optional Address(es)
companyregisteredAddressprincipalPlaceOfBusiness, other
soleTraderprincipalPlaceOfBusinessregisteredAddress, other
partnershipprincipalPlaceOfBusinessregisteredAddress, other
associationregisteredAddressprincipalPlaceOfBusiness, other
cooperativeregisteredAddressprincipalPlaceOfBusiness, other
governmentBodyregisteredAddressprincipalPlaceOfBusiness, other
trustNoneregisteredAddress, principalPlaceOfBusiness, other
indigenousCorporationNoneregisteredAddress, principalPlaceOfBusiness, other
otherNoneregisteredAddress, principalPlaceOfBusiness, other

Usage example

Company with addresses

Company with registered and business address

{
	"userId": "user-123",
	"country": "AUS",
	"type": "company",
	"subType": "none",
	"name": "My Company Pty Ltd",
	"industry": "Technology",
	"website": "https://example.com",
	"identifiers": {
		"acn": "123456789",
		"abn": "12345678901"
	},
	"addresses": {
		"registeredAddress": "Level 10, 123 George St, Sydney NSW 2000",
		"principalPlaceOfBusiness": "456 Business Park, Melbourne VIC 3000"
	}
}

Sole trader with addresses

Sole trader with business address

{
	"userId": "user-123",
	"country": "AUS",
	"type": "soleTrader",
	"subType": "none",
	"name": "John Smith Trading",
	"industry": "Consulting",
	"website": "https://example.com",
	"identifiers": {
		"abn": "12345678901"
	},
	"addresses": {
		"principalPlaceOfBusiness": "123 Main St, Brisbane QLD 4000"
	}
}

Summary: Requirements by entity type

Entity TypeRequired StakeholderRequired AddressRequired Document
trusttrusteetrustDeed
partnershipprincipalPlaceOfBusinesspartnershipAgreement
companyregisteredAddress
soleTraderprincipalPlaceOfBusiness
associationregisteredAddress
cooperativeregisteredAddress
governmentBodyregisteredAddress
indigenousCorporation
other

Was this page helpful?