Proxy Endpoint
Create a public API endpoint that executes an APIEase request and returns its final response to the caller—no custom server needed.
Endpoint format
Your proxy endpoint URL looks like:
https://app-admin.apiease.com/api/proxy/<shop-name>/<your-path>
<shop-name>identifies your shop.<your-path>is the custom path you choose for this endpoint.
When someone calls this URL using the HTTP method you specify (GET, POST, etc.), APIEase runs the linked request and relays the request’s final response to the caller. This is useful for lightweight APIs, receiving events, or letting external systems start your workflows.
How it works
- The first path segment after
/proxy/identifies your shop. - The remaining path is the custom endpoint path you configure.
- APIEase matches the incoming request to your Proxy Endpoint.
- APIEase runs the configured request using the incoming data.
- The request’s final response is returned to the caller.
Authentication options
- Authenticated: Caller must authenticate using the same scheme as Remote API Calls.
- Unauthenticated: Open access for anyone with the URL.
Configure a proxy endpoint trigger
- Open any APIEase request.
- Click the plus icon under Triggers.
- Select the Proxy Endpoint radio button.
- Set:
- Request Path: The public endpoint path.
- HTTP Method: The allowed verb for the endpoint.
- Authenticated:
trueorfalse.
- Save. Your public API endpoint is ready to use.