POST api/incrementalupdate/{userId}/{deviceId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

globally unique identifier

Required

deviceId

string

Required

Body Parameters

IncrementalUpdate
NameDescriptionTypeAdditional information
entityId

globally unique identifier

None.

entityType

string

None.

updateType

string

None.

updatedOn

date

None.

content

string

None.

Request Formats

application/json, text/json

Sample:
{
  "entityId": "0b772140-2eb3-4c8c-8dda-67fc0ff312d8",
  "entityType": "sample string 2",
  "updateType": "sample string 3",
  "updatedOn": "2025-12-12T04:35:50.4576627+00:00",
  "content": "sample string 5"
}

text/html

Sample:
{"entityId":"0b772140-2eb3-4c8c-8dda-67fc0ff312d8","entityType":"sample string 2","updateType":"sample string 3","updatedOn":"2025-12-12T04:35:50.4576627+00:00","content":"sample string 5"}

application/xml, text/xml

Sample:
<IncrementalUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TaxDay">
  <content>sample string 5</content>
  <entityId>0b772140-2eb3-4c8c-8dda-67fc0ff312d8</entityId>
  <entityType>sample string 2</entityType>
  <updateType>sample string 3</updateType>
  <updatedOn>2025-12-12T04:35:50.4576627+00:00</updatedOn>
</IncrementalUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.