Taxes List

Get Cakes

POST https://sandbox.mnasati.com/v1/taxes

This endpoint allows you to get Tax list for vendor.

Headers

NameTypeDescription

Content-Type

string

Application/JSON

Access Token

string

Authentication token (JWT).

{
   "status":true,
   "data":[
      {
         "country_id":"1",
         "country_name":"Kuwait",
         "country_name_ar":"الكويت",
         "tax":"20.00"
      },
      {
         "country_id":"10",
         "country_name":"Saudi Arabia",
         "country_name_ar":"المملكة العربية السعودية",
         "tax":"5.00"
      },
      {
         "country_id":"11",
         "country_name":"Qatar",
         "country_name_ar":"قطر",
         "tax":"7.00"
      },
      {
         "country_id":"12",
         "country_name":"United Arab Emirates",
         "country_name_ar":"الإمارات العربية المتحدة",
         "tax":"0.00"
      },
      {
         "country_id":"13",
         "country_name":"Bahrain",
         "country_name_ar":"البحرين",
         "tax":"0.00"
      },
      {
         "country_id":"14",
         "country_name":"Oman",
         "country_name_ar":"عمان",
         "tax":"0.00"
      },
      {
         "country_id":"15",
         "country_name":"Jordan",
         "country_name_ar":"الاردن‎",
         "tax":"16.00"
      },
      {
         "country_id":"16",
         "country_name":"United States of America",
         "country_name_ar":"الولايات المتحدة الأمريكية",
         "tax":"0.00"
      },
      {
         "country_id":"17",
         "country_name":"Spain",
         "country_name_ar":"إسبانيا",
         "tax":"0.00"
      },
      {
         "country_id":"18",
         "country_name":"united kingdom",
         "country_name_ar":"المملكة المتحدة",
         "tax":"0.00"
      }
   ]
}

Examples

import http.client

conn = http.client.HTTPSConnection("sandbox.mnasati.com")

headers = {
    'Content-Type': "",
    'Authorization-Jwt': ""
    }

conn.request("POST", "/v1/taxes", headers=headers)

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))

Last updated