LogoLogo
SupportDeveloper ForumLogin
  • Overview
    • Introduction
    • Getting Started
    • Authentication
    • Error Handling
    • Pagination
    • Filtering
    • Ordering
    • Rate Limits
    • Permissions
    • Webhooks
    • MCP Server
    • Versioning
    • Changelog
    • Support
  • API v1 Reference
    • Projects Overview
    • Tasks Overview
    • Time Tracking Overview
    • Documents Overview
    • Search Overview
    • Companies Overview
    • Users Overview
    • Files & Images Overview
    • Custom Fields Overview
    • Workload & Planning Overview
    • Project Templates Overview
    • Login & Access Overview
    • API Management Overview
SupportDeveloper ForumLogin
API v1 ReferenceTask Lists

POST
https://api.awork.com/api/v1/projects/:projectId/tasklists/:taskListId/updateorder
POST
/api/v1/projects/:projectId/tasklists/:taskListId/updateorder
1curl -X POST https://api.awork.com/api/v1/projects/projectId/tasklists/taskListId/updateorder \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "order": 5
6}'
Try it
To update the order of project task lists, the user needs manage permissions on the project-planning-data feature. <Check title="Required Permissions">Any authenticated user.</Check>
Was this page helpful?
Previous

Returns all task views that the user subscribed to.

Next
Built with
Returns all task views that the user subscribed to.

Path parameters

projectIdUUIDRequired
The id of the project.
taskListIdUUIDRequired
The id of the task list.

Headers

AuthorizationstringRequired
Bearer authentication of the form `Bearer <token>`, where token is your auth token.

Request

This endpoint expects an object.
orderdouble or nullOptional
The order of the list.

Response

No Content
Updates the order of a task list.

Bearer authentication of the form Bearer <token>, where token is your auth token.

To update the order of project task lists, the user needs manage permissions on the project-planning-data feature.

Required Permissions
Any authenticated user.