POST api/PushNotification/DocumentNotify/{docId}

Un nouveau Document a été posté et la compagnie ou le site est prévenu.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
docId

globally unique identifier

Required

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>