Endpoint
Set speaker selected
POST/api/public/v1/speakers/{speaker_id}/selectedwrite
Mark a speaker as selected (true) or excluded (false) from the outbound list.
Request
curl -X POST "https://sayintel.com/api/public/v1/speakers/<speaker_id>/selected" \
-H "Authorization: Bearer $SAYINTEL_TOKEN" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: $(uuidgen)" \
-d '{"selected": <selected>}'Try it out
Try it outPOST/api/public/v1/speakers/{speaker_id}/selectedwrite
Sent as a bearer token to this site only, and kept in this tab's session storage. It is never written to disk or sent anywhere else.
Paste an API key to run.
Path parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| speaker_id | path | string | yes | — |
Body
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| selected | body | boolean | yes | — |
Response
{
"ok": true,
"tool": "set_speaker_selected",
"kind": "write",
"data": { ... },
"error": null
}Notes
- Scope required: write. How scopes work.
- Accepts Idempotency-Key. A retry with the same key replays the first result instead of repeating the work.
- Same capability over MCP as the tool set_speaker_selected. MCP setup.