HTTP API Request Configuration
APIEase Support
Last Update 9 hari yang lalu
HTTP API requests are highly configurable with many options. HTTP requests allow you to securely call any external API directly from your Shopify store or through other trigger methods such as webhooks, storefront app proxy, or a recurring schedule.

HTTP API Request Fields
Name: You can optionally give your request a name for your reference. If you plan to call the request directly after another using a chained request then you will need to provide a name that will be referred to by the calling chained request.
Type: Set this to http to create a standard API call to an external service.
Address: This is the full endpoint of the external API you want to call.
Address Example: https://api.example.com/data
Method: Choose GET, POST, DELETE, PUT, PATCH or OPTIONS.
Parameters (?): You can provide in app parameters directly in the request configuration. If you need values that depend on customer activity or storefront context, you can pass dynamic embedded parameters from the storefront.
- Headers: Add any headers required by the API, such as Authorization or Content-Type
- Query Parameters: If the endpoint requires values in the query string, add them here
- Body: For methods like POST or PUT, enter the request body using raw JSON or form fields
- Path: Path parameters allow you to dynamically set path variables if the path of your address needs to change based on some condition.
- System: System parameters are used by APIEase in special cases such as Customer Authentication.
If your request includes confidential values such as API keys or credentials, check the "Sensitive" checkbox. These values are stored on the server and are never exposed to the storefront or even the admin screen. Once they have been submitted they are encrypted in our database and only decrypted for use at runtime.
Triggers (?): Choose how the request should be triggered:
Manually via the "Copy and Request" link on the requests admin page
Automatically via webhook
From your storefront using Shopify’s app proxy
On a recurring schedule using cron
Next Request: You can implement chained requests by setting the Next Request field to the name of a request to run after this one completes.