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
Unique identifier of the plan
1
Name of the plan
"free_plan_2"
Display name of the plan
"Free plan"
Whether access requests are automatically approved
true
Rate limit for the plan
5
Quota for the plan
0
Was this page helpful?