Get all protocol configs
GET/api/v1/services/:service_id/protocol-config/
Returns the list of protocol configs of a service.
Request
Path Parameters
service_id uuidrequired
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
http2_enabled boolean
Allow HTTP/2
http3_enabled boolean
Allow HTTP/3
id uuidrequired
ipv6_enabled boolean
Enable IPv6
service uuidrequired
[
{
"http2_enabled": true,
"http3_enabled": true,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"ipv6_enabled": true,
"service": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
]
Loading...