PUT api/Notification/UpdateSMSMessage/{messageId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
messageId

integer

Required

Body Parameters

NMSMSMessageDto
NameDescriptionTypeAdditional information
MessageId

integer

None.

SMSType

string

None.

SMSContent

string

None.

CreatedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "MessageId": 1,
  "SMSType": "sample string 2",
  "SMSContent": "sample string 3",
  "CreatedDate": "2024-11-28T05:57:24.1911032-05:00"
}

application/xml, text/xml

Sample:
<NMSMSMessageDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.Notifications">
  <CreatedDate>2024-11-28T05:57:24.1911032-05:00</CreatedDate>
  <MessageId>1</MessageId>
  <SMSContent>sample string 3</SMSContent>
  <SMSType>sample string 2</SMSType>
</NMSMSMessageDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.