KosmoKrator

productivity

Shopify CLI for AI Agents

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

Shopify CLI Setup

Shopify can be configured headlessly with `kosmokrator integrations:configure shopify`.

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 shopify --set access_token="$SHOPIFY_ACCESS_TOKEN" --set shop_domain="$SHOPIFY_SHOP_DOMAIN" --enable --read allow --write ask --json
kosmokrator integrations:doctor shopify --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
access_token SHOPIFY_ACCESS_TOKEN Secret secret yes Access Token
shop_domain SHOPIFY_SHOP_DOMAIN Text string yes Shop Domain
api_version SHOPIFY_API_VERSION Text string no API Version
base_url SHOPIFY_BASE_URL URL url no Base URL

Command Patterns

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

Generic CLI call
kosmo integrations:call shopify.shopify_api_get '{}' --json
Provider shortcut
kosmo integrations:shopify shopify_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 shopify --json
kosmo integrations:docs shopify.shopify_api_get --json
kosmo integrations:schema shopify.shopify_api_get --json
kosmo integrations:search "Shopify" --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.

shopify.shopify_api_get

Call any Shopify Admin REST GET endpoint path.

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

shopify.shopify_api_post

Call any Shopify Admin REST POST endpoint path.

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

shopify.shopify_api_put

Call any Shopify Admin REST PUT endpoint path.

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

shopify.shopify_api_delete

Call any Shopify Admin REST DELETE endpoint path.

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

shopify.shopify_get_shop

Get shop metadata and verify Admin REST access.

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

shopify.shopify_get_current_user

Compatibility alias for shop metadata.

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

shopify.shopify_list_products

List Shopify Products.

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

shopify.shopify_get_product

Get one Shopify Product.

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

shopify.shopify_create_product

Create a Shopify Product.

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

shopify.shopify_update_product

Update a Shopify Product.

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

shopify.shopify_delete_product

Delete a Shopify Product.

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

shopify.shopify_list_orders

List Shopify Orders.

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

shopify.shopify_get_order

Get one Shopify Order.

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

shopify.shopify_create_order

Create a Shopify Order.

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

shopify.shopify_update_order

Update a Shopify Order.

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

shopify.shopify_delete_order

Delete a Shopify Order.

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

shopify.shopify_list_customers

List Shopify Customers.

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

shopify.shopify_get_customer

Get one Shopify Customer.

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

shopify.shopify_create_customer

Create a Shopify Customer.

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

shopify.shopify_update_customer

Update a Shopify Customer.

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

shopify.shopify_delete_customer

Delete a Shopify Customer.

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

shopify.shopify_list_custom_collections

List Shopify Custom Collections.

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

shopify.shopify_get_custom_collection

Get one Shopify Custom Collection.

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

shopify.shopify_create_custom_collection

Create a Shopify Custom Collection.

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

shopify.shopify_update_custom_collection

Update a Shopify Custom Collection.

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

shopify.shopify_delete_custom_collection

Delete a Shopify Custom Collection.

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

shopify.shopify_list_smart_collections

List Shopify Smart Collections.

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

shopify.shopify_get_smart_collection

Get one Shopify Smart Collection.

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

shopify.shopify_create_smart_collection

Create a Shopify Smart Collection.

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

shopify.shopify_update_smart_collection

Update a Shopify Smart Collection.

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

shopify.shopify_delete_smart_collection

Delete a Shopify Smart Collection.

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

shopify.shopify_list_collects

List Shopify Collects.

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

shopify.shopify_get_collect

Get one Shopify Collect.

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

shopify.shopify_create_collect

Create a Shopify Collect.

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

shopify.shopify_update_collect

Update a Shopify Collect.

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

shopify.shopify_delete_collect

Delete a Shopify Collect.

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

shopify.shopify_list_price_rules

List Shopify Price Rules.

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

shopify.shopify_get_price_rule

Get one Shopify Price Rule.

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

shopify.shopify_create_price_rule

Create a Shopify Price Rule.

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

shopify.shopify_update_price_rule

Update a Shopify Price Rule.

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

shopify.shopify_delete_price_rule

Delete a Shopify Price Rule.

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

shopify.shopify_list_webhooks

List Shopify Webhooks.

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

shopify.shopify_get_webhook

Get one Shopify Webhook.

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

shopify.shopify_create_webhook

Create a Shopify Webhook.

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

shopify.shopify_update_webhook

Update a Shopify Webhook.

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

shopify.shopify_delete_webhook

Delete a Shopify Webhook.

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

shopify.shopify_list_script_tags

List Shopify Script Tags.

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

shopify.shopify_get_script_tag

Get one Shopify Script Tag.

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

shopify.shopify_create_script_tag

Create a Shopify Script Tag.

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

shopify.shopify_update_script_tag

Update a Shopify Script Tag.

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

shopify.shopify_delete_script_tag

Delete a Shopify Script Tag.

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

shopify.shopify_list_themes

List Shopify Themes.

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

shopify.shopify_get_theme

Get one Shopify Theme.

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

shopify.shopify_create_theme

Create a Shopify Theme.

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

shopify.shopify_update_theme

Update a Shopify Theme.

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

shopify.shopify_delete_theme

Delete a Shopify Theme.

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

shopify.shopify_list_pages

List Shopify Pages.

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

shopify.shopify_get_page

Get one Shopify Page.

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

shopify.shopify_create_page

Create a Shopify Page.

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

shopify.shopify_update_page

Update a Shopify Page.

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

shopify.shopify_delete_page

Delete a Shopify Page.

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

shopify.shopify_list_blogs

List Shopify Blogs.

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

shopify.shopify_get_blog

Get one Shopify Blog.

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

shopify.shopify_create_blog

Create a Shopify Blog.

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

shopify.shopify_update_blog

Update a Shopify Blog.

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

shopify.shopify_delete_blog

Delete a Shopify Blog.

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

shopify.shopify_list_fulfillment_services

List Shopify Fulfillment Services.

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

shopify.shopify_get_fulfillment_service

Get one Shopify Fulfillment Service.

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

shopify.shopify_create_fulfillment_service

Create a Shopify Fulfillment Service.

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

shopify.shopify_update_fulfillment_service

Update a Shopify Fulfillment Service.

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

shopify.shopify_delete_fulfillment_service

Delete a Shopify Fulfillment Service.

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

shopify.shopify_list_locations

List Shopify Locations.

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

shopify.shopify_get_location

Get one Shopify Location.

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

shopify.shopify_list_inventory_items

List Shopify Inventory Items.

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

shopify.shopify_get_inventory_item

Get one Shopify Inventory Item.

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

shopify.shopify_update_inventory_item

Update a Shopify inventory item.

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

shopify.shopify_list_product_variants

List Variants for a Shopify product.

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

shopify.shopify_get_product_variant

Get one product Variant.

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

shopify.shopify_create_product_variant

Create a product Variant.

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

shopify.shopify_update_product_variant

Update a product Variant.

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

shopify.shopify_delete_product_variant

Delete a product Variant.

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

shopify.shopify_list_product_images

List Images for a Shopify product.

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

shopify.shopify_get_product_image

Get one product Image.

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

shopify.shopify_create_product_image

Create a product Image.

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

shopify.shopify_update_product_image

Update a product Image.

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

shopify.shopify_delete_product_image

Delete a product Image.

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

shopify.shopify_list_product_metafields

List Metafields for a Shopify product.

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

shopify.shopify_get_product_metafield

Get one product Metafield.

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

shopify.shopify_create_product_metafield

Create a product Metafield.

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

shopify.shopify_update_product_metafield

Update a product Metafield.

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

shopify.shopify_delete_product_metafield

Delete a product Metafield.

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

shopify.shopify_close_order

Close a Shopify order.

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

shopify.shopify_reopen_order

Reopen a Shopify order.

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

shopify.shopify_cancel_order

Cancel a Shopify order.

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

shopify.shopify_list_order_transactions

List Transactions for a Shopify order.

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

shopify.shopify_get_order_transaction

Get one order Transaction.

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

shopify.shopify_create_order_transaction

Create an order Transaction.

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

shopify.shopify_update_order_transaction

Update an order Transaction.

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

shopify.shopify_delete_order_transaction

Delete an order Transaction.

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

shopify.shopify_list_order_fulfillments

List Fulfillments for a Shopify order.

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

shopify.shopify_get_order_fulfillment

Get one order Fulfillment.

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

shopify.shopify_create_order_fulfillment

Create an order Fulfillment.

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

shopify.shopify_update_order_fulfillment

Update an order Fulfillment.

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

shopify.shopify_delete_order_fulfillment

Delete an order Fulfillment.

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

shopify.shopify_list_order_refunds

List Refunds for a Shopify order.

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

shopify.shopify_get_order_refund

Get one order Refund.

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

shopify.shopify_create_order_refund

Create an order Refund.

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

shopify.shopify_list_order_risks

List Risks for a Shopify order.

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

shopify.shopify_get_order_risk

Get one order Risk.

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

shopify.shopify_create_order_risk

Create an order Risk.

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

shopify.shopify_update_order_risk

Update an order Risk.

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

shopify.shopify_delete_order_risk

Delete an order Risk.

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

shopify.shopify_calculate_order_refund

Calculate refund transactions for an order.

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

shopify.shopify_list_fulfillment_orders

List assigned fulfillment orders.

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

shopify.shopify_list_order_fulfillment_orders

List fulfillment orders for an order.

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

shopify.shopify_get_fulfillment_order

Get one fulfillment order.

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

shopify.shopify_search_customers

Search Shopify customers.

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

shopify.shopify_list_customer_addresses

List Addresses for a Shopify customer.

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

shopify.shopify_get_customer_address

Get one customer Address.

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

shopify.shopify_create_customer_address

Create a customer Address.

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

shopify.shopify_update_customer_address

Update a customer Address.

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

shopify.shopify_delete_customer_address

Delete a customer Address.

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

shopify.shopify_list_customer_metafields

List Metafields for a Shopify customer.

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

shopify.shopify_get_customer_metafield

Get one customer Metafield.

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

shopify.shopify_create_customer_metafield

Create a customer Metafield.

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

shopify.shopify_update_customer_metafield

Update a customer Metafield.

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

shopify.shopify_delete_customer_metafield

Delete a customer Metafield.

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

shopify.shopify_set_default_customer_address

Set the default address for a customer.

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

shopify.shopify_list_discount_codes

List discount codes for a price rule.

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

shopify.shopify_get_discount_code

Get one discount code.

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

shopify.shopify_create_discount_code

Create a discount code for a price rule.

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

shopify.shopify_update_discount_code

Update a discount code.

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

shopify.shopify_delete_discount_code

Delete a discount code.

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

shopify.shopify_lookup_discount_code

Look up a discount code by code string.

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

shopify.shopify_list_inventory_levels

List Shopify inventory levels.

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

shopify.shopify_connect_inventory_level

Connect an inventory item to a location.

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

shopify.shopify_set_inventory_level

Set available inventory at a location.

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

shopify.shopify_adjust_inventory_level

Adjust available inventory at a location.

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

shopify.shopify_delete_inventory_level

Delete an inventory level.

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

shopify.shopify_list_assets

List assets for a theme.

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

shopify.shopify_get_asset

Get a theme asset by key.

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

shopify.shopify_put_asset

Create or update a theme asset.

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

shopify.shopify_delete_asset

Delete a theme asset by key.

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

shopify.shopify_list_articles

List articles for a blog.

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

shopify.shopify_get_article

Get one blog article.

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

shopify.shopify_create_article

Create a blog article.

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

shopify.shopify_update_article

Update a blog article.

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

shopify.shopify_delete_article

Delete a blog article.

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

shopify.shopify_list_metafields

List shop-level metafields.

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

shopify.shopify_get_metafield

Get one shop-level metafield.

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

shopify.shopify_create_metafield

Create a shop-level metafield.

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

shopify.shopify_update_metafield

Update a shop-level metafield.

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

shopify.shopify_delete_metafield

Delete a shop-level metafield.

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

Function Schemas

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

shopify.shopify_api_get 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_api_get --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_api_post 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_api_post --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_api_put 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_api_put --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_api_delete 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_api_delete --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_shop 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_shop --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_current_user 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_current_user --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_products 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_products --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_product 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_product --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_product 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_product --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_product 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_product --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_product 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_product --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_orders 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_orders --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_order 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_order --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_order 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_order --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_order 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_order --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_order 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_order --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_customers 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_customers --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_customer 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_customer --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_customer 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_customer --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_customer 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_customer --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_customer 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_customer --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_custom_collections 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_custom_collections --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_custom_collection 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_custom_collection --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_custom_collection 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_custom_collection --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_custom_collection 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_custom_collection --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_custom_collection 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_custom_collection --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_smart_collections 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_smart_collections --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_smart_collection 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_smart_collection --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_smart_collection 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_smart_collection --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_smart_collection 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_smart_collection --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_smart_collection 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_smart_collection --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_collects 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_collects --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_collect 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_collect --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_collect 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_collect --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_collect 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_collect --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_collect 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_collect --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_price_rules 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_price_rules --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_price_rule 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_price_rule --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_price_rule 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_price_rule --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_price_rule 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_price_rule --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_price_rule 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_price_rule --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_webhooks 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_webhooks --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_webhook 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_webhook --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_webhook 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_webhook --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_webhook 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_webhook --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_webhook 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_webhook --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_script_tags 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_script_tags --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_script_tag 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_script_tag --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_script_tag 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_script_tag --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_script_tag 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_script_tag --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_script_tag 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_script_tag --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_themes 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_themes --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_theme 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_theme --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_theme 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_theme --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_theme 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_theme --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_theme 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_theme --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_pages 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_pages --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_page 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_page --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_page 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_page --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_page 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_page --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_page 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_page --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_blogs 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_blogs --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_blog 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_blog --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_blog 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_blog --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_blog 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_blog --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_blog 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_blog --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_fulfillment_services 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_fulfillment_services --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_fulfillment_service 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_fulfillment_service --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_fulfillment_service 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_fulfillment_service --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_fulfillment_service 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_fulfillment_service --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_fulfillment_service 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_fulfillment_service --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_locations 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_locations --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_location 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_location --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_inventory_items 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_inventory_items --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_inventory_item 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_inventory_item --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_inventory_item 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_inventory_item --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_product_variants 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_product_variants --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_product_variant 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_product_variant --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_product_variant 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_product_variant --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_product_variant 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_product_variant --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_product_variant 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_product_variant --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_product_images 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_product_images --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_product_image 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_product_image --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_product_image 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_product_image --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_product_image 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_product_image --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_product_image 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_product_image --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_product_metafields 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_product_metafields --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_product_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_product_metafield --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_product_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_product_metafield --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_product_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_product_metafield --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_product_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_product_metafield --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_close_order 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_close_order --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_reopen_order 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_reopen_order --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_cancel_order 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_cancel_order --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_order_transactions 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_order_transactions --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_order_transaction 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_order_transaction --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_order_transaction 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_order_transaction --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_order_transaction 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_order_transaction --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_order_transaction 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_order_transaction --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_order_fulfillments 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_order_fulfillments --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_order_fulfillment 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_order_fulfillment --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_order_fulfillment 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_order_fulfillment --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_order_fulfillment 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_order_fulfillment --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_order_fulfillment 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_order_fulfillment --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_order_refunds 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_order_refunds --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_order_refund 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_order_refund --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_order_refund 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_order_refund --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_order_risks 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_order_risks --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_order_risk 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_order_risk --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_order_risk 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_order_risk --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_order_risk 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_order_risk --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_order_risk 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_order_risk --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_calculate_order_refund 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_calculate_order_refund --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_fulfillment_orders 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_fulfillment_orders --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_order_fulfillment_orders 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_order_fulfillment_orders --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_fulfillment_order 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_fulfillment_order --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_search_customers 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_search_customers --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_customer_addresses 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_customer_addresses --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_customer_address 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_customer_address --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_customer_address 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_customer_address --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_customer_address 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_customer_address --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_customer_address 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_customer_address --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_customer_metafields 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_customer_metafields --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_customer_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_customer_metafield --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_customer_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_customer_metafield --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_customer_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_customer_metafield --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_customer_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_customer_metafield --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_set_default_customer_address 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_set_default_customer_address --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_discount_codes 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_discount_codes --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_discount_code 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_discount_code --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_discount_code 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_discount_code --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_discount_code 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_discount_code --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_discount_code 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_discount_code --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_lookup_discount_code 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_lookup_discount_code --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_inventory_levels 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_inventory_levels --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_connect_inventory_level 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_connect_inventory_level --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_set_inventory_level 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_set_inventory_level --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_adjust_inventory_level 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_adjust_inventory_level --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_inventory_level 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_inventory_level --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_assets 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_assets --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_asset 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_asset --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_put_asset 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_put_asset --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_asset 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_asset --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_articles 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_articles --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_article 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_article --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_article 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_article --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_article 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_article --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_article 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_article --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_list_metafields 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_list_metafields --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_get_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_get_metafield --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_create_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_create_metafield --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_update_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_update_metafield --json
ParameterTypeRequiredDescription
No parameters.
shopify.shopify_delete_metafield 0 parameters
Schema command
kosmo integrations:schema shopify.shopify_delete_metafield --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.