Update task order within a pool
Updates the horizontal priority order of tasks within a pool for a specific accountable user. Tasks are ordered from left to right, with tasks on the left having higher priority.
Important: The pool contains tasks filtered by the Accountable field (not the Assigned field). Only tasks where the accountableId user is set as the Accountable person are included in the pool.
This endpoint updates the PoolOrder table, which stores the custom sort order for tasks within each accountable user’s pool. The order is used when displaying tasks in the pool view, allowing users to prioritize which tasks should be handled first.
The newOrder array should contain all task IDs that need to be reordered, in the desired priority sequence (first item = highest priority, leftmost position).
Permission requirements:
- Pool.canEditAll: Can edit any user’s pool order
- Pool.canEditOwnTeams: Can edit pools of users in the same team (requires team membership verification)
- Pool.canEditOwn: Can only edit your own pool order (accountableId must match authenticated user.id)
The accountableId must reference a valid user in the same workspace who is not deleted.
/tasks/pool/orderAuthorizationOAuth2 access token · headerrequiredapi:writeAuthorizationBearer token (JWT) · headerrequiredapplication/jsonaccountableIdstringrequiredUUID of the accountable user whose pool task order should be updated. The user must exist in the same workspace and not be deleted. Access is controlled by Pool edit permissions (canEditAll, canEditOwnTeams, or canEditOwn).
newOrderstring[]requiredArray of task UUIDs in the desired priority order. Tasks are displayed horizontally from left to right, with the first item in the array appearing on the left (highest priority). The array should contain all task IDs that need to be reordered. Each task ID must be a valid UUID of a task where the specified accountableId user is set as the Accountable person (filtered by Accountable field, not Assigned field).
Successfully updated task order
successbooleanInvalid accountableId UUID format or invalid newOrder array
Unauthorized - Invalid or missing authentication token
User lacks required Pool edit permissions
User (accountableId) not found, deleted, or not in same workspace