productivity
Missive CLI for AI Agents
Use the Missive CLI from KosmoKrator to call Missive tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.Missive CLI Setup
Missive can be configured headlessly with `kosmokrator integrations:configure missive`.
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
# Configure and verify this integration.
kosmokrator integrations:configure missive --set access_token="$MISSIVE_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor missive --json
kosmokrator integrations:status --json Credentials
Authentication type: Bearer token bearer_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
access_token | MISSIVE_ACCESS_TOKEN | Secret secret | yes | Access Token |
url | MISSIVE_URL | URL url | no | API Base URL |
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call missive.missive_list_conversations '{"inbox":"example_inbox","assignee":"example_assignee","state":"example_state","limit":1,"offset":1}' --json kosmo integrations:missive missive_list_conversations '{"inbox":"example_inbox","assignee":"example_assignee","state":"example_state","limit":1,"offset":1}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs missive --json
kosmo integrations:docs missive.missive_list_conversations --json
kosmo integrations:schema missive.missive_list_conversations --json
kosmo integrations:search "Missive" --json
kosmo integrations:list --json Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
missive.missive_list_conversations
List conversations from Missive. Supports filtering by inbox, assignee, and state. Returns paginated results.
read - Parameters
- inbox, assignee, state, limit, offset
kosmo integrations:call missive.missive_list_conversations '{"inbox":"example_inbox","assignee":"example_assignee","state":"example_state","limit":1,"offset":1}' --json kosmo integrations:missive missive_list_conversations '{"inbox":"example_inbox","assignee":"example_assignee","state":"example_state","limit":1,"offset":1}' --json missive.missive_get_conversation
Get a single Missive conversation by ID, including messages and metadata.
read - Parameters
- id
kosmo integrations:call missive.missive_get_conversation '{"id":"example_id"}' --json kosmo integrations:missive missive_get_conversation '{"id":"example_id"}' --json missive.missive_list_conversation_messages
List messages in a Missive conversation with timestamp pagination.
read - Parameters
- conversation_id, params
kosmo integrations:call missive.missive_list_conversation_messages '{"conversation_id":"example_conversation_id","params":"example_params"}' --json kosmo integrations:missive missive_list_conversation_messages '{"conversation_id":"example_conversation_id","params":"example_params"}' --json missive.missive_list_conversation_comments
List comments in a Missive conversation with timestamp pagination.
read - Parameters
- conversation_id, params
kosmo integrations:call missive.missive_list_conversation_comments '{"conversation_id":"example_conversation_id","params":"example_params"}' --json kosmo integrations:missive missive_list_conversation_comments '{"conversation_id":"example_conversation_id","params":"example_params"}' --json missive.missive_list_conversation_drafts
List drafts in a Missive conversation with timestamp pagination.
read - Parameters
- conversation_id, params
kosmo integrations:call missive.missive_list_conversation_drafts '{"conversation_id":"example_conversation_id","params":"example_params"}' --json kosmo integrations:missive missive_list_conversation_drafts '{"conversation_id":"example_conversation_id","params":"example_params"}' --json missive.missive_list_conversation_posts
List posts in a Missive conversation with timestamp pagination.
read - Parameters
- conversation_id, params
kosmo integrations:call missive.missive_list_conversation_posts '{"conversation_id":"example_conversation_id","params":"example_params"}' --json kosmo integrations:missive missive_list_conversation_posts '{"conversation_id":"example_conversation_id","params":"example_params"}' --json missive.missive_merge_conversation
Merge a source Missive conversation into a target conversation.
write - Parameters
- conversation_id, body
kosmo integrations:call missive.missive_merge_conversation '{"conversation_id":"example_conversation_id","body":"example_body"}' --json kosmo integrations:missive missive_merge_conversation '{"conversation_id":"example_conversation_id","body":"example_body"}' --json missive.missive_create_comment
Create a comment on a Missive conversation. Use this to add internal notes or replies.
write - Parameters
- conversation_id, body, assignees
kosmo integrations:call missive.missive_create_comment '{"conversation_id":"example_conversation_id","body":"example_body","assignees":"example_assignees"}' --json kosmo integrations:missive missive_create_comment '{"conversation_id":"example_conversation_id","body":"example_body","assignees":"example_assignees"}' --json missive.missive_create_draft
Create a Missive draft, or send immediately when send=true.
write - Parameters
- body
kosmo integrations:call missive.missive_create_draft '{"body":"example_body"}' --json kosmo integrations:missive missive_create_draft '{"body":"example_body"}' --json missive.missive_delete_draft
Delete a Missive draft by ID.
write - Parameters
- draft_id
kosmo integrations:call missive.missive_delete_draft '{"draft_id":"example_draft_id"}' --json kosmo integrations:missive missive_delete_draft '{"draft_id":"example_draft_id"}' --json missive.missive_list_messages
List Missive messages using documented query parameters such as email_message_id.
read - Parameters
- params
kosmo integrations:call missive.missive_list_messages '{"params":"example_params"}' --json kosmo integrations:missive missive_list_messages '{"params":"example_params"}' --json missive.missive_create_post
Create a Missive post in a conversation.
write - Parameters
- body
kosmo integrations:call missive.missive_create_post '{"body":"example_body"}' --json kosmo integrations:missive missive_create_post '{"body":"example_body"}' --json missive.missive_delete_post
Delete a Missive post by ID.
write - Parameters
- post_id
kosmo integrations:call missive.missive_delete_post '{"post_id":"example_post_id"}' --json kosmo integrations:missive missive_delete_post '{"post_id":"example_post_id"}' --json missive.missive_list_tasks
List tasks from Missive. Supports filtering by state and assignee. Returns paginated results.
read - Parameters
- state, assignee, limit, offset
kosmo integrations:call missive.missive_list_tasks '{"state":"example_state","assignee":"example_assignee","limit":1,"offset":1}' --json kosmo integrations:missive missive_list_tasks '{"state":"example_state","assignee":"example_assignee","limit":1,"offset":1}' --json missive.missive_get_task
Get a single Missive task by ID.
read - Parameters
- task_id
kosmo integrations:call missive.missive_get_task '{"task_id":"example_task_id"}' --json kosmo integrations:missive missive_get_task '{"task_id":"example_task_id"}' --json missive.missive_create_task
Create a new task in Missive. Requires a title. Optionally set description, assignee, and due date.
write - Parameters
- title, description, assignee, due_date
kosmo integrations:call missive.missive_create_task '{"title":"example_title","description":"example_description","assignee":"example_assignee","due_date":"example_due_date"}' --json kosmo integrations:missive missive_create_task '{"title":"example_title","description":"example_description","assignee":"example_assignee","due_date":"example_due_date"}' --json missive.missive_update_task
Update a Missive task by ID.
write - Parameters
- task_id, body
kosmo integrations:call missive.missive_update_task '{"task_id":"example_task_id","body":"example_body"}' --json kosmo integrations:missive missive_update_task '{"task_id":"example_task_id","body":"example_body"}' --json missive.missive_get_current_user
Get the profile of the currently authenticated Missive user, including name, email, and organization info.
read - Parameters
- none
kosmo integrations:call missive.missive_get_current_user '{}' --json kosmo integrations:missive missive_get_current_user '{}' --json missive.missive_list_organizations
List organizations the authenticated Missive user is part of.
read - Parameters
- params
kosmo integrations:call missive.missive_list_organizations '{"params":"example_params"}' --json kosmo integrations:missive missive_list_organizations '{"params":"example_params"}' --json missive.missive_list_users
List users in organizations the authenticated Missive user is part of.
read - Parameters
- params
kosmo integrations:call missive.missive_list_users '{"params":"example_params"}' --json kosmo integrations:missive missive_list_users '{"params":"example_params"}' --json missive.missive_list_teams
List teams in organizations the authenticated Missive user is part of.
read - Parameters
- params
kosmo integrations:call missive.missive_list_teams '{"params":"example_params"}' --json kosmo integrations:missive missive_list_teams '{"params":"example_params"}' --json missive.missive_create_teams
Create one or more Missive teams.
write - Parameters
- body
kosmo integrations:call missive.missive_create_teams '{"body":"example_body"}' --json kosmo integrations:missive missive_create_teams '{"body":"example_body"}' --json missive.missive_list_shared_labels
List shared labels in organizations the authenticated user can access.
read - Parameters
- params
kosmo integrations:call missive.missive_list_shared_labels '{"params":"example_params"}' --json kosmo integrations:missive missive_list_shared_labels '{"params":"example_params"}' --json missive.missive_list_contacts
List Missive contacts with contact book, search, pagination, and sync filters.
read - Parameters
- params
kosmo integrations:call missive.missive_list_contacts '{"params":"example_params"}' --json kosmo integrations:missive missive_list_contacts '{"params":"example_params"}' --json missive.missive_get_contact
Get a Missive contact by ID.
read - Parameters
- contact_id
kosmo integrations:call missive.missive_get_contact '{"contact_id":"example_contact_id"}' --json kosmo integrations:missive missive_get_contact '{"contact_id":"example_contact_id"}' --json missive.missive_create_contacts
Create one or more Missive contacts.
write - Parameters
- body
kosmo integrations:call missive.missive_create_contacts '{"body":"example_body"}' --json kosmo integrations:missive missive_create_contacts '{"body":"example_body"}' --json missive.missive_update_contacts
Update one or more Missive contacts by comma-separated IDs.
write - Parameters
- contact_ids, body
kosmo integrations:call missive.missive_update_contacts '{"contact_ids":"example_contact_ids","body":"example_body"}' --json kosmo integrations:missive missive_update_contacts '{"contact_ids":"example_contact_ids","body":"example_body"}' --json missive.missive_list_contact_books
List Missive contact books accessible to the API token user.
read - Parameters
- params
kosmo integrations:call missive.missive_list_contact_books '{"params":"example_params"}' --json kosmo integrations:missive missive_list_contact_books '{"params":"example_params"}' --json missive.missive_list_contact_groups
List Missive contact groups or organizations linked to a contact book.
read - Parameters
- params
kosmo integrations:call missive.missive_list_contact_groups '{"params":"example_params"}' --json kosmo integrations:missive missive_list_contact_groups '{"params":"example_params"}' --json missive.missive_list_responses
List Missive canned responses.
read - Parameters
- params
kosmo integrations:call missive.missive_list_responses '{"params":"example_params"}' --json kosmo integrations:missive missive_list_responses '{"params":"example_params"}' --json missive.missive_get_response
Get a Missive canned response by ID.
read - Parameters
- response_id
kosmo integrations:call missive.missive_get_response '{"response_id":"example_response_id"}' --json kosmo integrations:missive missive_get_response '{"response_id":"example_response_id"}' --json missive.missive_create_responses
Create one or more Missive canned responses.
write - Parameters
- body
kosmo integrations:call missive.missive_create_responses '{"body":"example_body"}' --json kosmo integrations:missive missive_create_responses '{"body":"example_body"}' --json missive.missive_update_responses
Update one or more Missive canned responses by comma-separated IDs.
write - Parameters
- response_ids, body
kosmo integrations:call missive.missive_update_responses '{"response_ids":"example_response_ids","body":"example_body"}' --json kosmo integrations:missive missive_update_responses '{"response_ids":"example_response_ids","body":"example_body"}' --json missive.missive_delete_responses
Delete one or more Missive canned responses by comma-separated IDs.
write - Parameters
- response_ids
kosmo integrations:call missive.missive_delete_responses '{"response_ids":"example_response_ids"}' --json kosmo integrations:missive missive_delete_responses '{"response_ids":"example_response_ids"}' --json missive.missive_create_analytics_report
Create an asynchronous Missive analytics report.
write - Parameters
- body
kosmo integrations:call missive.missive_create_analytics_report '{"body":"example_body"}' --json kosmo integrations:missive missive_create_analytics_report '{"body":"example_body"}' --json missive.missive_get_analytics_report
Get a Missive analytics report by ID after generation.
read - Parameters
- report_id
kosmo integrations:call missive.missive_get_analytics_report '{"report_id":"example_report_id"}' --json kosmo integrations:missive missive_get_analytics_report '{"report_id":"example_report_id"}' --json missive.missive_list_hooks
List Missive webhook subscriptions.
read - Parameters
- params
kosmo integrations:call missive.missive_list_hooks '{"params":"example_params"}' --json kosmo integrations:missive missive_list_hooks '{"params":"example_params"}' --json missive.missive_create_hook
Create a Missive webhook subscription.
write - Parameters
- body
kosmo integrations:call missive.missive_create_hook '{"body":"example_body"}' --json kosmo integrations:missive missive_create_hook '{"body":"example_body"}' --json missive.missive_delete_hook
Delete a Missive webhook subscription by ID.
write - Parameters
- hook_id
kosmo integrations:call missive.missive_delete_hook '{"hook_id":"example_hook_id"}' --json kosmo integrations:missive missive_delete_hook '{"hook_id":"example_hook_id"}' --json missive.missive_api_get
Call a documented Missive API GET endpoint relative to /v1.
read - Parameters
- path, params
kosmo integrations:call missive.missive_api_get '{"path":"example_path","params":"example_params"}' --json kosmo integrations:missive missive_api_get '{"path":"example_path","params":"example_params"}' --json missive.missive_api_post
Call a documented Missive API POST endpoint relative to /v1.
write - Parameters
- path, body
kosmo integrations:call missive.missive_api_post '{"path":"example_path","body":"example_body"}' --json kosmo integrations:missive missive_api_post '{"path":"example_path","body":"example_body"}' --json missive.missive_api_patch
Call a documented Missive API PATCH endpoint relative to /v1.
write - Parameters
- path, body
kosmo integrations:call missive.missive_api_patch '{"path":"example_path","body":"example_body"}' --json kosmo integrations:missive missive_api_patch '{"path":"example_path","body":"example_body"}' --json missive.missive_api_delete
Call a documented Missive API DELETE endpoint relative to /v1.
write - Parameters
- path, params
kosmo integrations:call missive.missive_api_delete '{"path":"example_path","params":"example_params"}' --json kosmo integrations:missive missive_api_delete '{"path":"example_path","params":"example_params"}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
missive.missive_list_conversations 5 parameters
kosmo integrations:schema missive.missive_list_conversations --json | Parameter | Type | Required | Description |
|---|---|---|---|
inbox | string | no | Filter by inbox ID. |
assignee | string | no | Filter by assignee user ID or email. |
state | string | no | Filter by conversation state: "open", "closed", or "spam". |
limit | integer | no | Maximum number of conversations to return (default: 25, max: 100). |
offset | integer | no | Offset for pagination. |
missive.missive_get_conversation 1 parameters
kosmo integrations:schema missive.missive_get_conversation --json | Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | The conversation UUID. |
missive.missive_list_conversation_messages 2 parameters
kosmo integrations:schema missive.missive_list_conversation_messages --json | Parameter | Type | Required | Description |
|---|---|---|---|
conversation_id | string | yes | Conversation UUID. |
params | object | no | Optional query parameters such as limit and until. |
missive.missive_list_conversation_comments 2 parameters
kosmo integrations:schema missive.missive_list_conversation_comments --json | Parameter | Type | Required | Description |
|---|---|---|---|
conversation_id | string | yes | Conversation UUID. |
params | object | no | Optional query parameters such as limit and until. |
missive.missive_list_conversation_drafts 2 parameters
kosmo integrations:schema missive.missive_list_conversation_drafts --json | Parameter | Type | Required | Description |
|---|---|---|---|
conversation_id | string | yes | Conversation UUID. |
params | object | no | Optional query parameters such as limit and until. |
missive.missive_list_conversation_posts 2 parameters
kosmo integrations:schema missive.missive_list_conversation_posts --json | Parameter | Type | Required | Description |
|---|---|---|---|
conversation_id | string | yes | Conversation UUID. |
params | object | no | Optional query parameters such as limit and until. |
missive.missive_merge_conversation 2 parameters
kosmo integrations:schema missive.missive_merge_conversation --json | Parameter | Type | Required | Description |
|---|---|---|---|
conversation_id | string | yes | Source conversation UUID. |
body | object | yes | Merge payload including target and optional subject. |
missive.missive_create_comment 3 parameters
kosmo integrations:schema missive.missive_create_comment --json | Parameter | Type | Required | Description |
|---|---|---|---|
conversation_id | string | yes | The UUID of the conversation to comment on. |
body | string | yes | The comment body text. Supports Markdown. |
assignees | array | no | List of user IDs or emails to assign the comment to. |
missive.missive_create_draft 1 parameters
kosmo integrations:schema missive.missive_create_draft --json | Parameter | Type | Required | Description |
|---|---|---|---|
body | object | yes | Draft payload matching the Missive drafts endpoint. |
missive.missive_delete_draft 1 parameters
kosmo integrations:schema missive.missive_delete_draft --json | Parameter | Type | Required | Description |
|---|---|---|---|
draft_id | string | yes | Draft UUID. |
missive.missive_list_messages 1 parameters
kosmo integrations:schema missive.missive_list_messages --json | Parameter | Type | Required | Description |
|---|---|---|---|
params | object | no | Query parameters such as email_message_id. |
missive.missive_create_post 1 parameters
kosmo integrations:schema missive.missive_create_post --json | Parameter | Type | Required | Description |
|---|---|---|---|
body | object | yes | Post payload matching the Missive posts endpoint. |
missive.missive_delete_post 1 parameters
kosmo integrations:schema missive.missive_delete_post --json | Parameter | Type | Required | Description |
|---|---|---|---|
post_id | string | yes | Post UUID. |
missive.missive_list_tasks 4 parameters
kosmo integrations:schema missive.missive_list_tasks --json | Parameter | Type | Required | Description |
|---|---|---|---|
state | string | no | Filter by task state: "open" or "completed". |
assignee | string | no | Filter by assignee user ID or email. |
limit | integer | no | Maximum number of tasks to return (default: 25, max: 100). |
offset | integer | no | Offset for pagination. |
missive.missive_get_task 1 parameters
kosmo integrations:schema missive.missive_get_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
task_id | string | yes | Task UUID. |
missive.missive_create_task 4 parameters
kosmo integrations:schema missive.missive_create_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
title | string | yes | The task title. |
description | string | no | Detailed description of the task. Supports Markdown. |
assignee | string | no | User ID or email of the person to assign the task to. |
due_date | string | no | Due date in ISO 8601 format (e.g., "2025-12-31"). |
missive.missive_update_task 2 parameters
kosmo integrations:schema missive.missive_update_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
task_id | string | yes | Task UUID. |
body | object | yes | Task attributes to update. |
missive.missive_get_current_user 0 parameters
kosmo integrations:schema missive.missive_get_current_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
missive.missive_list_organizations 1 parameters
kosmo integrations:schema missive.missive_list_organizations --json | Parameter | Type | Required | Description |
|---|---|---|---|
params | object | no | Query parameters such as limit and offset. |
missive.missive_list_users 1 parameters
kosmo integrations:schema missive.missive_list_users --json | Parameter | Type | Required | Description |
|---|---|---|---|
params | object | no | Query parameters such as organization, limit, and offset. |
missive.missive_list_teams 1 parameters
kosmo integrations:schema missive.missive_list_teams --json | Parameter | Type | Required | Description |
|---|---|---|---|
params | object | no | Query parameters such as organization, limit, and offset. |
missive.missive_create_teams 1 parameters
kosmo integrations:schema missive.missive_create_teams --json | Parameter | Type | Required | Description |
|---|---|---|---|
body | object | yes | Team creation payload. |
missive.missive_list_contacts 1 parameters
kosmo integrations:schema missive.missive_list_contacts --json | Parameter | Type | Required | Description |
|---|---|---|---|
params | object | no | Query parameters such as contact_book, search, modified_since, include_deleted, limit, and offset. |
missive.missive_get_contact 1 parameters
kosmo integrations:schema missive.missive_get_contact --json | Parameter | Type | Required | Description |
|---|---|---|---|
contact_id | string | yes | Contact UUID. |
missive.missive_create_contacts 1 parameters
kosmo integrations:schema missive.missive_create_contacts --json | Parameter | Type | Required | Description |
|---|---|---|---|
body | object | yes | Contact creation payload. |
missive.missive_update_contacts 2 parameters
kosmo integrations:schema missive.missive_update_contacts --json | Parameter | Type | Required | Description |
|---|---|---|---|
contact_ids | string | yes | One or more contact IDs, comma separated. |
body | object | yes | Contact attributes to update. |
missive.missive_list_contact_books 1 parameters
kosmo integrations:schema missive.missive_list_contact_books --json | Parameter | Type | Required | Description |
|---|---|---|---|
params | object | no | Query parameters such as limit and offset. |
missive.missive_list_contact_groups 1 parameters
kosmo integrations:schema missive.missive_list_contact_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
params | object | no | Query parameters including contact_book, kind, limit, and offset. |
missive.missive_list_responses 1 parameters
kosmo integrations:schema missive.missive_list_responses --json | Parameter | Type | Required | Description |
|---|---|---|---|
params | object | no | Query parameters such as organization, limit, and offset. |
missive.missive_get_response 1 parameters
kosmo integrations:schema missive.missive_get_response --json | Parameter | Type | Required | Description |
|---|---|---|---|
response_id | string | yes | Response UUID. |
missive.missive_create_responses 1 parameters
kosmo integrations:schema missive.missive_create_responses --json | Parameter | Type | Required | Description |
|---|---|---|---|
body | object | yes | Response creation payload. |
missive.missive_update_responses 2 parameters
kosmo integrations:schema missive.missive_update_responses --json | Parameter | Type | Required | Description |
|---|---|---|---|
response_ids | string | yes | One or more response IDs, comma separated. |
body | object | yes | Response attributes to update. |
missive.missive_delete_responses 1 parameters
kosmo integrations:schema missive.missive_delete_responses --json | Parameter | Type | Required | Description |
|---|---|---|---|
response_ids | string | yes | One or more response IDs, comma separated. |
missive.missive_create_analytics_report 1 parameters
kosmo integrations:schema missive.missive_create_analytics_report --json | Parameter | Type | Required | Description |
|---|---|---|---|
body | object | yes | Analytics report payload with organization, start, end, and time_zone. |
missive.missive_get_analytics_report 1 parameters
kosmo integrations:schema missive.missive_get_analytics_report --json | Parameter | Type | Required | Description |
|---|---|---|---|
report_id | string | yes | Analytics report UUID returned by create_analytics_report. |
missive.missive_list_hooks 1 parameters
kosmo integrations:schema missive.missive_list_hooks --json | Parameter | Type | Required | Description |
|---|---|---|---|
params | object | no | Query parameters such as organization, limit, and offset. |
missive.missive_create_hook 1 parameters
kosmo integrations:schema missive.missive_create_hook --json | Parameter | Type | Required | Description |
|---|---|---|---|
body | object | yes | Webhook subscription payload. |
missive.missive_delete_hook 1 parameters
kosmo integrations:schema missive.missive_delete_hook --json | Parameter | Type | Required | Description |
|---|---|---|---|
hook_id | string | yes | Hook UUID. |
missive.missive_api_get 2 parameters
kosmo integrations:schema missive.missive_api_get --json | Parameter | Type | Required | Description |
|---|---|---|---|
path | string | yes | Endpoint path, such as /contacts or /shared_labels. |
params | object | no | Optional query parameters. |
missive.missive_api_post 2 parameters
kosmo integrations:schema missive.missive_api_post --json | Parameter | Type | Required | Description |
|---|---|---|---|
path | string | yes | Endpoint path, such as /drafts. |
body | object | no | JSON request body. |
missive.missive_api_patch 2 parameters
kosmo integrations:schema missive.missive_api_patch --json | Parameter | Type | Required | Description |
|---|---|---|---|
path | string | yes | Endpoint path, such as /contacts/{id}. |
body | object | no | JSON request body. |
missive.missive_api_delete 2 parameters
kosmo integrations:schema missive.missive_api_delete --json | Parameter | Type | Required | Description |
|---|---|---|---|
path | string | yes | Endpoint path, such as /drafts/{id}. |
params | object | no | Optional request parameters. |
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.