AddressStructure
The described structure is used to transmit address data.
Structure Fields
Field Name | Type | Required? | Description |
---|---|---|---|
name | string(60) | Yes | Company name or first name and surname. |
postcode | string(10) | Yes | Postal code, without dash |
city | string(17) | Yes | City name |
street | string(35) | Yes | Street |
houseNumber | string(10) | Yes | House number |
apartmentNumber | string(10) | No | Apartment number |
apartmentNumber and houseNumber | The sum of the characters in these two fields cannot exceed 15 characters. | ||
addressType | string(1) | No | Address type (B/C) (only recipient) |
Example:
<address> <addressType>C</addressType> <name>Testan Testington</name> <postcode>00999</postcode> <city>Testville</city> <street>Test Street</street> <houseNumber>78</houseNumber> <apartmentNumber>3</apartmentNumber> </address>