C# / WAC API / Update Trial Quota GB
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Chilkat.Http http = new Chilkat.Http();
bool success;
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "QuotaGB": 1024
// }
Chilkat.JsonObject json = new Chilkat.JsonObject();
json.UpdateInt("QuotaGB",1024);
http.SetRequestHeader("Authorization","{{WACApiKey}}");
Chilkat.HttpResponse resp = http.PostJson3("https://domain.com/v1/accounts/:AcctNum","application/json",json);
if (http.LastMethodSuccess == false) {
Debug.WriteLine(http.LastErrorText);
return;
}
Debug.WriteLine(Convert.ToString(resp.StatusCode));
Debug.WriteLine(resp.BodyStr);
Curl Command
curl -X POST
-H "Authorization: {{WACApiKey}}"
-d '{
"QuotaGB": 1024
}'
https://domain.com/v1/accounts/:AcctNum
Postman Collection Item JSON
{
"name": "Update Trial Quota GB",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "{{WACApiKey}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"QuotaGB\": 1024\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseURL}}/v1/accounts/:AcctNum",
"host": [
"{{baseURL}}"
],
"path": [
"v1",
"accounts",
":AcctNum"
],
"variable": [
{
"key": "AcctNum",
"value": "",
"description": "Account Number"
}
]
}
},
"response": [
]
}