Shopify Add Order Note

This action is used to add or append a note to an existing Shopify order. It retrieves the current note (if any), merges it with the provided text, and updates the order via the Shopify Admin API.

See also the Shopify Admin REST API reference


Inputs

NameTypeDescription
SubdomainStringThe Shopify store subdomain (e.g., your-store for your-store.myshopify.com).
API KeyCredentialsShopify API Key used for authentication (Basic auth or access token).
API SecretCredentialsShopify API Secret used for Basic authentication (optional if using access token).
Order IDStringThe unique identifier of the order to update.
NoteStringThe note text to add or append to the order.

Outputs

NameTypeDescription
SuccessBooleanIndicates whether the order note was successfully updated.
ErrorString(Optional) Error message if the update failed.

Notes

  • If an existing order note is present, the action appends the new note, separated by a period and a space. Otherwise, it sets the note to the provided text.

  • Uses Shopify Admin API version 2025-04.

  • Authentication methods supported:

    • Basic authentication using API Key and API Secret.
    • X-Shopify-Access-Token header using API Key alone.