sayintel
Endpoint

Add conference url

POST/api/public/v1/campaigns/{campaign_id}/conference-urlswrite

Add a new conference URL to a campaign. Must be a public https URL — private/internal hostnames are rejected.

Request

curl -X POST "https://sayintel.com/api/public/v1/campaigns/<campaign_id>/conference-urls" \
  -H "Authorization: Bearer $SAYINTEL_TOKEN" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: $(uuidgen)" \
  -d '{"url": "<url>"}'

Try it out

Try it outPOST/api/public/v1/campaigns/{campaign_id}/conference-urlswrite

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

NameInTypeRequiredDescription
campaign_idpathstringyes

Body

NameInTypeRequiredDescription
urlbodystringyes

Response

{
  "ok": true,
  "tool": "add_conference_url",
  "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 add_conference_url. MCP setup.