Plans
Add a new plan
Create a new subscription plan with specific resource limits. Plans control memory, execution time, and API call quotas for client applications.
post/fastedge/v1/admin/plans
Request body
Example request
{
"max_duration": 50,
"mem_limit": 10485760,
"name": "enterprise-tier"
}Response
Plan created successfully, returns plan configuration
Example response
{
"max_duration": 50,
"mem_limit": 10485760,
"name": "enterprise-tier"
}