POST api/GameStage/SaveUserDeviceInfo

Request Information

URI Parameters

None.

Body Parameters

UserDeviceInfo
NameDescriptionTypeAdditional information
Id

integer

None.

UUID

string

None.

DeviceName

string

None.

MAC

string

None.

TimeZone

string

None.

LastGamePlayed

date

None.

CurrentStage

integer

None.

DeviceType

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "UUID": "sample string 1",
  "DeviceName": "sample string 2",
  "MAC": "sample string 3",
  "TimeZone": "sample string 4",
  "LastGamePlayed": "2025-11-30T23:02:15.7112217+00:00",
  "CurrentStage": 1,
  "DeviceType": "sample string 5"
}

application/xml, text/xml

Sample:
<UserDeviceInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZipGooAPI.Models">
  <CurrentStage>1</CurrentStage>
  <DeviceName>sample string 2</DeviceName>
  <DeviceType>sample string 5</DeviceType>
  <Id>1</Id>
  <LastGamePlayed>2025-11-30T23:02:15.7112217+00:00</LastGamePlayed>
  <MAC>sample string 3</MAC>
  <TimeZone>sample string 4</TimeZone>
  <UUID>sample string 1</UUID>
</UserDeviceInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.