Delete Brand

Delete Brand

DELETE https://sandbox.mnasati.com/v1/delete_brand

This endpoint allows you to delete a brand.

Headers

NameTypeDescription

Content-Type

string

Application/JSON

Access Token

string

JWT Authentication token.

Request Body

NameTypeDescription

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