Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
db_address_sales_organization| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier | |
| archived |
You cannot delete an address. The only way is to archive it. |
boolean | |
| name |
Name of the address |
string | |
| street |
Street |
string | |
| street2 |
Bus |
string | |
| street_number |
Street number. Can be not used |
string | |
| zip |
Zip code |
string | |
| city |
City |
string | |
| phone |
Phone number |
string | |
| mobile |
Cell phone number |
string | |
| fax |
Fax number |
string | |
|
Email address |
string | ||
| db_country_id |
Foreign key to table Country |
globally unique identifier | |
| latitude_decimal | decimal number | ||
| longitude_decimal | decimal number | ||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "4b8cc250-4e20-486e-a58e-c2209b020434",
"archived": true,
"name": "sample string 3",
"street": "sample string 4",
"street2": "sample string 5",
"street_number": "sample string 6",
"zip": "sample string 7",
"city": "sample string 8",
"phone": "sample string 9",
"mobile": "sample string 10",
"fax": "sample string 11",
"email": "sample string 12",
"db_country_id": "9fdfc9c9-6123-4d4b-b8b9-7b1102aae2e6",
"latitude_decimal": 14.0,
"longitude_decimal": 15.0,
"modified_dateutc": "2026-01-11T21:06:46.4635669+00:00"
}
application/xml, text/xml
Sample:
<db_address_sales_organization xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Odyssee.ServiceAppAPI.Models"> <archived>true</archived> <city>sample string 8</city> <db_country_id>9fdfc9c9-6123-4d4b-b8b9-7b1102aae2e6</db_country_id> <email>sample string 12</email> <fax>sample string 11</fax> <id>4b8cc250-4e20-486e-a58e-c2209b020434</id> <latitude_decimal>14</latitude_decimal> <longitude_decimal>15</longitude_decimal> <mobile>sample string 10</mobile> <modified_dateutc>2026-01-11T21:06:46.463Z</modified_dateutc> <name>sample string 3</name> <phone>sample string 9</phone> <street>sample string 4</street> <street2>sample string 5</street2> <street_number>sample string 6</street_number> <zip>sample string 7</zip> </db_address_sales_organization>