projects/update_reviewer
Endpoint#
| Property | Value |
|---|---|
| Type | mutation |
| Method | POST |
| Path | /api/external/v1/projects/update_reviewer |
| Handler | OperatelyWeb.Api.Projects.UpdateReviewer |
Authentication#
- Requires a valid API token.
- Requires a write-enabled token.
- Read-only tokens return
403.
Inputs#
| Field | Type | Required | Nullable | Default |
|---|---|---|---|---|
project_id | id primitive (encoded as string) | Yes | No | - |
reviewer_id | id primitive (encoded as string) | Yes | Yes | - |
Outputs#
| Field | Type | Required | Nullable |
|---|---|---|---|
success | boolean | Yes | Yes |
cURL Example#
Copied
curl --request POST \
--url "https://app.operately.com/api/external/v1/projects/update_reviewer" \
--header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
--header "Content-Type: application/json" \
--data '{"project_id":"value", "reviewer_id":"value"}'Response Example#
{
"success": true
}