Sakari
Connector for the sakari API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://api.sakari.io - Auth: OAuth 2.0 client-credentials — the tool fetches a token from
/oauth2/tokenusing yourclientId/clientSecret, then calls the API.
Operations
campaigns_fetchall— GET /v1/accounts/{accountId}/campaigns — Fetch campaignscampaigns_fetch— GET /v1/accounts/{accountId}/campaigns/{campaignId} — Fetch campaign by IDcontacts_fetchall— GET /v1/accounts/{accountId}/contacts — Fetch contactscontacts_fetch— GET /v1/accounts/{accountId}/contacts/{contactId} — Fetch contact by IDconversations_fetchall— GET /v1/accounts/{accountId}/conversations — Fetch conversationsconversations_fetch— GET /v1/accounts/{accountId}/conversations/{conversationId} — Fetch conversation by ID
Inputs
clientId/clientSecret— your sakari OAuth app credentialsscope— OAuth scopes (optional; defaults from the spec)operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: campaigns_fetchall
clientId: <your client id>
clientSecret: <your client secret>