List Portal API Publications
Returns a collection of all API Publications for a specific portal.
Access Control: Requires permission to view the specified portal. Once portal access is granted, all API publications for that portal are returned regardless of the caller's individual API permissions.
Query parameters
The maximum number of items to include per page. The last page of a collection may include fewer items.
Determines which page of the entities to retrieve.
Filters API Publications in a portal response (excludes portal-specific filters).
The asc suffix is optional as the default sort order is ascending. The desc suffix is used to specify a descending order. Multiple sort attributes may be provided via a comma separated list. JSONPath notation may be used to specify a sub-attribute (eg: 'foo.bar desc').
Sorts a collection of API publications within a portal. Supported sort attributes are:
- api_id
- api_name
- created_at
- updated_at
Response
Paginated list of publications
Example response
{
"meta": {
"page": {
"number": 1,
"size": 10,
"total": 100
}
},
"data": [
{
"api_id": "9f5061ce-78f6-4452-9108-ad7c02821fd5",
"portal_ids": [
"7710d5c4-d902-410b-992f-18b814155b53"
],
"entity_type": "api",
"created_at": "2022-11-04T20:10:06.927Z",
"updated_at": "2022-11-04T20:10:06.927Z"
}
]
}