PUT api/AppInstalls
Updates a particular app install. If one doesn't exist for the posted device yet, it is created, otherwise it is updated.
Request Information
URI Parameters
None.
Body Parameters
AppInstall| Name | Description | Type | Additional information |
|---|---|---|---|
| DeviceIdentifier |
The device identifier that uniquely identifies the device. |
string |
None. |
| Description |
The description passed along from the app to help uniquely identify the device. |
string |
None. |
| AppName |
The name of the app that is installed. |
string |
None. |
| Version |
The version of the app that is installed. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DeviceIdentifier": "sample string 1",
"Description": "sample string 2",
"AppName": "sample string 3",
"Version": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
A 204 no content response.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.