The platform is available in over 80 languages

Assign and Unassign User Reference

The GitScrum API now allows users to assign and unassign users to a given task. This ensures that all users working on the same project are kept up to date with any changes made. Whenever a user is assigned or unassigned to the task, they will be notified via email so that they are aware of the progress and can quickly respond to any questions or updates regarding the task. Additionally, task references can also be assigned to users to keep them informed about the latest changes.

The GitScrum API provides endpoints to manage these users assigned to tasks.

ENDPOINTS
POST

/task-assignees

DELETE

/task-assignees

Assign User from Task

The Assign Users to Tasks endpoint on the GitScrum API allows users to assign other users to tasks by sending a POST request. This endpoint can be used to quickly assign tasks and collaborate with teammates, streamlining the task management process.

Parameters

task_uuid STRING REQUIRED

The task_uuid is a universally unique identifier (UUID) that identifies a particular task.

username NUMBER OPTIONAL

The username attribute is a unique identifier for each user on GitScrum, used to identify members of a project team. It is used to authenticate access to the platform and allow users to interact with other project members.

ENDPOINT

POST /task-assignees

RESPONSE 200 OK
 No properties 

Unassign User from Task

The Unassign Users from Tasks endpoint on the GitScrum API allows users to unassign other users from tasks by sending a DELETE request. This endpoint can be used to quickly unassign tasks and collaborate with teammates, streamlining the task management process.

Parameters

task_uuid STRING REQUIRED

The task_uuid is a universally unique identifier (UUID) that identifies a particular task.

username STRING OPTIONAL

The username attribute is a unique identifier for each user on GitScrum, used to identify members of a project team. It is used to authenticate access to the platform and allow users to interact with other project members.

ENDPOINT

DELETE /task-assignees

RESPONSE 200 OK
 No properties