PHP Extension
PHP Extension
WhatsApp - Delete a User Account
Demonstrates how to delete a user account by sending a DELETE request on the users endpoint.Chilkat PHP Extension Downloads
<?php
include("chilkat.php");
$success = false;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new CkHttp();
// Implements the following CURL command:
// curl -X DELETE https://example.com/v1/users/username \
// -H "Authorization: Bearer your-auth-token"
// Adds the "Authorization: Bearer your-auth-token" header.
$http->put_AuthToken('your-auth-token');
$resp = new CkHttpResponse();
$success = $http->HttpNoBody('DELETE','https://example.com/v1/users/username',$resp);
if ($success == false) {
print $http->lastErrorText() . "\n";
exit;
}
$sbResponseBody = new CkStringBuilder();
$resp->GetBodySb($sbResponseBody);
$jResp = new CkJsonObject();
$jResp->LoadSb($sbResponseBody);
$jResp->put_EmitCompact(false);
print 'Response Body:' . "\n";
print $jResp->emit() . "\n";
$respStatusCode = $resp->get_StatusCode();
print 'Response Status Code = ' . $respStatusCode . "\n";
if ($respStatusCode >= 400) {
print 'Response Header:' . "\n";
print $resp->header() . "\n";
print 'Failed.' . "\n";
exit;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "users": [
// {
// "username": "username"
// }
// ]
// }
// Sample code for parsing the JSON response...
$i = 0;
$count_i = $jResp->SizeOfArray('users');
while ($i < $count_i) {
$jResp->put_I($i);
$username = $jResp->stringOf('users[i].username');
$i = $i + 1;
}
?>