GET GetMappingModeForSid?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

ResponseOfMappingModeDetail
NameDescriptionTypeAdditional information
Message

string

None.

Status

boolean

None.

Body

MappingModeDetail

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Status": true,
  "Body": {
    "BasicModeEnabled": true,
    "AdvanceModeEnabled": true,
    "DefaultMappingMode": 1,
    "RateCategoryEnabled": true,
    "InclusionEnabled": true
  }
}

text/html

Sample:
{"Message":"sample string 1","Status":true,"Body":{"BasicModeEnabled":true,"AdvanceModeEnabled":true,"DefaultMappingMode":1,"RateCategoryEnabled":true,"InclusionEnabled":true}}

application/xml, text/xml

Sample:
<ResponseOfMappingModeDetailhxVPT35K 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.Settings">
    <d2p1:AdvanceModeEnabled>true</d2p1:AdvanceModeEnabled>
    <d2p1:BasicModeEnabled>true</d2p1:BasicModeEnabled>
    <d2p1:DefaultMappingMode>1</d2p1:DefaultMappingMode>
    <d2p1:InclusionEnabled>true</d2p1:InclusionEnabled>
    <d2p1:RateCategoryEnabled>true</d2p1:RateCategoryEnabled>
  </Body>
  <Message>sample string 1</Message>
  <Status>true</Status>
</ResponseOfMappingModeDetailhxVPT35K>