Delete Custom Tag
Usunięcie pojedynczego Tagu
DELETE /custom_tag/{custom_tag_id}
URL Parameters
Nazwa | Rodzaj | Przykład | Opis |
---|---|---|---|
custom_tag_id | <STRING> |
649575b7cd16c03466fb75a9 | Identyfikator Custom Tagu |
Response Body
{
"success": true
}
Response Code
Status | Opis |
---|---|
200 | Żądanie przyjęte do realizacji |
403 | Nie można wykonać takiej akcji |
404 | Nie znaleziono zasobu |
Example
curl -X DELETE \
$CONPEEK_URL/custom_tag/649575b7cd16c03466fb75a9 \
-H 'Authorization: '$CONPEEK_KEY \
-H 'Content-Type: application/json'
import requests
import json
import os
from urllib import parse
url = parse.urljoin(os.environ["CONPEEK_URL"], "/custom_tag/%(custom_tag_id)s" % {
"custom_tag_id": "649575b7cd16c03466fb75a9"
})
headers = {
'Content-Type': "application/json",
'Authorization': os.environ["CONPEEK_KEY"]
}
response = requests.request("DELETE", url, headers=headers)
print(response.text)
<?php
$curl = curl_init();
$custom_tag_id = "649575b7cd16c03466fb75a9";
curl_setopt_array($curl, array(
CURLOPT_URL => getenv("CONPEEK_URL")."/custom_tag/$custom_tag_id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => array(
"Authorization: ".getenv("CONPEEK_KEY"),
"Content-Type: application/json"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}