Skip to content

remove_project_contributor

Endpoint#

PropertyValue
Typemutation
MethodPOST
Path/api/external/v1/remove_project_contributor
HandlerOperatelyWeb.Api.Mutations.RemoveProjectContributor

Authentication#

  • Requires a valid API token.
  • Requires a write-enabled token.
  • Read-only tokens return 403.

Inputs#

FieldTypeRequiredNullableDefault
contrib_idstringNoYes-

Outputs#

FieldTypeRequiredNullable
project_contributorproject_contributor objectNoYes

cURL Example#

Copied
curl --request POST \
  --url "https://app.operately.com/api/external/v1/remove_project_contributor" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
  --header "Content-Type: application/json" \
  --data '{"contrib_id":"value"}'

Response Example#

{
  "project_contributor": {
    "access_level": 123,
    "id": "value",
    "permissions": "<project_permissions>",
    "person": "<person>",
    "project": "<project>",
    "responsibility": "value",
    "role": "value"
  }
}