API Operations
List API Operations
Returns a list of operations for an API. Returns 404 if the API is not configured for access control enforcement.
get/v3/apis/{apiId}/operations
Query parameters
page[size]integer
Example:10
The maximum number of items to include per page. The last page of a collection may include fewer items.
page[number]integer
Example:1
Determines which page of the entities to retrieve.
Filters API Operations in the response.
Response
Paginated list of API operations
Example response
{
"meta": {
"page": {
"number": 1,
"size": 10,
"total": 100
}
},
"data": [
{
"id": "b42d905a-ed33-46a3-a093-d8f536af9a8a",
"path": "/users/*"
}
]
}