GET api/{context}/partner/AskArray

parameters:   ?text={text}&secondary={secondary}

Retrieve Ask Array by Partner ID and AskArray Code

Request Information

ParameterDescriptionAdditional information
text
The ID of the partner to look up.

Define this parameter in the request URI.

secondary
The ask array code.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "AskID": 1,
    "AskAmount": "sample string 2"
  },
  {
    "AskID": 1,
    "AskAmount": "sample string 2"
  },
  {
    "AskID": 1,
    "AskAmount": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPartnerModel.PartnerAskModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDS.Web.WebApi.Models">
  <PartnerModel.PartnerAskModel>
    <AskAmount>sample string 2</AskAmount>
    <AskID>1</AskID>
  </PartnerModel.PartnerAskModel>
  <PartnerModel.PartnerAskModel>
    <AskAmount>sample string 2</AskAmount>
    <AskID>1</AskID>
  </PartnerModel.PartnerAskModel>
  <PartnerModel.PartnerAskModel>
    <AskAmount>sample string 2</AskAmount>
    <AskID>1</AskID>
  </PartnerModel.PartnerAskModel>
</ArrayOfPartnerModel.PartnerAskModel>