POST api/BTMobile/CheckInVisitRecord
(Input Params = clientId, clientTypeId, ipAddress, latitude, longitude, ReportFilled, userId,userVisitReportId) (Result 1 = Success, Result 0 = Failed)
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
model |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "userVisitReportId": 1, "latitude": "sample string 2", "longitude": "sample string 3", "clientTypeId": 4, "clientId": 5, "ipAddress": "sample string 6", "userId": 7, "ReportFilled": 8, "ErrorType": 9, "Result": 10 }
application/xml, text/xml
Sample:
<MBTCheckInVisitModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/crmData.Models"> <ErrorType>9</ErrorType> <Result>10</Result> <ReportFilled>8</ReportFilled> <clientId>5</clientId> <clientTypeId>4</clientTypeId> <ipAddress>sample string 6</ipAddress> <latitude>sample string 2</latitude> <longitude>sample string 3</longitude> <userId>7</userId> <userVisitReportId>1</userVisitReportId> </MBTCheckInVisitModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.