KosmoKrator

productivity

Braze CLI for AI Agents

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

Braze CLI Setup

Braze can be configured headlessly with `kosmokrator integrations:configure braze`.

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 braze --set api_key="$BRAZE_API_KEY" --enable --read allow --write ask --json
kosmokrator integrations:doctor braze --json
kosmokrator integrations:status --json

Credentials

Authentication type: API key api_key. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
api_key BRAZE_API_KEY Secret secret yes REST API Key
url BRAZE_URL URL url no REST Endpoint

Command Patterns

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

Generic CLI call
kosmo integrations:call braze.braze_api_get '{}' --json
Provider shortcut
kosmo integrations:braze braze_api_get '{}' --json

Discovery

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

Discovery commands
kosmo integrations:docs braze --json
kosmo integrations:docs braze.braze_api_get --json
kosmo integrations:schema braze.braze_api_get --json
kosmo integrations:search "Braze" --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.

braze.braze_api_get

Call any Braze REST API GET endpoint with query parameters.

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

braze.braze_api_post

Call any Braze REST API POST endpoint with a JSON payload.

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

braze.braze_api_put

Call any Braze REST API PUT endpoint with a JSON payload.

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

braze.braze_api_patch

Call any Braze REST API PATCH endpoint with a JSON payload.

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

braze.braze_api_delete

Call any Braze REST API DELETE endpoint with query parameters.

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

braze.braze_list_catalogs

List Braze catalogs.

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

braze.braze_create_catalog

Create a Braze catalog.

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

braze.braze_delete_catalog

Delete a Braze catalog.

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

braze.braze_list_catalog_items

List items in a Braze catalog.

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

braze.braze_get_catalog_item

Get a single Braze catalog item.

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

braze.braze_create_catalog_item

Create a Braze catalog item.

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

braze.braze_replace_catalog_item

Replace a Braze catalog item.

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

braze.braze_edit_catalog_item

Edit a Braze catalog item.

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

braze.braze_delete_catalog_item

Delete a Braze catalog item.

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

braze.braze_create_catalog_items

Create multiple Braze catalog items asynchronously.

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

braze.braze_replace_catalog_items

Replace multiple Braze catalog items asynchronously.

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

braze.braze_edit_catalog_items

Edit multiple Braze catalog items asynchronously.

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

braze.braze_delete_catalog_items

Delete multiple Braze catalog items asynchronously.

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

braze.braze_create_catalog_fields

Create Braze catalog fields.

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

braze.braze_delete_catalog_field

Delete a Braze catalog field.

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

braze.braze_create_catalog_selection

Create a Braze catalog selection.

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

braze.braze_delete_catalog_selection

Delete a Braze catalog selection.

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

braze.braze_list_cdi_integrations

List Braze Cloud Data Ingestion integrations.

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

braze.braze_get_cdi_sync_status

Get Cloud Data Ingestion sync status.

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

braze.braze_trigger_cdi_sync

Trigger a Cloud Data Ingestion sync.

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

braze.braze_list_hard_bounces

Query hard bounced email addresses.

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

braze.braze_list_unsubscribes

Query unsubscribed email addresses.

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

braze.braze_change_email_status

Change an email subscription status.

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

braze.braze_remove_hard_bounces

Remove email addresses from the hard bounce list.

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

braze.braze_remove_spam_emails

Remove email addresses from the spam list.

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

braze.braze_blocklist_emails

Blocklist email addresses in Braze.

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

braze.braze_list_campaigns

List Braze campaigns.

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

braze.braze_get_campaign

Get Braze campaign details.

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

braze.braze_get_campaign_analytics

Export campaign analytics over a time range.

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

braze.braze_get_send_analytics

Export send analytics over a time range.

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

braze.braze_get_campaign_url_info

Get URL details for a campaign message variation.

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

braze.braze_duplicate_campaign

Duplicate a Braze campaign.

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

braze.braze_list_canvases

List Braze Canvases.

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

braze.braze_get_canvas

Get Braze Canvas details.

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

braze.braze_get_canvas_analytics

Export Canvas analytics over a time range.

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

braze.braze_get_canvas_summary

Export Canvas summary analytics.

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

braze.braze_get_canvas_url_info

Get URL details for a Canvas step message variation.

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

braze.braze_duplicate_canvas

Duplicate a Braze Canvas.

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

braze.braze_list_events

List custom events.

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

braze.braze_get_event_analytics

Export custom event analytics.

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

braze.braze_list_custom_attributes

Export custom attributes.

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

braze.braze_get_sessions_analytics

Export app sessions by time.

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

braze.braze_get_daily_active_users

Export daily active users.

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

braze.braze_get_monthly_active_users

Export monthly active users.

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

braze.braze_get_new_users

Export daily new users.

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

braze.braze_get_uninstalls

Export app uninstalls.

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

braze.braze_list_products

Export product IDs purchased in the app.

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

braze.braze_get_revenue_analytics

Export revenue data.

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

braze.braze_get_purchase_quantity_analytics

Export number of purchases.

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

braze.braze_list_segments

List Braze segments.

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

braze.braze_get_segment

Get Braze segment details.

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

braze.braze_get_segment_analytics

Export segment analytics.

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

braze.braze_cancel_segment_export

Cancel user exports by segment.

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

braze.braze_create_send_ids

Create send IDs for message blast tracking.

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

braze.braze_send_messages

Send immediate API-only messages.

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

braze.braze_send_transactional_email

Send a transactional email using API-triggered delivery.

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

braze.braze_trigger_campaign_send

Trigger an API-triggered Braze campaign.

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

braze.braze_trigger_canvas_send

Trigger an API-triggered Braze Canvas.

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

braze.braze_list_scheduled_broadcasts

List upcoming scheduled campaigns and Canvases.

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

braze.braze_create_scheduled_messages

Create scheduled messages.

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

braze.braze_update_scheduled_messages

Update scheduled messages.

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

braze.braze_delete_scheduled_messages

Delete scheduled messages.

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

braze.braze_schedule_campaign_trigger

Schedule an API-triggered campaign.

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

braze.braze_update_campaign_trigger_schedule

Update a scheduled API-triggered campaign.

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

braze.braze_delete_campaign_trigger_schedule

Delete a scheduled API-triggered campaign.

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

braze.braze_schedule_canvas_trigger

Schedule an API-triggered Canvas.

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

braze.braze_update_canvas_trigger_schedule

Update a scheduled API-triggered Canvas.

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

braze.braze_delete_canvas_trigger_schedule

Delete a scheduled API-triggered Canvas.

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

braze.braze_start_live_activity

Start an iOS Live Activity.

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

braze.braze_update_live_activity

Update an iOS Live Activity.

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

braze.braze_list_preference_centers

List Braze preference centers.

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

braze.braze_get_preference_center

Get a Braze preference center.

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

braze.braze_generate_preference_center_url

Generate a preference center URL for a user.

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

braze.braze_create_preference_center

Create a Braze preference center.

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

braze.braze_update_preference_center

Update a Braze preference center.

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

braze.braze_search_scim_users

Search Braze dashboard SCIM users.

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

braze.braze_get_scim_user

Look up a Braze dashboard SCIM user.

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

braze.braze_create_scim_user

Create a Braze dashboard SCIM user.

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

braze.braze_update_scim_user

Update a Braze dashboard SCIM user.

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

braze.braze_delete_scim_user

Remove a Braze dashboard SCIM user.

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

braze.braze_create_sdk_authentication_key

Create an SDK authentication key.

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

braze.braze_list_sdk_authentication_keys

List SDK authentication keys.

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

braze.braze_set_primary_sdk_authentication_key

Set the primary SDK authentication key.

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

braze.braze_delete_sdk_authentication_key

Delete an SDK authentication key.

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

braze.braze_list_invalid_phone_numbers

Query invalid phone numbers.

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

braze.braze_remove_invalid_phone_numbers

Remove invalid phone number flags.

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

braze.braze_get_subscription_group_status

List users subscription group status.

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

braze.braze_list_user_subscription_groups

List subscription groups for users.

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

braze.braze_set_subscription_group_status

Update users subscription group status.

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

braze.braze_set_subscription_group_status_v2

Update users subscription group status using v2 semantics.

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

braze.braze_list_content_blocks

List available content blocks.

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

braze.braze_get_content_block

Get Content Block information.

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

braze.braze_create_content_block

Create a Content Block.

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

braze.braze_update_content_block

Update a Content Block.

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

braze.braze_list_email_templates

List email templates.

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

braze.braze_get_email_template

Get email template information.

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

braze.braze_create_email_template

Create an email template.

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

braze.braze_update_email_template

Update an email template.

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

braze.braze_create_user_alias

Create a new user alias.

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

braze.braze_update_user_alias

Update a user alias.

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

braze.braze_identify_users

Identify alias-only users with external IDs.

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

braze.braze_track_users

Create or update users, custom events, and purchases.

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

braze.braze_track_users_bulk

Create or update users in bulk.

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

braze.braze_track_users_sync

Synchronously create or update users.

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

braze.braze_delete_users

Delete Braze users.

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

braze.braze_merge_users

Merge Braze users.

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

braze.braze_rename_external_id

Rename a user external ID.

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

braze.braze_remove_external_id

Remove user external IDs.

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

braze.braze_export_users_by_ids

Export user profiles by identifiers.

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

braze.braze_export_users_by_segment

Export user profiles by segment.

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

braze.braze_export_global_control_group_users

Export global control group users.

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

braze.braze_upload_media_asset

Upload an asset to the Braze media library.

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

Function Schemas

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

braze.braze_api_get 0 parameters
Schema command
kosmo integrations:schema braze.braze_api_get --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_api_post 0 parameters
Schema command
kosmo integrations:schema braze.braze_api_post --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_api_put 0 parameters
Schema command
kosmo integrations:schema braze.braze_api_put --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_api_patch 0 parameters
Schema command
kosmo integrations:schema braze.braze_api_patch --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_api_delete 0 parameters
Schema command
kosmo integrations:schema braze.braze_api_delete --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_catalogs 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_catalogs --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_catalog 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_catalog --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_delete_catalog 0 parameters
Schema command
kosmo integrations:schema braze.braze_delete_catalog --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_catalog_items 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_catalog_items --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_catalog_item 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_catalog_item --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_catalog_item 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_catalog_item --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_replace_catalog_item 0 parameters
Schema command
kosmo integrations:schema braze.braze_replace_catalog_item --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_edit_catalog_item 0 parameters
Schema command
kosmo integrations:schema braze.braze_edit_catalog_item --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_delete_catalog_item 0 parameters
Schema command
kosmo integrations:schema braze.braze_delete_catalog_item --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_catalog_items 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_catalog_items --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_replace_catalog_items 0 parameters
Schema command
kosmo integrations:schema braze.braze_replace_catalog_items --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_edit_catalog_items 0 parameters
Schema command
kosmo integrations:schema braze.braze_edit_catalog_items --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_delete_catalog_items 0 parameters
Schema command
kosmo integrations:schema braze.braze_delete_catalog_items --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_catalog_fields 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_catalog_fields --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_delete_catalog_field 0 parameters
Schema command
kosmo integrations:schema braze.braze_delete_catalog_field --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_catalog_selection 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_catalog_selection --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_delete_catalog_selection 0 parameters
Schema command
kosmo integrations:schema braze.braze_delete_catalog_selection --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_cdi_integrations 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_cdi_integrations --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_cdi_sync_status 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_cdi_sync_status --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_trigger_cdi_sync 0 parameters
Schema command
kosmo integrations:schema braze.braze_trigger_cdi_sync --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_hard_bounces 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_hard_bounces --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_unsubscribes 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_unsubscribes --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_change_email_status 0 parameters
Schema command
kosmo integrations:schema braze.braze_change_email_status --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_remove_hard_bounces 0 parameters
Schema command
kosmo integrations:schema braze.braze_remove_hard_bounces --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_remove_spam_emails 0 parameters
Schema command
kosmo integrations:schema braze.braze_remove_spam_emails --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_blocklist_emails 0 parameters
Schema command
kosmo integrations:schema braze.braze_blocklist_emails --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_campaigns 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_campaigns --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_campaign 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_campaign --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_campaign_analytics 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_campaign_analytics --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_send_analytics 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_send_analytics --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_campaign_url_info 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_campaign_url_info --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_duplicate_campaign 0 parameters
Schema command
kosmo integrations:schema braze.braze_duplicate_campaign --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_canvases 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_canvases --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_canvas 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_canvas --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_canvas_analytics 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_canvas_analytics --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_canvas_summary 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_canvas_summary --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_canvas_url_info 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_canvas_url_info --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_duplicate_canvas 0 parameters
Schema command
kosmo integrations:schema braze.braze_duplicate_canvas --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_events 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_events --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_event_analytics 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_event_analytics --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_custom_attributes 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_custom_attributes --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_sessions_analytics 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_sessions_analytics --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_daily_active_users 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_daily_active_users --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_monthly_active_users 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_monthly_active_users --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_new_users 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_new_users --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_uninstalls 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_uninstalls --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_products 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_products --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_revenue_analytics 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_revenue_analytics --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_purchase_quantity_analytics 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_purchase_quantity_analytics --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_segments 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_segments --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_segment 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_segment --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_segment_analytics 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_segment_analytics --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_cancel_segment_export 0 parameters
Schema command
kosmo integrations:schema braze.braze_cancel_segment_export --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_send_ids 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_send_ids --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_send_messages 0 parameters
Schema command
kosmo integrations:schema braze.braze_send_messages --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_send_transactional_email 0 parameters
Schema command
kosmo integrations:schema braze.braze_send_transactional_email --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_trigger_campaign_send 0 parameters
Schema command
kosmo integrations:schema braze.braze_trigger_campaign_send --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_trigger_canvas_send 0 parameters
Schema command
kosmo integrations:schema braze.braze_trigger_canvas_send --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_scheduled_broadcasts 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_scheduled_broadcasts --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_scheduled_messages 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_scheduled_messages --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_update_scheduled_messages 0 parameters
Schema command
kosmo integrations:schema braze.braze_update_scheduled_messages --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_delete_scheduled_messages 0 parameters
Schema command
kosmo integrations:schema braze.braze_delete_scheduled_messages --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_schedule_campaign_trigger 0 parameters
Schema command
kosmo integrations:schema braze.braze_schedule_campaign_trigger --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_update_campaign_trigger_schedule 0 parameters
Schema command
kosmo integrations:schema braze.braze_update_campaign_trigger_schedule --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_delete_campaign_trigger_schedule 0 parameters
Schema command
kosmo integrations:schema braze.braze_delete_campaign_trigger_schedule --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_schedule_canvas_trigger 0 parameters
Schema command
kosmo integrations:schema braze.braze_schedule_canvas_trigger --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_update_canvas_trigger_schedule 0 parameters
Schema command
kosmo integrations:schema braze.braze_update_canvas_trigger_schedule --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_delete_canvas_trigger_schedule 0 parameters
Schema command
kosmo integrations:schema braze.braze_delete_canvas_trigger_schedule --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_start_live_activity 0 parameters
Schema command
kosmo integrations:schema braze.braze_start_live_activity --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_update_live_activity 0 parameters
Schema command
kosmo integrations:schema braze.braze_update_live_activity --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_preference_centers 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_preference_centers --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_preference_center 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_preference_center --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_generate_preference_center_url 0 parameters
Schema command
kosmo integrations:schema braze.braze_generate_preference_center_url --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_preference_center 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_preference_center --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_update_preference_center 0 parameters
Schema command
kosmo integrations:schema braze.braze_update_preference_center --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_search_scim_users 0 parameters
Schema command
kosmo integrations:schema braze.braze_search_scim_users --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_scim_user 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_scim_user --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_scim_user 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_scim_user --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_update_scim_user 0 parameters
Schema command
kosmo integrations:schema braze.braze_update_scim_user --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_delete_scim_user 0 parameters
Schema command
kosmo integrations:schema braze.braze_delete_scim_user --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_sdk_authentication_key 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_sdk_authentication_key --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_sdk_authentication_keys 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_sdk_authentication_keys --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_set_primary_sdk_authentication_key 0 parameters
Schema command
kosmo integrations:schema braze.braze_set_primary_sdk_authentication_key --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_delete_sdk_authentication_key 0 parameters
Schema command
kosmo integrations:schema braze.braze_delete_sdk_authentication_key --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_invalid_phone_numbers 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_invalid_phone_numbers --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_remove_invalid_phone_numbers 0 parameters
Schema command
kosmo integrations:schema braze.braze_remove_invalid_phone_numbers --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_subscription_group_status 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_subscription_group_status --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_user_subscription_groups 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_user_subscription_groups --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_set_subscription_group_status 0 parameters
Schema command
kosmo integrations:schema braze.braze_set_subscription_group_status --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_set_subscription_group_status_v2 0 parameters
Schema command
kosmo integrations:schema braze.braze_set_subscription_group_status_v2 --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_content_blocks 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_content_blocks --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_content_block 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_content_block --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_content_block 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_content_block --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_update_content_block 0 parameters
Schema command
kosmo integrations:schema braze.braze_update_content_block --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_list_email_templates 0 parameters
Schema command
kosmo integrations:schema braze.braze_list_email_templates --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_get_email_template 0 parameters
Schema command
kosmo integrations:schema braze.braze_get_email_template --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_email_template 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_email_template --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_update_email_template 0 parameters
Schema command
kosmo integrations:schema braze.braze_update_email_template --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_create_user_alias 0 parameters
Schema command
kosmo integrations:schema braze.braze_create_user_alias --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_update_user_alias 0 parameters
Schema command
kosmo integrations:schema braze.braze_update_user_alias --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_identify_users 0 parameters
Schema command
kosmo integrations:schema braze.braze_identify_users --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_track_users 0 parameters
Schema command
kosmo integrations:schema braze.braze_track_users --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_track_users_bulk 0 parameters
Schema command
kosmo integrations:schema braze.braze_track_users_bulk --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_track_users_sync 0 parameters
Schema command
kosmo integrations:schema braze.braze_track_users_sync --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_delete_users 0 parameters
Schema command
kosmo integrations:schema braze.braze_delete_users --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_merge_users 0 parameters
Schema command
kosmo integrations:schema braze.braze_merge_users --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_rename_external_id 0 parameters
Schema command
kosmo integrations:schema braze.braze_rename_external_id --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_remove_external_id 0 parameters
Schema command
kosmo integrations:schema braze.braze_remove_external_id --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_export_users_by_ids 0 parameters
Schema command
kosmo integrations:schema braze.braze_export_users_by_ids --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_export_users_by_segment 0 parameters
Schema command
kosmo integrations:schema braze.braze_export_users_by_segment --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_export_global_control_group_users 0 parameters
Schema command
kosmo integrations:schema braze.braze_export_global_control_group_users --json
ParameterTypeRequiredDescription
No parameters.
braze.braze_upload_media_asset 0 parameters
Schema command
kosmo integrations:schema braze.braze_upload_media_asset --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.