Skip to content

Add support for manipulating tasks: add/remove tags, custom fields #20

@m-roberts

Description

@m-roberts

It seems that changing the tags of tasks is not supported with the client.

Missing from Task.update:

def update(
self,
name: str = None, # string
content: str = None, # string
add_assignees: ListType[Union[int, User]] = None,
remove_assignees: ListType[Union[int, User]] = None,
status: str = None, # string
priority: int = None, # integer
due_date: Union[int, datetime] = None, # integer posix time, or python datetime
) -> Union[list, dict, Response]:

API reference:
https://clickup.com/api/clickupreference/operation/AddTagToTask/
https://clickup.com/api/clickupreference/operation/RemoveTagFromTask/

The same is true for custom fields:
https://clickup.com/api/clickupreference/operation/SetCustomFieldValue/

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions