POST api/NumberLand/PostActivityGameData

Request Information

URI Parameters

None.

Body Parameters

NumberLandActivityDataPostModel
NameDescriptionTypeAdditional information
UserID

globally unique identifier

Required

ItemDetails

integer

Required

Range: inclusive between 1 and 9

TracingTime

decimal number

Range: inclusive between 0 and 200

TracingCompleted

boolean

None.

StarsAcquired

integer

Range: inclusive between 0 and 1000

BubblePopTotalTime

decimal number

Range: inclusive between 0 and 200

BubbleSpawned

integer

Range: inclusive between 0 and 100

BubblePopped

integer

Range: inclusive between 0 and 100

BubblePopActivityCompleted

boolean

None.

LeftHandBubblePopped

integer

Range: inclusive between 0 and 100

RightHandBubblePopped

integer

Range: inclusive between 0 and 100

AvgFPS

decimal number

Required

Range: inclusive between 0 and 5000

MinFPS

decimal number

Required

Range: inclusive between 0 and 5000

MaxFPS

decimal number

Required

Range: inclusive between 0 and 5000

FPSBelow19Time

decimal number

Required

Range: inclusive between 0 and 5000

FPSBetween19And30Time

decimal number

Required

Range: inclusive between 0 and 5000

FPSAbove30Time

decimal number

Required

Range: inclusive between 0 and 5000

Request Formats

application/json, text/json

Sample:
{
  "UserID": "4616a227-730f-4f99-979e-977bf6f7f024",
  "ItemDetails": 2,
  "TracingTime": 3.1,
  "TracingCompleted": true,
  "StarsAcquired": 5,
  "BubblePopTotalTime": 6.1,
  "BubbleSpawned": 7,
  "BubblePopped": 8,
  "BubblePopActivityCompleted": true,
  "LeftHandBubblePopped": 10,
  "RightHandBubblePopped": 11,
  "AvgFPS": 12.1,
  "MinFPS": 13.1,
  "MaxFPS": 14.1,
  "FPSBelow19Time": 15.1,
  "FPSBetween19And30Time": 16.1,
  "FPSAbove30Time": 17.1
}

application/xml, text/xml

Sample:
<NumberLandActivityDataPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers.MongoDB.ECDGames">
  <AvgFPS>12.1</AvgFPS>
  <BubblePopActivityCompleted>true</BubblePopActivityCompleted>
  <BubblePopTotalTime>6.1</BubblePopTotalTime>
  <BubblePopped>8</BubblePopped>
  <BubbleSpawned>7</BubbleSpawned>
  <FPSAbove30Time>17.1</FPSAbove30Time>
  <FPSBelow19Time>15.1</FPSBelow19Time>
  <FPSBetween19And30Time>16.1</FPSBetween19And30Time>
  <ItemDetails>2</ItemDetails>
  <LeftHandBubblePopped>10</LeftHandBubblePopped>
  <MaxFPS>14.1</MaxFPS>
  <MinFPS>13.1</MinFPS>
  <RightHandBubblePopped>11</RightHandBubblePopped>
  <StarsAcquired>5</StarsAcquired>
  <TracingCompleted>true</TracingCompleted>
  <TracingTime>3.1</TracingTime>
  <UserID>4616a227-730f-4f99-979e-977bf6f7f024</UserID>
</NumberLandActivityDataPostModel>

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.