Cloud Reseller Quotas
List quota limit requests
Retrieve quota limit requests from your reseller clients. Filter by client ID or request status to find specific requests. Use this endpoint to review pending requests before approval or rejection.
get/cloud/reseller/v1/limits_request
Query parameters
client_idinteger
Filter requests by specific client ID. Omit to see requests from all your reseller clients.
Example:123
Filter requests by specific client ID. Omit to see requests from all your reseller clients.
limitinteger
Limit the number of returned items
Example:1000
Limit the number of returned items
offsetinteger
Offset value is used to exclude the first set of records from the result
Offset value is used to exclude the first set of records from the result
statusLimitsRequestStatus[]
List of limit requests statuses for filtering
List of limit requests statuses for filtering
[ "done", "in progress" ]
Response
OK
Example response
{
"count": 1,
"results": [
{
"client_id": 1,
"created_at": "2019-07-26T13:25:03Z",
"description": "Scale up mysql cluster",
"id": 1,
"requested_limits": {
"global_limits": {
"keypair_count_limit": 100,
"project_count_limit": 2
},
"regional_limits": [
{
"region_id": 1
}
]
},
"status": "in progress",
"updated_at": "2019-07-26T13:25:03Z"
}
]
}