GET GetAchievementsByConsumer

Get Achievement by Consumer

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of AchievementsByConsumerResponse
NameDescriptionTypeAdditional information
AchievementID

integer

None.

Name

string

None.

Score

integer

None.

Level

integer

None.

Won

boolean

None.

NextPrize

integer

None.

NextLevel

integer

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AchievementID": 1,
    "Name": "sample string 2",
    "Score": 3,
    "Level": 4,
    "Won": true,
    "NextPrize": 6,
    "NextLevel": 7,
    "Description": "sample string 8"
  },
  {
    "AchievementID": 1,
    "Name": "sample string 2",
    "Score": 3,
    "Level": 4,
    "Won": true,
    "NextPrize": 6,
    "NextLevel": 7,
    "Description": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAchievementsByConsumerResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YoVendoRecargaAPI.WebAPI.Models">
  <AchievementsByConsumerResponse>
    <AchievementID>1</AchievementID>
    <Description>sample string 8</Description>
    <Level>4</Level>
    <Name>sample string 2</Name>
    <NextLevel>7</NextLevel>
    <NextPrize>6</NextPrize>
    <Score>3</Score>
    <Won>true</Won>
  </AchievementsByConsumerResponse>
  <AchievementsByConsumerResponse>
    <AchievementID>1</AchievementID>
    <Description>sample string 8</Description>
    <Level>4</Level>
    <Name>sample string 2</Name>
    <NextLevel>7</NextLevel>
    <NextPrize>6</NextPrize>
    <Score>3</Score>
    <Won>true</Won>
  </AchievementsByConsumerResponse>
</ArrayOfAchievementsByConsumerResponse>