POST api/Account/GeolocationCheck
Request Information
URI Parameters
None.
Body Parameters
GeolocationCheckInputModelName | Description | Type | Additional information |
---|---|---|---|
SessionID | string |
None. |
|
Longitude | decimal number |
None. |
|
Latitude | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "SessionID": "sample string 1", "Longitude": 2.1, "Latitude": 3.1 }
text/html
Sample:
{"SessionID":"sample string 1","Longitude":2.1,"Latitude":3.1}
application/xml, text/xml
Sample:
<GeolocationCheckInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FantasyCoverage.BusinessObjects"> <Latitude>3.1</Latitude> <Longitude>2.1</Longitude> <SessionID>sample string 1</SessionID> </GeolocationCheckInputModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseModelName | Description | Type | Additional information |
---|---|---|---|
Message | string |
None. |
|
Status | boolean |
None. |
|
Data | Object |
None. |
|
ResultCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "Message": "sample string 1", "Status": true, "Data": {}, "ResultCode": 4 }
text/html
Sample:
{"Message":"sample string 1","Status":true,"Data":{},"ResultCode":4}
application/xml, text/xml
Sample:
<ResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FantasyCoverage.BusinessObjects"> <Data /> <Message>sample string 1</Message> <ResultCode>4</ResultCode> <Status>true</Status> </ResponseModel>