Skip to main content
Version: Next

Assign a user task

POST 

/user-tasks/:userTaskKey/assignment

Assigns a user task with the given key to the given assignee.

Request

Path Parameters

    userTaskKey int64required

    The key of the user task to assign.

Body

required
    assignee string

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

    allowOverride booleannullable

    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.

    action stringnullable

    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".

Responses

The user task's assignment was adjusted.

Loading...