Retrieves all the user_sales_organization_list objects

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

user_sales_organization_list
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
user_id

Foreign key to user

globally unique identifier
sales_organization_id

Foreign key to sales_organization

globally unique identifier
is_manager_of

Is manager

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "efbc9a55-518c-41d5-a08e-bbc583a6c295",
  "user_id": "0d9aa7b9-5597-4b56-ac4f-652ba2438d47",
  "sales_organization_id": "9ed9d116-1fd1-4dad-90b6-5a046a33947d",
  "is_manager_of": true,
  "modified_dateutc": "2026-01-11T21:07:22.547647+00:00"
}

application/xml, text/xml

Sample:
<user_sales_organization_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>efbc9a55-518c-41d5-a08e-bbc583a6c295</id>
  <is_manager_of>true</is_manager_of>
  <modified_dateutc>2026-01-11T21:07:22.547Z</modified_dateutc>
  <sales_organization_id>9ed9d116-1fd1-4dad-90b6-5a046a33947d</sales_organization_id>
  <user_id>0d9aa7b9-5597-4b56-ac4f-652ba2438d47</user_id>
</user_sales_organization_list>