@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias Changeset

    Changeset:
        | {
            candidateGroups?: string[]
            | null;
            candidateUsers?: string[] | null;
            dueDate?: string | null;
            followUpDate?: string | null;
            priority?: number | null;
            [key: string]: unknown;
        }
        | null

    JSON object with changed task attribute values.

    The following attributes can be adjusted with this endpoint, additional attributes will be ignored:

    • candidateGroups - reset by providing an empty list
    • candidateUsers - reset by providing an empty list
    • dueDate - reset by providing an empty String
    • followUpDate - reset by providing an empty String
    • priority - minimum 0, maximum 100, default 50

    Providing any of those attributes with a null value or omitting it preserves the persisted attribute's value.

    The assignee cannot be adjusted with this endpoint, use the Assign task endpoint. This ensures correct event emission for assignee changes.

    Type Declaration

    • {
          candidateGroups?: string[] | null;
          candidateUsers?: string[] | null;
          dueDate?: string | null;
          followUpDate?: string | null;
          priority?: number | null;
          [key: string]: unknown;
      }
      • [key: string]: unknown
      • OptionalcandidateGroups?: string[] | null

        The list of candidate groups of the task. Reset by providing an empty list.

      • OptionalcandidateUsers?: string[] | null

        The list of candidate users of the task. Reset by providing an empty list.

      • OptionaldueDate?: string | null

        The due date of the task. Reset by providing an empty String.

      • OptionalfollowUpDate?: string | null

        The follow-up date of the task. Reset by providing an empty String.

      • Optionalpriority?: number | null

        The priority of the task.

    • null