GET api/Appoinment/GetAppoinmentList
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ResponseAppoinmentListName | Description | Type | Additional information |
---|---|---|---|
success | string |
None. |
|
error_message | string |
None. |
|
data | Collection of AppoinmentList |
None. |
Response Formats
application/json, text/json
Sample:
{ "success": "sample string 1", "error_message": "sample string 2", "data": [ { "appointment_type": "sample string 1", "agent_name": "sample string 2", "appointment_id": 3, "Total_pcs": 4, "total_weight": 5.0, "Delivery_location": "sample string 6", "date": "sample string 7" }, { "appointment_type": "sample string 1", "agent_name": "sample string 2", "appointment_id": 3, "Total_pcs": 4, "total_weight": 5.0, "Delivery_location": "sample string 6", "date": "sample string 7" } ] }
application/xml, text/xml
Sample:
<ResponseAppoinmentList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PartnerNetwork.Models"> <data> <AppoinmentList> <Delivery_location>sample string 6</Delivery_location> <Total_pcs>4</Total_pcs> <agent_name>sample string 2</agent_name> <appointment_id>3</appointment_id> <appointment_type>sample string 1</appointment_type> <date>sample string 7</date> <total_weight>5</total_weight> </AppoinmentList> <AppoinmentList> <Delivery_location>sample string 6</Delivery_location> <Total_pcs>4</Total_pcs> <agent_name>sample string 2</agent_name> <appointment_id>3</appointment_id> <appointment_type>sample string 1</appointment_type> <date>sample string 7</date> <total_weight>5</total_weight> </AppoinmentList> </data> <error_message>sample string 2</error_message> <success>sample string 1</success> </ResponseAppoinmentList>