Get Store Locations
curl --request GET \
--url http://staging.qshop.ng/apiv2/shops/{shopId}/locationsimport requests
url = "http://staging.qshop.ng/apiv2/shops/{shopId}/locations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://staging.qshop.ng/apiv2/shops/{shopId}/locations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://staging.qshop.ng/apiv2/shops/{shopId}/locations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://staging.qshop.ng/apiv2/shops/{shopId}/locations"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://staging.qshop.ng/apiv2/shops/{shopId}/locations")
.asString();require 'uri'
require 'net/http'
url = URI("http://staging.qshop.ng/apiv2/shops/{shopId}/locations")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"msg": "<string>",
"data": [
{
"_id": "<string>",
"shop": "<string>",
"created": "<string>",
"modified": "<string>",
"type": "<string>",
"hidden": true,
"name": "<string>",
"description": "<string>",
"country": {
"_id": "<string>",
"name": "<string>",
"dialCode": "<string>",
"code": "<string>",
"__v": 123,
"geoId": "<string>",
"hasPostCode": true,
"postalCodeFormat": "<string>",
"currencyCode": "<string>",
"east": 123,
"north": 123,
"south": 123,
"west": 123
},
"state": {
"_id": "<string>",
"name": "<string>",
"rate": 123,
"countryCode": "<string>",
"code": "<string>",
"countryGeoId": "<string>",
"geoId": "<string>",
"latitude": 123,
"longitude": 123,
"points": {
"type": "<string>",
"coordinates": [
123
],
"_id": "<string>"
}
},
"city": {
"_id": "<string>",
"name": "<string>",
"geoId": "<string>",
"stateGeoId": "<string>",
"countryCode": "<string>",
"countryGeoId": "<string>",
"longitude": 123,
"latitude": 123,
"points": {
"type": "<string>",
"coordinates": [
123
],
"_id": "<string>"
},
"__v": 123
},
"area": "<string>",
"address": "<string>",
"geoLocation": {
"coordinates": {
"lng": 123,
"lat": 123
},
"fullAddress": "<string>",
"zipCode": "<string>",
"points": {
"type": "<string>",
"coordinates": [
123
],
"_id": "<string>"
},
"addressProximity": "<string>",
"geoNames": [
{
"lng": "<string>",
"geonameId": 123,
"name": "<string>",
"fclName": "<string>",
"toponymName": "<string>",
"fcodeName": "<string>",
"adminName1": "<string>",
"lat": "<string>",
"fcl": "<string>",
"fcode": "<string>",
"population": 123,
"adminCode1": "<string>",
"countryId": "<string>",
"countryCode": "<string>",
"countryName": "<string>",
"adminCodes1": {
"ISO3166_2": "<string>"
}
}
],
"google": {
"address_components": [
{
"long_name": "<string>",
"short_name": "<string>",
"types": [
"<string>"
]
}
],
"adr_address": "<string>",
"formatted_address": "<string>",
"geometry": {
"location": {
"lat": 123,
"lng": 123
},
"viewport": {
"south": 123,
"west": 123,
"north": 123,
"east": 123
}
},
"name": "<string>",
"types": [
"<string>"
],
"utc_offset": 123,
"html_attributions": "<array>",
"utc_offset_minutes": 123
},
"_id": "<string>"
},
"location": {
"type": "<string>",
"coordinates": [
123
],
"_id": "<string>"
},
"__v": 123,
"defaultPickupcenter": true
}
],
"success": true
}Store Locations
Get Store Locations
Host: http://qshop.ng
GET
/
shops
/
{shopId}
/
locations
Get Store Locations
curl --request GET \
--url http://staging.qshop.ng/apiv2/shops/{shopId}/locationsimport requests
url = "http://staging.qshop.ng/apiv2/shops/{shopId}/locations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://staging.qshop.ng/apiv2/shops/{shopId}/locations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://staging.qshop.ng/apiv2/shops/{shopId}/locations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://staging.qshop.ng/apiv2/shops/{shopId}/locations"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://staging.qshop.ng/apiv2/shops/{shopId}/locations")
.asString();require 'uri'
require 'net/http'
url = URI("http://staging.qshop.ng/apiv2/shops/{shopId}/locations")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"msg": "<string>",
"data": [
{
"_id": "<string>",
"shop": "<string>",
"created": "<string>",
"modified": "<string>",
"type": "<string>",
"hidden": true,
"name": "<string>",
"description": "<string>",
"country": {
"_id": "<string>",
"name": "<string>",
"dialCode": "<string>",
"code": "<string>",
"__v": 123,
"geoId": "<string>",
"hasPostCode": true,
"postalCodeFormat": "<string>",
"currencyCode": "<string>",
"east": 123,
"north": 123,
"south": 123,
"west": 123
},
"state": {
"_id": "<string>",
"name": "<string>",
"rate": 123,
"countryCode": "<string>",
"code": "<string>",
"countryGeoId": "<string>",
"geoId": "<string>",
"latitude": 123,
"longitude": 123,
"points": {
"type": "<string>",
"coordinates": [
123
],
"_id": "<string>"
}
},
"city": {
"_id": "<string>",
"name": "<string>",
"geoId": "<string>",
"stateGeoId": "<string>",
"countryCode": "<string>",
"countryGeoId": "<string>",
"longitude": 123,
"latitude": 123,
"points": {
"type": "<string>",
"coordinates": [
123
],
"_id": "<string>"
},
"__v": 123
},
"area": "<string>",
"address": "<string>",
"geoLocation": {
"coordinates": {
"lng": 123,
"lat": 123
},
"fullAddress": "<string>",
"zipCode": "<string>",
"points": {
"type": "<string>",
"coordinates": [
123
],
"_id": "<string>"
},
"addressProximity": "<string>",
"geoNames": [
{
"lng": "<string>",
"geonameId": 123,
"name": "<string>",
"fclName": "<string>",
"toponymName": "<string>",
"fcodeName": "<string>",
"adminName1": "<string>",
"lat": "<string>",
"fcl": "<string>",
"fcode": "<string>",
"population": 123,
"adminCode1": "<string>",
"countryId": "<string>",
"countryCode": "<string>",
"countryName": "<string>",
"adminCodes1": {
"ISO3166_2": "<string>"
}
}
],
"google": {
"address_components": [
{
"long_name": "<string>",
"short_name": "<string>",
"types": [
"<string>"
]
}
],
"adr_address": "<string>",
"formatted_address": "<string>",
"geometry": {
"location": {
"lat": 123,
"lng": 123
},
"viewport": {
"south": 123,
"west": 123,
"north": 123,
"east": 123
}
},
"name": "<string>",
"types": [
"<string>"
],
"utc_offset": 123,
"html_attributions": "<array>",
"utc_offset_minutes": 123
},
"_id": "<string>"
},
"location": {
"type": "<string>",
"coordinates": [
123
],
"_id": "<string>"
},
"__v": 123,
"defaultPickupcenter": true
}
],
"success": true
}Was this page helpful?
⌘I