POST api/CheckIn/Checkout

Request Information

URI Parameters

None.

Body Parameters

CheckOutRequest
NameDescriptionTypeAdditional information
RecordID

integer

None.

CompId

integer

None.

LoginID

string

None.

DealerID

integer

None.

CheckOutLatitude

decimal number

None.

CheckOutLongitude

decimal number

None.

CheckoutLoc

string

None.

Request Formats

application/json, text/json

Sample:
{
  "RecordID": 1,
  "CompId": 2,
  "LoginID": "sample string 3",
  "DealerID": 4,
  "CheckOutLatitude": 5.0,
  "CheckOutLongitude": 6.0,
  "CheckoutLoc": "sample string 7"
}

text/html

Sample:
{"RecordID":1,"CompId":2,"LoginID":"sample string 3","DealerID":4,"CheckOutLatitude":5.0,"CheckOutLongitude":6.0,"CheckoutLoc":"sample string 7"}

application/xml, text/xml

Sample:
<CheckInApiController.CheckOutRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KeyCodeWebsApis.Controllers">
  <CheckOutLatitude>5</CheckOutLatitude>
  <CheckOutLongitude>6</CheckOutLongitude>
  <CheckoutLoc>sample string 7</CheckoutLoc>
  <CompId>2</CompId>
  <DealerID>4</DealerID>
  <LoginID>sample string 3</LoginID>
  <RecordID>1</RecordID>
</CheckInApiController.CheckOutRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.