Retrieves the user planning slot with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

user_planning_slot
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
date_from

date
date_to

date
user_planning_slot_type_id

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": "008cd8b3-77bc-4dc2-b8d8-800b8293fe27",
  "date_from": "2026-06-16T21:22:52.089347+00:00",
  "date_to": "2026-06-16T21:22:52.089347+00:00",
  "user_planning_slot_type_id": "8c942718-e666-410a-9eae-3f4479cd6d28",
  "description": "sample string 5",
  "sys_logical_delete": true,
  "user_id": "61c42c0f-eb83-42c4-bae5-3350ce54f78a",
  "modified_dateutc": "2026-06-16T21:22:52.089347+00:00"
}

application/xml, text/xml

Sample:
<user_planning_slot xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <date_from>2026-06-16T21:22:52.089Z</date_from>
  <date_to>2026-06-16T21:22:52.089Z</date_to>
  <description>sample string 5</description>
  <id>008cd8b3-77bc-4dc2-b8d8-800b8293fe27</id>
  <modified_dateutc>2026-06-16T21:22:52.089Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <user_id>61c42c0f-eb83-42c4-bae5-3350ce54f78a</user_id>
  <user_planning_slot_type_id>8c942718-e666-410a-9eae-3f4479cd6d28</user_planning_slot_type_id>
</user_planning_slot>