PUT api/workinghours/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

WorkingHoursDto
NameDescriptionTypeAdditional 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": "50284a4e-25e6-4285-ab1d-d3464e724a94",
  "DayOfWeek": 0,
  "Date": "2025-12-11T00:41:45.3440854+00:00",
  "StartTime": 1,
  "EndTime": 1,
  "AddressId": "e3172977-d655-4081-b7e7-54ff5f547379",
  "SalesPersonId": "514bbf59-070d-4251-a6f3-2fbddd9f2f31"
}

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>e3172977-d655-4081-b7e7-54ff5f547379</AddressId>
  <Date>2025-12-11T00:41:45.3440854+00:00</Date>
  <DayOfWeek>Monday</DayOfWeek>
  <EndTime>1</EndTime>
  <Id>50284a4e-25e6-4285-ab1d-d3464e724a94</Id>
  <SalesPersonId>514bbf59-070d-4251-a6f3-2fbddd9f2f31</SalesPersonId>
  <StartTime>1</StartTime>
</WorkingHoursDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.