PUT api/unsubscribes/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

UnsubscribeDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

CreationDate

date

None.

CompanyId

globally unique identifier

None.

PersonId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "8481743f-e170-4a0b-884e-483a8c2c5880",
  "CreationDate": "2026-01-10T00:58:09.7614346+00:00",
  "CompanyId": "bcc7df7e-7fb8-4a4a-943f-b7025d7c0fa2",
  "PersonId": "8e820d52-9a65-4fc5-a8aa-1af42fc8adb5"
}

application/xml, text/xml

Sample:
<UnsubscribeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.EventManagement.Models">
  <CompanyId>bcc7df7e-7fb8-4a4a-943f-b7025d7c0fa2</CompanyId>
  <CreationDate>2026-01-10T00:58:09.7614346+00:00</CreationDate>
  <Id>8481743f-e170-4a0b-884e-483a8c2c5880</Id>
  <PersonId>8e820d52-9a65-4fc5-a8aa-1af42fc8adb5</PersonId>
</UnsubscribeDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UnsubscribeDto'.

Response Information

Resource Description

None.