POST services/api/rest/v1/Get_Delivery_ById

Request Information

URI Parameters

None.

Body Parameters

Rest_CustomFilter
NameDescriptionTypeAdditional information
Id

integer

None.

LocationId

integer

None.

Type

integer

None.

ActualInvNo

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "LocationId": 2,
  "Type": 3,
  "ActualInvNo": 4
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RestDelivery_Master
NameDescriptionTypeAdditional information
DeliveryId

integer

None.

DriverId

integer

None.

AreaId

integer

None.

DayOpenId

integer

None.

TotAmount

decimal number

None.

VehicleNo

string

None.

Status

integer

None.

TotDeliveryCharges

decimal number

None.

TotalNoofInvNo

integer

None.

LocId

integer

None.

DeliveryDetails

Collection of RestDeliveryDetails

None.

Response Formats

application/json, text/json

Sample:
{
  "DeliveryId": 1,
  "DriverId": 2,
  "AreaId": 3,
  "DayOpenId": 4,
  "TotAmount": 5.0,
  "VehicleNo": "sample string 6",
  "Status": 7,
  "TotDeliveryCharges": 8.0,
  "TotalNoofInvNo": 9,
  "LocId": 10,
  "DeliveryDetails": [
    {
      "Id": 1,
      "DeliveryId": 2,
      "InvNo": 3,
      "TotAmount": 4.0,
      "Status": 5,
      "DeliveryCharge": 6.0,
      "LocId": 7
    },
    {
      "Id": 1,
      "DeliveryId": 2,
      "InvNo": 3,
      "TotAmount": 4.0,
      "Status": 5,
      "DeliveryCharge": 6.0,
      "LocId": 7
    }
  ]
}