Endpoint#
| Property | Value |
|---|
| Type | mutation |
| Method | POST |
| Path | /api/external/v1/remove_project_contributor |
| Handler | OperatelyWeb.Api.Mutations.RemoveProjectContributor |
Authentication#
- Requires a valid API token.
- Requires a write-enabled token.
- Read-only tokens return
403.
| Field | Type | Required | Nullable | Default |
|---|
contrib_id | string | No | Yes | - |
Outputs#
| Field | Type | Required | Nullable |
|---|
project_contributor | project_contributor object | No | Yes |
cURL Example#
Copiedcurl --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"
}
}