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