Skip to content

project/removeuser

Removes a user from all groups linked to a project.

Method and path

POST /project/removeuser

Authentication

Authentication is required. See Authentication.

Permissions

Accessible to tier 1 and 2 users.

Request headers

HeaderRequiredDescription
X-Api-Key or X_API_KEYyesAPI key.
Content-Typeyesapplication/json.

Request body

FieldTypeRequiredDescription
project_idintegeryesProject identifier.
user_idintegeryesUser identifier to unlink.

Example request

bash
curl -X POST "$SIGNAL_API_BASE_URL/project/removeuser" \
  -H "X-Api-Key: $SIGNAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"project_id": 123, "user_id": 987}'
json
{
  "project_id": 123,
  "user_id": 987
}

Example response

json
{
  "result": true
}

Response fields

FieldTypeDescription
resultbooleantrue when the delete statement runs successfully.

Notes

  • The endpoint removes the association through project-linked groups.

Doc rev.1.12.3 2026.05.08