Eliminar categoría por Id
Eliminar una categoría dado un Id de categoría.
DELETE /api/rest_admin/categories/:id
Parámetros
get
id integer | Id de la categoría. |
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/98' \
--header 'X-Sushi-Token-Id: dk2d8rel0e8cpk7dep84t6gc44'
PHP - cURL
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "http://sushi.loc/api/rest_admin/categories/98",
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_HTTPHEADER => array(
"X-Sushi-Token-Id: dk2d8rel0e8cpk7dep84t6gc44"
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;