Create or update organizations quotas
POST {{baseUrl}}/quotas/assign
This endpoint recieves a list of organization quotas to create or update. If there's no specific orgId
defined for a quota, it defaults to using the authenticated organization. To use this endpoint, you need the Edit organization and account group quotas
permission, which is a management-level permission. This endpoint follows cumulative behaviorββThis means that the quotas are assigned to the specified organizations, and any previous assignments remain unchanged; no unassignments occur.
Request Body
{"organizations"=>[{"value"=>12000}, {"orgId"=>"1234", "value"=>10000}]}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string | ||
Accept | string |
RESPONSES
status: OK
{"organizations":[{"orgId":"1234","value":12000},{"orgId":"12345","value":10000}]}