GET api/CustomerDetail/GetPostalCodes?country_cd={country_cd}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
country_cd
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "state": [
    {
      "postalcode": "sample string 1",
      "state": "sample string 2",
      "stateName": "sample string 3"
    },
    {
      "postalcode": "sample string 1",
      "state": "sample string 2",
      "stateName": "sample string 3"
    },
    {
      "postalcode": "sample string 1",
      "state": "sample string 2",
      "stateName": "sample string 3"
    }
  ]
}

text/xml

Sample:
<StateDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EPDS.Model.Customer">
  <state>
    <PostalCodes>
      <postalcode>sample string 1</postalcode>
      <state>sample string 2</state>
      <stateName>sample string 3</stateName>
    </PostalCodes>
    <PostalCodes>
      <postalcode>sample string 1</postalcode>
      <state>sample string 2</state>
      <stateName>sample string 3</stateName>
    </PostalCodes>
    <PostalCodes>
      <postalcode>sample string 1</postalcode>
      <state>sample string 2</state>
      <stateName>sample string 3</stateName>
    </PostalCodes>
  </state>
</StateDetails>