PUT api/RoachRage/PutAccount?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

RoachRage_Accounts
NameDescriptionTypeAdditional information
pkID

globally unique identifier

None.

UserID

string

None.

FirstName

string

None.

LastName

string

None.

Coins

integer

None.

Level

integer

None.

HighScore

integer

None.

GameCenterID

string

None.

GooglePlayID

string

None.

cannon_Purchased

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "pkID": "9276fe76-12fb-45c2-b5ca-1d84ec830a90",
  "UserID": "sample string 2",
  "FirstName": "sample string 3",
  "LastName": "sample string 4",
  "Coins": 1,
  "Level": 1,
  "HighScore": 1,
  "GameCenterID": "sample string 5",
  "GooglePlayID": "sample string 6",
  "cannon_Purchased": true
}

text/html

Sample:
{"pkID":"9276fe76-12fb-45c2-b5ca-1d84ec830a90","UserID":"sample string 2","FirstName":"sample string 3","LastName":"sample string 4","Coins":1,"Level":1,"HighScore":1,"GameCenterID":"sample string 5","GooglePlayID":"sample string 6","cannon_Purchased":true}

application/xml, text/xml

Sample:
<RoachRage_Accounts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PJMLicensing.Models">
  <Coins>1</Coins>
  <FirstName>sample string 3</FirstName>
  <GameCenterID>sample string 5</GameCenterID>
  <GooglePlayID>sample string 6</GooglePlayID>
  <HighScore>1</HighScore>
  <LastName>sample string 4</LastName>
  <Level>1</Level>
  <UserID>sample string 2</UserID>
  <cannon_Purchased>true</cannon_Purchased>
  <pkID>9276fe76-12fb-45c2-b5ca-1d84ec830a90</pkID>
</RoachRage_Accounts>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.