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
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AppInstall'.

Response Information

Resource Description

A 204 no content response.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.