curl --request POST \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/limits-request \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"limits": [
"users"
],
"reason": "<string>"
}'
{
"success": true,
"error": "<string>"
}
Request an increase in the limits for this organization. Available limits are: users, projects, compute, storage.
curl --request POST \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/limits-request \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"limits": [
"users"
],
"reason": "<string>"
}'
{
"success": true,
"error": "<string>"
}
Organization ID
OK
The response is of type object
.