PUT NotificationsTables/PutNotificationsTable/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

NotificationsTable
NameDescriptionTypeAdditional information
notificationId

integer

None.

senderId

integer

None.

senderType

integer

None.

receiverId

integer

None.

receiverType

integer

None.

sendDate

date

None.

description

string

None.

status

integer

None.

readDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "notificationId": 1,
  "senderId": 1,
  "senderType": 1,
  "receiverId": 1,
  "receiverType": 1,
  "sendDate": "2025-07-07T23:12:20.4033844+05:00",
  "description": "sample string 2",
  "status": 1,
  "readDate": "2025-07-07T23:12:20.4033844+05:00"
}

application/xml, text/xml

Sample:
<NotificationsTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/projectalminha.Models">
  <description>sample string 2</description>
  <notificationId>1</notificationId>
  <readDate>2025-07-07T23:12:20.4033844+05:00</readDate>
  <receiverId>1</receiverId>
  <receiverType>1</receiverType>
  <sendDate>2025-07-07T23:12:20.4033844+05:00</sendDate>
  <senderId>1</senderId>
  <senderType>1</senderType>
  <status>1</status>
</NotificationsTable>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.