POST api/User/InsertUsrLoc
Request Information
URI Parameters
None.
Body Parameters
UserLocName | Description | Type | Additional information |
---|---|---|---|
Crux | globally unique identifier |
None. |
|
Lat | decimal number |
None. |
|
Long | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "Crux": "c1876862-c3b9-4eb6-8376-570657958db3", "Lat": 2.0, "Long": 3.0 }
application/xml, text/xml
Sample:
<UserLoc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TheanAPI.DTO"> <Crux>c1876862-c3b9-4eb6-8376-570657958db3</Crux> <Lat>2</Lat> <Long>3</Long> </UserLoc>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDtoOfObjectName | Description | Type | Additional information |
---|---|---|---|
Status_cd | boolean |
None. |
|
Data | Object |
None. |
|
status_Desc | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Status_cd": true, "Data": {}, "status_Desc": "sample string 3" }
application/xml, text/xml
Sample:
<ResponseDtoOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TheanAPI.DTO"> <Data /> <Status_cd>true</Status_cd> <status_Desc>sample string 3</status_Desc> </ResponseDtoOfanyType>