Description
Change quota for mail service.
Request URL
Mail API v1.0 PUT /v1/services/(uuid:service_id)/quotas
Request Paramters
| Parameter | Value | Style | Type | Description |
|---|---|---|---|---|
| X-Auth-Token | - | header | string | User Token |
| service_id | - | URI | UUID | Service ID |
| quota | - | plain | int | Quota After Change (in units of 5GB) |
Response Paramters
| Parameter | Value | Style | Type | Description |
|---|---|---|---|---|
| quota | - | plain | dict | - |
| quota | - | plain | int | Quota for Use(Unit:GB) |
| total_usage | - | plain | float | Total Usage(Unit:GB)It displays the number with two decimal point. |
Request Json
{
"quota": 5
}
Normal response codes
200 - Success
Error response codes
401 - Access Denied
404 - Not Found
Repeatable
No
Example
curl -i -X PUT \
-H "Accept: application/json" \
-H "X-Auth-Token: 39be9f8d53044388b7f2e867eba8b140" \
-d
'{
"quota": 30
}' \
https://mail-hosting.tyo1.cloud.z.com/v1/services/1b508bb370c78b7a9d44/quotas
HTTP/1.1 200 Success
Date: Tue, 09 Dec 2014 01:46:58 GMT
Server: Apache
Content-Length: 1003
Content-Type: application/json
{
"quota":{
"quota": 30,
"total_usage": 8
}
}