Perl / WAC API / Allow Account Delete
Back to Collection Items
use chilkat();
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
$http = chilkat::CkHttp->new();
# Use this online tool to generate code from sample JSON: Generate Code to Create JSON
# The following JSON is sent in the request body.
# {
# "AllowAccountDelete": true
# }
$json = chilkat::CkJsonObject->new();
$json->UpdateBool("AllowAccountDelete",1);
$http->SetRequestHeader("Authorization","{{WACApiKey}}");
# resp is a HttpResponse
$resp = $http->PostJson3("https://domain.com/v1/accounts/:AcctNum","application/json",$json);
if ($http->get_LastMethodSuccess() == 0) {
print $http->lastErrorText() . "\r\n";
exit;
}
print $resp->get_StatusCode() . "\r\n";
print $resp->bodyStr() . "\r\n";
Curl Command
curl -X POST
-H "Authorization: {{WACApiKey}}"
-d '{
"AllowAccountDelete": true
}'
https://domain.com/v1/accounts/:AcctNum
Postman Collection Item JSON
{
"name": "Allow Account Delete",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "{{WACApiKey}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"AllowAccountDelete\": true\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseURL}}/v1/accounts/:AcctNum",
"host": [
"{{baseURL}}"
],
"path": [
"v1",
"accounts",
":AcctNum"
],
"variable": [
{
"key": "AcctNum",
"value": "937203",
"description": "Account Number"
}
]
}
},
"response": [
]
}