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
Name | Type | Description |
---|---|---|
Subdomain | String | The Shopify store subdomain (e.g., your-store for your-store.myshopify.com ). |
API Key | Credentials | Shopify API Key used for authentication (Basic auth or access token). |
API Secret | Credentials | Shopify API Secret used for Basic authentication (optional if using access token). |
Order ID | String | The unique identifier of the order to update. |
Note | String | The note text to add or append to the order. |
Outputs
Name | Type | Description |
---|---|---|
Success | Boolean | Indicates whether the order note was successfully updated. |
Error | String | (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
andAPI Secret
. X-Shopify-Access-Token
header usingAPI Key
alone.
- Basic authentication using
Updated 3 days ago