POST api/v2/Version2.NotificationUserList

Request Information

URI Parameters

NameDescriptionTypeAdditional information
version

string

None.

Body Parameters

NotificationUserListInputModel
NameDescriptionTypeAdditional information
LoginUserID

string

None.

AuthenticationKey

string

None.

DeviceType

string

None.

DeviceToken

string

None.

Id

string

None.

IdType

string

None.

MCUserID

string

None.

MCRoleID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "LoginUserID": "sample string 1",
  "AuthenticationKey": "sample string 2",
  "DeviceType": "sample string 3",
  "DeviceToken": "sample string 4",
  "Id": "sample string 5",
  "IdType": "sample string 6",
  "MCUserID": "sample string 7",
  "MCRoleID": "sample string 8"
}

application/xml, text/xml

Sample:
<MCObjects.NotificationUserListInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MC.Entity.v2">
  <AuthenticationKey>sample string 2</AuthenticationKey>
  <DeviceToken>sample string 4</DeviceToken>
  <DeviceType>sample string 3</DeviceType>
  <Id>sample string 5</Id>
  <IdType>sample string 6</IdType>
  <LoginUserID>sample string 1</LoginUserID>
  <MCRoleID>sample string 8</MCRoleID>
  <MCUserID>sample string 7</MCUserID>
</MCObjects.NotificationUserListInputModel>

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 'NotificationUserListInputModel'.

Response Information

Resource Description

NotificationUserListModel
NameDescriptionTypeAdditional information
Result

string

None.

NotifiedUsersList

Collection of NotificationUserList

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": "sample string 1",
  "NotifiedUsersList": [
    {
      "RoleName": "sample string 1",
      "RoleCode": "sample string 2"
    },
    {
      "RoleName": "sample string 1",
      "RoleCode": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<MCObjects.NotificationUserListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MC.Entity.v2">
  <NotifiedUsersList>
    <MCObjects.NotificationUserList>
      <RoleCode>sample string 2</RoleCode>
      <RoleName>sample string 1</RoleName>
    </MCObjects.NotificationUserList>
    <MCObjects.NotificationUserList>
      <RoleCode>sample string 2</RoleCode>
      <RoleName>sample string 1</RoleName>
    </MCObjects.NotificationUserList>
  </NotifiedUsersList>
  <Result>sample string 1</Result>
</MCObjects.NotificationUserListModel>