Ruby
Ruby
WhatsApp - Delete a User Account
Demonstrates how to delete a user account by sending a DELETE request on the users endpoint.Chilkat Ruby Downloads
require 'chilkat'
success = false
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
http = Chilkat::CkHttp.new()
# 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 = Chilkat::CkHttpResponse.new()
success = http.HttpNoBody("DELETE","https://example.com/v1/users/username",resp)
if (success == false)
print http.lastErrorText() + "\n";
exit
end
sbResponseBody = Chilkat::CkStringBuilder.new()
resp.GetBodySb(sbResponseBody)
jResp = Chilkat::CkJsonObject.new()
jResp.LoadSb(sbResponseBody)
jResp.put_EmitCompact(false)
print "Response Body:" + "\n";
print jResp.emit() + "\n";
respStatusCode = resp.get_StatusCode()
print "Response Status Code = " + respStatusCode.to_s() + "\n";
if (respStatusCode >= 400)
print "Response Header:" + "\n";
print resp.header() + "\n";
print "Failed." + "\n";
exit
end
# 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
end