Retrieves the user planning slot type with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The user planning slot type id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the user planning slot type, or 404 Not Found if it doesn't exist.
user_planning_slot_type| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| name | string | ||
| background_color |
can be #123456 or just 123456 |
string | |
| is_support |
To specify if this slot inform the user he is "on call" during that period |
boolean | |
| show_on_wo_list |
to specify if need to be shown on wo list |
boolean | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date | |
| sales_organization_id |
FK of sales_organization. Filled if specific of one SO, empty if can be used by all. |
globally unique identifier |
Response Formats
application/json, text/json
Sample:
{
"id": "aa8054d1-2808-4893-8adf-683a69d9c7e2",
"name": "sample string 2",
"background_color": "sample string 3",
"is_support": true,
"show_on_wo_list": true,
"modified_dateutc": "2026-09-16T09:24:22.6179552+00:00",
"sales_organization_id": "651e0a9e-14ff-47c7-8531-6812dd7ea5a9"
}
application/xml, text/xml
Sample:
<user_planning_slot_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <background_color>sample string 3</background_color> <id>aa8054d1-2808-4893-8adf-683a69d9c7e2</id> <is_support>true</is_support> <modified_dateutc>2026-09-16T09:24:22.617Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>651e0a9e-14ff-47c7-8531-6812dd7ea5a9</sales_organization_id> <show_on_wo_list>true</show_on_wo_list> </user_planning_slot_type>