Countries
List countries
POST
https://sandbox.mnasati.com/v1/countries
This endpoint allows you to list the available countries.
Headers
Name
Type
Description
Content-Type
string
Application/JSON
Access Token
string
The JWT key generated using the Authorization method.
{
"status":true,
"data":[
{
"country_id":"1",
"title":"Kuwait",
"title_ar":"الكويت",
"currency_decimals":"3",
"currency_title":"KWD",
"currency_title_ar":"د.ك",
"latitude":"29.366667",
"longitude":"47.966667",
"code":"KW",
"number_prefix":"965"
},
{
"country_id":"10",
"title":"Saudi Arabia",
"title_ar":"المملكة العربية السعودية",
"currency_decimals":"2",
"currency_title":"SAR",
"currency_title_ar":"ر.س",
"latitude":null,
"longitude":null,
"code":"SA",
"number_prefix":"966"
},
{
"country_id":"11",
"title":"Qatar",
"title_ar":"قطر",
"currency_decimals":"2",
"currency_title":"QAR",
"currency_title_ar":"ر.ق",
"latitude":null,
"longitude":null,
"code":"QA",
"number_prefix":"974"
},
{
"country_id":"12",
"title":"United Arab Emirates",
"title_ar":"الإمارات العربية المتحدة",
"currency_decimals":"2",
"currency_title":"AED",
"currency_title_ar":"د.إ",
"latitude":null,
"longitude":null,
"code":"AE",
"number_prefix":"971"
},
{
"country_id":"18",
"title":"united kingdom",
"title_ar":"المملكة المتحدة",
"currency_decimals":"2",
"currency_title":"GBR",
"currency_title_ar":"GBR",
"latitude":null,
"longitude":null,
"code":"UK",
"number_prefix":"44"
}
]
}
{"status":400,"error":400,"messages":{"status":false,"message":"Access denied"}}
Examples
import http.client
conn = http.client.HTTPSConnection("ssandbox.mnasati.com")
headers = {
'Content-Type': "",
'Authorization-Jwt': ""
}
conn.request("POST", "/v1/countries", headers=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/countries",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\"email\":\"zaza@uigtc.com\",\"password\":\"Asd123\"}",
CURLOPT_HTTPHEADER => [
"Content-Type: "
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"email\":\"zaza@uigtc.com\",\"password\":\"Asd123\"}");
Request request = new Request.Builder()
.url("https://sandbox.mnasati.com/v1/countries")
.post(body)
.addHeader("Content-Type", "")
.build();
Response response = client.newCall(request).execute();
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Post,
RequestUri = new Uri("https://sandbox.mnasati.com/v1/countries"),
Headers =
{
{ "Content-Type", "" },
},
Content = new StringContent("{\"email\":\"zaza@uigtc.com\",\"password\":\"Asd123\"}")
{
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/countries")
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.body = "{\"email\":\"zaza@uigtc.com\",\"password\":\"Asd123\"}"
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/countries"
payload := strings.NewReader("{\"email\":\"zaza@uigtc.com\",\"password\":\"Asd123\"}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import Foundation
let headers = ["Content-Type": ""]
let parameters = [
"email": "zaza@uigtc.com",
"password": "Asd123"
] as [String : Any]
let postData = JSONSerialization.data(withJSONObject: parameters, options: [])
let request = NSMutableURLRequest(url: NSURL(string: "https://sandbox.mnasati.com/v1/countries")! 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/countries",
"method": "POST",
"headers": {
"Content-Type": ""
},
"processData": false,
"data": "{\"email\":\"zaza@uigtc.com\",\"password\":\"Asd123\"}"
};
$.ajax(settings).done(function (response) {
console.log(response);
});
Last updated
Was this helpful?