POST WebShop/GetChargeExplain

Request Information

URI Parameters

None.

Body Parameters

PricePolicyRequest
NameDescriptionTypeAdditional information
PolicyType

integer

None.

TenantCode

string

None.

CompanyCode

string

None.

UserId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PolicyType": 1,
  "TenantCode": "sample string 2",
  "CompanyCode": "sample string 3",
  "UserId": "sample string 4"
}

application/xml, text/xml

Sample:
<PricePolicyRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model.WebShop">
  <CompanyCode>sample string 3</CompanyCode>
  <PolicyType>1</PolicyType>
  <TenantCode>sample string 2</TenantCode>
  <UserId>sample string 4</UserId>
</PricePolicyRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteResponseOfListOfChargeExplainModel
NameDescriptionTypeAdditional information
success

boolean

None.

errors

string

None.

unauthed

boolean

None.

result

Collection of ChargeExplainModel

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "errors": "sample string 2",
  "unauthed": true,
  "result": [
    {
      "Name": "sample string 1",
      "Type": "sample string 2",
      "Value": {
        "sample string 1": 2,
        "sample string 3": 4
      }
    },
    {
      "Name": "sample string 1",
      "Type": "sample string 2",
      "Value": {
        "sample string 1": 2,
        "sample string 3": 4
      }
    }
  ]
}

application/xml, text/xml

Sample:
<RemoteResponseOfArrayOfChargeExplainModelx217VT0M xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">
  <Errors>sample string 2</Errors>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model.WebShop">
    <d2p1:ChargeExplainModel>
      <d2p1:Name>sample string 1</d2p1:Name>
      <d2p1:Type>sample string 2</d2p1:Type>
      <d2p1:Value xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:KeyValueOfstringint>
          <d4p1:Key>sample string 1</d4p1:Key>
          <d4p1:Value>2</d4p1:Value>
        </d4p1:KeyValueOfstringint>
        <d4p1:KeyValueOfstringint>
          <d4p1:Key>sample string 3</d4p1:Key>
          <d4p1:Value>4</d4p1:Value>
        </d4p1:KeyValueOfstringint>
      </d2p1:Value>
    </d2p1:ChargeExplainModel>
    <d2p1:ChargeExplainModel>
      <d2p1:Name>sample string 1</d2p1:Name>
      <d2p1:Type>sample string 2</d2p1:Type>
      <d2p1:Value xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:KeyValueOfstringint>
          <d4p1:Key>sample string 1</d4p1:Key>
          <d4p1:Value>2</d4p1:Value>
        </d4p1:KeyValueOfstringint>
        <d4p1:KeyValueOfstringint>
          <d4p1:Key>sample string 3</d4p1:Key>
          <d4p1:Value>4</d4p1:Value>
        </d4p1:KeyValueOfstringint>
      </d2p1:Value>
    </d2p1:ChargeExplainModel>
  </Result>
  <Success>true</Success>
  <UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfArrayOfChargeExplainModelx217VT0M>