update_tasks_priority
imerit_ango.sdk.SDK.
update_tasks_priority(project_id, priority, filters)
Update the priority of specific tasks within a project.
Parameters
project_id: string
The unique identifier for the project. You can find the project ID in the user interface or retrieve it using the
list_projectsfunction.
priority: int
The new priority value to assign to the selected tasks.
Note: The priority value must be between -1000 and 1000. Higher values indicate higher priority.
filters: dict, default None
A dictionary of filters to specify the tasks to requeue.
taskIds: List[str]
externalIds: List[str]
assetIds: List[str]
batches: List[str]
fromStageIds: List[str]
Returns:
output: dict
A dictionary containing the result of the operation.
Example
Last updated