Retrieves the user_sales_organization_list object with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
user_sales_organization_list| Name | Description | Type | Additional 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": "fb62a98a-15a6-43b4-953a-eb879b10b623",
"user_id": "f09893fc-2ef4-47ce-a792-becd6a957acd",
"sales_organization_id": "a9519420-cec4-4b5d-98c9-b136776e17ee",
"is_manager_of": true,
"modified_dateutc": "2026-06-16T21:22:56.3212296+00:00"
}
application/xml, text/xml
Sample:
<user_sales_organization_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>fb62a98a-15a6-43b4-953a-eb879b10b623</id> <is_manager_of>true</is_manager_of> <modified_dateutc>2026-06-16T21:22:56.321Z</modified_dateutc> <sales_organization_id>a9519420-cec4-4b5d-98c9-b136776e17ee</sales_organization_id> <user_id>f09893fc-2ef4-47ce-a792-becd6a957acd</user_id> </user_sales_organization_list>