GET api/BillAccount?token={token}

list of all the accounts that each driver can use

Request Information

Parameters

NameDescriptionAdditional information
token
generated token on login

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "PayOption": "sample string 2"
  },
  {
    "ID": 1,
    "PayOption": "sample string 2"
  },
  {
    "ID": 1,
    "PayOption": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBillAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PardDriverWebService.Models">
  <BillAccount>
    <ID>1</ID>
    <PayOption>sample string 2</PayOption>
  </BillAccount>
  <BillAccount>
    <ID>1</ID>
    <PayOption>sample string 2</PayOption>
  </BillAccount>
  <BillAccount>
    <ID>1</ID>
    <PayOption>sample string 2</PayOption>
  </BillAccount>
</ArrayOfBillAccount>