PUT api/v1/announcements/{Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

globally unique identifier

Required

Body Parameters

AnnouncementDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Content

string

None.

CreationDate

date

None.

ModificationDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "d6c00639-4733-468a-8b14-c2688591e371",
  "content": "sample string 2",
  "creationDate": "2026-02-04T03:00:12.063169+00:00",
  "modificationDate": "2026-02-04T03:00:12.063169+00:00"
}

application/xml, text/xml

Sample:
<AnnouncementDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos">
  <Content>sample string 2</Content>
  <CreationDate>2026-02-04T03:00:12.063169+00:00</CreationDate>
  <Id>d6c00639-4733-468a-8b14-c2688591e371</Id>
  <ModificationDate>2026-02-04T03:00:12.063169+00:00</ModificationDate>
</AnnouncementDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.