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

    Type Alias UserTaskAssignmentRequest

    type UserTaskAssignmentRequest = {
        action?: string | null;
        allowOverride?: boolean | null;
        assignee: string;
    }
    Index

    Properties

    action?: string | null

    A custom action value that will be accessible from user task events resulting from this endpoint invocation. If not provided, it will default to "assign".

    allowOverride?: boolean | null

    By default, the task is reassigned if it was already assigned. Set this to false to return an error in such cases. The task must then first be unassigned to be assigned again. Use this when you have users picking from group task queues to prevent race conditions.

    assignee: string

    The assignee for the user task. The assignee must not be empty or null.