KosmoKrator

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, configure, and verify
# 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.

KeyEnv varTypeRequiredLabel
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.

Generic CLI call
kosmo integrations:call featurebase.featurebase_list_boards '{}' --json
Provider shortcut
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.

Discovery commands
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_boards '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_boards '{}' --json

featurebase.featurebase_get_board

Retrieves a single board by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_board '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_board '{}' --json

featurebase.featurebase_list_posts

Returns all posts (feedback submissions) for the authenticated organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_posts '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_posts '{}' --json

featurebase.featurebase_create_post

Creates a new post (feedback submission) in the specified board.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_create_post '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_create_post '{}' --json

featurebase.featurebase_get_post

Retrieves a single post by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_post '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_post '{}' --json

featurebase.featurebase_update_post

Updates an existing post. Only provided fields will be modified.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_update_post '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_update_post '{}' --json

featurebase.featurebase_delete_post

Permanently deletes a post. This action cannot be undone.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_post '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_delete_post '{}' --json

featurebase.featurebase_list_voters

Returns all voters (upvoters) for a specific post.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_voters '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_voters '{}' --json

featurebase.featurebase_add_voter

Adds a voter (upvote) to a post.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_add_voter '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_add_voter '{}' --json

featurebase.featurebase_remove_voter

Removes a voter (upvote) from a post.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_remove_voter '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_remove_voter '{}' --json

featurebase.featurebase_list_post_statuses

Returns all post statuses for the authenticated organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_post_statuses '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_post_statuses '{}' --json

featurebase.featurebase_get_post_status

Retrieves a single post status by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_post_status '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_post_status '{}' --json

featurebase.featurebase_list_comments

Returns comments for your organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_comments '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_comments '{}' --json

featurebase.featurebase_create_comment

Creates a new comment or reply to an existing comment.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_create_comment '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_create_comment '{}' --json

featurebase.featurebase_get_comment

Retrieves a single comment by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_comment '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_comment '{}' --json

featurebase.featurebase_update_comment

Updates an existing comment by its unique identifier.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_update_comment '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_update_comment '{}' --json

featurebase.featurebase_delete_comment

Deletes a comment by its unique identifier.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_comment '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_delete_comment '{}' --json

featurebase.featurebase_delete_comment_clover

Deletes a comment using the legacy Clover API format.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_comment_clover '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_delete_comment_clover '{}' --json

featurebase.featurebase_list_custom_fields

Returns all custom fields configured in your organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_custom_fields '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_custom_fields '{}' --json

featurebase.featurebase_get_custom_field

Retrieves a single custom field by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_custom_field '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_custom_field '{}' --json

featurebase.featurebase_list_changelogs

Returns all changelogs for the authenticated organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_changelogs '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_changelogs '{}' --json

featurebase.featurebase_create_changelog

Creates a new changelog for the authenticated organization.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_create_changelog '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_create_changelog '{}' --json

featurebase.featurebase_get_changelog

Retrieves a single changelog by its unique identifier or slug.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_changelog '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_changelog '{}' --json

featurebase.featurebase_update_changelog

Updates an existing changelog by its unique identifier.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_update_changelog '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_update_changelog '{}' --json

featurebase.featurebase_delete_changelog

Deletes a changelog by its unique identifier.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_changelog '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_delete_changelog '{}' --json

featurebase.featurebase_publish_changelog

Publishes a changelog and optionally sends an email notification to subscribers.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_publish_changelog '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_publish_changelog '{}' --json

featurebase.featurebase_unpublish_changelog

Unpublishes a changelog, removing it from public view.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_unpublish_changelog '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_unpublish_changelog '{}' --json

featurebase.featurebase_add_changelog_subscribers

Adds email addresses as changelog subscribers in bulk.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_add_changelog_subscribers '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_add_changelog_subscribers '{}' --json

featurebase.featurebase_remove_changelog_subscribers

Removes email addresses from changelog subscribers in bulk.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_remove_changelog_subscribers '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_remove_changelog_subscribers '{}' --json

featurebase.featurebase_list_admins

Returns all admins for your organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_admins '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_admins '{}' --json

featurebase.featurebase_get_admin

Retrieves a single admin by their unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_admin '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_admin '{}' --json

featurebase.featurebase_list_admin_roles

Returns all available admin roles and their permissions.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_admin_roles '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_admin_roles '{}' --json

featurebase.featurebase_list_teams

Returns all teams in your organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_teams '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_teams '{}' --json

featurebase.featurebase_get_team_by_id

Retrieves a single team by its Featurebase ID.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_team_by_id '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_team_by_id '{}' --json

featurebase.featurebase_list_brands

Returns all brands in your organization with cursor-based pagination.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_brands '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_brands '{}' --json

featurebase.featurebase_get_brand_by_id

Retrieves a single brand by its Featurebase ID.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_brand_by_id '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_contacts '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_contacts '{}' --json

featurebase.featurebase_upsert_contact

Creates a new contact or updates an existing one.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_upsert_contact '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_upsert_contact '{}' --json

featurebase.featurebase_get_contact_by_id

Retrieves a single contact by their Featurebase ID.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_contact_by_id '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_contact_by_id '{}' --json

featurebase.featurebase_delete_contact_by_id

Permanently deletes a contact by their Featurebase ID.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_contact_by_id '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_contact_by_user_id '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_contact_by_user_id '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_contact_email_preferences_by_id '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_update_contact_email_preferences_by_id '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_contact_email_preferences_by_user_id '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_update_contact_email_preferences_by_user_id '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_block_contact_by_id '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_unblock_contact_by_id '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_unblock_contact_by_id '{}' --json

featurebase.featurebase_list_companies

Returns all companies in your organization with cursor-based pagination.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_companies '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_companies '{}' --json

featurebase.featurebase_upsert_company

Creates a new company or updates an existing one.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_upsert_company '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_upsert_company '{}' --json

featurebase.featurebase_get_company_by_id

Retrieves a single company by its Featurebase ID.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_company_by_id '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_company_by_id '{}' --json

featurebase.featurebase_delete_company_by_id

Deletes a company by its Featurebase ID.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_company_by_id '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_company_by_company_id '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_company_contacts '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_company_contacts '{}' --json

featurebase.featurebase_attach_contact_to_company

Attaches a contact (customer) to a company.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_attach_contact_to_company '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_attach_contact_to_company '{}' --json

featurebase.featurebase_remove_contact_from_company

Removes a contact (customer) from a company.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_remove_contact_from_company '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_remove_contact_from_company '{}' --json

featurebase.featurebase_list_surveys

Returns all surveys configured in your Featurebase organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_surveys '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_surveys '{}' --json

featurebase.featurebase_get_survey

Retrieves a single survey by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_survey '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_survey '{}' --json

featurebase.featurebase_get_survey_responses

Retrieves all user responses for a specific survey.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_survey_responses '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_survey_responses '{}' --json

featurebase.featurebase_list_help_centers

Returns all help centers configured in your Featurebase organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_help_centers '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_help_centers '{}' --json

featurebase.featurebase_get_help_center

Retrieves a single help center by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_help_center '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_collections '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_collections '{}' --json

featurebase.featurebase_create_collection

Creates a new collection in your organization's help center.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_create_collection '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_create_collection '{}' --json

featurebase.featurebase_get_collection

Retrieves a specific collection by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_collection '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_collection '{}' --json

featurebase.featurebase_update_collection

Updates an existing collection. Only include the fields you wish to update.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_update_collection '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_update_collection '{}' --json

featurebase.featurebase_delete_collection

Deletes an existing collection.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_collection '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_delete_collection '{}' --json

featurebase.featurebase_list_articles

Returns a paginated list of articles within your organization's help center.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_articles '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_articles '{}' --json

featurebase.featurebase_create_article

Creates a new article in your organization's help center.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_create_article '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_create_article '{}' --json

featurebase.featurebase_get_article

Retrieves a specific article by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_article '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_article '{}' --json

featurebase.featurebase_update_article

Updates an existing article. Only include the fields you wish to update.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_update_article '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_update_article '{}' --json

featurebase.featurebase_delete_article

Deletes an existing article.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_article '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_delete_article '{}' --json

featurebase.featurebase_list_redirect_rules

Returns a paginated list of redirect rules within your organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_redirect_rules '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_redirect_rules '{}' --json

featurebase.featurebase_create_redirect_rule

Creates a new redirect rule in your organization.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_create_redirect_rule '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_redirect_rule_by_url '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_redirect_rule '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_update_redirect_rule '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_redirect_rule '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_conversations '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_create_conversation '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_conversation_by_id '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_conversation_by_id '{}' --json

featurebase.featurebase_delete_conversation

Permanently deletes a conversation by its short ID.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_conversation '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_update_conversation '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_update_conversation '{}' --json

featurebase.featurebase_attach_conversation_tag

Attaches a workspace tag to a conversation.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_attach_conversation_tag '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_attach_conversation_tag '{}' --json

featurebase.featurebase_detach_conversation_tag

Removes a workspace tag from a conversation.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_detach_conversation_tag '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_reply_to_conversation '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_add_participant_to_conversation '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_remove_participant_from_conversation '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_redact_conversation_part '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_tags '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_upsert_tag '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_tag_by_id '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_tag '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_delete_tag '{}' --json

featurebase.featurebase_list_tickets

Returns a list of tickets in your organization using cursor-based pagination.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_tickets '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_tickets '{}' --json

featurebase.featurebase_create_ticket

Creates a new ticket.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_create_ticket '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_create_ticket '{}' --json

featurebase.featurebase_get_ticket

Retrieves a single ticket by its ticket number.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_ticket '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_ticket '{}' --json

featurebase.featurebase_update_ticket

Updates a ticket's properties. Only provided fields will be updated.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_update_ticket '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_update_ticket '{}' --json

featurebase.featurebase_delete_ticket

Permanently deletes a ticket by its ticket number.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_ticket '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_reply_to_ticket '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_ticket_custom_fields '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_ticket_custom_field '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_ticket_custom_field '{}' --json

featurebase.featurebase_list_ticket_categories

Returns all ticket categories for the authenticated organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_ticket_categories '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_ticket_categories '{}' --json

featurebase.featurebase_get_ticket_category

Retrieves a single ticket category by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_ticket_category '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_get_ticket_category '{}' --json

featurebase.featurebase_list_ticket_statuses

Returns all ticket statuses for the authenticated organization.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_ticket_statuses '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_ticket_statuses '{}' --json

featurebase.featurebase_get_ticket_status

Retrieves a single ticket status by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_ticket_status '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_list_webhooks '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_list_webhooks '{}' --json

featurebase.featurebase_create_webhook

Creates a new webhook to receive event notifications.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_create_webhook '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_create_webhook '{}' --json

featurebase.featurebase_get_webhook_by_id

Retrieves a single webhook by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_get_webhook_by_id '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_update_webhook '{}' --json
Shortcut
kosmo integrations:featurebase featurebase_update_webhook '{}' --json

featurebase.featurebase_delete_webhook

Permanently deletes a webhook.

Write write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_delete_webhook '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call featurebase.featurebase_refresh_webhook_secret '{}' --json
Shortcut
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
Schema command
kosmo integrations:schema featurebase.featurebase_list_boards --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_board 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_board --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_posts 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_posts --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_create_post 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_create_post --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_post 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_post --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_update_post 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_update_post --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_post 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_post --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_voters 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_voters --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_add_voter 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_add_voter --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_remove_voter 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_remove_voter --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_post_statuses 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_post_statuses --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_post_status 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_post_status --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_comments 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_comments --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_create_comment 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_create_comment --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_comment 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_comment --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_update_comment 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_update_comment --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_comment 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_comment --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_comment_clover 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_comment_clover --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_custom_fields 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_custom_fields --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_custom_field 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_custom_field --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_changelogs 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_changelogs --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_create_changelog 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_create_changelog --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_changelog 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_changelog --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_update_changelog 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_update_changelog --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_changelog 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_changelog --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_publish_changelog 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_publish_changelog --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_unpublish_changelog 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_unpublish_changelog --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_add_changelog_subscribers 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_add_changelog_subscribers --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_remove_changelog_subscribers 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_remove_changelog_subscribers --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_admins 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_admins --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_admin 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_admin --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_admin_roles 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_admin_roles --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_teams 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_teams --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_team_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_team_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_brands 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_brands --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_brand_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_brand_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_contacts 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_contacts --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_upsert_contact 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_upsert_contact --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_contact_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_contact_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_contact_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_contact_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_contact_by_user_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_contact_by_user_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_contact_by_user_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_contact_by_user_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_contact_email_preferences_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_contact_email_preferences_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_update_contact_email_preferences_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_update_contact_email_preferences_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_contact_email_preferences_by_user_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_contact_email_preferences_by_user_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_update_contact_email_preferences_by_user_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_update_contact_email_preferences_by_user_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_block_contact_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_block_contact_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_unblock_contact_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_unblock_contact_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_companies 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_companies --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_upsert_company 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_upsert_company --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_company_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_company_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_company_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_company_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_company_by_company_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_company_by_company_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_company_contacts 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_company_contacts --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_attach_contact_to_company 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_attach_contact_to_company --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_remove_contact_from_company 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_remove_contact_from_company --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_surveys 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_surveys --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_survey 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_survey --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_survey_responses 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_survey_responses --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_help_centers 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_help_centers --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_help_center 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_help_center --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_collections 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_collections --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_create_collection 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_create_collection --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_collection 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_collection --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_update_collection 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_update_collection --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_collection 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_collection --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_articles 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_articles --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_create_article 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_create_article --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_article 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_article --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_update_article 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_update_article --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_article 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_article --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_redirect_rules 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_redirect_rules --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_create_redirect_rule 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_create_redirect_rule --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_redirect_rule_by_url 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_redirect_rule_by_url --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_redirect_rule 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_redirect_rule --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_update_redirect_rule 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_update_redirect_rule --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_redirect_rule 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_redirect_rule --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_conversations 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_conversations --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_create_conversation 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_create_conversation --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_conversation_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_conversation_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_conversation 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_conversation --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_update_conversation 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_update_conversation --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_attach_conversation_tag 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_attach_conversation_tag --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_detach_conversation_tag 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_detach_conversation_tag --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_reply_to_conversation 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_reply_to_conversation --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_add_participant_to_conversation 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_add_participant_to_conversation --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_remove_participant_from_conversation 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_remove_participant_from_conversation --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_redact_conversation_part 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_redact_conversation_part --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_tags 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_tags --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_upsert_tag 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_upsert_tag --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_tag_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_tag_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_tag 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_tag --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_tickets 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_tickets --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_create_ticket 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_create_ticket --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_ticket 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_ticket --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_update_ticket 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_update_ticket --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_ticket 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_ticket --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_reply_to_ticket 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_reply_to_ticket --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_ticket_custom_fields 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_ticket_custom_fields --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_ticket_custom_field 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_ticket_custom_field --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_ticket_categories 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_ticket_categories --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_ticket_category 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_ticket_category --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_ticket_statuses 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_ticket_statuses --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_ticket_status 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_ticket_status --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_list_webhooks 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_list_webhooks --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_create_webhook 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_create_webhook --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_get_webhook_by_id 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_get_webhook_by_id --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_update_webhook 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_update_webhook --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_delete_webhook 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_delete_webhook --json
ParameterTypeRequiredDescription
No parameters.
featurebase.featurebase_refresh_webhook_secret 0 parameters
Schema command
kosmo integrations:schema featurebase.featurebase_refresh_webhook_secret --json
ParameterTypeRequiredDescription
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.