POST api/Cashbook?firstDayOfMonth={firstDayOfMonth}&lastDayOfMonth={lastDayOfMonth}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
firstDayOfMonth

date

Required

lastDayOfMonth

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of DataJsonTransportActual
NameDescriptionTypeAdditional information
ID

integer

None.

VehicleID

integer

None.

DriverID

integer

None.

PartnerId

integer

None.

TotalTransportActual

decimal number

None.

FirstOtherCostPrice

decimal number

None.

SecondOtherCostPrice

decimal number

None.

ThirdOtherCostPrice

decimal number

None.

SumTranActual

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "VehicleID": 2,
    "DriverID": 3,
    "PartnerId": 4,
    "TotalTransportActual": 1.1,
    "FirstOtherCostPrice": 1.1,
    "SecondOtherCostPrice": 1.1,
    "ThirdOtherCostPrice": 1.1,
    "SumTranActual": 1.1
  },
  {
    "ID": 1,
    "VehicleID": 2,
    "DriverID": 3,
    "PartnerId": 4,
    "TotalTransportActual": 1.1,
    "FirstOtherCostPrice": 1.1,
    "SecondOtherCostPrice": 1.1,
    "ThirdOtherCostPrice": 1.1,
    "SumTranActual": 1.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfDataJsonTransportActual xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <DataJsonTransportActual>
    <DriverID>3</DriverID>
    <FirstOtherCostPrice>1.1</FirstOtherCostPrice>
    <ID>1</ID>
    <PartnerId>4</PartnerId>
    <SecondOtherCostPrice>1.1</SecondOtherCostPrice>
    <SumTranActual>1.1</SumTranActual>
    <ThirdOtherCostPrice>1.1</ThirdOtherCostPrice>
    <TotalTransportActual>1.1</TotalTransportActual>
    <VehicleID>2</VehicleID>
  </DataJsonTransportActual>
  <DataJsonTransportActual>
    <DriverID>3</DriverID>
    <FirstOtherCostPrice>1.1</FirstOtherCostPrice>
    <ID>1</ID>
    <PartnerId>4</PartnerId>
    <SecondOtherCostPrice>1.1</SecondOtherCostPrice>
    <SumTranActual>1.1</SumTranActual>
    <ThirdOtherCostPrice>1.1</ThirdOtherCostPrice>
    <TotalTransportActual>1.1</TotalTransportActual>
    <VehicleID>2</VehicleID>
  </DataJsonTransportActual>
</ArrayOfDataJsonTransportActual>