Eliminar categorías
Eliminar una lista de categorías dada una lista de Id de categoría.
DELETE /api/rest_admin/categories
Parámetros
json
{
"categories": [
"94",
"95"
]
}
categories array | Lista de Id de categorias. |
Cabeceras HTTP
X-Sushi-Token-Id | Token de autorización. |
Respuesta
{
"success": 1,
"error": [
],
"data": ""
}
success integer | 0 si hay error, 1 si no hay error. |
error string | Descripción del error. |
data json object | Datos de respuesta. |
Ejemplos
cURL
curl --location --request DELETE 'http://sushi.loc/api/rest_admin/categories' \
--header 'X-Sushi-Token-Id: dk2d8rel0e8cpk7dep84t6gc44' \
--header 'Content-Type: application/json' \
--data-raw '{
"categories": [
"99",
"100"
]
}'
PHP - cURL
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "http://sushi.loc/api/rest_admin/categories",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_POSTFIELDS =>"{\n \"categories\": [\n \"99\",\n \"100\"\n ]\n}",
CURLOPT_HTTPHEADER => array(
"X-Sushi-Token-Id: dk2d8rel0e8cpk7dep84t6gc44",
"Content-Type: application/json"
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;