Table of Contents
Delete Contact. Requires “delete_contact” API permission.GET https://androidapi.net/api/delete/contact
Parameter #
Field | Type | Description |
---|---|---|
secret | String | The API secret you copied from (Tools -> API Keys) page |
id | Number | Contact ID |
Success Response Format #
Field | Type | Description |
---|---|---|
status | Number | List of Codes 200 = Success |
message | String | Response message |
data | Array | Array of data |
Error Response Format #
Name | Type | Description |
---|---|---|
status | Number | List of Codes 400 = Invalid parameters 401 = Invalid API secret 403 = Access denied 500 = Something went wrong |
message | String | Response message |
data | Array | Array of data |
PHP Sample #
<?php
$apiSecret = "API_SECRET"; // your API secret from (Tools -> API Keys) page
$contactId = 1;
$cURL = curl_init();
curl_setopt($cURL, CURLOPT_URL, "https://androidapi.net/api/delete/contact?secret={$apiSecret}&id={$contactId}");
curl_setopt($cURL, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($cURL);
curl_close($cURL);
$result = json_decode($response, true);
// do something with response
print_r($result);
Python Sample #
import requests
# your API secret from (Tools -> API Keys) page
apiSecret = "API_SECRET"
contactId = 1
r = requests.get(url = "https://androidapi.net/api/delete/contact", params = {
"secret": apiSecret
"id": contactId
})
# do something with response object
result = r.json()
Successful Response #
{
"status": 200,
"message": "Contact has been deleted!",
"data": false
}
Error Response #
{
"status": 400,
"message": "Invalid Parameters!",
"data": false
}