KosmoKrator

productivity

Crisp CLI for AI Agents

Use the Crisp CLI from KosmoKrator to call Crisp tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Crisp CLI Setup

Crisp can be configured headlessly with `kosmokrator integrations:configure crisp`.

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 crisp --set identifier="$CRISP_IDENTIFIER" --set key="$CRISP_KEY" --set tier="$CRISP_TIER" --enable --read allow --write ask --json
kosmokrator integrations:doctor crisp --json
kosmokrator integrations:status --json

Runtime Requirements

Install these host dependencies before calling Crisp locally.

NameTypeDescription
runtime dependency
runtime dependency
runtime dependency

Credentials

Authentication type: basic auth basic_auth. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
identifier CRISP_IDENTIFIER Secret secret yes Token Identifier
key CRISP_KEY Secret secret yes Token Key
tier CRISP_TIER Select select yes Token Tier
website_id CRISP_WEBSITE_ID Text string no Default Website ID
url CRISP_URL URL url no API Host

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call crisp.crisp_generate_bucket_url '{}' --json
Provider shortcut
kosmo integrations:crisp crisp_generate_bucket_url '{}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs crisp --json
kosmo integrations:docs crisp.crisp_generate_bucket_url --json
kosmo integrations:schema crisp.crisp_generate_bucket_url --json
kosmo integrations:search "Crisp" --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.

crisp.crisp_generate_bucket_url

Execute the official Crisp REST API method `generateBucketURL` from node-crisp-api. Official Crisp endpoint: POST /v1/bucket/url/generate.

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

crisp.crisp_list_animation_medias

Execute the official Crisp REST API method `listAnimationMedias` from node-crisp-api. Official Crisp endpoint: GET /v1/media/animation/list/{pageNumber}.

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

crisp.crisp_plan_subscription_list_all_active_subscriptions

Execute the official Crisp REST API method `listAllActiveSubscriptions` from node-crisp-api. Official Crisp endpoint: GET /v1/plans/subscription.

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

crisp.crisp_get_plan_subscription_for_website

Execute the official Crisp REST API method `getPlanSubscriptionForWebsite` from node-crisp-api. Official Crisp endpoint: GET /v1/plans/subscription/{websiteID}.

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

crisp.crisp_subscribe_website_to_plan

Execute the official Crisp REST API method `subscribeWebsiteToPlan` from node-crisp-api. Official Crisp endpoint: POST /v1/plans/subscription/{websiteID}.

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

crisp.crisp_unsubscribe_plan_from_website

Execute the official Crisp REST API method `unsubscribePlanFromWebsite` from node-crisp-api. Official Crisp endpoint: DELETE /v1/plans/subscription/{websiteID}.

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

crisp.crisp_change_bill_period_for_website_plan_subscription

Execute the official Crisp REST API method `changeBillPeriodForWebsitePlanSubscription` from node-crisp-api. Official Crisp endpoint: PATCH /v1/plans/subscription/{websiteID}/bill/period.

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

crisp.crisp_check_coupon_availability_for_website_plan_subscription

Execute the official Crisp REST API method `checkCouponAvailabilityForWebsitePlanSubscription` from node-crisp-api. Official Crisp endpoint: GET /v1/plans/subscription/{websiteID}/coupon.

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

crisp.crisp_redeem_coupon_for_website_plan_subscription

Execute the official Crisp REST API method `redeemCouponForWebsitePlanSubscription` from node-crisp-api. Official Crisp endpoint: PATCH /v1/plans/subscription/{websiteID}/coupon.

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

crisp.crisp_get_connect_account

Execute the official Crisp REST API method `getConnectAccount` from node-crisp-api. Official Crisp endpoint: GET /v1/plugin/connect/account.

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

crisp.crisp_check_connect_session_validity

Execute the official Crisp REST API method `checkConnectSessionValidity` from node-crisp-api. Official Crisp endpoint: HEAD /v1/plugin/connect/session.

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

crisp.crisp_list_all_connect_websites

Execute the official Crisp REST API method `listAllConnectWebsites` from node-crisp-api. Official Crisp endpoint: GET /v1/plugin/connect/websites/all/{pageNumber}.

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

crisp.crisp_list_connect_websites_since

Execute the official Crisp REST API method `listConnectWebsitesSince` from node-crisp-api. Official Crisp endpoint: GET /v1/plugin/connect/websites/since.

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

crisp.crisp_get_connect_endpoints

Execute the official Crisp REST API method `getConnectEndpoints` from node-crisp-api. Official Crisp endpoint: GET /v1/plugin/connect/endpoints.

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

crisp.crisp_plugin_subscription_list_all_active_subscriptions

Execute the official Crisp REST API method `listAllActiveSubscriptions` from node-crisp-api. Official Crisp endpoint: GET /v1/plugins/subscription.

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

crisp.crisp_list_subscriptions_for_website

Execute the official Crisp REST API method `listSubscriptionsForWebsite` from node-crisp-api. Official Crisp endpoint: GET /v1/plugins/subscription/{websiteID}.

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

crisp.crisp_get_subscription_details

Execute the official Crisp REST API method `getSubscriptionDetails` from node-crisp-api. Official Crisp endpoint: GET /v1/plugins/subscription/{websiteID}/{pluginID}.

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

crisp.crisp_subscribe_website_to_plugin

Execute the official Crisp REST API method `subscribeWebsiteToPlugin` from node-crisp-api. Official Crisp endpoint: POST /v1/plugins/subscription/{websiteID}.

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

crisp.crisp_unsubscribe_plugin_from_website

Execute the official Crisp REST API method `unsubscribePluginFromWebsite` from node-crisp-api. Official Crisp endpoint: DELETE /v1/plugins/subscription/{websiteID}/{pluginID}.

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

crisp.crisp_get_subscription_settings

Execute the official Crisp REST API method `getSubscriptionSettings` from node-crisp-api. Official Crisp endpoint: GET /v1/plugins/subscription/{websiteID}/{pluginID}/settings.

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

crisp.crisp_save_subscription_settings

Execute the official Crisp REST API method `saveSubscriptionSettings` from node-crisp-api. Official Crisp endpoint: PUT /v1/plugins/subscription/{websiteID}/{pluginID}/settings.

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

crisp.crisp_update_subscription_settings

Execute the official Crisp REST API method `updateSubscriptionSettings` from node-crisp-api. Official Crisp endpoint: PATCH /v1/plugins/subscription/{websiteID}/{pluginID}/settings.

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

crisp.crisp_get_plugin_usage_bills

Execute the official Crisp REST API method `getPluginUsageBills` from node-crisp-api. Official Crisp endpoint: GET /v1/plugins/subscription/{websiteID}/{pluginID}/bill/usage.

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

crisp.crisp_report_plugin_usage_to_bill

Execute the official Crisp REST API method `reportPluginUsageToBill` from node-crisp-api. Official Crisp endpoint: POST /v1/plugins/subscription/{websiteID}/{pluginID}/bill/usage.

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

crisp.crisp_get_plugin_attest_provenance

Execute the official Crisp REST API method `getPluginAttestProvenance` from node-crisp-api. Official Crisp endpoint: GET /v1/plugins/subscription/{websiteID}/{pluginID}/attest/provenance.

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

crisp.crisp_forward_plugin_payload_to_channel

Execute the official Crisp REST API method `forwardPluginPayloadToChannel` from node-crisp-api. Official Crisp endpoint: POST /v1/plugins/subscription/{websiteID}/{pluginID}/channel.

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

crisp.crisp_dispatch_plugin_event

Execute the official Crisp REST API method `dispatchPluginEvent` from node-crisp-api. Official Crisp endpoint: POST /v1/plugins/subscription/{websiteID}/{pluginID}/event.

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

crisp.crisp_generate_analytics

Execute the official Crisp REST API method `generateAnalytics` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/analytics/generate.

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

crisp.crisp_get_website_availability_status

Execute the official Crisp REST API method `getWebsiteAvailabilityStatus` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/availability/status.

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

crisp.crisp_list_website_operator_availabilities

Execute the official Crisp REST API method `listWebsiteOperatorAvailabilities` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/availability/operators.

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

crisp.crisp_check_website_exists

Execute the official Crisp REST API method `checkWebsiteExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website.

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

crisp.crisp_create_website

Execute the official Crisp REST API method `createWebsite` from node-crisp-api. Official Crisp endpoint: POST /v1/website.

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

crisp.crisp_get_website

Execute the official Crisp REST API method `getWebsite` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}.

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

crisp.crisp_delete_website

Execute the official Crisp REST API method `deleteWebsite` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}.

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

crisp.crisp_abort_website_deletion

Execute the official Crisp REST API method `abortWebsiteDeletion` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/expunge.

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

crisp.crisp_batch_resolve_conversations

Execute the official Crisp REST API method `batchResolveConversations` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/batch/resolve.

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

crisp.crisp_batch_read_conversations

Execute the official Crisp REST API method `batchReadConversations` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/batch/read.

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

crisp.crisp_batch_remove_conversations

Execute the official Crisp REST API method `batchRemoveConversations` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/batch/remove.

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

crisp.crisp_batch_remove_people

Execute the official Crisp REST API method `batchRemovePeople` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/batch/remove.

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

crisp.crisp_list_campaigns

Execute the official Crisp REST API method `listCampaigns` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/campaigns/list/{pageNumber}.

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

crisp.crisp_list_campaign_tags

Execute the official Crisp REST API method `listCampaignTags` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/campaigns/tags.

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

crisp.crisp_list_campaign_templates

Execute the official Crisp REST API method `listCampaignTemplates` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/campaigns/templates/{pageNumber}.

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

crisp.crisp_create_new_campaign_template

Execute the official Crisp REST API method `createNewCampaignTemplate` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/campaigns/template.

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

crisp.crisp_check_campaign_template_exists

Execute the official Crisp REST API method `checkCampaignTemplateExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/campaigns/template/{templateID}.

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

crisp.crisp_get_campaign_template

Execute the official Crisp REST API method `getCampaignTemplate` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/campaigns/template/{templateID}.

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

crisp.crisp_save_campaign_template

Execute the official Crisp REST API method `saveCampaignTemplate` from node-crisp-api. Official Crisp endpoint: PUT /v1/website/{websiteID}/campaigns/template/{templateID}.

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

crisp.crisp_update_campaign_template

Execute the official Crisp REST API method `updateCampaignTemplate` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/campaigns/template/{templateID}.

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

crisp.crisp_remove_campaign_template

Execute the official Crisp REST API method `removeCampaignTemplate` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/campaigns/template/{templateID}.

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

crisp.crisp_create_new_campaign

Execute the official Crisp REST API method `createNewCampaign` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/campaign.

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

crisp.crisp_check_campaign_exists

Execute the official Crisp REST API method `checkCampaignExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/campaign/{campaignID}.

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

crisp.crisp_get_campaign

Execute the official Crisp REST API method `getCampaign` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/campaign/{campaignID}.

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

crisp.crisp_save_campaign

Execute the official Crisp REST API method `saveCampaign` from node-crisp-api. Official Crisp endpoint: PUT /v1/website/{websiteID}/campaign/{campaignID}.

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

crisp.crisp_update_campaign

Execute the official Crisp REST API method `updateCampaign` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/campaign/{campaignID}.

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

crisp.crisp_remove_campaign

Execute the official Crisp REST API method `removeCampaign` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/campaign/{campaignID}.

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

crisp.crisp_dispatch_campaign

Execute the official Crisp REST API method `dispatchCampaign` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/campaign/{campaignID}/dispatch.

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

crisp.crisp_resume_campaign

Execute the official Crisp REST API method `resumeCampaign` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/campaign/{campaignID}/resume.

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

crisp.crisp_pause_campaign

Execute the official Crisp REST API method `pauseCampaign` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/campaign/{campaignID}/pause.

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

crisp.crisp_test_campaign

Execute the official Crisp REST API method `testCampaign` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/campaign/{campaignID}/test.

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

crisp.crisp_list_campaign_recipients

Execute the official Crisp REST API method `listCampaignRecipients` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/campaign/{campaignID}/recipients/{pageNumber}.

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

crisp.crisp_list_campaign_statistics

Execute the official Crisp REST API method `listCampaignStatistics` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/campaign/{campaignID}/statistics/{action}/{pageNumber}.

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

crisp.crisp_list_conversations

Execute the official Crisp REST API method `listConversations` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversations/{pageNumber}.

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

crisp.crisp_list_suggested_conversation_segments

Execute the official Crisp REST API method `listSuggestedConversationSegments` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversations/suggest/segments/{pageNumber}.

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

crisp.crisp_delete_suggested_conversation_segment

Execute the official Crisp REST API method `deleteSuggestedConversationSegment` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/conversations/suggest/segment.

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

crisp.crisp_list_suggested_conversation_data_keys

Execute the official Crisp REST API method `listSuggestedConversationDataKeys` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversations/suggest/data/{pageNumber}.

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

crisp.crisp_delete_suggested_conversation_data_key

Execute the official Crisp REST API method `deleteSuggestedConversationDataKey` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/conversations/suggest/data.

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

crisp.crisp_list_spam_conversations

Execute the official Crisp REST API method `listSpamConversations` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversations/spams/{pageNumber}.

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

crisp.crisp_resolve_spam_conversation_content

Execute the official Crisp REST API method `resolveSpamConversationContent` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversations/spam/{spamID}/content.

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

crisp.crisp_submit_spam_conversation_decision

Execute the official Crisp REST API method `submitSpamConversationDecision` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversations/spam/{spamID}/decision.

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

crisp.crisp_create_new_conversation

Execute the official Crisp REST API method `createNewConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation.

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

crisp.crisp_check_conversation_exists

Execute the official Crisp REST API method `checkConversationExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/conversation/{sessionID}.

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

crisp.crisp_get_conversation

Execute the official Crisp REST API method `getConversation` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}.

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

crisp.crisp_remove_conversation

Execute the official Crisp REST API method `removeConversation` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/conversation/{sessionID}.

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

crisp.crisp_initiate_conversation_with_existing_session

Execute the official Crisp REST API method `initiateConversationWithExistingSession` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/initiate.

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

crisp.crisp_get_messages_in_conversation

Execute the official Crisp REST API method `getMessagesInConversation` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/messages.

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

crisp.crisp_send_message_in_conversation

Execute the official Crisp REST API method `sendMessageInConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/message.

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

crisp.crisp_get_message_in_conversation

Execute the official Crisp REST API method `getMessageInConversation` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/message/{fingerprint}.

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

crisp.crisp_update_message_in_conversation

Execute the official Crisp REST API method `updateMessageInConversation` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/message/{fingerprint}.

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

crisp.crisp_remove_message_in_conversation

Execute the official Crisp REST API method `removeMessageInConversation` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/conversation/{sessionID}/message/{fingerprint}.

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

crisp.crisp_compose_message_in_conversation

Execute the official Crisp REST API method `composeMessageInConversation` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/compose.

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

crisp.crisp_mark_messages_read_in_conversation

Execute the official Crisp REST API method `markMessagesReadInConversation` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/read.

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

crisp.crisp_mark_conversation_as_unread

Execute the official Crisp REST API method `markConversationAsUnread` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/unread.

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

crisp.crisp_mark_messages_delivered_in_conversation

Execute the official Crisp REST API method `markMessagesDeliveredInConversation` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/delivered.

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

crisp.crisp_update_conversation_open_state

Execute the official Crisp REST API method `updateConversationOpenState` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/open.

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

crisp.crisp_get_conversation_routing_assign

Execute the official Crisp REST API method `getConversationRoutingAssign` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/routing.

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

crisp.crisp_assign_conversation_routing

Execute the official Crisp REST API method `assignConversationRouting` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/routing.

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

crisp.crisp_update_conversation_inbox

Execute the official Crisp REST API method `updateConversationInbox` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/inbox.

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

crisp.crisp_get_conversation_metas

Execute the official Crisp REST API method `getConversationMetas` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/meta.

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

crisp.crisp_update_conversation_metas

Execute the official Crisp REST API method `updateConversationMetas` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/meta.

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

crisp.crisp_get_original_message_in_conversation

Execute the official Crisp REST API method `getOriginalMessageInConversation` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/original/{originalID}.

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

crisp.crisp_list_conversation_pages

Execute the official Crisp REST API method `listConversationPages` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/pages/{pageNumber}.

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

crisp.crisp_list_conversation_events

Execute the official Crisp REST API method `listConversationEvents` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/events/{pageNumber}.

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

crisp.crisp_list_conversation_files

Execute the official Crisp REST API method `listConversationFiles` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/files/{pageNumber}.

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

crisp.crisp_get_conversation_state

Execute the official Crisp REST API method `getConversationState` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/state.

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

crisp.crisp_change_conversation_state

Execute the official Crisp REST API method `changeConversationState` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/state.

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

crisp.crisp_get_conversation_relations

Execute the official Crisp REST API method `getConversationRelations` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/relations.

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

crisp.crisp_get_conversation_participants

Execute the official Crisp REST API method `getConversationParticipants` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/participants.

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

crisp.crisp_save_conversation_participants

Execute the official Crisp REST API method `saveConversationParticipants` from node-crisp-api. Official Crisp endpoint: PUT /v1/website/{websiteID}/conversation/{sessionID}/participants.

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

crisp.crisp_get_block_status_for_conversation

Execute the official Crisp REST API method `getBlockStatusForConversation` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/block.

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

crisp.crisp_block_incoming_messages_for_conversation

Execute the official Crisp REST API method `blockIncomingMessagesForConversation` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/block.

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

crisp.crisp_get_verify_status_for_conversation

Execute the official Crisp REST API method `getVerifyStatusForConversation` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/verify.

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

crisp.crisp_update_verify_status_for_conversation

Execute the official Crisp REST API method `updateVerifyStatusForConversation` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/verify.

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

crisp.crisp_request_identity_verification_for_conversation

Execute the official Crisp REST API method `requestIdentityVerificationForConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/verify/identity.

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

crisp.crisp_redeem_identity_verification_link_for_conversation

Execute the official Crisp REST API method `redeemIdentityVerificationLinkForConversation` from node-crisp-api. Official Crisp endpoint: PUT /v1/website/{websiteID}/conversation/{sessionID}/verify/identity/link.

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

crisp.crisp_request_email_transcript_for_conversation

Execute the official Crisp REST API method `requestEmailTranscriptForConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/transcript.

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

crisp.crisp_request_chatbox_binding_purge_for_conversation

Execute the official Crisp REST API method `requestChatboxBindingPurgeForConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/purge.

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

crisp.crisp_request_user_feedback_for_conversation

Execute the official Crisp REST API method `requestUserFeedbackForConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/feedback.

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

crisp.crisp_list_browsing_sessions_for_conversation

Execute the official Crisp REST API method `listBrowsingSessionsForConversation` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/browsing.

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

crisp.crisp_initiate_browsing_session_for_conversation

Execute the official Crisp REST API method `initiateBrowsingSessionForConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/browsing.

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

crisp.crisp_send_action_to_existing_browsing_session

Execute the official Crisp REST API method `sendActionToExistingBrowsingSession` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/browsing/{browsingID}.

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

crisp.crisp_assist_existing_browsing_session

Execute the official Crisp REST API method `assistExistingBrowsingSession` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/browsing/{browsingID}/assist.

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

crisp.crisp_initiate_new_call_session_for_conversation

Execute the official Crisp REST API method `initiateNewCallSessionForConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/call.

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

crisp.crisp_get_ongoing_call_session_for_conversation

Execute the official Crisp REST API method `getOngoingCallSessionForConversation` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/conversation/{sessionID}/call.

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

crisp.crisp_abort_ongoing_call_session_for_conversation

Execute the official Crisp REST API method `abortOngoingCallSessionForConversation` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/conversation/{sessionID}/call/{callID}.

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

crisp.crisp_transmit_signaling_on_ongoing_call_session

Execute the official Crisp REST API method `transmitSignalingOnOngoingCallSession` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/conversation/{sessionID}/call/{callID}.

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

crisp.crisp_deliver_widget_button_action_for_conversation

Execute the official Crisp REST API method `deliverWidgetButtonActionForConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/widget/{pluginID}/button.

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

crisp.crisp_deliver_widget_data_fetch_action_for_conversation

Execute the official Crisp REST API method `deliverWidgetDataFetchActionForConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/widget/{pluginID}/data.

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

crisp.crisp_deliver_widget_data_edit_action_for_conversation

Execute the official Crisp REST API method `deliverWidgetDataEditActionForConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/widget/{pluginID}/data.

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

crisp.crisp_schedule_reminder_for_conversation

Execute the official Crisp REST API method `scheduleReminderForConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/reminder.

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

crisp.crisp_report_conversation

Execute the official Crisp REST API method `reportConversation` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/conversation/{sessionID}/report.

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

crisp.crisp_check_helpdesk_exists

Execute the official Crisp REST API method `checkHelpdeskExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/helpdesk.

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

crisp.crisp_resolve_helpdesk

Execute the official Crisp REST API method `resolveHelpdesk` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk.

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

crisp.crisp_initialize_helpdesk

Execute the official Crisp REST API method `initializeHelpdesk` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/helpdesk.

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

crisp.crisp_delete_helpdesk

Execute the official Crisp REST API method `deleteHelpdesk` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/helpdesk.

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

crisp.crisp_list_helpdesk_locales

Execute the official Crisp REST API method `listHelpdeskLocales` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locales/{pageNumber}.

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

crisp.crisp_add_helpdesk_locale

Execute the official Crisp REST API method `addHelpdeskLocale` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/helpdesk/locale.

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

crisp.crisp_check_helpdesk_locale_exists

Execute the official Crisp REST API method `checkHelpdeskLocaleExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/helpdesk/locale/{locale}.

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

crisp.crisp_resolve_helpdesk_locale

Execute the official Crisp REST API method `resolveHelpdeskLocale` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}.

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

crisp.crisp_delete_helpdesk_locale

Execute the official Crisp REST API method `deleteHelpdeskLocale` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/helpdesk/locale/{locale}.

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

crisp.crisp_list_helpdesk_locale_articles

Execute the official Crisp REST API method `listHelpdeskLocaleArticles` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/articles/{pageNumber}.

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

crisp.crisp_add_new_helpdesk_locale_article

Execute the official Crisp REST API method `addNewHelpdeskLocaleArticle` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/helpdesk/locale/{locale}/article.

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

crisp.crisp_check_helpdesk_locale_article_exists

Execute the official Crisp REST API method `checkHelpdeskLocaleArticleExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}.

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

crisp.crisp_resolve_helpdesk_locale_article

Execute the official Crisp REST API method `resolveHelpdeskLocaleArticle` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}.

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

crisp.crisp_save_helpdesk_locale_article

Execute the official Crisp REST API method `saveHelpdeskLocaleArticle` from node-crisp-api. Official Crisp endpoint: PUT /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}.

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

crisp.crisp_update_helpdesk_locale_article

Execute the official Crisp REST API method `updateHelpdeskLocaleArticle` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}.

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

crisp.crisp_delete_helpdesk_locale_article

Execute the official Crisp REST API method `deleteHelpdeskLocaleArticle` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}.

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

crisp.crisp_resolve_helpdesk_locale_article_page

Execute the official Crisp REST API method `resolveHelpdeskLocaleArticlePage` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}/page.

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

crisp.crisp_resolve_helpdesk_locale_article_category

Execute the official Crisp REST API method `resolveHelpdeskLocaleArticleCategory` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}/category.

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

crisp.crisp_update_helpdesk_locale_article_category

Execute the official Crisp REST API method `updateHelpdeskLocaleArticleCategory` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}/category.

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

crisp.crisp_list_helpdesk_locale_article_alternates

Execute the official Crisp REST API method `listHelpdeskLocaleArticleAlternates` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}/alternates.

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

crisp.crisp_check_helpdesk_locale_article_alternate_exists

Execute the official Crisp REST API method `checkHelpdeskLocaleArticleAlternateExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}/alternate/{localeLinked}.

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

crisp.crisp_resolve_helpdesk_locale_article_alternate

Execute the official Crisp REST API method `resolveHelpdeskLocaleArticleAlternate` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}/alternate/{localeLinked}.

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

crisp.crisp_save_helpdesk_locale_article_alternate

Execute the official Crisp REST API method `saveHelpdeskLocaleArticleAlternate` from node-crisp-api. Official Crisp endpoint: PUT /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}/alternate/{localeLinked}.

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

crisp.crisp_delete_helpdesk_locale_article_alternate

Execute the official Crisp REST API method `deleteHelpdeskLocaleArticleAlternate` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}/alternate/{localeLinked}.

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

crisp.crisp_publish_helpdesk_locale_article

Execute the official Crisp REST API method `publishHelpdeskLocaleArticle` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}/publish.

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

crisp.crisp_unpublish_helpdesk_locale_article

Execute the official Crisp REST API method `unpublishHelpdeskLocaleArticle` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/helpdesk/locale/{locale}/article/{articleId}/unpublish.

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

crisp.crisp_list_helpdesk_locale_categories

Execute the official Crisp REST API method `listHelpdeskLocaleCategories` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/categories/{pageNumber}.

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

crisp.crisp_add_helpdesk_locale_category

Execute the official Crisp REST API method `addHelpdeskLocaleCategory` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/helpdesk/locale/{locale}/category.

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

crisp.crisp_check_helpdesk_locale_category_exists

Execute the official Crisp REST API method `checkHelpdeskLocaleCategoryExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}.

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

crisp.crisp_resolve_helpdesk_locale_category

Execute the official Crisp REST API method `resolveHelpdeskLocaleCategory` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}.

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

crisp.crisp_save_helpdesk_locale_category

Execute the official Crisp REST API method `saveHelpdeskLocaleCategory` from node-crisp-api. Official Crisp endpoint: PUT /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}.

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

crisp.crisp_update_helpdesk_locale_category

Execute the official Crisp REST API method `updateHelpdeskLocaleCategory` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}.

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

crisp.crisp_delete_helpdesk_locale_category

Execute the official Crisp REST API method `deleteHelpdeskLocaleCategory` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}.

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

crisp.crisp_list_helpdesk_locale_sections

Execute the official Crisp REST API method `listHelpdeskLocaleSections` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}/sections/{pageNumber}.

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

crisp.crisp_add_helpdesk_locale_section

Execute the official Crisp REST API method `addHelpdeskLocaleSection` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}/section.

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

crisp.crisp_check_helpdesk_locale_section_exists

Execute the official Crisp REST API method `checkHelpdeskLocaleSectionExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}/section/{sectionId}.

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

crisp.crisp_resolve_helpdesk_locale_section

Execute the official Crisp REST API method `resolveHelpdeskLocaleSection` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}/section/{sectionId}.

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

crisp.crisp_save_helpdesk_locale_section

Execute the official Crisp REST API method `saveHelpdeskLocaleSection` from node-crisp-api. Official Crisp endpoint: PUT /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}/section/{sectionId}.

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

crisp.crisp_update_helpdesk_locale_section

Execute the official Crisp REST API method `updateHelpdeskLocaleSection` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}/section/{sectionId}.

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

crisp.crisp_delete_helpdesk_locale_section

Execute the official Crisp REST API method `deleteHelpdeskLocaleSection` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/helpdesk/locale/{locale}/category/{categoryId}/section/{sectionId}.

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

crisp.crisp_map_helpdesk_locale_feedback_ratings

Execute the official Crisp REST API method `mapHelpdeskLocaleFeedbackRatings` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/feedback/ratings.

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

crisp.crisp_list_helpdesk_locale_feedbacks

Execute the official Crisp REST API method `listHelpdeskLocaleFeedbacks` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/locale/{locale}/feedback/list/{pageNumber}.

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

crisp.crisp_import_external_helpdesk_to_locale

Execute the official Crisp REST API method `importExternalHelpdeskToLocale` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/helpdesk/locale/{locale}/import.

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

crisp.crisp_export_helpdesk_locale_articles

Execute the official Crisp REST API method `exportHelpdeskLocaleArticles` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/helpdesk/locale/{locale}/export.

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

crisp.crisp_list_helpdesk_redirections

Execute the official Crisp REST API method `listHelpdeskRedirections` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/redirections/{pageNumber}.

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

crisp.crisp_add_helpdesk_redirection

Execute the official Crisp REST API method `addHelpdeskRedirection` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/helpdesk/redirection.

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

crisp.crisp_check_helpdesk_redirection_exists

Execute the official Crisp REST API method `checkHelpdeskRedirectionExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/helpdesk/redirection/{redirectionId}.

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

crisp.crisp_resolve_helpdesk_redirection

Execute the official Crisp REST API method `resolveHelpdeskRedirection` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/redirection/{redirectionId}.

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

crisp.crisp_delete_helpdesk_redirection

Execute the official Crisp REST API method `deleteHelpdeskRedirection` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/helpdesk/redirection/{redirectionId}.

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

crisp.crisp_resolve_helpdesk_settings

Execute the official Crisp REST API method `resolveHelpdeskSettings` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/settings.

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

crisp.crisp_save_helpdesk_settings

Execute the official Crisp REST API method `saveHelpdeskSettings` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/helpdesk/settings.

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

crisp.crisp_resolve_helpdesk_domain

Execute the official Crisp REST API method `resolveHelpdeskDomain` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/domain.

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

crisp.crisp_request_helpdesk_domain_change

Execute the official Crisp REST API method `requestHelpdeskDomainChange` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/helpdesk/domain.

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

crisp.crisp_generate_helpdesk_domain_setup_flow

Execute the official Crisp REST API method `generateHelpdeskDomainSetupFlow` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/helpdesk/domain/setup.

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

crisp.crisp_list_inboxes

Execute the official Crisp REST API method `listInboxes` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/inboxes/list/{pageNumber}.

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

crisp.crisp_batch_order_inboxes

Execute the official Crisp REST API method `batchOrderInboxes` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/inboxes/batch/order.

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

crisp.crisp_create_new_inbox

Execute the official Crisp REST API method `createNewInbox` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/inbox.

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

crisp.crisp_check_inbox_exists

Execute the official Crisp REST API method `checkInboxExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/inbox/{inboxID}.

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

crisp.crisp_get_inbox

Execute the official Crisp REST API method `getInbox` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/inbox/{inboxID}.

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

crisp.crisp_save_inbox

Execute the official Crisp REST API method `saveInbox` from node-crisp-api. Official Crisp endpoint: PUT /v1/website/{websiteID}/inbox/{inboxID}.

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

crisp.crisp_delete_inbox

Execute the official Crisp REST API method `deleteInbox` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/inbox/{inboxID}.

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

crisp.crisp_list_website_operators

Execute the official Crisp REST API method `listWebsiteOperators` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/operators/list.

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

crisp.crisp_list_last_active_website_operators

Execute the official Crisp REST API method `listLastActiveWebsiteOperators` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/operators/active.

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

crisp.crisp_flush_last_active_website_operators

Execute the official Crisp REST API method `flushLastActiveWebsiteOperators` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/operators/active.

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

crisp.crisp_send_email_to_website_operators

Execute the official Crisp REST API method `sendEmailToWebsiteOperators` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/operators/email.

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

crisp.crisp_get_website_operator

Execute the official Crisp REST API method `getWebsiteOperator` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/operator/{userID}.

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

crisp.crisp_invite_website_operator

Execute the official Crisp REST API method `inviteWebsiteOperator` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/operator.

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

crisp.crisp_change_operator_membership

Execute the official Crisp REST API method `changeOperatorMembership` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/operator/{userID}.

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

crisp.crisp_unlink_operator_from_website

Execute the official Crisp REST API method `unlinkOperatorFromWebsite` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/operator/{userID}.

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

crisp.crisp_get_people_statistics

Execute the official Crisp REST API method `getPeopleStatistics` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/people/stats.

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

crisp.crisp_list_suggested_people_segments

Execute the official Crisp REST API method `listSuggestedPeopleSegments` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/people/suggest/segments/{pageNumber}.

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

crisp.crisp_delete_suggested_people_segment

Execute the official Crisp REST API method `deleteSuggestedPeopleSegment` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/people/suggest/segment.

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

crisp.crisp_list_suggested_people_data_keys

Execute the official Crisp REST API method `listSuggestedPeopleDataKeys` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/people/suggest/data/{pageNumber}.

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

crisp.crisp_delete_suggested_people_data_key

Execute the official Crisp REST API method `deleteSuggestedPeopleDataKey` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/people/suggest/data.

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

crisp.crisp_list_suggested_people_events

Execute the official Crisp REST API method `listSuggestedPeopleEvents` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/people/suggest/events/{pageNumber}.

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

crisp.crisp_delete_suggested_people_event

Execute the official Crisp REST API method `deleteSuggestedPeopleEvent` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/people/suggest/event.

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

crisp.crisp_list_people_profiles

Execute the official Crisp REST API method `listPeopleProfiles` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/people/profiles/{pageNumber}.

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

crisp.crisp_add_new_people_profile

Execute the official Crisp REST API method `addNewPeopleProfile` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/people/profile.

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

crisp.crisp_check_people_profile_exists

Execute the official Crisp REST API method `checkPeopleProfileExists` from node-crisp-api. Official Crisp endpoint: HEAD /v1/website/{websiteID}/people/profile/{peopleID}.

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

crisp.crisp_get_people_profile

Execute the official Crisp REST API method `getPeopleProfile` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/people/profile/{peopleID}.

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

crisp.crisp_save_people_profile

Execute the official Crisp REST API method `savePeopleProfile` from node-crisp-api. Official Crisp endpoint: PUT /v1/website/{websiteID}/people/profile/{peopleID}.

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

crisp.crisp_update_people_profile

Execute the official Crisp REST API method `updatePeopleProfile` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/people/profile/{peopleID}.

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

crisp.crisp_remove_people_profile

Execute the official Crisp REST API method `removePeopleProfile` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/people/profile/{peopleID}.

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

crisp.crisp_list_people_conversations

Execute the official Crisp REST API method `listPeopleConversations` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/people/conversations/{peopleID}/list/{pageNumber}.

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

crisp.crisp_list_people_campaigns

Execute the official Crisp REST API method `listPeopleCampaigns` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/people/campaigns/{peopleID}/list/{pageNumber}.

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

crisp.crisp_add_people_event

Execute the official Crisp REST API method `addPeopleEvent` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/people/events/{peopleID}.

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

crisp.crisp_list_people_events

Execute the official Crisp REST API method `listPeopleEvents` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/people/events/{peopleID}/list/{pageNumber}.

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

crisp.crisp_get_people_data

Execute the official Crisp REST API method `getPeopleData` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/people/data/{peopleID}.

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

crisp.crisp_save_people_data

Execute the official Crisp REST API method `savePeopleData` from node-crisp-api. Official Crisp endpoint: PUT /v1/website/{websiteID}/people/data/{peopleID}.

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

crisp.crisp_update_people_data

Execute the official Crisp REST API method `updatePeopleData` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/people/data/{peopleID}.

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

crisp.crisp_get_people_subscription_status

Execute the official Crisp REST API method `getPeopleSubscriptionStatus` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/people/subscription/{peopleID}.

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

crisp.crisp_update_people_subscription_status

Execute the official Crisp REST API method `updatePeopleSubscriptionStatus` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/people/subscription/{peopleID}.

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

crisp.crisp_export_people_profiles

Execute the official Crisp REST API method `exportPeopleProfiles` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/people/export/profiles.

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

crisp.crisp_import_people_profiles

Execute the official Crisp REST API method `importPeopleProfiles` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/people/import/profiles.

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

crisp.crisp_get_website_settings

Execute the official Crisp REST API method `getWebsiteSettings` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/settings.

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

crisp.crisp_update_website_settings

Execute the official Crisp REST API method `updateWebsiteSettings` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/settings.

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

crisp.crisp_get_verify_settings

Execute the official Crisp REST API method `getVerifySettings` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/verify/settings.

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

crisp.crisp_update_verify_settings

Execute the official Crisp REST API method `updateVerifySettings` from node-crisp-api. Official Crisp endpoint: PATCH /v1/website/{websiteID}/verify/settings.

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

crisp.crisp_get_verify_key

Execute the official Crisp REST API method `getVerifyKey` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/verify/key.

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

crisp.crisp_roll_verify_key

Execute the official Crisp REST API method `rollVerifyKey` from node-crisp-api. Official Crisp endpoint: POST /v1/website/{websiteID}/verify/key.

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

crisp.crisp_count_visitors

Execute the official Crisp REST API method `countVisitors` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/visitors/count.

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

crisp.crisp_list_visitors

Execute the official Crisp REST API method `listVisitors` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/visitors/list/{pageNumber}.

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

crisp.crisp_pinpoint_visitors_on_map

Execute the official Crisp REST API method `pinpointVisitorsOnMap` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/visitors/map.

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

crisp.crisp_get_session_identifier_from_token

Execute the official Crisp REST API method `getSessionIdentifierFromToken` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/visitors/token/{tokenID}.

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

crisp.crisp_count_blocked_visitors

Execute the official Crisp REST API method `countBlockedVisitors` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/visitors/blocked.

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

crisp.crisp_count_blocked_visitors_in_rule

Execute the official Crisp REST API method `countBlockedVisitorsInRule` from node-crisp-api. Official Crisp endpoint: GET /v1/website/{websiteID}/visitors/blocked/{rule}.

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

crisp.crisp_clear_blocked_visitors_in_rule

Execute the official Crisp REST API method `clearBlockedVisitorsInRule` from node-crisp-api. Official Crisp endpoint: DELETE /v1/website/{websiteID}/visitors/blocked/{rule}.

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

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

crisp.crisp_generate_bucket_url 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_generate_bucket_url --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_animation_medias 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_animation_medias --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_plan_subscription_list_all_active_subscriptions 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_plan_subscription_list_all_active_subscriptions --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_plan_subscription_for_website 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_plan_subscription_for_website --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_subscribe_website_to_plan 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_subscribe_website_to_plan --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_unsubscribe_plan_from_website 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_unsubscribe_plan_from_website --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_change_bill_period_for_website_plan_subscription 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_change_bill_period_for_website_plan_subscription --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_coupon_availability_for_website_plan_subscription 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_coupon_availability_for_website_plan_subscription --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_redeem_coupon_for_website_plan_subscription 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_redeem_coupon_for_website_plan_subscription --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_connect_account 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_connect_account --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_connect_session_validity 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_connect_session_validity --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_all_connect_websites 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_all_connect_websites --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_connect_websites_since 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_connect_websites_since --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_connect_endpoints 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_connect_endpoints --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_plugin_subscription_list_all_active_subscriptions 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_plugin_subscription_list_all_active_subscriptions --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_subscriptions_for_website 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_subscriptions_for_website --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_subscription_details 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_subscription_details --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_subscribe_website_to_plugin 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_subscribe_website_to_plugin --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_unsubscribe_plugin_from_website 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_unsubscribe_plugin_from_website --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_subscription_settings 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_subscription_settings --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_subscription_settings 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_subscription_settings --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_subscription_settings 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_subscription_settings --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_plugin_usage_bills 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_plugin_usage_bills --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_report_plugin_usage_to_bill 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_report_plugin_usage_to_bill --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_plugin_attest_provenance 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_plugin_attest_provenance --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_forward_plugin_payload_to_channel 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_forward_plugin_payload_to_channel --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_dispatch_plugin_event 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_dispatch_plugin_event --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_generate_analytics 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_generate_analytics --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_website_availability_status 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_website_availability_status --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_website_operator_availabilities 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_website_operator_availabilities --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_website_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_website_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_create_website 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_create_website --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_website 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_website --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_website 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_website --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_abort_website_deletion 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_abort_website_deletion --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_batch_resolve_conversations 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_batch_resolve_conversations --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_batch_read_conversations 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_batch_read_conversations --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_batch_remove_conversations 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_batch_remove_conversations --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_batch_remove_people 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_batch_remove_people --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_campaigns 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_campaigns --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_campaign_tags 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_campaign_tags --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_campaign_templates 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_campaign_templates --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_create_new_campaign_template 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_create_new_campaign_template --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_campaign_template_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_campaign_template_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_campaign_template 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_campaign_template --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_campaign_template 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_campaign_template --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_campaign_template 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_campaign_template --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_remove_campaign_template 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_remove_campaign_template --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_create_new_campaign 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_create_new_campaign --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_campaign_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_campaign_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_campaign 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_campaign --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_campaign 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_campaign --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_campaign 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_campaign --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_remove_campaign 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_remove_campaign --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_dispatch_campaign 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_dispatch_campaign --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resume_campaign 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resume_campaign --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_pause_campaign 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_pause_campaign --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_test_campaign 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_test_campaign --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_campaign_recipients 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_campaign_recipients --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_campaign_statistics 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_campaign_statistics --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_conversations 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_conversations --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_suggested_conversation_segments 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_suggested_conversation_segments --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_suggested_conversation_segment 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_suggested_conversation_segment --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_suggested_conversation_data_keys 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_suggested_conversation_data_keys --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_suggested_conversation_data_key 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_suggested_conversation_data_key --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_spam_conversations 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_spam_conversations --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_spam_conversation_content 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_spam_conversation_content --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_submit_spam_conversation_decision 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_submit_spam_conversation_decision --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_create_new_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_create_new_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_conversation_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_conversation_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_remove_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_remove_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_initiate_conversation_with_existing_session 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_initiate_conversation_with_existing_session --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_messages_in_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_messages_in_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_send_message_in_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_send_message_in_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_message_in_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_message_in_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_message_in_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_message_in_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_remove_message_in_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_remove_message_in_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_compose_message_in_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_compose_message_in_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_mark_messages_read_in_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_mark_messages_read_in_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_mark_conversation_as_unread 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_mark_conversation_as_unread --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_mark_messages_delivered_in_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_mark_messages_delivered_in_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_conversation_open_state 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_conversation_open_state --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_conversation_routing_assign 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_conversation_routing_assign --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_assign_conversation_routing 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_assign_conversation_routing --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_conversation_inbox 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_conversation_inbox --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_conversation_metas 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_conversation_metas --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_conversation_metas 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_conversation_metas --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_original_message_in_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_original_message_in_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_conversation_pages 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_conversation_pages --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_conversation_events 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_conversation_events --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_conversation_files 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_conversation_files --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_conversation_state 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_conversation_state --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_change_conversation_state 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_change_conversation_state --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_conversation_relations 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_conversation_relations --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_conversation_participants 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_conversation_participants --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_conversation_participants 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_conversation_participants --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_block_status_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_block_status_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_block_incoming_messages_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_block_incoming_messages_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_verify_status_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_verify_status_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_verify_status_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_verify_status_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_request_identity_verification_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_request_identity_verification_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_request_email_transcript_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_request_email_transcript_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_request_chatbox_binding_purge_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_request_chatbox_binding_purge_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_request_user_feedback_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_request_user_feedback_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_browsing_sessions_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_browsing_sessions_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_initiate_browsing_session_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_initiate_browsing_session_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_send_action_to_existing_browsing_session 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_send_action_to_existing_browsing_session --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_assist_existing_browsing_session 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_assist_existing_browsing_session --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_initiate_new_call_session_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_initiate_new_call_session_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_ongoing_call_session_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_ongoing_call_session_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_abort_ongoing_call_session_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_abort_ongoing_call_session_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_transmit_signaling_on_ongoing_call_session 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_transmit_signaling_on_ongoing_call_session --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_deliver_widget_button_action_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_deliver_widget_button_action_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_deliver_widget_data_fetch_action_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_deliver_widget_data_fetch_action_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_deliver_widget_data_edit_action_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_deliver_widget_data_edit_action_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_schedule_reminder_for_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_schedule_reminder_for_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_report_conversation 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_report_conversation --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_helpdesk_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_helpdesk_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_helpdesk 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_helpdesk --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_initialize_helpdesk 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_initialize_helpdesk --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_helpdesk 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_helpdesk --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_helpdesk_locales 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_helpdesk_locales --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_add_helpdesk_locale 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_add_helpdesk_locale --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_helpdesk_locale_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_helpdesk_locale_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_helpdesk_locale 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_helpdesk_locale --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_helpdesk_locale 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_helpdesk_locale --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_helpdesk_locale_articles 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_helpdesk_locale_articles --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_add_new_helpdesk_locale_article 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_add_new_helpdesk_locale_article --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_helpdesk_locale_article_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_helpdesk_locale_article_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_helpdesk_locale_article 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_helpdesk_locale_article --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_helpdesk_locale_article 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_helpdesk_locale_article --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_helpdesk_locale_article 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_helpdesk_locale_article --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_helpdesk_locale_article 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_helpdesk_locale_article --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_helpdesk_locale_article_page 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_helpdesk_locale_article_page --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_helpdesk_locale_article_category 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_helpdesk_locale_article_category --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_helpdesk_locale_article_category 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_helpdesk_locale_article_category --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_helpdesk_locale_article_alternates 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_helpdesk_locale_article_alternates --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_helpdesk_locale_article_alternate_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_helpdesk_locale_article_alternate_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_helpdesk_locale_article_alternate 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_helpdesk_locale_article_alternate --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_helpdesk_locale_article_alternate 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_helpdesk_locale_article_alternate --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_helpdesk_locale_article_alternate 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_helpdesk_locale_article_alternate --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_publish_helpdesk_locale_article 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_publish_helpdesk_locale_article --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_unpublish_helpdesk_locale_article 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_unpublish_helpdesk_locale_article --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_helpdesk_locale_categories 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_helpdesk_locale_categories --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_add_helpdesk_locale_category 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_add_helpdesk_locale_category --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_helpdesk_locale_category_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_helpdesk_locale_category_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_helpdesk_locale_category 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_helpdesk_locale_category --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_helpdesk_locale_category 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_helpdesk_locale_category --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_helpdesk_locale_category 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_helpdesk_locale_category --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_helpdesk_locale_category 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_helpdesk_locale_category --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_helpdesk_locale_sections 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_helpdesk_locale_sections --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_add_helpdesk_locale_section 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_add_helpdesk_locale_section --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_helpdesk_locale_section_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_helpdesk_locale_section_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_helpdesk_locale_section 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_helpdesk_locale_section --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_helpdesk_locale_section 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_helpdesk_locale_section --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_helpdesk_locale_section 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_helpdesk_locale_section --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_helpdesk_locale_section 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_helpdesk_locale_section --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_map_helpdesk_locale_feedback_ratings 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_map_helpdesk_locale_feedback_ratings --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_helpdesk_locale_feedbacks 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_helpdesk_locale_feedbacks --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_import_external_helpdesk_to_locale 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_import_external_helpdesk_to_locale --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_export_helpdesk_locale_articles 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_export_helpdesk_locale_articles --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_helpdesk_redirections 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_helpdesk_redirections --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_add_helpdesk_redirection 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_add_helpdesk_redirection --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_helpdesk_redirection_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_helpdesk_redirection_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_helpdesk_redirection 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_helpdesk_redirection --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_helpdesk_redirection 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_helpdesk_redirection --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_helpdesk_settings 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_helpdesk_settings --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_helpdesk_settings 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_helpdesk_settings --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_resolve_helpdesk_domain 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_resolve_helpdesk_domain --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_request_helpdesk_domain_change 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_request_helpdesk_domain_change --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_generate_helpdesk_domain_setup_flow 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_generate_helpdesk_domain_setup_flow --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_inboxes 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_inboxes --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_batch_order_inboxes 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_batch_order_inboxes --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_create_new_inbox 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_create_new_inbox --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_inbox_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_inbox_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_inbox 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_inbox --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_inbox 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_inbox --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_inbox 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_inbox --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_website_operators 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_website_operators --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_last_active_website_operators 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_last_active_website_operators --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_flush_last_active_website_operators 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_flush_last_active_website_operators --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_send_email_to_website_operators 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_send_email_to_website_operators --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_website_operator 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_website_operator --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_invite_website_operator 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_invite_website_operator --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_change_operator_membership 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_change_operator_membership --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_people_statistics 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_people_statistics --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_suggested_people_segments 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_suggested_people_segments --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_suggested_people_segment 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_suggested_people_segment --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_suggested_people_data_keys 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_suggested_people_data_keys --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_suggested_people_data_key 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_suggested_people_data_key --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_suggested_people_events 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_suggested_people_events --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_delete_suggested_people_event 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_delete_suggested_people_event --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_people_profiles 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_people_profiles --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_add_new_people_profile 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_add_new_people_profile --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_check_people_profile_exists 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_check_people_profile_exists --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_people_profile 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_people_profile --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_people_profile 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_people_profile --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_people_profile 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_people_profile --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_remove_people_profile 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_remove_people_profile --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_people_conversations 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_people_conversations --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_people_campaigns 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_people_campaigns --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_add_people_event 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_add_people_event --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_people_events 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_people_events --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_people_data 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_people_data --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_save_people_data 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_save_people_data --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_people_data 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_people_data --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_people_subscription_status 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_people_subscription_status --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_people_subscription_status 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_people_subscription_status --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_export_people_profiles 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_export_people_profiles --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_import_people_profiles 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_import_people_profiles --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_website_settings 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_website_settings --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_website_settings 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_website_settings --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_verify_settings 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_verify_settings --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_update_verify_settings 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_update_verify_settings --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_verify_key 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_verify_key --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_roll_verify_key 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_roll_verify_key --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_count_visitors 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_count_visitors --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_list_visitors 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_list_visitors --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_pinpoint_visitors_on_map 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_pinpoint_visitors_on_map --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_get_session_identifier_from_token 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_get_session_identifier_from_token --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_count_blocked_visitors 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_count_blocked_visitors --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_count_blocked_visitors_in_rule 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_count_blocked_visitors_in_rule --json
ParameterTypeRequiredDescription
No parameters.
crisp.crisp_clear_blocked_visitors_in_rule 0 parameters
Schema command
kosmo integrations:schema crisp.crisp_clear_blocked_visitors_in_rule --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.