CompanyDto
Company DTO model.
externalIdstringnullable
Unique identifier of the company from your ERP system. Is expected to be unique.
Example:
1001abcnamestringnullable
Represents the name of the company
Example:
Kaunt A/SglnNumberstringnullable
The Global Location Number (GLN) of the company
Example:
574400338taxIdentificationNumberstringnullable
The Tax Identification number (TIN) the company is registered under.
Example:
40865888address object
Address DTO model.
addressstringnullable
Address
Example:
Fiskerivej 12citystringnullable
Example:
AarhuszipCodestringnullable
Example:
8000countryCodestringnullable
3-letter ISO 3166 country code.
Example:
DNKcontact object
Contact DTO model.
namestringnullable
Contact name
Example:
Lori K. MyrieemailAddressstringnullable
Email address for the contact
Example:
mailtocontact@contact.comphoneNumberstringnullable
Phone number for the contact
Example:
+45 88 88 88 88CompanyDto
{
"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"
}
}