Delete Brand
Delete Brand
DELETE
https://sandbox.mnasati.com/v1/delete_brand
This endpoint allows you to delete a brand.
Headers
Name
Type
Description
Content-Type
string
Application/JSON
Access Token
string
JWT Authentication token.
Request Body
Name
Type
Description
brand_id
integer
To delete the brand ID
{"status":true,"message":"Brand successfully deleted."}
Body
{
"brand_id":63
}
Examples
import http.client
conn = http.client.HTTPSConnection("sandbox.mnasati.com")
payload = "{\"brand_id\":41}"
headers = {
'Content-Type': "",
'Authorization-Jwt': ""
}
conn.request("POST", "/v1/delete_brand", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Last updated
Was this helpful?