Retrieves the company_sales_territory_list object with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

company_sales_territory_list
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
company_id

Foreign key to company

globally unique identifier
sales_territory_id

Foreign key to sales_territory

globally unique identifier
reference_back_office

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

string
modified_dateutc

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

date
sys_logical_delete

boolean

Response Formats

application/json, text/json

Sample:
{
  "id": "915fb534-1a3d-4caa-9111-3ec5be2d67d4",
  "company_id": "872f1b2c-d399-43a8-a73c-4e37bfb3c8a0",
  "sales_territory_id": "7fecc1d9-ce85-453f-859b-8f78f8514fdb",
  "reference_back_office": "sample string 4",
  "modified_dateutc": "2026-03-07T14:55:56.1392393+00:00",
  "sys_logical_delete": true
}

application/xml, text/xml

Sample:
<company_sales_territory_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <company_id>872f1b2c-d399-43a8-a73c-4e37bfb3c8a0</company_id>
  <id>915fb534-1a3d-4caa-9111-3ec5be2d67d4</id>
  <modified_dateutc>2026-03-07T14:55:56.139Z</modified_dateutc>
  <reference_back_office>sample string 4</reference_back_office>
  <sales_territory_id>7fecc1d9-ce85-453f-859b-8f78f8514fdb</sales_territory_id>
  <sys_logical_delete>true</sys_logical_delete>
</company_sales_territory_list>