PUT api/v1/PrayerWall/PrayerContent?ipAddress={ipAddress}

Update Prayer Wall Content (Prayers and responses)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ipAddress

Used for logging IP Address

string

None.

Body Parameters

Prayer wall content to be added/updated

PrayerContent
NameDescriptionTypeAdditional information
ContentType

string

Required

ContentID

integer

Required

Status

string

None.

Content

string

None.

Name

string

None.

Surname

string

None.

City

string

None.

CountryCode

string

None.

Added_on

date

None.

Email

string

None.

DeviceID

string

None.

DeviceType

integer

None.

NotificationToken

string

None.

WillNotify

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ContentType": "sample string 1",
  "ContentID": 2,
  "Status": "sample string 3",
  "Content": "sample string 4",
  "Name": "sample string 5",
  "Surname": "sample string 6",
  "City": "sample string 7",
  "CountryCode": "sample string 8",
  "Added_on": "2025-09-04T15:10:52.859",
  "Email": "sample string 9",
  "DeviceID": "sample string 10",
  "DeviceType": 1,
  "NotificationToken": "sample string 11",
  "WillNotify": true
}

application/xml, text/xml

Sample:
<PrayerContent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DPCSWS.Models">
  <Added_on>2025-09-04T15:10:52.8596629+00:00</Added_on>
  <City>sample string 7</City>
  <Content>sample string 4</Content>
  <ContentID>2</ContentID>
  <ContentType>sample string 1</ContentType>
  <CountryCode>sample string 8</CountryCode>
  <DeviceID>sample string 10</DeviceID>
  <DeviceType>1</DeviceType>
  <Email>sample string 9</Email>
  <Name>sample string 5</Name>
  <NotificationToken>sample string 11</NotificationToken>
  <Status>sample string 3</Status>
  <Surname>sample string 6</Surname>
  <WillNotify>true</WillNotify>
</PrayerContent>

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.