curl --request POST \
--url https://api.example.com/api/projects/{projectId}/http-proxy \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "<string>",
"method": "HEAD",
"body": "<unknown>",
"headers": "<unknown>",
"params": "<unknown>",
"auth": "<unknown>"
}
'{}Proxies an HTTP request through the decision engine for testing integrations.
curl --request POST \
--url https://api.example.com/api/projects/{projectId}/http-proxy \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "<string>",
"method": "HEAD",
"body": "<unknown>",
"headers": "<unknown>",
"params": "<unknown>",
"auth": "<unknown>"
}
'{}Target URL for the proxied request
HTTP method to use for the proxied request
HEAD, PATCH, POST, GET, DELETE Request body to send with the proxied request
HTTP headers to include in the proxied request
Query parameters to include in the proxied request
Authentication configuration for the proxied request
Response received from the proxied HTTP request
Response received from the proxied HTTP request
Was this page helpful?