POST api/PushNotification?Message={Message}&IsForAuthor={IsForAuthor}&ElementId={ElementId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Message

string

Required

IsForAuthor

boolean

Required

ElementId

string

None.

Body Parameters

None.

Response Information

Resource Description

NotificationResult
NameDescriptionTypeAdditional information
IsSend

boolean

None.

Message

string

None.

NotifId

string

None.

IsWebNotif

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSend": true,
  "Message": "sample string 2",
  "NotifId": "sample string 3",
  "IsWebNotif": true
}

application/xml, text/xml

Sample:
<NotificationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ELO_IdentityAPI_Eloapp.net.Models">
  <IsSend>true</IsSend>
  <IsWebNotif>true</IsWebNotif>
  <Message>sample string 2</Message>
  <NotifId>sample string 3</NotifId>
</NotificationResult>