GET api/Misc/GetPBPDetails?ZipCode={ZipCode}&CompanyCode={CompanyCode}&PlanYear={PlanYear}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ZipCode

string

Required

String length: inclusive between 0 and 5

CompanyCode

string

Required

String length: inclusive between 0 and 5

PlanYear

integer

Required

Body Parameters

None.

Request Formats

text/json, application/json

Sample:
Request sample for request 

--------------------------------------------------------------------------------------------------------------------------------

{
  "ZipCode": "sample string 1",
  "CompanyCode": "sample string 2",
  "PlanYear": 3
}

--------------------------------------------------------------------------------------------------------------------------------


text/xml, application/xml

Sample:
Request sample for request 

--------------------------------------------------------------------------------------------------------------------------------

<PBPRequest xmlns="http://schemas.datacontract.org/2004/07/AHC.WebServices.WebAPI.DTOs" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CompanyCode>sample string 2</CompanyCode>
  <PlanYear>3</PlanYear>
  <ZipCode>sample string 1</ZipCode>
</PBPRequest>

--------------------------------------------------------------------------------------------------------------------------------


Response Information

Resource Description

IHttpActionResult

None.

Response Formats

text/json, application/json

Sample:

--------------------------------------------------------------------------------------------------------------------------------

[
  {
    "PBPID": "sample string 1",
    "DescriptionLong": "sample string 2"
  },
  {
    "PBPID": "sample string 1",
    "DescriptionLong": "sample string 2"
  }
]

--------------------------------------------------------------------------------------------------------------------------------


text/xml, application/xml

Sample:

--------------------------------------------------------------------------------------------------------------------------------

<ArrayOfPBPResponse xmlns="http://schemas.datacontract.org/2004/07/AHC.WebServices.WebAPI.DTOs" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <PBPResponse>
    <DescriptionLong>sample string 2</DescriptionLong>
    <PBPID>sample string 1</PBPID>
  </PBPResponse>
  <PBPResponse>
    <DescriptionLong>sample string 2</DescriptionLong>
    <PBPID>sample string 1</PBPID>
  </PBPResponse>
</ArrayOfPBPResponse>

--------------------------------------------------------------------------------------------------------------------------------