GET api/UserMasters?userId={userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
UserRankingDto| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | string |
None. |
|
| TotalQuizzes | integer |
None. |
|
| CompletedQuizzes | integer |
None. |
|
| TotalCorrectAnswers | integer |
None. |
|
| TotalWrongAnswers | integer |
None. |
|
| AvgCompletedPercentage | decimal number |
None. |
|
| AvgAttemptedPercentage | decimal number |
None. |
|
| AvgIncompletePercentage | decimal number |
None. |
|
| Rank | integer |
None. |
|
| ScreenName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserId": "sample string 1",
"TotalQuizzes": 2,
"CompletedQuizzes": 3,
"TotalCorrectAnswers": 4,
"TotalWrongAnswers": 5,
"AvgCompletedPercentage": 6.1,
"AvgAttemptedPercentage": 7.1,
"AvgIncompletePercentage": 8.1,
"Rank": 9,
"ScreenName": "sample string 10"
}
application/xml, text/xml
Sample:
<UserRankingDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpellingAPI.Models"> <AvgAttemptedPercentage>7.1</AvgAttemptedPercentage> <AvgCompletedPercentage>6.1</AvgCompletedPercentage> <AvgIncompletePercentage>8.1</AvgIncompletePercentage> <CompletedQuizzes>3</CompletedQuizzes> <Rank>9</Rank> <ScreenName>sample string 10</ScreenName> <TotalCorrectAnswers>4</TotalCorrectAnswers> <TotalQuizzes>2</TotalQuizzes> <TotalWrongAnswers>5</TotalWrongAnswers> <UserId>sample string 1</UserId> </UserRankingDto>