# Get list of daily rewards Gets a list of daily rewards for administration. NoticeA method returns a paginated list of items. The maximum and default value is 50 items per response. To get more items from the list, use the limit and offset parameters and fetch more pages. For example, when calling a method with limit = 25 and offset = 100, the response returns 25 items starting from the 101st item in the overall list. Endpoint: GET /v2/project/{project_id}/admin/daily_chain Version: 2.0.0 Security: basicAuth ## Path parameters: - `project_id` (integer, required) Project ID. You can find this parameter in your Publisher Account next to the name of the project. Example: 44056 ## Query parameters: - `limit` (integer) Limit for the number of elements on the page. Example: 50 - `offset` (integer) Number of the element from which the list is generated (the count starts from 0). - `enabled` (integer) Filter elements by is_enabled flag. - `is_expired` (integer) Filter daily rewards to show only expired ones. - `type` (string) Filters daily rewards to return only the specified type. Enum: "calendar_hard", "rolling_skippable", "rolling_unskippable" ## Response 200 fields (application/json): - `has_more` (boolean) Used as an indicator that there are more pages. Example: true - `total_items_count` (integer) Total number of daily rewards. Example: 3 - `items` (array) ## Response 401 fields (application/json): - `statusCode` (integer) Example: 401 - `errorCode` (integer) Example: 1020 - `errorMessage` (string) Example: "[0401-1020]: Error in Authentication method occurred"