Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

db_address_sales_organization
NameDescriptionTypeAdditional 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

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": "ab52be07-729e-4957-b089-0962641a3788",
  "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": "982f5df3-6c4b-4c27-ab65-5badc2c75b4e",
  "latitude_decimal": 14.0,
  "longitude_decimal": 15.0,
  "modified_dateutc": "2026-01-11T21:07:30.8516742+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>982f5df3-6c4b-4c27-ab65-5badc2c75b4e</db_country_id>
  <email>sample string 12</email>
  <fax>sample string 11</fax>
  <id>ab52be07-729e-4957-b089-0962641a3788</id>
  <latitude_decimal>14</latitude_decimal>
  <longitude_decimal>15</longitude_decimal>
  <mobile>sample string 10</mobile>
  <modified_dateutc>2026-01-11T21:07:30.851Z</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>