POST api/v1/AppUser/updateDeviceRegistration

Request Information

URI Parameters

None.

Body Parameters

deviceUpdate
NameDescriptionTypeAdditional information
idApp

globally unique identifier

None.

idUser

globally unique identifier

None.

deviceUuid

string

None.

tokenDevice

string

None.

Request Formats

application/json, text/json

Sample:
{
  "idApp": "02971115-8b9d-4c05-9c21-d4c27448cf14",
  "idUser": "7cd87218-f615-4af2-b7dd-00e3b2e87e2e",
  "deviceUuid": "sample string 3",
  "tokenDevice": "sample string 4"
}

application/xml, text/xml

Sample:
<deviceUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.mybooker.it.Models">
  <deviceUuid>sample string 3</deviceUuid>
  <idApp>02971115-8b9d-4c05-9c21-d4c27448cf14</idApp>
  <idUser>7cd87218-f615-4af2-b7dd-00e3b2e87e2e</idUser>
  <tokenDevice>sample string 4</tokenDevice>
</deviceUpdate>

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 'deviceUpdate'.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>