PUT api/ticketrequest/handled

Request Information

URI Parameters

None.

Body Parameters

TicketRequest
NameDescriptionTypeAdditional information
Id

integer

None.

EmailRequest

string

None.

NrOfTickets

integer

None.

IsHandled

boolean

None.

JustWeekDays

boolean

None.

CreatedAt

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "EmailRequest": "sample string 2",
  "NrOfTickets": 3,
  "IsHandled": true,
  "JustWeekDays": true,
  "CreatedAt": "2025-12-08T20:07:02.2584132+00:00"
}

application/xml, text/xml

Sample:
<TicketRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdmApi.Marindepan2015.Models">
  <CreatedAt>2025-12-08T20:07:02.2584132+00:00</CreatedAt>
  <EmailRequest>sample string 2</EmailRequest>
  <Id>1</Id>
  <IsHandled>true</IsHandled>
  <JustWeekDays>true</JustWeekDays>
  <NrOfTickets>3</NrOfTickets>
</TicketRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>