API Docs

Assign Record

Learn how to assign records to users using the Blue API.

To assign a record to a user, you can make the following mutation:

mutation SetTodoAssignees {
  setTodoAssignees(
    input: {
      todoId: "todo-id"
      assigneeIds: ["assignee-id"]
    }
  ) {
    success
  }
}