Create app proxy
POST/openapi/2026-07/app-proxies
Creates an app proxy that maps a storefront access path to the developer's application URL.
Request
- application/json
- Body
- Example
Bodyrequired
URL path used to access Shoplazza. For example, use "pay" when the target path is "apps/pay"
URL of the developer's application that processes requests, for example, "http://www.example.com"
Whether to rewrite the request Host header to the proxy target
{
"real_path": "string",
"proxy_url": "string",
"change_origin": true
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
error code
error message
data object
app_proxy object
Created app proxy
Unique identifier of the app proxy
URL path configured for accessing the proxy. For example, use "pay" when the target path is "apps/pay"
URL of the developer's application that processes proxied requests, for example, "http://www.example.com/app"
Whether to rewrite the request Host header to the proxy target
Timestamp when the app proxy was created
Timestamp when the app proxy was last updated
{
"code": "string",
"message": "string",
"data": {
"app_proxy": {
"id": 0,
"real_path": "string",
"proxy_url": "string",
"change_origin": true,
"created_at": "string",
"updated_at": "string"
}
}
}