PUT api/content/v4/userlocation
Request Information
URI Parameters
None.
Body Parameters
APIUserLocationPutRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| CustomerId | integer |
None. |
|
| UserUniqueId | integer |
None. |
|
| StopId | string |
None. |
|
| Name | string |
None. |
|
| Address | string |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| Type | integer |
None. |
|
| Timestamp | date |
None. |
|
| UpdatedDate | date |
None. |
|
| DeletedDate | date |
None. |
|
| isDeleted | boolean |
None. |
|
| UniqueId | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustomerId": 2,
"UserUniqueId": 3,
"StopId": "sample string 4",
"Name": "sample string 5",
"Address": "sample string 6",
"Latitude": 1.0,
"Longitude": 1.0,
"Type": 1,
"Timestamp": "2026-01-16T04:34:50.7060922+00:00",
"UpdatedDate": "2026-01-16T04:34:50.7060922+00:00",
"DeletedDate": "2026-01-16T04:34:50.7060922+00:00",
"isDeleted": true,
"UniqueId": "6ebb02ef-ed0f-4c8b-8acd-5d8028147ca8"
}
application/xml, text/xml
Sample:
<APIUserLocationPutRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <Address>sample string 6</Address> <CustomerId>2</CustomerId> <DeletedDate>2026-01-16T04:34:50.7060922+00:00</DeletedDate> <Id>1</Id> <Latitude>1</Latitude> <Longitude>1</Longitude> <Name>sample string 5</Name> <StopId>sample string 4</StopId> <Timestamp>2026-01-16T04:34:50.7060922+00:00</Timestamp> <Type>1</Type> <UniqueId>6ebb02ef-ed0f-4c8b-8acd-5d8028147ca8</UniqueId> <UpdatedDate>2026-01-16T04:34:50.7060922+00:00</UpdatedDate> <UserUniqueId>3</UserUniqueId> <isDeleted>true</isDeleted> </APIUserLocationPutRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APICommonWrapperOfAPIUserLocationResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | HttpStatusCode |
None. |
|
| Message | string |
None. |
|
| Data | APIUserLocationResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": {
"Status": true,
"Message": "sample string 2"
}
}
application/xml, text/xml
Sample:
<APICommonWrapperOfAPIUserLocationResultMTRdQN6P xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/">
<d2p1:Message>sample string 2</d2p1:Message>
<d2p1:Status>true</d2p1:Status>
</Data>
<Message>sample string 1</Message>
<Status>Continue</Status>
</APICommonWrapperOfAPIUserLocationResultMTRdQN6P>