Destination and origin coverage list
This API is used to get a list of areas that are within the scope of delivery of international services.
Headers
Name
Type
Description
Last updated
This API is used to get a list of areas that are within the scope of delivery of international services.
Last updated
var axios = require('axios');
var data = '';
var config = {
method: 'get',
url: 'https://us-central1-appgregator.cloudfunctions.net/antaraja/service/destination-postcode',
headers: {
'x-api-key': 'U2FsdGVkX1++ZZ4P1XMNg5SK1wAlLl+43SGcdaHpyt+f0fBNSVUHaKvtsRWP4Eu75QTIU5i2oAaBORnsQrRGYQ==',
'name': 'ft-4',
'connection_name': 'delivery02'
},
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
s<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://us-central1-appgregator.cloudfunctions.net/antaraja/service/destination-postcode',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'x-api-key: U2FsdGVkX1++ZZ4P1XMNg5SK1wAlLl+43SGcdaHpyt+f0fBNSVUHaKvtsRWP4Eu75QTIU5i2oAaBORnsQrRGYQ==',
'name: ft-4',
'connection_name: delivery02'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
HPcurl --location --request GET 'https://us-central1-appgregator.cloudfunctions.net/antaraja/service/destination-postcode' \
--header 'x-api-key: U2FsdGVkX1++ZZ4P1XMNg5SK1wAlLl+43SGcdaHpyt+f0fBNSVUHaKvtsRWP4Eu75QTIU5i2oAaBORnsQrRGYQ==' \
--header 'name: ft-4' \
--header 'connection_name: delivery02' \
--data-raw ''