Retrieves the company/sales-territory link with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The company/sales-territory link id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the company/sales-territory link, or 404 Not Found if it doesn't exist.

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

Soft-delete flag: when true, this link is considered deleted, optimizing synchronization (can be physically deleted offline).

boolean

Response Formats

application/json, text/json

Sample:
{
  "id": "8e1e6530-c05f-40de-915b-62bcd48066f1",
  "company_id": "9ffa1d30-44bf-4afb-bb98-ba453e7638d6",
  "sales_territory_id": "5cf8a2b9-def0-42f3-a715-8288af58b86c",
  "reference_back_office": "sample string 4",
  "modified_dateutc": "2026-09-16T10:19:21.330342+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>9ffa1d30-44bf-4afb-bb98-ba453e7638d6</company_id>
  <id>8e1e6530-c05f-40de-915b-62bcd48066f1</id>
  <modified_dateutc>2026-09-16T10:19:21.330Z</modified_dateutc>
  <reference_back_office>sample string 4</reference_back_office>
  <sales_territory_id>5cf8a2b9-def0-42f3-a715-8288af58b86c</sales_territory_id>
  <sys_logical_delete>true</sys_logical_delete>
</company_sales_territory_list>