We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement endpoint GET /api/v2/cases/{case_identifier}/tasks to get a paginated list of tasks:
data
total
page
per_page
order_by
sort_dir
last_page
current_page
next_page
The text was updated successfully, but these errors were encountered:
Some tasks to do:
order_func = desc if pagination_parameters.get_direction() == 'desc' else asc
Sorry, something went wrong.
c8y3
Successfully merging a pull request may close this issue.
Implement endpoint GET /api/v2/cases/{case_identifier}/tasks to get a paginated list of tasks:
data
should be presentdata
should be [] when there is no taskstotal
should return 1 when there is a taskpage
,per_page
,order_by
andsort_dir
parameterslast_page
,current_page
andnext_page
should be present in resultThe text was updated successfully, but these errors were encountered: