OpenAPI 3.0 spec for Kong Gateway’s Admin API.
You can lean more about Kong Gateway at developer.konghq.com
.Give Kong a star at Kong/kong repository.
- Server 1:{protocol}://{hostname}:{port}{path}
Default Admin API URL
OpenAPI 3.0 spec for Kong Gateway’s Admin API.
You can lean more about Kong Gateway at developer.konghq.com
.Give Kong a star at Kong/kong repository.
Default Admin API URL
List all ACLs in a workspace
Number of resources to be returned.
Default:100
>= 1<= 1000
Offset from which to return the next set of resources. Use the value of the ‘offset’ field from the response of a list operation as input here to paginate through all the resources
A list of tags to filter the list of resources on. Multiple tags can be concatenated using ‘,’ to mean AND or using ‘/’ to mean OR.
Example:tag1,tag2
Name or ID of workspace
Example:team-a
A successful response listing ACLs
Example:{"consumer":{"id":"84a73fb8-50fc-44a7-a4d5-aa17728ee83f"},"group":"foo","id":"b1f34145-0343-41a4-9602-4c69dec2f269"}
URI to the next page (may be null)
Offset is used to paginate through the API. Provide this value to the next list operation to fetch the next page
Error initializing code snippet
{
"data": [
{
"consumer": {
"id": "84a73fb8-50fc-44a7-a4d5-aa17728ee83f"
},
"group": "foo",
"id": "b1f34145-0343-41a4-9602-4c69dec2f269"
}
],
"next": "next",
"offset": "offset"
}