GET
/
organizations
/
{organization_name}
/
quotas
Go
import (
  "fmt"
  "encoding/json"
  "github.com/saladtechnologies/salad-cloud-sdk-go/pkg/saladcloudsdkconfig"
  "github.com/saladtechnologies/salad-cloud-sdk-go/pkg/saladcloudsdk"

)

config := saladcloudsdkconfig.NewConfig()
client := saladcloudsdk.NewSaladCloudSdk(config)

response, err := client.Quotas.GetQuotas(context.Background(), "organizationName")
if err != nil {
  panic(err)
}

fmt.Println(response)
{
  "container_groups_quotas": {
    "container_replicas_quota": 500,
    "container_replicas_used": 10,
    "max_container_group_reallocations_per_minute": 10,
    "max_container_group_recreates_per_minute": 10,
    "max_container_group_restarts_per_minute": 10
  },
  "create_time": "2023-11-07T05:31:56Z",
  "update_time": "2023-11-07T05:31:56Z"
}
Last Updated: July 1, 2025

Authorizations

Salad-Api-Key
string
header
required

Path Parameters

organization_name
string
required

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.

Required string length: 2 - 63
Examples:

"acme-corp"

Response

OK

Represents the organization quotas

container_groups_quotas
object
required

Represents the organization quotas for container groups

create_time
string<date-time>

The time the resource was created

update_time
string<date-time>

The time the resource was last updated