Quotas
Get all quotas for a project in unified format
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
projectstringRequiredExample:
proj_abc123456Responses
200
Successful Response
application/json
422
Validation Error
application/json
get
/v2/quotasGET /v2/quotas?project=proj_abc123456 HTTP/1.1
Host: api.mithril.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"fid": "text",
"project": "proj_abc123456",
"instance_type": "it_abc123456",
"product_type": "text",
"total_quantity": 1,
"used_quantity": 1,
"units": "text",
"name": "text"
}
]Last updated