Sakari
Sakari is a business SMS messaging platform for sending, receiving, and automating text messages.
- 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>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
clientId |
string | yes | — | OAuth client ID for sakari. |
clientSecret |
string | yes | — | OAuth client secret for sakari. |
operation |
string | yes | — | One of: campaigns_fetchall, campaigns_fetch, contacts_fetchall, contacts_fetch, conversations_fetchall, conversations_fetch |
scope |
string | no | messages:send |
OAuth scopes (space-separated); default from the spec. |
accountId |
string | no | — | Path parameter accountId (required by some operations). |
campaignId |
string | no | — | Path parameter campaignId (required by some operations). |
contactId |
string | no | — | Path parameter contactId (required by some operations). |
conversationId |
string | no | — | Path parameter conversationId (required by some operations). |
query |
string | no | — | Query-string parameters as a JSON object string, e.g. {"limit": 50}. Parsed and url-encoded onto the request. |