Skip to content
GET
/user/node-proxy/{tenant_id}/{node_id}/{http_path}
curl --request GET \
--url https://example.com/user/node-proxy/example/example/example \
--header 'X-Tenzir-UserKey: <X-Tenzir-UserKey>'
tenant_id
required
Tenant Id
string
node_id
required
Node Id
string
http_path
required
Http Path
string
x-tenzir-request-id
Any of:
string

Successful Response

Media type application/json
Example generated
example

{"detail": "Invalid API Key"}

{"detail": "Tenant not found"} {"detail": "Node not found"}

{"detail": "Proxy timed out"}

{"detail": "Node not connected"}

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}