Skip to main content
PUT
/
locations
/
{locationId}
/
limit
Set a location's permanent (fallback) limit
curl --request PUT \
  --url https://api.ridergy.com/v1/locations/{locationId}/limit \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "limitKw": 100
}'
{ "locationId": "3632155", "permanentLimitKw": 100, "effectiveLimitKw": 100 }

Authorizations

x-api-key
string
header
required

Per-tenant API key. Tenant is derived from the key — never from the request.

Path Parameters

locationId
string
required

Body

application/json
limitKw
number<float>
required
Example:

100

Response

Permanent limit updated

locationId
string
Example:

"3632155"

permanentLimitKw
number
Example:

100

effectiveLimitKw
number | null
Example:

100