Authorizations
Response
200 - application/json
OK
curl --request GET \
--url http://localhost:3001/portal-api/plans \
--header 'Authorization: <api-key>'
{
"data": [
{
"ID": 1,
"Name": "free_plan_2",
"DisplayName": "Free plan",
"AutoApproveAccessRequests": true,
"RateLimit": 5,
"Quota": 0
}
]
}
List all plans that exist in the portal
curl --request GET \
--url http://localhost:3001/portal-api/plans \
--header 'Authorization: <api-key>'
{
"data": [
{
"ID": 1,
"Name": "free_plan_2",
"DisplayName": "Free plan",
"AutoApproveAccessRequests": true,
"RateLimit": 5,
"Quota": 0
}
]
}
OK
Show child attributes
Was this page helpful?