Version: 202506
Get app proxy
GET/openapi/2025-06/app-proxies/:id
Retrieves details about a specific app proxy by its unique ID.
Request
Path Parameters
id int32required
App proxy ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
app_proxy object
App proxy
idint32
Unique identifier of the app proxy
real_pathstring
URL path configured for accessing the proxy. For example, use "pay" when the target path is "apps/pay"
proxy_urlstring
URL of the developer's application that processes proxied requests, for example, "http://www.example.com/app"
change_originboolean
Whether to rewrite the request Host header to the proxy target
created_atstring
Timestamp when the app proxy was created
updated_atstring
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"
}
}
}