POST api/v1/announcements

Request Information

URI Parameters

None.

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": "aaa3583d-3dfb-4775-98ca-76ac1a519e87",
  "content": "sample string 2",
  "creationDate": "2026-02-04T03:00:15.5586399+00:00",
  "modificationDate": "2026-02-04T03:00:15.5586399+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:15.5586399+00:00</CreationDate>
  <Id>aaa3583d-3dfb-4775-98ca-76ac1a519e87</Id>
  <ModificationDate>2026-02-04T03:00:15.5586399+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.