edit_subscriptions_list
Endpoint#
| Property | Value |
|---|---|
| Type | mutation |
| Method | POST |
| Path | /api/external/v1/edit_subscriptions_list |
| Handler | OperatelyWeb.Api.Mutations.EditSubscriptionsList |
Authentication#
- Requires a valid API token.
- Requires a write-enabled token.
- Read-only tokens return
403.
Inputs#
| Field | Type | Required | Nullable | Default |
|---|---|---|---|---|
id | string | No | Yes | - |
type | string | No | Yes | - |
send_notifications_to_everyone | boolean | No | Yes | - |
subscriber_ids | array of string | No | Yes | - |
Outputs#
This endpoint has no output fields.
cURL Example#
Copied
curl --request POST \
--url "https://app.operately.com/api/external/v1/edit_subscriptions_list" \
--header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
--header "Content-Type: application/json" \
--data '{"id":"value", "send_notifications_to_everyone":true, "subscriber_ids":["value"], "type":"value"}'