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": "b8df7387-92a2-4e21-9568-a48858cd3d7b",
  "user_id": "70e5c901-c1e5-4569-b50b-b563d3a78f9d",
  "sales_organization_id": "2fa27994-2d05-4e0c-b921-e00664495d64",
  "is_manager_of": true,
  "modified_dateutc": "2026-03-07T13:15:23.8628732+00:00"
}

application/xml, text/xml

Sample:
<user_sales_organization_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>b8df7387-92a2-4e21-9568-a48858cd3d7b</id>
  <is_manager_of>true</is_manager_of>
  <modified_dateutc>2026-03-07T13:15:23.862Z</modified_dateutc>
  <sales_organization_id>2fa27994-2d05-4e0c-b921-e00664495d64</sales_organization_id>
  <user_id>70e5c901-c1e5-4569-b50b-b563d3a78f9d</user_id>
</user_sales_organization_list>