Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

sales_territory
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
code

Field used for Embedded entity (store there your ERP PK)

string

Max length: 50

description

Description of the territory

string

Required

sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all

globally unique identifier
db_address_id

Address of territory

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date
archived

Flag for checking archived

boolean

Response Formats

application/json, text/json

Sample:
{
  "id": "19705901-8999-4c27-a162-043cbd54060b",
  "code": "sample string 2",
  "description": "sample string 3",
  "sales_organization_id": "bc37656f-6529-4092-a2bb-c0b19dbb615b",
  "db_address_id": "40129325-bbd2-4cfb-8621-30dfb8c4d02b",
  "modified_dateutc": "2026-03-07T14:54:53.6281066+00:00",
  "archived": true
}

application/xml, text/xml

Sample:
<sales_territory xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <code>sample string 2</code>
  <db_address_id>40129325-bbd2-4cfb-8621-30dfb8c4d02b</db_address_id>
  <description>sample string 3</description>
  <id>19705901-8999-4c27-a162-043cbd54060b</id>
  <modified_dateutc>2026-03-07T14:54:53.628Z</modified_dateutc>
  <sales_organization_id>bc37656f-6529-4092-a2bb-c0b19dbb615b</sales_organization_id>
</sales_territory>