Dispatches
Manage how the weekly brief is dispatched: email recipient lists (org members and external emails) and delivery webhooks, plus the per-channel delivery log.
Manage how the weekly brief is dispatched: email recipient lists (org members and external emails) and delivery webhooks, plus the per-channel delivery log. Every endpoint below has a "try it" console. See the API reference overview for the base URL and how to authenticate.
POST /v1/dispatches/recipients/confirm
Confirm an external brief subscription using the token from the confirmation email.
POST /v1/dispatches/recipients/remove
Unsubscribe an external recipient from a brief using the token from the brief email.
POST /v1/changes/{id}/feedback
Record thumbs-up/down feedback on a change using the single-use token from a brief email.
GET /v1/dispatches
List the current organization's notifications.
POST /v1/dispatches
Create a notification for the current organization.
PATCH /v1/dispatches/{id}
Rename, recolor, or rescope a notification belonging to the current organization.
DELETE /v1/dispatches/{id}
Delete a non-default notification belonging to the current organization.
POST /v1/dispatches/{id}/recipients
Add a recipient to a notification.
DELETE /v1/dispatches/{id}/recipients/{recipientId}
Remove a recipient from a notification.
GET /v1/dispatches/webhooks
List the current organization's webhooks.
POST /v1/dispatches/webhooks
Register a webhook for the current organization.
DELETE /v1/dispatches/webhooks/{id}
Delete a webhook, freeing one of the organization's slots.
GET /v1/dispatches/webhooks/{id}/deliveries
List a webhook's delivery attempts, newest-first.
GET /v1/dispatches/{id}/deliveries
List a notification's email delivery attempts, newest-first.
Unassign a label from a competitor (idempotent — succeeds even if not assigned). DELETE
Unassign a label from a competitor (idempotent — succeeds even if not assigned) — Competitor Tracker & Co. API reference for DELETE /v1/competitors/{id}/labels.
Confirm an external brief subscription using the token from the confirmation email. Public — no authentication required. POST
Confirm an external brief subscription using the token from the confirmation email. Public — no authentication required — Competitor Tracker & Co. API.