List orders
curl --request GET \
--url https://api.quivo.co/shops/{shopId}/ordersimport requests
url = "https://api.quivo.co/shops/{shopId}/orders"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/shops/{shopId}/orders', 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 => "https://api.quivo.co/shops/{shopId}/orders",
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 := "https://api.quivo.co/shops/{shopId}/orders"
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("https://api.quivo.co/shops/{shopId}/orders")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/shops/{shopId}/orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"orders": [
{
"orderIdentifier": "<string>",
"orderReference": "<string>",
"orderStatusIdentifier": "<string>",
"orderStatusName": "<string>",
"orderDate": "2023-11-07T05:31:56Z",
"currency": {
"currencyCode": "<string>",
"defaultFractionDigits": 123,
"numericCode": 123,
"displayName": "<string>",
"symbol": "<string>",
"numericCodeAsString": "<string>"
},
"deliveryAddress": {
"name1": "<string>",
"name2": "<string>",
"company": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"phone": "<string>",
"email": "<string>"
},
"invoiceAddress": {
"name1": "<string>",
"name2": "<string>",
"company": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"phone": "<string>",
"email": "<string>"
},
"positions": [
{
"positionIdentifier": "<string>",
"productIdentifier": "<string>",
"variantIdentifier": "<string>",
"name": "<string>",
"sku": "<string>",
"quantity": 123,
"unitWeight": 123,
"unitNetPrice": 123,
"unitGrossPrice": 123
}
]
}
],
"nextPageToken": "<string>"
}shopOrders
List orders
List orders imported from the specified shop.
GET
/
shops
/
{shopId}
/
orders
List orders
curl --request GET \
--url https://api.quivo.co/shops/{shopId}/ordersimport requests
url = "https://api.quivo.co/shops/{shopId}/orders"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/shops/{shopId}/orders', 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 => "https://api.quivo.co/shops/{shopId}/orders",
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 := "https://api.quivo.co/shops/{shopId}/orders"
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("https://api.quivo.co/shops/{shopId}/orders")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/shops/{shopId}/orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"orders": [
{
"orderIdentifier": "<string>",
"orderReference": "<string>",
"orderStatusIdentifier": "<string>",
"orderStatusName": "<string>",
"orderDate": "2023-11-07T05:31:56Z",
"currency": {
"currencyCode": "<string>",
"defaultFractionDigits": 123,
"numericCode": 123,
"displayName": "<string>",
"symbol": "<string>",
"numericCodeAsString": "<string>"
},
"deliveryAddress": {
"name1": "<string>",
"name2": "<string>",
"company": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"phone": "<string>",
"email": "<string>"
},
"invoiceAddress": {
"name1": "<string>",
"name2": "<string>",
"company": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"phone": "<string>",
"email": "<string>"
},
"positions": [
{
"positionIdentifier": "<string>",
"productIdentifier": "<string>",
"variantIdentifier": "<string>",
"name": "<string>",
"sku": "<string>",
"quantity": 123,
"unitWeight": 123,
"unitNetPrice": 123,
"unitGrossPrice": 123
}
]
}
],
"nextPageToken": "<string>"
}Path Parameters
The unique identifier for a connected shop or integration.
Query Parameters
Specifies which page to load. If not specified, the first page is loaded.
Response
Returns the ShopOrdersGetResult matching the specified identifier.
⌘I