POST api/sendUpdates/{userId}/{deviceId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | globally unique identifier |
Required |
|
| deviceId | string |
Required |
Body Parameters
PostData| Name | Description | Type | Additional information |
|---|---|---|---|
| postObjects | Collection of IncrementalUpdate |
None. |
Request Formats
application/json, text/json
Sample:
{
"postObjects": [
{
"entityId": "da0aef6c-15c7-48f9-8162-2d18136dcead",
"entityType": "sample string 2",
"updateType": "sample string 3",
"updatedOn": "2025-12-12T04:35:48.8427074+00:00",
"content": "sample string 5"
},
{
"entityId": "da0aef6c-15c7-48f9-8162-2d18136dcead",
"entityType": "sample string 2",
"updateType": "sample string 3",
"updatedOn": "2025-12-12T04:35:48.8427074+00:00",
"content": "sample string 5"
}
]
}
text/html
Sample:
{"postObjects":[{"entityId":"da0aef6c-15c7-48f9-8162-2d18136dcead","entityType":"sample string 2","updateType":"sample string 3","updatedOn":"2025-12-12T04:35:48.8427074+00:00","content":"sample string 5"},{"entityId":"da0aef6c-15c7-48f9-8162-2d18136dcead","entityType":"sample string 2","updateType":"sample string 3","updatedOn":"2025-12-12T04:35:48.8427074+00:00","content":"sample string 5"}]}
application/xml, text/xml
Sample:
<PostData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TaxDay">
<postObjects>
<IncrementalUpdate>
<content>sample string 5</content>
<entityId>da0aef6c-15c7-48f9-8162-2d18136dcead</entityId>
<entityType>sample string 2</entityType>
<updateType>sample string 3</updateType>
<updatedOn>2025-12-12T04:35:48.8427074+00:00</updatedOn>
</IncrementalUpdate>
<IncrementalUpdate>
<content>sample string 5</content>
<entityId>da0aef6c-15c7-48f9-8162-2d18136dcead</entityId>
<entityType>sample string 2</entityType>
<updateType>sample string 3</updateType>
<updatedOn>2025-12-12T04:35:48.8427074+00:00</updatedOn>
</IncrementalUpdate>
</postObjects>
</PostData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |