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": "9fba05ab-e08b-4a68-b7cb-e23dc5b0f794",
"user_id": "a556689b-d360-4b56-939c-e3e333214ed9",
"sales_organization_id": "7fa93f9e-266d-4f97-bc5b-5f514af3f834",
"is_manager_of": true,
"modified_dateutc": "2026-03-07T14:56:15.2451867+00:00"
}
application/xml, text/xml
Sample:
<user_sales_organization_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>9fba05ab-e08b-4a68-b7cb-e23dc5b0f794</id> <is_manager_of>true</is_manager_of> <modified_dateutc>2026-03-07T14:56:15.245Z</modified_dateutc> <sales_organization_id>7fa93f9e-266d-4f97-bc5b-5f514af3f834</sales_organization_id> <user_id>a556689b-d360-4b56-939c-e3e333214ed9</user_id> </user_sales_organization_list>