GET api/Appoinment/GetVendorOnBoardingApnmntItemDeliveryByAppoinmentId?AppoinmentId={AppoinmentId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AppoinmentId

integer

Required

Body Parameters

None.

Response Information

Resource Description

ResponseApnmntItemDelivery
NameDescriptionTypeAdditional information
data

ApnmntItemDelivery

None.

success

string

None.

error_message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {
    "appointment_id": 1,
    "appointment_type": "sample string 1",
    "partner_name": "sample string 2",
    "agent_code": 3,
    "agent_name": "sample string 4",
    "agent_location": "sample string 5",
    "delivery_location": "sample string 6",
    "date": "sample string 7",
    "time_slot": "sample string 8",
    "weight_collection_code": "sample string 9",
    "vehicle_number": "sample string 10",
    "remarks": "sample string 11",
    "total_no_of_transactions": 12,
    "total_pcs": 13,
    "total_weight": 14.0
  },
  "success": "sample string 1",
  "error_message": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseApnmntItemDelivery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PartnerNetwork.Models">
  <error_message>sample string 2</error_message>
  <success>sample string 1</success>
  <data>
    <agent_code>3</agent_code>
    <agent_location>sample string 5</agent_location>
    <agent_name>sample string 4</agent_name>
    <appointment_id>1</appointment_id>
    <appointment_type>sample string 1</appointment_type>
    <date>sample string 7</date>
    <delivery_location>sample string 6</delivery_location>
    <partner_name>sample string 2</partner_name>
    <remarks>sample string 11</remarks>
    <time_slot>sample string 8</time_slot>
    <total_no_of_transactions>12</total_no_of_transactions>
    <total_pcs>13</total_pcs>
    <total_weight>14</total_weight>
    <vehicle_number>sample string 10</vehicle_number>
    <weight_collection_code>sample string 9</weight_collection_code>
  </data>
</ResponseApnmntItemDelivery>