Delete Product
Delete Product
POST
https://sandbox.mnasati.com/v1/delete_product
This endpoint allows you to delete products from store.
Headers
Name
Type
Description
Content-Type
string
Application/JSON
Access Token
string
Authentication token (JWT)
Request Body
Name
Type
Description
product_id
integer
To delete a Product ID
{"status":true,"message":"Brand successfully deleted."}
{ "message": "Not found."}
Examples
import http.client
conn = http.client.HTTPSConnection("sandbox.mnasati.com")
payload = "{\"product_id\":\"2280\"}"
headers = {
'Content-Type': "",
'Authorization-Jwt': ""
}
conn.request("POST", "/v1/delete_product", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.mnasati.com/v1/delete_product",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\"product_id\":\"2280\"}",
CURLOPT_HTTPHEADER => [
"Authorization-Jwt: ",
"Content-Type: "
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://sandbox.mnasati.com/v1/delete_product"))
.header("Content-Type", "")
.header("Authorization-Jwt", "")
.method("POST", HttpRequest.BodyPublishers.ofString("{\"product_id\":\"2280\"}"))
.build();
HttpResponse<String> response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Post,
RequestUri = new Uri("https://sandbox.mnasati.com/v1/delete_product"),
Headers =
{
{ "Content-Type", "" },
{ "Authorization-Jwt", "" },
},
Content = new StringContent("{\"product_id\":\"2280\"}")
{
Headers =
{
ContentType = new MediaTypeHeaderValue("application/json")
}
}
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://sandbox.mnasati.com/v1/delete_product")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Post.new(url)
request["Content-Type"] = ''
request["Authorization-Jwt"] = ''
request.body = "{\"product_id\":\"2280\"}"
response = http.request(request)
puts response.read_body
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://sandbox.mnasati.com/v1/delete_product"
payload := strings.NewReader("{\"product_id\":\"2280\"}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "")
req.Header.Add("Authorization-Jwt", "")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
let headers = [
"Content-Type": "",
"Authorization-Jwt": ""
]
let parameters = ["product_id": "2280"] as [String : Any]
let postData = JSONSerialization.data(withJSONObject: parameters, options: [])
let request = NSMutableURLRequest(url: NSURL(string: "https://sandbox.mnasati.com/v1/delete_product")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
const settings = {
"async": true,
"crossDomain": true,
"url": "https://sandbox.mnasati.com/v1/delete_product",
"method": "POST",
"headers": {
"Content-Type": "",
"Authorization-Jwt": ""
},
"processData": false,
"data": "{\"product_id\":\"2280\"}"
};
$.ajax(settings).done(function (response) {
console.log(response);
});
Last updated
Was this helpful?