A list of all methods in the QuotasService service. Click on the method name to view detailed information about that method.
| Methods | Description |
|---|---|
| get_quotas | Gets the organization quotas |
Gets the organization quotas
- HTTP Method:
GET - Endpoint:
/organizations/{organization_name}/quotas
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| organization_name | str | ✅ | Your organization name. This identifies the billing context for the API operation and represents a security boundary for SaladCloud resources. The organization must be created before using the API, and you must be a member of the organization. |
Return Type
Quotas
Example Usage Code Snippet
from salad_cloud_sdk import SaladCloudSdk
sdk = SaladCloudSdk(
api_key="YOUR_API_KEY",
api_key_header="YOUR_API_KEY_HEADER",
timeout=10000
)
result = sdk.quotas.get_quotas(organization_name="acme-corp")
print(result)