PUT api/workinghours/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
WorkingHoursDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| DayOfWeek | WorkingDayOfWeekEnumDto |
None. |
|
| Date | date |
None. |
|
| StartTime | integer |
None. |
|
| EndTime | integer |
None. |
|
| AddressId | globally unique identifier |
None. |
|
| SalesPersonId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "b487bd08-b52a-4bf9-a8e8-327f842bb4de",
"DayOfWeek": 0,
"Date": "2026-01-10T00:46:57.4854599+00:00",
"StartTime": 1,
"EndTime": 1,
"AddressId": "ce3564e5-0537-4ff9-9dc6-4f902f7f25dd",
"SalesPersonId": "27e5bfc2-b1f9-4460-82aa-ea4f26b07077"
}
application/xml, text/xml
Sample:
<WorkingHoursDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.EventManagement.Models"> <AddressId>ce3564e5-0537-4ff9-9dc6-4f902f7f25dd</AddressId> <Date>2026-01-10T00:46:57.4854599+00:00</Date> <DayOfWeek>Monday</DayOfWeek> <EndTime>1</EndTime> <Id>b487bd08-b52a-4bf9-a8e8-327f842bb4de</Id> <SalesPersonId>27e5bfc2-b1f9-4460-82aa-ea4f26b07077</SalesPersonId> <StartTime>1</StartTime> </WorkingHoursDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.