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": "612c1f5f-44f8-4a1f-8084-6aeed0d121ab",
  "code": "sample string 2",
  "description": "sample string 3",
  "sales_organization_id": "4b380f38-a25f-483e-bfa8-ca192a4b8d5c",
  "db_address_id": "61a83f02-f5d8-481c-a371-3612e91144e8",
  "modified_dateutc": "2026-01-12T00:22:06.5490772+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>61a83f02-f5d8-481c-a371-3612e91144e8</db_address_id>
  <description>sample string 3</description>
  <id>612c1f5f-44f8-4a1f-8084-6aeed0d121ab</id>
  <modified_dateutc>2026-01-12T00:22:06.549Z</modified_dateutc>
  <sales_organization_id>4b380f38-a25f-483e-bfa8-ca192a4b8d5c</sales_organization_id>
</sales_territory>