GET api/RouteData/GetPhoneTourStatus?Code={Code}&BranchNo={BranchNo}&DriverId={DriverId}&DriverCode={DriverCode}&DriverName={DriverName}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Code

integer

Required

BranchNo

integer

Required

DriverId

integer

Required

DriverCode

string

Required

DriverName

string

Required

Body Parameters

None.

Response Information

Resource Description

PhoneTourStatus
NameDescriptionTypeAdditional information
Id

integer

None.

Code

integer

None.

Status

string

None.

PaymentsCount

integer

None.

TotalSum

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Code": 2,
  "Status": "sample string 3",
  "PaymentsCount": 4,
  "TotalSum": 5.0
}

application/xml, text/xml

Sample:
<PhoneTourStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PhoenixServiceRest.Models">
  <Code>2</Code>
  <Id>1</Id>
  <PaymentsCount>4</PaymentsCount>
  <Status>sample string 3</Status>
  <TotalSum>5</TotalSum>
</PhoneTourStatus>