GET api/NotificationEmails/GetNotificationEmail?documentType={documentType}&documentNumber={documentNumber}&notificationId={notificationId}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
documentType
No documentation available.

Define this parameter in the request URI.

documentNumber
No documentation available.

Define this parameter in the request URI.

notificationId
No documentation available.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Subject": "sample string 1",
  "Message": "sample string 2",
  "Sender": {
    "Name": "sample string 1",
    "EmailAddress": "sample string 2",
    "CellPhoneNumber": "sample string 3"
  },
  "Recipients": [
    {
      "Name": "sample string 1",
      "EmailAddress": "",
      "CellPhoneNumber": "sample string 3"
    },
    {
      "Name": "sample string 1",
      "EmailAddress": "",
      "CellPhoneNumber": "sample string 3"
    },
    {
      "Name": "sample string 1",
      "EmailAddress": "",
      "CellPhoneNumber": "sample string 3"
    }
  ],
  "EventsToLog": null
}

application/xml, text/xml

Sample:
<NotificationEmail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMApi.Controllers">
  <EventsToLog i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/SMDomain.UOW.Helpers.Notification" />
  <Message xmlns="http://schemas.datacontract.org/2004/07/SMDomain.UOW.Helpers.Notification">sample string 2</Message>
  <Recipients xmlns="http://schemas.datacontract.org/2004/07/SMDomain.UOW.Helpers.Notification">
    <NotificationRecipient>
      <CellPhoneNumber>sample string 3</CellPhoneNumber>
      <EmailAddress></EmailAddress>
      <Name>sample string 1</Name>
    </NotificationRecipient>
    <NotificationRecipient>
      <CellPhoneNumber>sample string 3</CellPhoneNumber>
      <EmailAddress></EmailAddress>
      <Name>sample string 1</Name>
    </NotificationRecipient>
    <NotificationRecipient>
      <CellPhoneNumber>sample string 3</CellPhoneNumber>
      <EmailAddress></EmailAddress>
      <Name>sample string 1</Name>
    </NotificationRecipient>
  </Recipients>
  <Sender xmlns="http://schemas.datacontract.org/2004/07/SMDomain.UOW.Helpers.Notification">
    <CellPhoneNumber>sample string 3</CellPhoneNumber>
    <EmailAddress>sample string 2</EmailAddress>
    <Name>sample string 1</Name>
  </Sender>
  <Subject xmlns="http://schemas.datacontract.org/2004/07/SMDomain.UOW.Helpers.Notification">sample string 1</Subject>
</NotificationEmail>