Retrieves the user planning slot with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The user planning slot id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the user planning slot, or 404 Not Found if it doesn't exist.
user_planning_slot| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| date_from |
Date and time this planning slot starts. |
date | |
| date_to |
Date and time this planning slot ends. |
date | |
| user_planning_slot_type_id |
Foreign key of the type of this planning slot (see ). |
globally unique identifier | |
| description |
Description |
string | |
| sys_logical_delete |
Logical delete |
boolean | |
| user_id |
Assigned user |
globally unique identifier | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "dca2d323-ef80-40a8-b4cb-099df133d4f9",
"date_from": "2026-09-16T09:24:40.1098676+00:00",
"date_to": "2026-09-16T09:24:40.1098676+00:00",
"user_planning_slot_type_id": "539bc141-bd99-4259-9622-49edb66bbbdd",
"description": "sample string 5",
"sys_logical_delete": true,
"user_id": "07efa853-e3f3-41e4-a4a9-797015fd2dfa",
"modified_dateutc": "2026-09-16T09:24:40.1098676+00:00"
}
application/xml, text/xml
Sample:
<user_planning_slot xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <date_from>2026-09-16T09:24:40.109Z</date_from> <date_to>2026-09-16T09:24:40.109Z</date_to> <description>sample string 5</description> <id>dca2d323-ef80-40a8-b4cb-099df133d4f9</id> <modified_dateutc>2026-09-16T09:24:40.109Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <user_id>07efa853-e3f3-41e4-a4a9-797015fd2dfa</user_id> <user_planning_slot_type_id>539bc141-bd99-4259-9622-49edb66bbbdd</user_planning_slot_type_id> </user_planning_slot>