Retrieves a user week approval 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_week_approval| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| user_id |
Foreign key of User |
globally unique identifier |
Required |
| approved_date_start |
Starting date of the approved range |
date |
Required |
| approved_date_end |
Ending date of the approved range |
date |
Required |
| date_approval |
Date+Time when the approval occured |
date |
Required |
| is_approved |
Indicate if the selection (range) is approved |
boolean |
Required |
| approved_by_user_id |
Foreign key of user,who did the approval |
globally unique identifier |
Required |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "d321d44a-5fad-4e83-941c-afefedeb9ff6",
"user_id": "27a2340a-9b96-4361-b3fd-0ffe69d642d0",
"approved_date_start": "2025-12-23T20:49:08.9708352+00:00",
"approved_date_end": "2025-12-23T20:49:08.9708352+00:00",
"date_approval": "2025-12-23T20:49:08.9708352+00:00",
"is_approved": true,
"approved_by_user_id": "d7826e0c-5e47-4c6a-a4d8-f90bb0aa8a32",
"modified_dateutc": "2025-12-23T20:49:08.9708352+00:00"
}