Skip to main content

CompanyDto

Company DTO model.

externalIdstringnullable

Unique identifier of the company from your ERP system. Is expected to be unique.

Example: 1001abc
namestringnullable

Represents the name of the company

Example: Kaunt A/S
glnNumberstringnullable

The Global Location Number (GLN) of the company

Example: 574400338
taxIdentificationNumberstringnullable

The Tax Identification number (TIN) the company is registered under.

Example: 40865888
address object

Address DTO model.

addressstringnullable

Address

Example: Fiskerivej 12
citystringnullable
Example: Aarhus
zipCodestringnullable
Example: 8000
countryCodestringnullable

3-letter ISO 3166 country code.

Example: DNK
contact object
namestringnullable

Contact name

Example: Lori K. Myrie
emailAddressstringnullable

Email address for the contact

Example: mailtocontact@contact.com
phoneNumberstringnullable

Phone number for the contact

Example: +45 88 88 88 88
CompanyDto
{
"externalId": "1001abc",
"name": "Kaunt A/S",
"glnNumber": "574400338",
"taxIdentificationNumber": "40865888",
"address": {
"address": "Fiskerivej 12",
"city": "Aarhus",
"zipCode": "8000",
"countryCode": "DNK"
},
"contact": {
"name": "Lori K. Myrie",
"emailAddress": "mailtocontact@contact.com",
"phoneNumber": "+45 88 88 88 88"
}
}