productivity
Featurebase CLI for AI Agents
Use the Featurebase CLI from KosmoKrator to call Featurebase tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.Featurebase CLI Setup
Featurebase can be configured headlessly with `kosmokrator integrations:configure featurebase`.
# 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 featurebase --set api_key="$FEATUREBASE_API_KEY" --enable --read allow --write ask --json
kosmokrator integrations:doctor featurebase --json
kosmokrator integrations:status --json Credentials
Authentication type: API token api_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
api_key | FEATUREBASE_API_KEY | Secret secret | yes | API Key |
api_version | FEATUREBASE_API_VERSION | Text text | no | API Version |
url | FEATUREBASE_URL | Text text | no | API URL |
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call featurebase.featurebase_list_boards '{}' --json kosmo integrations:featurebase featurebase_list_boards '{}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs featurebase --json
kosmo integrations:docs featurebase.featurebase_list_boards --json
kosmo integrations:schema featurebase.featurebase_list_boards --json
kosmo integrations:search "Featurebase" --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.
featurebase.featurebase_list_boards
Returns all boards (post categories) for the authenticated organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_boards '{}' --json kosmo integrations:featurebase featurebase_list_boards '{}' --json featurebase.featurebase_get_board
Retrieves a single board by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_board '{}' --json kosmo integrations:featurebase featurebase_get_board '{}' --json featurebase.featurebase_list_posts
Returns all posts (feedback submissions) for the authenticated organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_posts '{}' --json kosmo integrations:featurebase featurebase_list_posts '{}' --json featurebase.featurebase_create_post
Creates a new post (feedback submission) in the specified board.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_create_post '{}' --json kosmo integrations:featurebase featurebase_create_post '{}' --json featurebase.featurebase_get_post
Retrieves a single post by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_post '{}' --json kosmo integrations:featurebase featurebase_get_post '{}' --json featurebase.featurebase_update_post
Updates an existing post. Only provided fields will be modified.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_update_post '{}' --json kosmo integrations:featurebase featurebase_update_post '{}' --json featurebase.featurebase_delete_post
Permanently deletes a post. This action cannot be undone.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_post '{}' --json kosmo integrations:featurebase featurebase_delete_post '{}' --json featurebase.featurebase_list_voters
Returns all voters (upvoters) for a specific post.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_voters '{}' --json kosmo integrations:featurebase featurebase_list_voters '{}' --json featurebase.featurebase_add_voter
Adds a voter (upvote) to a post.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_add_voter '{}' --json kosmo integrations:featurebase featurebase_add_voter '{}' --json featurebase.featurebase_remove_voter
Removes a voter (upvote) from a post.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_remove_voter '{}' --json kosmo integrations:featurebase featurebase_remove_voter '{}' --json featurebase.featurebase_list_post_statuses
Returns all post statuses for the authenticated organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_post_statuses '{}' --json kosmo integrations:featurebase featurebase_list_post_statuses '{}' --json featurebase.featurebase_get_post_status
Retrieves a single post status by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_post_status '{}' --json kosmo integrations:featurebase featurebase_get_post_status '{}' --json featurebase.featurebase_list_comments
Returns comments for your organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_comments '{}' --json kosmo integrations:featurebase featurebase_list_comments '{}' --json featurebase.featurebase_create_comment
Creates a new comment or reply to an existing comment.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_create_comment '{}' --json kosmo integrations:featurebase featurebase_create_comment '{}' --json featurebase.featurebase_get_comment
Retrieves a single comment by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_comment '{}' --json kosmo integrations:featurebase featurebase_get_comment '{}' --json featurebase.featurebase_update_comment
Updates an existing comment by its unique identifier.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_update_comment '{}' --json kosmo integrations:featurebase featurebase_update_comment '{}' --json featurebase.featurebase_delete_comment
Deletes a comment by its unique identifier.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_comment '{}' --json kosmo integrations:featurebase featurebase_delete_comment '{}' --json featurebase.featurebase_delete_comment_clover
Deletes a comment using the legacy Clover API format.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_comment_clover '{}' --json kosmo integrations:featurebase featurebase_delete_comment_clover '{}' --json featurebase.featurebase_list_custom_fields
Returns all custom fields configured in your organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_custom_fields '{}' --json kosmo integrations:featurebase featurebase_list_custom_fields '{}' --json featurebase.featurebase_get_custom_field
Retrieves a single custom field by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_custom_field '{}' --json kosmo integrations:featurebase featurebase_get_custom_field '{}' --json featurebase.featurebase_list_changelogs
Returns all changelogs for the authenticated organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_changelogs '{}' --json kosmo integrations:featurebase featurebase_list_changelogs '{}' --json featurebase.featurebase_create_changelog
Creates a new changelog for the authenticated organization.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_create_changelog '{}' --json kosmo integrations:featurebase featurebase_create_changelog '{}' --json featurebase.featurebase_get_changelog
Retrieves a single changelog by its unique identifier or slug.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_changelog '{}' --json kosmo integrations:featurebase featurebase_get_changelog '{}' --json featurebase.featurebase_update_changelog
Updates an existing changelog by its unique identifier.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_update_changelog '{}' --json kosmo integrations:featurebase featurebase_update_changelog '{}' --json featurebase.featurebase_delete_changelog
Deletes a changelog by its unique identifier.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_changelog '{}' --json kosmo integrations:featurebase featurebase_delete_changelog '{}' --json featurebase.featurebase_publish_changelog
Publishes a changelog and optionally sends an email notification to subscribers.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_publish_changelog '{}' --json kosmo integrations:featurebase featurebase_publish_changelog '{}' --json featurebase.featurebase_unpublish_changelog
Unpublishes a changelog, removing it from public view.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_unpublish_changelog '{}' --json kosmo integrations:featurebase featurebase_unpublish_changelog '{}' --json featurebase.featurebase_add_changelog_subscribers
Adds email addresses as changelog subscribers in bulk.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_add_changelog_subscribers '{}' --json kosmo integrations:featurebase featurebase_add_changelog_subscribers '{}' --json featurebase.featurebase_remove_changelog_subscribers
Removes email addresses from changelog subscribers in bulk.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_remove_changelog_subscribers '{}' --json kosmo integrations:featurebase featurebase_remove_changelog_subscribers '{}' --json featurebase.featurebase_list_admins
Returns all admins for your organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_admins '{}' --json kosmo integrations:featurebase featurebase_list_admins '{}' --json featurebase.featurebase_get_admin
Retrieves a single admin by their unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_admin '{}' --json kosmo integrations:featurebase featurebase_get_admin '{}' --json featurebase.featurebase_list_admin_roles
Returns all available admin roles and their permissions.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_admin_roles '{}' --json kosmo integrations:featurebase featurebase_list_admin_roles '{}' --json featurebase.featurebase_list_teams
Returns all teams in your organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_teams '{}' --json kosmo integrations:featurebase featurebase_list_teams '{}' --json featurebase.featurebase_get_team_by_id
Retrieves a single team by its Featurebase ID.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_team_by_id '{}' --json kosmo integrations:featurebase featurebase_get_team_by_id '{}' --json featurebase.featurebase_list_brands
Returns all brands in your organization with cursor-based pagination.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_brands '{}' --json kosmo integrations:featurebase featurebase_list_brands '{}' --json featurebase.featurebase_get_brand_by_id
Retrieves a single brand by its Featurebase ID.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_brand_by_id '{}' --json kosmo integrations:featurebase featurebase_get_brand_by_id '{}' --json featurebase.featurebase_list_contacts
Returns a list of contacts (customers and leads) in your organization using cursor-based pagination.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_contacts '{}' --json kosmo integrations:featurebase featurebase_list_contacts '{}' --json featurebase.featurebase_upsert_contact
Creates a new contact or updates an existing one.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_upsert_contact '{}' --json kosmo integrations:featurebase featurebase_upsert_contact '{}' --json featurebase.featurebase_get_contact_by_id
Retrieves a single contact by their Featurebase ID.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_contact_by_id '{}' --json kosmo integrations:featurebase featurebase_get_contact_by_id '{}' --json featurebase.featurebase_delete_contact_by_id
Permanently deletes a contact by their Featurebase ID.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_contact_by_id '{}' --json kosmo integrations:featurebase featurebase_delete_contact_by_id '{}' --json featurebase.featurebase_get_contact_by_user_id
Retrieves a single contact by their external user ID (from your system via SSO).
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_contact_by_user_id '{}' --json kosmo integrations:featurebase featurebase_get_contact_by_user_id '{}' --json featurebase.featurebase_delete_contact_by_user_id
Permanently deletes a contact by their external user ID.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_contact_by_user_id '{}' --json kosmo integrations:featurebase featurebase_delete_contact_by_user_id '{}' --json featurebase.featurebase_get_contact_email_preferences_by_id
Retrieves the email preference state for a customer contact by their Featurebase ID.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_contact_email_preferences_by_id '{}' --json kosmo integrations:featurebase featurebase_get_contact_email_preferences_by_id '{}' --json featurebase.featurebase_update_contact_email_preferences_by_id
Updates one or more email preferences for a customer contact by their Featurebase ID.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_update_contact_email_preferences_by_id '{}' --json kosmo integrations:featurebase featurebase_update_contact_email_preferences_by_id '{}' --json featurebase.featurebase_get_contact_email_preferences_by_user_id
Retrieves the email preference state for a customer contact by their external user ID.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_contact_email_preferences_by_user_id '{}' --json kosmo integrations:featurebase featurebase_get_contact_email_preferences_by_user_id '{}' --json featurebase.featurebase_update_contact_email_preferences_by_user_id
Updates one or more email preferences for a customer contact by their external user ID.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_update_contact_email_preferences_by_user_id '{}' --json kosmo integrations:featurebase featurebase_update_contact_email_preferences_by_user_id '{}' --json featurebase.featurebase_block_contact_by_id
Blocks a contact by their Featurebase ID from the messenger/inbox.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_block_contact_by_id '{}' --json kosmo integrations:featurebase featurebase_block_contact_by_id '{}' --json featurebase.featurebase_unblock_contact_by_id
Unblocks a contact by their Featurebase ID from the messenger/inbox.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_unblock_contact_by_id '{}' --json kosmo integrations:featurebase featurebase_unblock_contact_by_id '{}' --json featurebase.featurebase_list_companies
Returns all companies in your organization with cursor-based pagination.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_companies '{}' --json kosmo integrations:featurebase featurebase_list_companies '{}' --json featurebase.featurebase_upsert_company
Creates a new company or updates an existing one.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_upsert_company '{}' --json kosmo integrations:featurebase featurebase_upsert_company '{}' --json featurebase.featurebase_get_company_by_id
Retrieves a single company by its Featurebase ID.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_company_by_id '{}' --json kosmo integrations:featurebase featurebase_get_company_by_id '{}' --json featurebase.featurebase_delete_company_by_id
Deletes a company by its Featurebase ID.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_company_by_id '{}' --json kosmo integrations:featurebase featurebase_delete_company_by_id '{}' --json featurebase.featurebase_delete_company_by_company_id
Permanently deletes a company by its external company ID (the companyId from your system).
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_company_by_company_id '{}' --json kosmo integrations:featurebase featurebase_delete_company_by_company_id '{}' --json featurebase.featurebase_list_company_contacts
Returns all contacts (customers) attached to a specific company.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_company_contacts '{}' --json kosmo integrations:featurebase featurebase_list_company_contacts '{}' --json featurebase.featurebase_attach_contact_to_company
Attaches a contact (customer) to a company.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_attach_contact_to_company '{}' --json kosmo integrations:featurebase featurebase_attach_contact_to_company '{}' --json featurebase.featurebase_remove_contact_from_company
Removes a contact (customer) from a company.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_remove_contact_from_company '{}' --json kosmo integrations:featurebase featurebase_remove_contact_from_company '{}' --json featurebase.featurebase_list_surveys
Returns all surveys configured in your Featurebase organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_surveys '{}' --json kosmo integrations:featurebase featurebase_list_surveys '{}' --json featurebase.featurebase_get_survey
Retrieves a single survey by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_survey '{}' --json kosmo integrations:featurebase featurebase_get_survey '{}' --json featurebase.featurebase_get_survey_responses
Retrieves all user responses for a specific survey.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_survey_responses '{}' --json kosmo integrations:featurebase featurebase_get_survey_responses '{}' --json featurebase.featurebase_list_help_centers
Returns all help centers configured in your Featurebase organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_help_centers '{}' --json kosmo integrations:featurebase featurebase_list_help_centers '{}' --json featurebase.featurebase_get_help_center
Retrieves a single help center by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_help_center '{}' --json kosmo integrations:featurebase featurebase_get_help_center '{}' --json featurebase.featurebase_list_collections
Returns a paginated list of collections within your organization's help center.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_collections '{}' --json kosmo integrations:featurebase featurebase_list_collections '{}' --json featurebase.featurebase_create_collection
Creates a new collection in your organization's help center.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_create_collection '{}' --json kosmo integrations:featurebase featurebase_create_collection '{}' --json featurebase.featurebase_get_collection
Retrieves a specific collection by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_collection '{}' --json kosmo integrations:featurebase featurebase_get_collection '{}' --json featurebase.featurebase_update_collection
Updates an existing collection. Only include the fields you wish to update.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_update_collection '{}' --json kosmo integrations:featurebase featurebase_update_collection '{}' --json featurebase.featurebase_delete_collection
Deletes an existing collection.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_collection '{}' --json kosmo integrations:featurebase featurebase_delete_collection '{}' --json featurebase.featurebase_list_articles
Returns a paginated list of articles within your organization's help center.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_articles '{}' --json kosmo integrations:featurebase featurebase_list_articles '{}' --json featurebase.featurebase_create_article
Creates a new article in your organization's help center.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_create_article '{}' --json kosmo integrations:featurebase featurebase_create_article '{}' --json featurebase.featurebase_get_article
Retrieves a specific article by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_article '{}' --json kosmo integrations:featurebase featurebase_get_article '{}' --json featurebase.featurebase_update_article
Updates an existing article. Only include the fields you wish to update.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_update_article '{}' --json kosmo integrations:featurebase featurebase_update_article '{}' --json featurebase.featurebase_delete_article
Deletes an existing article.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_article '{}' --json kosmo integrations:featurebase featurebase_delete_article '{}' --json featurebase.featurebase_list_redirect_rules
Returns a paginated list of redirect rules within your organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_redirect_rules '{}' --json kosmo integrations:featurebase featurebase_list_redirect_rules '{}' --json featurebase.featurebase_create_redirect_rule
Creates a new redirect rule in your organization.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_create_redirect_rule '{}' --json kosmo integrations:featurebase featurebase_create_redirect_rule '{}' --json featurebase.featurebase_get_redirect_rule_by_url
Retrieves a specific redirect rule by its source URL.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_redirect_rule_by_url '{}' --json kosmo integrations:featurebase featurebase_get_redirect_rule_by_url '{}' --json featurebase.featurebase_get_redirect_rule
Retrieves a specific redirect rule by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_redirect_rule '{}' --json kosmo integrations:featurebase featurebase_get_redirect_rule '{}' --json featurebase.featurebase_update_redirect_rule
Updates an existing redirect rule. Only include the fields you wish to update.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_update_redirect_rule '{}' --json kosmo integrations:featurebase featurebase_update_redirect_rule '{}' --json featurebase.featurebase_delete_redirect_rule
Deletes an existing redirect rule. The associated Redis cache entry is also invalidated.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_redirect_rule '{}' --json kosmo integrations:featurebase featurebase_delete_redirect_rule '{}' --json featurebase.featurebase_list_conversations
Returns a list of conversations in your organization using cursor-based pagination.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_conversations '{}' --json kosmo integrations:featurebase featurebase_list_conversations '{}' --json featurebase.featurebase_create_conversation
Creates a new conversation. Supports both contact-initiated (customer/lead) and admin-initiated (outreach) conversations.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_create_conversation '{}' --json kosmo integrations:featurebase featurebase_create_conversation '{}' --json featurebase.featurebase_get_conversation_by_id
Retrieves a single conversation by its ID, including conversation parts (messages).
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_conversation_by_id '{}' --json kosmo integrations:featurebase featurebase_get_conversation_by_id '{}' --json featurebase.featurebase_delete_conversation
Permanently deletes a conversation by its short ID.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_conversation '{}' --json kosmo integrations:featurebase featurebase_delete_conversation '{}' --json featurebase.featurebase_update_conversation
Updates a conversation's properties. Supports partial updates - only provided fields will be updated.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_update_conversation '{}' --json kosmo integrations:featurebase featurebase_update_conversation '{}' --json featurebase.featurebase_attach_conversation_tag
Attaches a workspace tag to a conversation.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_attach_conversation_tag '{}' --json kosmo integrations:featurebase featurebase_attach_conversation_tag '{}' --json featurebase.featurebase_detach_conversation_tag
Removes a workspace tag from a conversation.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_detach_conversation_tag '{}' --json kosmo integrations:featurebase featurebase_detach_conversation_tag '{}' --json featurebase.featurebase_reply_to_conversation
Adds a reply to an existing conversation. Supports both contact (customer/lead) and admin replies.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_reply_to_conversation '{}' --json kosmo integrations:featurebase featurebase_reply_to_conversation '{}' --json featurebase.featurebase_add_participant_to_conversation
Adds a contact (customer or lead) as a participant to an existing conversation.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_add_participant_to_conversation '{}' --json kosmo integrations:featurebase featurebase_add_participant_to_conversation '{}' --json featurebase.featurebase_remove_participant_from_conversation
Removes a contact (customer or lead) from an existing conversation.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_remove_participant_from_conversation '{}' --json kosmo integrations:featurebase featurebase_remove_participant_from_conversation '{}' --json featurebase.featurebase_redact_conversation_part
Redacts a conversation part (message) from a conversation. Redaction permanently removes the message content while preserving the conversation structure.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_redact_conversation_part '{}' --json kosmo integrations:featurebase featurebase_redact_conversation_part '{}' --json featurebase.featurebase_list_tags
Returns the live conversation tags available in the workspace tag catalog. These are the canonical tags that power conversation payloads, filters, and tag mutation endpoints.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_tags '{}' --json kosmo integrations:featurebase featurebase_list_tags '{}' --json featurebase.featurebase_upsert_tag
Creates a new workspace conversation tag when only name is provided. If id is also provided, the existing tag is renamed instead.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_upsert_tag '{}' --json kosmo integrations:featurebase featurebase_upsert_tag '{}' --json featurebase.featurebase_get_tag_by_id
Returns a single conversation tag by its Featurebase tag ID. Archived tags can still be retrieved directly by ID, while permanently deleted tags return 404.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_tag_by_id '{}' --json kosmo integrations:featurebase featurebase_get_tag_by_id '{}' --json featurebase.featurebase_delete_tag
Deletes a conversation tag from the workspace catalog and removes it from aggregate conversation tag state. Archived and historical part applications remain part of the audit trail where applicable.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_tag '{}' --json kosmo integrations:featurebase featurebase_delete_tag '{}' --json featurebase.featurebase_list_tickets
Returns a list of tickets in your organization using cursor-based pagination.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_tickets '{}' --json kosmo integrations:featurebase featurebase_list_tickets '{}' --json featurebase.featurebase_create_ticket
Creates a new ticket.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_create_ticket '{}' --json kosmo integrations:featurebase featurebase_create_ticket '{}' --json featurebase.featurebase_get_ticket
Retrieves a single ticket by its ticket number.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_ticket '{}' --json kosmo integrations:featurebase featurebase_get_ticket '{}' --json featurebase.featurebase_update_ticket
Updates a ticket's properties. Only provided fields will be updated.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_update_ticket '{}' --json kosmo integrations:featurebase featurebase_update_ticket '{}' --json featurebase.featurebase_delete_ticket
Permanently deletes a ticket by its ticket number.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_ticket '{}' --json kosmo integrations:featurebase featurebase_delete_ticket '{}' --json featurebase.featurebase_reply_to_ticket
Adds a reply to a ticket's linked conversation. Supports both contact and admin replies.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_reply_to_ticket '{}' --json kosmo integrations:featurebase featurebase_reply_to_ticket '{}' --json featurebase.featurebase_list_ticket_custom_fields
Returns all custom fields configured in your organization that can be used on tickets.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_ticket_custom_fields '{}' --json kosmo integrations:featurebase featurebase_list_ticket_custom_fields '{}' --json featurebase.featurebase_get_ticket_custom_field
Retrieves a single custom field by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_ticket_custom_field '{}' --json kosmo integrations:featurebase featurebase_get_ticket_custom_field '{}' --json featurebase.featurebase_list_ticket_categories
Returns all ticket categories for the authenticated organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_ticket_categories '{}' --json kosmo integrations:featurebase featurebase_list_ticket_categories '{}' --json featurebase.featurebase_get_ticket_category
Retrieves a single ticket category by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_ticket_category '{}' --json kosmo integrations:featurebase featurebase_get_ticket_category '{}' --json featurebase.featurebase_list_ticket_statuses
Returns all ticket statuses for the authenticated organization.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_ticket_statuses '{}' --json kosmo integrations:featurebase featurebase_list_ticket_statuses '{}' --json featurebase.featurebase_get_ticket_status
Retrieves a single ticket status by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_ticket_status '{}' --json kosmo integrations:featurebase featurebase_get_ticket_status '{}' --json featurebase.featurebase_list_webhooks
Returns a list of webhooks in your organization using cursor-based pagination.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_list_webhooks '{}' --json kosmo integrations:featurebase featurebase_list_webhooks '{}' --json featurebase.featurebase_create_webhook
Creates a new webhook to receive event notifications.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_create_webhook '{}' --json kosmo integrations:featurebase featurebase_create_webhook '{}' --json featurebase.featurebase_get_webhook_by_id
Retrieves a single webhook by its unique identifier.
read - Parameters
- none
kosmo integrations:call featurebase.featurebase_get_webhook_by_id '{}' --json kosmo integrations:featurebase featurebase_get_webhook_by_id '{}' --json featurebase.featurebase_update_webhook
Updates a webhook's properties. Supports partial updates - only provided fields will be updated.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_update_webhook '{}' --json kosmo integrations:featurebase featurebase_update_webhook '{}' --json featurebase.featurebase_delete_webhook
Permanently deletes a webhook.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_delete_webhook '{}' --json kosmo integrations:featurebase featurebase_delete_webhook '{}' --json featurebase.featurebase_refresh_webhook_secret
Generates a new signing secret for a webhook. The previous secret is immediately invalidated.
write - Parameters
- none
kosmo integrations:call featurebase.featurebase_refresh_webhook_secret '{}' --json kosmo integrations:featurebase featurebase_refresh_webhook_secret '{}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
featurebase.featurebase_list_boards 0 parameters
kosmo integrations:schema featurebase.featurebase_list_boards --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_board 0 parameters
kosmo integrations:schema featurebase.featurebase_get_board --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_posts 0 parameters
kosmo integrations:schema featurebase.featurebase_list_posts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_create_post 0 parameters
kosmo integrations:schema featurebase.featurebase_create_post --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_post 0 parameters
kosmo integrations:schema featurebase.featurebase_get_post --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_update_post 0 parameters
kosmo integrations:schema featurebase.featurebase_update_post --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_post 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_post --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_voters 0 parameters
kosmo integrations:schema featurebase.featurebase_list_voters --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_add_voter 0 parameters
kosmo integrations:schema featurebase.featurebase_add_voter --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_remove_voter 0 parameters
kosmo integrations:schema featurebase.featurebase_remove_voter --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_post_statuses 0 parameters
kosmo integrations:schema featurebase.featurebase_list_post_statuses --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_post_status 0 parameters
kosmo integrations:schema featurebase.featurebase_get_post_status --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_comments 0 parameters
kosmo integrations:schema featurebase.featurebase_list_comments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_create_comment 0 parameters
kosmo integrations:schema featurebase.featurebase_create_comment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_comment 0 parameters
kosmo integrations:schema featurebase.featurebase_get_comment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_update_comment 0 parameters
kosmo integrations:schema featurebase.featurebase_update_comment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_comment 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_comment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_comment_clover 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_comment_clover --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_custom_fields 0 parameters
kosmo integrations:schema featurebase.featurebase_list_custom_fields --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_custom_field 0 parameters
kosmo integrations:schema featurebase.featurebase_get_custom_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_changelogs 0 parameters
kosmo integrations:schema featurebase.featurebase_list_changelogs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_create_changelog 0 parameters
kosmo integrations:schema featurebase.featurebase_create_changelog --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_changelog 0 parameters
kosmo integrations:schema featurebase.featurebase_get_changelog --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_update_changelog 0 parameters
kosmo integrations:schema featurebase.featurebase_update_changelog --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_changelog 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_changelog --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_publish_changelog 0 parameters
kosmo integrations:schema featurebase.featurebase_publish_changelog --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_unpublish_changelog 0 parameters
kosmo integrations:schema featurebase.featurebase_unpublish_changelog --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_add_changelog_subscribers 0 parameters
kosmo integrations:schema featurebase.featurebase_add_changelog_subscribers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_remove_changelog_subscribers 0 parameters
kosmo integrations:schema featurebase.featurebase_remove_changelog_subscribers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_admins 0 parameters
kosmo integrations:schema featurebase.featurebase_list_admins --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_admin 0 parameters
kosmo integrations:schema featurebase.featurebase_get_admin --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_admin_roles 0 parameters
kosmo integrations:schema featurebase.featurebase_list_admin_roles --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_teams 0 parameters
kosmo integrations:schema featurebase.featurebase_list_teams --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_team_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_get_team_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_brands 0 parameters
kosmo integrations:schema featurebase.featurebase_list_brands --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_brand_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_get_brand_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_contacts 0 parameters
kosmo integrations:schema featurebase.featurebase_list_contacts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_upsert_contact 0 parameters
kosmo integrations:schema featurebase.featurebase_upsert_contact --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_contact_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_get_contact_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_contact_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_contact_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_contact_by_user_id 0 parameters
kosmo integrations:schema featurebase.featurebase_get_contact_by_user_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_contact_by_user_id 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_contact_by_user_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_contact_email_preferences_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_get_contact_email_preferences_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_update_contact_email_preferences_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_update_contact_email_preferences_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_contact_email_preferences_by_user_id 0 parameters
kosmo integrations:schema featurebase.featurebase_get_contact_email_preferences_by_user_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_update_contact_email_preferences_by_user_id 0 parameters
kosmo integrations:schema featurebase.featurebase_update_contact_email_preferences_by_user_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_block_contact_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_block_contact_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_unblock_contact_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_unblock_contact_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_companies 0 parameters
kosmo integrations:schema featurebase.featurebase_list_companies --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_upsert_company 0 parameters
kosmo integrations:schema featurebase.featurebase_upsert_company --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_company_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_get_company_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_company_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_company_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_company_by_company_id 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_company_by_company_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_company_contacts 0 parameters
kosmo integrations:schema featurebase.featurebase_list_company_contacts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_attach_contact_to_company 0 parameters
kosmo integrations:schema featurebase.featurebase_attach_contact_to_company --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_remove_contact_from_company 0 parameters
kosmo integrations:schema featurebase.featurebase_remove_contact_from_company --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_surveys 0 parameters
kosmo integrations:schema featurebase.featurebase_list_surveys --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_survey 0 parameters
kosmo integrations:schema featurebase.featurebase_get_survey --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_survey_responses 0 parameters
kosmo integrations:schema featurebase.featurebase_get_survey_responses --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_help_centers 0 parameters
kosmo integrations:schema featurebase.featurebase_list_help_centers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_help_center 0 parameters
kosmo integrations:schema featurebase.featurebase_get_help_center --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_collections 0 parameters
kosmo integrations:schema featurebase.featurebase_list_collections --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_create_collection 0 parameters
kosmo integrations:schema featurebase.featurebase_create_collection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_collection 0 parameters
kosmo integrations:schema featurebase.featurebase_get_collection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_update_collection 0 parameters
kosmo integrations:schema featurebase.featurebase_update_collection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_collection 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_collection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_articles 0 parameters
kosmo integrations:schema featurebase.featurebase_list_articles --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_create_article 0 parameters
kosmo integrations:schema featurebase.featurebase_create_article --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_article 0 parameters
kosmo integrations:schema featurebase.featurebase_get_article --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_update_article 0 parameters
kosmo integrations:schema featurebase.featurebase_update_article --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_article 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_article --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_redirect_rules 0 parameters
kosmo integrations:schema featurebase.featurebase_list_redirect_rules --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_create_redirect_rule 0 parameters
kosmo integrations:schema featurebase.featurebase_create_redirect_rule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_redirect_rule_by_url 0 parameters
kosmo integrations:schema featurebase.featurebase_get_redirect_rule_by_url --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_redirect_rule 0 parameters
kosmo integrations:schema featurebase.featurebase_get_redirect_rule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_update_redirect_rule 0 parameters
kosmo integrations:schema featurebase.featurebase_update_redirect_rule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_redirect_rule 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_redirect_rule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_conversations 0 parameters
kosmo integrations:schema featurebase.featurebase_list_conversations --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_create_conversation 0 parameters
kosmo integrations:schema featurebase.featurebase_create_conversation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_conversation_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_get_conversation_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_conversation 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_conversation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_update_conversation 0 parameters
kosmo integrations:schema featurebase.featurebase_update_conversation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_attach_conversation_tag 0 parameters
kosmo integrations:schema featurebase.featurebase_attach_conversation_tag --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_detach_conversation_tag 0 parameters
kosmo integrations:schema featurebase.featurebase_detach_conversation_tag --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_reply_to_conversation 0 parameters
kosmo integrations:schema featurebase.featurebase_reply_to_conversation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_add_participant_to_conversation 0 parameters
kosmo integrations:schema featurebase.featurebase_add_participant_to_conversation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_remove_participant_from_conversation 0 parameters
kosmo integrations:schema featurebase.featurebase_remove_participant_from_conversation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_redact_conversation_part 0 parameters
kosmo integrations:schema featurebase.featurebase_redact_conversation_part --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_tags 0 parameters
kosmo integrations:schema featurebase.featurebase_list_tags --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_upsert_tag 0 parameters
kosmo integrations:schema featurebase.featurebase_upsert_tag --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_tag_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_get_tag_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_tag 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_tag --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_tickets 0 parameters
kosmo integrations:schema featurebase.featurebase_list_tickets --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_create_ticket 0 parameters
kosmo integrations:schema featurebase.featurebase_create_ticket --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_ticket 0 parameters
kosmo integrations:schema featurebase.featurebase_get_ticket --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_update_ticket 0 parameters
kosmo integrations:schema featurebase.featurebase_update_ticket --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_ticket 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_ticket --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_reply_to_ticket 0 parameters
kosmo integrations:schema featurebase.featurebase_reply_to_ticket --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_ticket_custom_fields 0 parameters
kosmo integrations:schema featurebase.featurebase_list_ticket_custom_fields --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_ticket_custom_field 0 parameters
kosmo integrations:schema featurebase.featurebase_get_ticket_custom_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_ticket_categories 0 parameters
kosmo integrations:schema featurebase.featurebase_list_ticket_categories --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_ticket_category 0 parameters
kosmo integrations:schema featurebase.featurebase_get_ticket_category --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_ticket_statuses 0 parameters
kosmo integrations:schema featurebase.featurebase_list_ticket_statuses --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_ticket_status 0 parameters
kosmo integrations:schema featurebase.featurebase_get_ticket_status --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_list_webhooks 0 parameters
kosmo integrations:schema featurebase.featurebase_list_webhooks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_create_webhook 0 parameters
kosmo integrations:schema featurebase.featurebase_create_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_get_webhook_by_id 0 parameters
kosmo integrations:schema featurebase.featurebase_get_webhook_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_update_webhook 0 parameters
kosmo integrations:schema featurebase.featurebase_update_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_delete_webhook 0 parameters
kosmo integrations:schema featurebase.featurebase_delete_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featurebase.featurebase_refresh_webhook_secret 0 parameters
kosmo integrations:schema featurebase.featurebase_refresh_webhook_secret --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No 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.