DELETE api/RoachRage/DeleteAccount?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
RoachRage_Accounts| Name | Description | Type | Additional 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. |
Response Formats
application/json, text/json
Sample:
{
"pkID": "7af97795-c1c3-4786-9cea-c003c6ef02b8",
"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":"7af97795-c1c3-4786-9cea-c003c6ef02b8","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>7af97795-c1c3-4786-9cea-c003c6ef02b8</pkID> </RoachRage_Accounts>