curl --request GET \
--url https://api.quivo.co/items/{itemId}import requests
url = "https://api.quivo.co/items/{itemId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/items/{itemId}', 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/items/{itemId}",
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/items/{itemId}"
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/items/{itemId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/items/{itemId}")
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{
"sku": "<string>",
"warehouseSku": "<string>",
"sellerSku": "<string>",
"name": "<string>",
"barcode": "<string>",
"countryOfOrigin": "<string>",
"tariffNumber": "<string>",
"sellerIdentifier": "<string>",
"lotRequired": true,
"restrictedShipping": true,
"weight": 123,
"quantity": 123,
"inventory": 123,
"inbound": 123,
"reserved": 123,
"articleDeletedAt": "2023-11-07T05:31:56Z",
"warehouseId": 123,
"itemId": 123,
"itemInventories": [
{
"lot": "<string>",
"expiration": "2023-11-07T05:31:56Z",
"quantity": 123,
"locationBlocked": true,
"storage": "<string>",
"location": "<string>",
"blockedReason": "<string>"
}
],
"expirationDateRequired": true,
"serialNumberRequired": true,
"canShipWithoutCarton": true,
"hadItemLedgerEntries": true,
"articleId": 123,
"articleIdentifier": "<string>",
"articleType": "PRODUCT",
"articleName": {
"value": "<string>",
"language": "DE"
},
"sort": {
"float": true,
"short": true,
"nodeType": "ARRAY",
"number": true,
"binary": true,
"integralNumber": true,
"long": true,
"boolean": true,
"double": true,
"int": true,
"valueNode": true,
"containerNode": true,
"missingNode": true,
"object": true,
"pojo": true,
"floatingPointNumber": true,
"bigDecimal": true,
"bigInteger": true,
"textual": true,
"array": true,
"null": true
}
}Get item
Get single inventory item by its ID.
curl --request GET \
--url https://api.quivo.co/items/{itemId}import requests
url = "https://api.quivo.co/items/{itemId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/items/{itemId}', 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/items/{itemId}",
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/items/{itemId}"
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/items/{itemId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/items/{itemId}")
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{
"sku": "<string>",
"warehouseSku": "<string>",
"sellerSku": "<string>",
"name": "<string>",
"barcode": "<string>",
"countryOfOrigin": "<string>",
"tariffNumber": "<string>",
"sellerIdentifier": "<string>",
"lotRequired": true,
"restrictedShipping": true,
"weight": 123,
"quantity": 123,
"inventory": 123,
"inbound": 123,
"reserved": 123,
"articleDeletedAt": "2023-11-07T05:31:56Z",
"warehouseId": 123,
"itemId": 123,
"itemInventories": [
{
"lot": "<string>",
"expiration": "2023-11-07T05:31:56Z",
"quantity": 123,
"locationBlocked": true,
"storage": "<string>",
"location": "<string>",
"blockedReason": "<string>"
}
],
"expirationDateRequired": true,
"serialNumberRequired": true,
"canShipWithoutCarton": true,
"hadItemLedgerEntries": true,
"articleId": 123,
"articleIdentifier": "<string>",
"articleType": "PRODUCT",
"articleName": {
"value": "<string>",
"language": "DE"
},
"sort": {
"float": true,
"short": true,
"nodeType": "ARRAY",
"number": true,
"binary": true,
"integralNumber": true,
"long": true,
"boolean": true,
"double": true,
"int": true,
"valueNode": true,
"containerNode": true,
"missingNode": true,
"object": true,
"pojo": true,
"floatingPointNumber": true,
"bigDecimal": true,
"bigInteger": true,
"textual": true,
"array": true,
"null": true
}
}Path Parameters
The unique identifier for an inventory item.
Response
Returns the inventory item details including current stock, location, and lot information.
Inventory item information. Contains warehouse item details including SKU, quantity, location, lot numbers, and availability status.
Stock Keeping Unit (SKU) identifier
Stock Keeping Unit (SKU) identifier
Stock Keeping Unit (SKU) identifier
The name of the item
Code or identifier
Country code or name
Number value
The unique identifier for the sellerentifier
Indicates whether lot is required
Boolean flag indicating restricted shipping
Weight value
Quantity or amount
Array of target SKU configurations for the fork operation
The inbound numeric value
The reserved numeric value
The article deleted at timestamp
The unique identifier for the warehouse
The unique identifier for the item
Array of item inventorie
Show child attributes
Show child attributes
The expiration date required date
Indicates whether serial number is required
Boolean flag indicating can ship without carton
The unique identifier for the article
The unique identifier for the articleentifier
The type or category of the article
PRODUCT, CARTON Detailed information for stringi18n
Show child attributes
Show child attributes
The
Show child attributes
Show child attributes