GET Account/GetUserPropListforSID?SID={SID}&bCacheRefresh={bCacheRefresh}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SID

integer

Required

bCacheRefresh

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

ResponseOfListOfUserSubscription
NameDescriptionTypeAdditional information
Message

string

None.

Status

boolean

None.

Body

Collection of UserSubscription

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Status": true,
  "Body": [
    {
      "UserID": 1,
      "HotelMasterID": 2
    },
    {
      "UserID": 1,
      "HotelMasterID": 2
    }
  ]
}

text/html

Sample:
{"Message":"sample string 1","Status":true,"Body":[{"UserID":1,"HotelMasterID":2},{"UserID":1,"HotelMasterID":2}]}

application/xml, text/xml

Sample:
<ResponseOfArrayOfUserSubscription7Mi1OgLN xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PGH.NxtGN.BO.Common">
  <Body xmlns:d2p1="http://schemas.datacontract.org/2004/07/PGH.NxtGN.BO.Alerts">
    <d2p1:UserSubscription>
      <d2p1:HotelMasterID>2</d2p1:HotelMasterID>
      <d2p1:UserID>1</d2p1:UserID>
    </d2p1:UserSubscription>
    <d2p1:UserSubscription>
      <d2p1:HotelMasterID>2</d2p1:HotelMasterID>
      <d2p1:UserID>1</d2p1:UserID>
    </d2p1:UserSubscription>
  </Body>
  <Message>sample string 1</Message>
  <Status>true</Status>
</ResponseOfArrayOfUserSubscription7Mi1OgLN>