POST api/GetMobileNotifications

Request Information

URI Parameters

None.

Body Parameters

MobileNotificationMasterEntry
NameDescriptionTypeAdditional information
InnovId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "InnovId": 1
}

application/xml, text/xml

Sample:
<MobileNotificationMasterEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models">
  <InnovId>1</InnovId>
</MobileNotificationMasterEntry>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'MobileNotificationMasterEntry'.

Response Information

Resource Description

MobileNotificationMasterResponse
NameDescriptionTypeAdditional information
lstMobileNotifications

Collection of MobileNotificationMasterModel

None.

status

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "lstMobileNotifications": [
    {
      "NotificationId": 1,
      "Caption": "sample string 2",
      "ClientName": "sample string 3",
      "NotificationFileName": "sample string 4",
      "UploadedOn": "sample string 5"
    },
    {
      "NotificationId": 1,
      "Caption": "sample string 2",
      "ClientName": "sample string 3",
      "NotificationFileName": "sample string 4",
      "UploadedOn": "sample string 5"
    }
  ],
  "status": "sample string 1",
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<MobileNotificationMasterResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models">
  <Message>sample string 2</Message>
  <lstMobileNotifications>
    <MobileNotificationMasterModel>
      <Caption>sample string 2</Caption>
      <ClientName>sample string 3</ClientName>
      <NotificationFileName>sample string 4</NotificationFileName>
      <NotificationId>1</NotificationId>
      <UploadedOn>sample string 5</UploadedOn>
    </MobileNotificationMasterModel>
    <MobileNotificationMasterModel>
      <Caption>sample string 2</Caption>
      <ClientName>sample string 3</ClientName>
      <NotificationFileName>sample string 4</NotificationFileName>
      <NotificationId>1</NotificationId>
      <UploadedOn>sample string 5</UploadedOn>
    </MobileNotificationMasterModel>
  </lstMobileNotifications>
  <status>sample string 1</status>
</MobileNotificationMasterResponse>