GET api/CheckInStreak/leaderboard?startDate={startDate}&endDate={endDate}&limit={limit}&streakType={streakType}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
startDate

date

None.

endDate

date

None.

limit

integer

Default value is 10

streakType

string

Default value is current

Body Parameters

None.

Response Information

Resource Description

ResponseBaseOfObject
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Data": {}
}

application/xml, text/xml

Sample:
<ResponseBaseOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MoodTrackerApi.Common">
  <Data />
  <Message>sample string 2</Message>
  <Success>true</Success>
</ResponseBaseOfanyType>