POST GetAllRatesForUnity

Request Information

URI Parameters

None.

Body Parameters

RateReputation_Post
NameDescriptionTypeAdditional information
HMID

integer

None.

SubscriptionId

integer

None.

TaxPreference

integer

None.

channelId

string

None.

CheckIndate

date

None.

FutureDay

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "HMID": 1,
  "SubscriptionId": 2,
  "TaxPreference": 1,
  "channelId": "sample string 3",
  "CheckIndate": "2025-04-28T15:59:10.6981118+00:00",
  "FutureDay": 1
}

text/html

Sample:
{"HMID":1,"SubscriptionId":2,"TaxPreference":1,"channelId":"sample string 3","CheckIndate":"2025-04-28T15:59:10.6981118+00:00","FutureDay":1}

application/xml, text/xml

Sample:
<RateReputation_Post xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PGH.NxtGN.BO.Common">
  <CheckIndate>2025-04-28T15:59:10.6981118+00:00</CheckIndate>
  <FutureDay>1</FutureDay>
  <HMID>1</HMID>
  <SubscriptionId>2</SubscriptionId>
  <TaxPreference>1</TaxPreference>
  <channelId>sample string 3</channelId>
</RateReputation_Post>

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

Response Information

Resource Description

ResponseOfListOfRateReputation_Data
NameDescriptionTypeAdditional information
Message

string

None.

Status

boolean

None.

Body

Collection of RateReputation_Data

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Status": true,
  "Body": [
    {
      "PropertyId": 1,
      "IsSubscriber": true,
      "PropertyName": "sample string 3",
      "Rate": 4.0
    },
    {
      "PropertyId": 1,
      "IsSubscriber": true,
      "PropertyName": "sample string 3",
      "Rate": 4.0
    }
  ]
}

text/html

Sample:
{"Message":"sample string 1","Status":true,"Body":[{"PropertyId":1,"IsSubscriber":true,"PropertyName":"sample string 3","Rate":4.0},{"PropertyId":1,"IsSubscriber":true,"PropertyName":"sample string 3","Rate":4.0}]}

application/xml, text/xml

Sample:
<ResponseOfArrayOfRateReputation_DataQzIzD0mn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PGH.NxtGN.BO.Common">
  <Body>
    <RateReputation_Data>
      <IsSubscriber>true</IsSubscriber>
      <PropertyId>1</PropertyId>
      <PropertyName>sample string 3</PropertyName>
      <Rate>4</Rate>
    </RateReputation_Data>
    <RateReputation_Data>
      <IsSubscriber>true</IsSubscriber>
      <PropertyId>1</PropertyId>
      <PropertyName>sample string 3</PropertyName>
      <Rate>4</Rate>
    </RateReputation_Data>
  </Body>
  <Message>sample string 1</Message>
  <Status>true</Status>
</ResponseOfArrayOfRateReputation_DataQzIzD0mn>