GET api/Notification/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

worship_Notification
NameDescriptionTypeAdditional information
Id

integer

None.

Title

string

None.

Message

string

None.

FromDate

date

None.

ToDate

date

None.

IsActive

boolean

None.

LoginId

integer

None.

CreatedDate

date

None.

UpdatedDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Title": "sample string 2",
  "Message": "sample string 3",
  "FromDate": "2026-03-09T12:13:01.8588206-07:00",
  "ToDate": "2026-03-09T12:13:01.8588206-07:00",
  "IsActive": true,
  "LoginId": 7,
  "CreatedDate": "2026-03-09T12:13:01.8588206-07:00",
  "UpdatedDate": "2026-03-09T12:13:01.8588206-07:00"
}

application/xml, text/xml

Sample:
<worship_Notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess">
  <CreatedDate>2026-03-09T12:13:01.8588206-07:00</CreatedDate>
  <FromDate>2026-03-09T12:13:01.8588206-07:00</FromDate>
  <Id>1</Id>
  <IsActive>true</IsActive>
  <LoginId>7</LoginId>
  <Message>sample string 3</Message>
  <Title>sample string 2</Title>
  <ToDate>2026-03-09T12:13:01.8588206-07:00</ToDate>
  <UpdatedDate>2026-03-09T12:13:01.8588206-07:00</UpdatedDate>
</worship_Notification>