List ingresses
/ingresses
List ingresses
Returns
id: string
Auto-generated unique identifier
created_at: string
Creation timestamp (RFC3339)
formatdate-time
name: string
Human-readable name
List ingresses
curl http://localhost:8080/ingresses \
-H "Authorization: Bearer $HYPEMAN_API_KEY"
[
{
"id": "2OgJqXsP7j1qLVVYvGJDNiYVlPO",
"created_at": "2025-01-15T10:00:00Z",
"name": "my-api-ingress",
"rules": [
{
"match": {
"hostname": "{instance}.example.com",
"port": 8080
},
"target": {
"instance": "{instance}",
"port": 8080
},
"redirect_http": true,
"tls": true
}
]
}
]
Returns Examples
[
{
"id": "2OgJqXsP7j1qLVVYvGJDNiYVlPO",
"created_at": "2025-01-15T10:00:00Z",
"name": "my-api-ingress",
"rules": [
{
"match": {
"hostname": "{instance}.example.com",
"port": 8080
},
"target": {
"instance": "{instance}",
"port": 8080
},
"redirect_http": true,
"tls": true
}
]
}
]