Retrieves the user_sales_organization_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

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": "cb3e6936-ea53-4b76-a531-688dd2603f4a",
  "user_id": "8156ba03-d472-44c4-881f-96cf5b988e8a",
  "sales_organization_id": "ee9bbab8-77c3-4d41-a4f2-e0e926b63985",
  "is_manager_of": true,
  "modified_dateutc": "2026-01-11T21:06:37.2826579+00:00"
}

application/xml, text/xml

Sample:
<user_sales_organization_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>cb3e6936-ea53-4b76-a531-688dd2603f4a</id>
  <is_manager_of>true</is_manager_of>
  <modified_dateutc>2026-01-11T21:06:37.282Z</modified_dateutc>
  <sales_organization_id>ee9bbab8-77c3-4d41-a4f2-e0e926b63985</sales_organization_id>
  <user_id>8156ba03-d472-44c4-881f-96cf5b988e8a</user_id>
</user_sales_organization_list>