POST api/NoticeData

Request Information

URI Parameters

None.

Body Parameters

NoticeData
NameDescriptionTypeAdditional information
ID

integer

None.

EntryDate

date

None.

EventDate

date

None.

Category

string

None.

Title

string

None.

Descriptions

string

None.

ImagePath

string

None.

Active

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "EntryDate": "2025-08-22T22:32:58.0870849-07:00",
  "EventDate": "2025-08-22T22:32:58.0870849-07:00",
  "Category": "sample string 4",
  "Title": "sample string 5",
  "Descriptions": "sample string 6",
  "ImagePath": "sample string 7",
  "Active": "sample string 8"
}

text/html

Sample:
{"ID":1,"EntryDate":"2025-08-22T22:32:58.0870849-07:00","EventDate":"2025-08-22T22:32:58.0870849-07:00","Category":"sample string 4","Title":"sample string 5","Descriptions":"sample string 6","ImagePath":"sample string 7","Active":"sample string 8"}

application/xml, text/xml

Sample:
<NoticeData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMSWebApi.Models">
  <Active>sample string 8</Active>
  <Category>sample string 4</Category>
  <Descriptions>sample string 6</Descriptions>
  <EntryDate>2025-08-22T22:32:58.0870849-07:00</EntryDate>
  <EventDate>2025-08-22T22:32:58.0870849-07:00</EventDate>
  <ID>1</ID>
  <ImagePath>sample string 7</ImagePath>
  <Title>sample string 5</Title>
</NoticeData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json, text/html

Sample:
"sample string 1"

application/xml, text/xml

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