POST api/hire/UpdateCustomerPickup
Request Information
URI Parameters
None.
Body Parameters
UpdateCustomerPickupViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ArrivedTime | decimal number |
None. |
|
| HireStatus | string |
None. |
|
| PickupLatitude | decimal number |
None. |
|
| PickupLongitude | decimal number |
None. |
|
| PickupAddress | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"ArrivedTime": 2.1,
"HireStatus": "sample string 3",
"PickupLatitude": 4.1,
"PickupLongitude": 5.1,
"PickupAddress": "sample string 6"
}
application/xml, text/xml
Sample:
<UpdateCustomerPickupViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Codezync.Taxi.ViewModels"> <ArrivedTime>2.1</ArrivedTime> <HireStatus>sample string 3</HireStatus> <Id>1</Id> <PickupAddress>sample string 6</PickupAddress> <PickupLatitude>4.1</PickupLatitude> <PickupLongitude>5.1</PickupLongitude> </UpdateCustomerPickupViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.