GET api/Notification/EventAddressList?Id={Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EventAddress
NameDescriptionTypeAdditional information
Id

integer

None.

NotificationEventId

integer

None.

MasterAddressId

integer

None.

IsSMS

boolean

None.

IsEmail

boolean

None.

FirstName

string

None.

LastName

string

None.

SMS

string

None.

Email

string

None.

Carrier

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "notificationEventId": 2,
    "masterAddressId": 3,
    "issms": true,
    "isEmail": true,
    "firstName": "sample string 6",
    "lastName": "sample string 7",
    "sms": "sample string 8",
    "email": "sample string 9",
    "carrier": "sample string 10"
  },
  {
    "id": 1,
    "notificationEventId": 2,
    "masterAddressId": 3,
    "issms": true,
    "isEmail": true,
    "firstName": "sample string 6",
    "lastName": "sample string 7",
    "sms": "sample string 8",
    "email": "sample string 9",
    "carrier": "sample string 10"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventAddress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GeminiiSecureWebAPI.Model">
  <EventAddress>
    <Carrier>sample string 10</Carrier>
    <Email>sample string 9</Email>
    <FirstName>sample string 6</FirstName>
    <Id>1</Id>
    <IsEmail>true</IsEmail>
    <IsSMS>true</IsSMS>
    <LastName>sample string 7</LastName>
    <MasterAddressId>3</MasterAddressId>
    <NotificationEventId>2</NotificationEventId>
    <SMS>sample string 8</SMS>
  </EventAddress>
  <EventAddress>
    <Carrier>sample string 10</Carrier>
    <Email>sample string 9</Email>
    <FirstName>sample string 6</FirstName>
    <Id>1</Id>
    <IsEmail>true</IsEmail>
    <IsSMS>true</IsSMS>
    <LastName>sample string 7</LastName>
    <MasterAddressId>3</MasterAddressId>
    <NotificationEventId>2</NotificationEventId>
    <SMS>sample string 8</SMS>
  </EventAddress>
</ArrayOfEventAddress>