Update shop
curl --request PATCH \
--url http://staging.qshop.ng/apiv2/{shopId}/ \
--header 'Content-Type: application/json' \
--data '
{
"config": {
"calculateProfit": false,
"customerNotification": {
"email": true,
"whatsApp": true
},
"enableReviews": false,
"order": {
"acceptWithoutShippingRate": false
},
"product": {
"inventory": {
"displayOptionKey": "always",
"displayOptionKeyId": "624d9757733a4a29e8ec0d81",
"enableProductPageStockCount": false,
"isLowStockEnabled": true,
"isOutOfStockEnabled": true,
"lowStockThreshold": 50,
"outOfStockThreshold": 9,
"storefrontDisplaySoldOut": false
}
},
"shipping": {
"defaultProvider": "store",
"hasDeliveryRates": true,
"hasPickupRates": true,
"integrations": {
"enabled": false,
"serviceType": "dropoff-and-pickup",
"supportedProviders": [
"kwik"
],
"supportedRegions": "selected-regions",
"useAlternativeCarriers": true
},
"returnAllRates": false
},
"storefront": {
"banners": [
{
"banner": {
"cdnUrl": "https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/",
"cdnUrlModifiers": "-/crop/600x338/0,31/-/resize/16x9/",
"crop": {
"height": 338,
"left": 0,
"sh": 9,
"sw": 16,
"top": 31,
"width": 600
},
"isImage": true,
"isStored": true,
"mimeType": "image/jpeg",
"name": "boardroom-background.jpg",
"originalImageInfo": {
"color_mode": "RGB",
"datetime_original": null,
"dpi": [
72,
72
],
"format": "JPEG",
"geo_location": null,
"height": 400,
"orientation": null,
"sequence": false,
"width": 600
},
"originalUrl": "https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/",
"size": 45492,
"sourceInfo": {
"source": "local"
},
"uuid": "59187216-f258-47c9-bb2e-1cd2f3be733b"
},
"is_active": true,
"link": {
"path": "",
"type": "false"
},
"period": {
"end": "",
"start": "2022-11-30T18:43:00.365Z"
},
"subtitle": "<p>We have stocked the best items in the market at the best prices, all for your convenience</p>\n",
"title": "Welcome to our store"
}
],
"colors": {
"primary": "#ffcc00",
"secondary": "#000000"
},
"font": "Arial",
"hideLogo": false,
"showEmailSignup": false,
"showFooterMenu": false,
"showSocialLinks": false,
"showStoreDetails": false,
"theme": "MINIMAL"
}
},
"shopCategory": "62c6985ba6f4d62c88ea0e6e"
}
'import requests
url = "http://staging.qshop.ng/apiv2/{shopId}/"
payload = {
"config": {
"calculateProfit": False,
"customerNotification": {
"email": True,
"whatsApp": True
},
"enableReviews": False,
"order": { "acceptWithoutShippingRate": False },
"product": { "inventory": {
"displayOptionKey": "always",
"displayOptionKeyId": "624d9757733a4a29e8ec0d81",
"enableProductPageStockCount": False,
"isLowStockEnabled": True,
"isOutOfStockEnabled": True,
"lowStockThreshold": 50,
"outOfStockThreshold": 9,
"storefrontDisplaySoldOut": False
} },
"shipping": {
"defaultProvider": "store",
"hasDeliveryRates": True,
"hasPickupRates": True,
"integrations": {
"enabled": False,
"serviceType": "dropoff-and-pickup",
"supportedProviders": ["kwik"],
"supportedRegions": "selected-regions",
"useAlternativeCarriers": True
},
"returnAllRates": False
},
"storefront": {
"banners": [
{
"banner": {
"cdnUrl": "https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/",
"cdnUrlModifiers": "-/crop/600x338/0,31/-/resize/16x9/",
"crop": {
"height": 338,
"left": 0,
"sh": 9,
"sw": 16,
"top": 31,
"width": 600
},
"isImage": True,
"isStored": True,
"mimeType": "image/jpeg",
"name": "boardroom-background.jpg",
"originalImageInfo": {
"color_mode": "RGB",
"datetime_original": None,
"dpi": [72, 72],
"format": "JPEG",
"geo_location": None,
"height": 400,
"orientation": None,
"sequence": False,
"width": 600
},
"originalUrl": "https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/",
"size": 45492,
"sourceInfo": { "source": "local" },
"uuid": "59187216-f258-47c9-bb2e-1cd2f3be733b"
},
"is_active": True,
"link": {
"path": "",
"type": "false"
},
"period": {
"end": "",
"start": "2022-11-30T18:43:00.365Z"
},
"subtitle": "<p>We have stocked the best items in the market at the best prices, all for your convenience</p>
",
"title": "Welcome to our store"
}
],
"colors": {
"primary": "#ffcc00",
"secondary": "#000000"
},
"font": "Arial",
"hideLogo": False,
"showEmailSignup": False,
"showFooterMenu": False,
"showSocialLinks": False,
"showStoreDetails": False,
"theme": "MINIMAL"
}
},
"shopCategory": "62c6985ba6f4d62c88ea0e6e"
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
config: {
calculateProfit: false,
customerNotification: {email: true, whatsApp: true},
enableReviews: false,
order: {acceptWithoutShippingRate: false},
product: {
inventory: {
displayOptionKey: 'always',
displayOptionKeyId: '624d9757733a4a29e8ec0d81',
enableProductPageStockCount: false,
isLowStockEnabled: true,
isOutOfStockEnabled: true,
lowStockThreshold: 50,
outOfStockThreshold: 9,
storefrontDisplaySoldOut: false
}
},
shipping: {
defaultProvider: 'store',
hasDeliveryRates: true,
hasPickupRates: true,
integrations: {
enabled: false,
serviceType: 'dropoff-and-pickup',
supportedProviders: ['kwik'],
supportedRegions: 'selected-regions',
useAlternativeCarriers: true
},
returnAllRates: false
},
storefront: {
banners: [
{
banner: {
cdnUrl: 'https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/',
cdnUrlModifiers: '-/crop/600x338/0,31/-/resize/16x9/',
crop: {height: 338, left: 0, sh: 9, sw: 16, top: 31, width: 600},
isImage: true,
isStored: true,
mimeType: 'image/jpeg',
name: 'boardroom-background.jpg',
originalImageInfo: {
color_mode: 'RGB',
datetime_original: null,
dpi: [72, 72],
format: 'JPEG',
geo_location: null,
height: 400,
orientation: null,
sequence: false,
width: 600
},
originalUrl: 'https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/',
size: 45492,
sourceInfo: {source: 'local'},
uuid: '59187216-f258-47c9-bb2e-1cd2f3be733b'
},
is_active: true,
link: {path: '', type: 'false'},
period: {end: '', start: '2022-11-30T18:43:00.365Z'},
subtitle: '<p>We have stocked the best items in the market at the best prices, all for your convenience</p>\n',
title: 'Welcome to our store'
}
],
colors: {primary: '#ffcc00', secondary: '#000000'},
font: 'Arial',
hideLogo: false,
showEmailSignup: false,
showFooterMenu: false,
showSocialLinks: false,
showStoreDetails: false,
theme: 'MINIMAL'
}
},
shopCategory: '62c6985ba6f4d62c88ea0e6e'
})
};
fetch('http://staging.qshop.ng/apiv2/{shopId}/', 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/{shopId}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'config' => [
'calculateProfit' => false,
'customerNotification' => [
'email' => true,
'whatsApp' => true
],
'enableReviews' => false,
'order' => [
'acceptWithoutShippingRate' => false
],
'product' => [
'inventory' => [
'displayOptionKey' => 'always',
'displayOptionKeyId' => '624d9757733a4a29e8ec0d81',
'enableProductPageStockCount' => false,
'isLowStockEnabled' => true,
'isOutOfStockEnabled' => true,
'lowStockThreshold' => 50,
'outOfStockThreshold' => 9,
'storefrontDisplaySoldOut' => false
]
],
'shipping' => [
'defaultProvider' => 'store',
'hasDeliveryRates' => true,
'hasPickupRates' => true,
'integrations' => [
'enabled' => false,
'serviceType' => 'dropoff-and-pickup',
'supportedProviders' => [
'kwik'
],
'supportedRegions' => 'selected-regions',
'useAlternativeCarriers' => true
],
'returnAllRates' => false
],
'storefront' => [
'banners' => [
[
'banner' => [
'cdnUrl' => 'https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/',
'cdnUrlModifiers' => '-/crop/600x338/0,31/-/resize/16x9/',
'crop' => [
'height' => 338,
'left' => 0,
'sh' => 9,
'sw' => 16,
'top' => 31,
'width' => 600
],
'isImage' => true,
'isStored' => true,
'mimeType' => 'image/jpeg',
'name' => 'boardroom-background.jpg',
'originalImageInfo' => [
'color_mode' => 'RGB',
'datetime_original' => null,
'dpi' => [
72,
72
],
'format' => 'JPEG',
'geo_location' => null,
'height' => 400,
'orientation' => null,
'sequence' => false,
'width' => 600
],
'originalUrl' => 'https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/',
'size' => 45492,
'sourceInfo' => [
'source' => 'local'
],
'uuid' => '59187216-f258-47c9-bb2e-1cd2f3be733b'
],
'is_active' => true,
'link' => [
'path' => '',
'type' => 'false'
],
'period' => [
'end' => '',
'start' => '2022-11-30T18:43:00.365Z'
],
'subtitle' => '<p>We have stocked the best items in the market at the best prices, all for your convenience</p>
',
'title' => 'Welcome to our store'
]
],
'colors' => [
'primary' => '#ffcc00',
'secondary' => '#000000'
],
'font' => 'Arial',
'hideLogo' => false,
'showEmailSignup' => false,
'showFooterMenu' => false,
'showSocialLinks' => false,
'showStoreDetails' => false,
'theme' => 'MINIMAL'
]
],
'shopCategory' => '62c6985ba6f4d62c88ea0e6e'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://staging.qshop.ng/apiv2/{shopId}/"
payload := strings.NewReader("{\n \"config\": {\n \"calculateProfit\": false,\n \"customerNotification\": {\n \"email\": true,\n \"whatsApp\": true\n },\n \"enableReviews\": false,\n \"order\": {\n \"acceptWithoutShippingRate\": false\n },\n \"product\": {\n \"inventory\": {\n \"displayOptionKey\": \"always\",\n \"displayOptionKeyId\": \"624d9757733a4a29e8ec0d81\",\n \"enableProductPageStockCount\": false,\n \"isLowStockEnabled\": true,\n \"isOutOfStockEnabled\": true,\n \"lowStockThreshold\": 50,\n \"outOfStockThreshold\": 9,\n \"storefrontDisplaySoldOut\": false\n }\n },\n \"shipping\": {\n \"defaultProvider\": \"store\",\n \"hasDeliveryRates\": true,\n \"hasPickupRates\": true,\n \"integrations\": {\n \"enabled\": false,\n \"serviceType\": \"dropoff-and-pickup\",\n \"supportedProviders\": [\n \"kwik\"\n ],\n \"supportedRegions\": \"selected-regions\",\n \"useAlternativeCarriers\": true\n },\n \"returnAllRates\": false\n },\n \"storefront\": {\n \"banners\": [\n {\n \"banner\": {\n \"cdnUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/\",\n \"cdnUrlModifiers\": \"-/crop/600x338/0,31/-/resize/16x9/\",\n \"crop\": {\n \"height\": 338,\n \"left\": 0,\n \"sh\": 9,\n \"sw\": 16,\n \"top\": 31,\n \"width\": 600\n },\n \"isImage\": true,\n \"isStored\": true,\n \"mimeType\": \"image/jpeg\",\n \"name\": \"boardroom-background.jpg\",\n \"originalImageInfo\": {\n \"color_mode\": \"RGB\",\n \"datetime_original\": null,\n \"dpi\": [\n 72,\n 72\n ],\n \"format\": \"JPEG\",\n \"geo_location\": null,\n \"height\": 400,\n \"orientation\": null,\n \"sequence\": false,\n \"width\": 600\n },\n \"originalUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/\",\n \"size\": 45492,\n \"sourceInfo\": {\n \"source\": \"local\"\n },\n \"uuid\": \"59187216-f258-47c9-bb2e-1cd2f3be733b\"\n },\n \"is_active\": true,\n \"link\": {\n \"path\": \"\",\n \"type\": \"false\"\n },\n \"period\": {\n \"end\": \"\",\n \"start\": \"2022-11-30T18:43:00.365Z\"\n },\n \"subtitle\": \"<p>We have stocked the best items in the market at the best prices, all for your convenience</p>\\n\",\n \"title\": \"Welcome to our store\"\n }\n ],\n \"colors\": {\n \"primary\": \"#ffcc00\",\n \"secondary\": \"#000000\"\n },\n \"font\": \"Arial\",\n \"hideLogo\": false,\n \"showEmailSignup\": false,\n \"showFooterMenu\": false,\n \"showSocialLinks\": false,\n \"showStoreDetails\": false,\n \"theme\": \"MINIMAL\"\n }\n },\n \"shopCategory\": \"62c6985ba6f4d62c88ea0e6e\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("http://staging.qshop.ng/apiv2/{shopId}/")
.header("Content-Type", "application/json")
.body("{\n \"config\": {\n \"calculateProfit\": false,\n \"customerNotification\": {\n \"email\": true,\n \"whatsApp\": true\n },\n \"enableReviews\": false,\n \"order\": {\n \"acceptWithoutShippingRate\": false\n },\n \"product\": {\n \"inventory\": {\n \"displayOptionKey\": \"always\",\n \"displayOptionKeyId\": \"624d9757733a4a29e8ec0d81\",\n \"enableProductPageStockCount\": false,\n \"isLowStockEnabled\": true,\n \"isOutOfStockEnabled\": true,\n \"lowStockThreshold\": 50,\n \"outOfStockThreshold\": 9,\n \"storefrontDisplaySoldOut\": false\n }\n },\n \"shipping\": {\n \"defaultProvider\": \"store\",\n \"hasDeliveryRates\": true,\n \"hasPickupRates\": true,\n \"integrations\": {\n \"enabled\": false,\n \"serviceType\": \"dropoff-and-pickup\",\n \"supportedProviders\": [\n \"kwik\"\n ],\n \"supportedRegions\": \"selected-regions\",\n \"useAlternativeCarriers\": true\n },\n \"returnAllRates\": false\n },\n \"storefront\": {\n \"banners\": [\n {\n \"banner\": {\n \"cdnUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/\",\n \"cdnUrlModifiers\": \"-/crop/600x338/0,31/-/resize/16x9/\",\n \"crop\": {\n \"height\": 338,\n \"left\": 0,\n \"sh\": 9,\n \"sw\": 16,\n \"top\": 31,\n \"width\": 600\n },\n \"isImage\": true,\n \"isStored\": true,\n \"mimeType\": \"image/jpeg\",\n \"name\": \"boardroom-background.jpg\",\n \"originalImageInfo\": {\n \"color_mode\": \"RGB\",\n \"datetime_original\": null,\n \"dpi\": [\n 72,\n 72\n ],\n \"format\": \"JPEG\",\n \"geo_location\": null,\n \"height\": 400,\n \"orientation\": null,\n \"sequence\": false,\n \"width\": 600\n },\n \"originalUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/\",\n \"size\": 45492,\n \"sourceInfo\": {\n \"source\": \"local\"\n },\n \"uuid\": \"59187216-f258-47c9-bb2e-1cd2f3be733b\"\n },\n \"is_active\": true,\n \"link\": {\n \"path\": \"\",\n \"type\": \"false\"\n },\n \"period\": {\n \"end\": \"\",\n \"start\": \"2022-11-30T18:43:00.365Z\"\n },\n \"subtitle\": \"<p>We have stocked the best items in the market at the best prices, all for your convenience</p>\\n\",\n \"title\": \"Welcome to our store\"\n }\n ],\n \"colors\": {\n \"primary\": \"#ffcc00\",\n \"secondary\": \"#000000\"\n },\n \"font\": \"Arial\",\n \"hideLogo\": false,\n \"showEmailSignup\": false,\n \"showFooterMenu\": false,\n \"showSocialLinks\": false,\n \"showStoreDetails\": false,\n \"theme\": \"MINIMAL\"\n }\n },\n \"shopCategory\": \"62c6985ba6f4d62c88ea0e6e\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://staging.qshop.ng/apiv2/{shopId}/")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"config\": {\n \"calculateProfit\": false,\n \"customerNotification\": {\n \"email\": true,\n \"whatsApp\": true\n },\n \"enableReviews\": false,\n \"order\": {\n \"acceptWithoutShippingRate\": false\n },\n \"product\": {\n \"inventory\": {\n \"displayOptionKey\": \"always\",\n \"displayOptionKeyId\": \"624d9757733a4a29e8ec0d81\",\n \"enableProductPageStockCount\": false,\n \"isLowStockEnabled\": true,\n \"isOutOfStockEnabled\": true,\n \"lowStockThreshold\": 50,\n \"outOfStockThreshold\": 9,\n \"storefrontDisplaySoldOut\": false\n }\n },\n \"shipping\": {\n \"defaultProvider\": \"store\",\n \"hasDeliveryRates\": true,\n \"hasPickupRates\": true,\n \"integrations\": {\n \"enabled\": false,\n \"serviceType\": \"dropoff-and-pickup\",\n \"supportedProviders\": [\n \"kwik\"\n ],\n \"supportedRegions\": \"selected-regions\",\n \"useAlternativeCarriers\": true\n },\n \"returnAllRates\": false\n },\n \"storefront\": {\n \"banners\": [\n {\n \"banner\": {\n \"cdnUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/\",\n \"cdnUrlModifiers\": \"-/crop/600x338/0,31/-/resize/16x9/\",\n \"crop\": {\n \"height\": 338,\n \"left\": 0,\n \"sh\": 9,\n \"sw\": 16,\n \"top\": 31,\n \"width\": 600\n },\n \"isImage\": true,\n \"isStored\": true,\n \"mimeType\": \"image/jpeg\",\n \"name\": \"boardroom-background.jpg\",\n \"originalImageInfo\": {\n \"color_mode\": \"RGB\",\n \"datetime_original\": null,\n \"dpi\": [\n 72,\n 72\n ],\n \"format\": \"JPEG\",\n \"geo_location\": null,\n \"height\": 400,\n \"orientation\": null,\n \"sequence\": false,\n \"width\": 600\n },\n \"originalUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/\",\n \"size\": 45492,\n \"sourceInfo\": {\n \"source\": \"local\"\n },\n \"uuid\": \"59187216-f258-47c9-bb2e-1cd2f3be733b\"\n },\n \"is_active\": true,\n \"link\": {\n \"path\": \"\",\n \"type\": \"false\"\n },\n \"period\": {\n \"end\": \"\",\n \"start\": \"2022-11-30T18:43:00.365Z\"\n },\n \"subtitle\": \"<p>We have stocked the best items in the market at the best prices, all for your convenience</p>\\n\",\n \"title\": \"Welcome to our store\"\n }\n ],\n \"colors\": {\n \"primary\": \"#ffcc00\",\n \"secondary\": \"#000000\"\n },\n \"font\": \"Arial\",\n \"hideLogo\": false,\n \"showEmailSignup\": false,\n \"showFooterMenu\": false,\n \"showSocialLinks\": false,\n \"showStoreDetails\": false,\n \"theme\": \"MINIMAL\"\n }\n },\n \"shopCategory\": \"62c6985ba6f4d62c88ea0e6e\"\n}"
response = http.request(request)
puts response.read_bodyShops
Update shop copy
PATCH
/
{shopId}
/
Update shop
curl --request PATCH \
--url http://staging.qshop.ng/apiv2/{shopId}/ \
--header 'Content-Type: application/json' \
--data '
{
"config": {
"calculateProfit": false,
"customerNotification": {
"email": true,
"whatsApp": true
},
"enableReviews": false,
"order": {
"acceptWithoutShippingRate": false
},
"product": {
"inventory": {
"displayOptionKey": "always",
"displayOptionKeyId": "624d9757733a4a29e8ec0d81",
"enableProductPageStockCount": false,
"isLowStockEnabled": true,
"isOutOfStockEnabled": true,
"lowStockThreshold": 50,
"outOfStockThreshold": 9,
"storefrontDisplaySoldOut": false
}
},
"shipping": {
"defaultProvider": "store",
"hasDeliveryRates": true,
"hasPickupRates": true,
"integrations": {
"enabled": false,
"serviceType": "dropoff-and-pickup",
"supportedProviders": [
"kwik"
],
"supportedRegions": "selected-regions",
"useAlternativeCarriers": true
},
"returnAllRates": false
},
"storefront": {
"banners": [
{
"banner": {
"cdnUrl": "https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/",
"cdnUrlModifiers": "-/crop/600x338/0,31/-/resize/16x9/",
"crop": {
"height": 338,
"left": 0,
"sh": 9,
"sw": 16,
"top": 31,
"width": 600
},
"isImage": true,
"isStored": true,
"mimeType": "image/jpeg",
"name": "boardroom-background.jpg",
"originalImageInfo": {
"color_mode": "RGB",
"datetime_original": null,
"dpi": [
72,
72
],
"format": "JPEG",
"geo_location": null,
"height": 400,
"orientation": null,
"sequence": false,
"width": 600
},
"originalUrl": "https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/",
"size": 45492,
"sourceInfo": {
"source": "local"
},
"uuid": "59187216-f258-47c9-bb2e-1cd2f3be733b"
},
"is_active": true,
"link": {
"path": "",
"type": "false"
},
"period": {
"end": "",
"start": "2022-11-30T18:43:00.365Z"
},
"subtitle": "<p>We have stocked the best items in the market at the best prices, all for your convenience</p>\n",
"title": "Welcome to our store"
}
],
"colors": {
"primary": "#ffcc00",
"secondary": "#000000"
},
"font": "Arial",
"hideLogo": false,
"showEmailSignup": false,
"showFooterMenu": false,
"showSocialLinks": false,
"showStoreDetails": false,
"theme": "MINIMAL"
}
},
"shopCategory": "62c6985ba6f4d62c88ea0e6e"
}
'import requests
url = "http://staging.qshop.ng/apiv2/{shopId}/"
payload = {
"config": {
"calculateProfit": False,
"customerNotification": {
"email": True,
"whatsApp": True
},
"enableReviews": False,
"order": { "acceptWithoutShippingRate": False },
"product": { "inventory": {
"displayOptionKey": "always",
"displayOptionKeyId": "624d9757733a4a29e8ec0d81",
"enableProductPageStockCount": False,
"isLowStockEnabled": True,
"isOutOfStockEnabled": True,
"lowStockThreshold": 50,
"outOfStockThreshold": 9,
"storefrontDisplaySoldOut": False
} },
"shipping": {
"defaultProvider": "store",
"hasDeliveryRates": True,
"hasPickupRates": True,
"integrations": {
"enabled": False,
"serviceType": "dropoff-and-pickup",
"supportedProviders": ["kwik"],
"supportedRegions": "selected-regions",
"useAlternativeCarriers": True
},
"returnAllRates": False
},
"storefront": {
"banners": [
{
"banner": {
"cdnUrl": "https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/",
"cdnUrlModifiers": "-/crop/600x338/0,31/-/resize/16x9/",
"crop": {
"height": 338,
"left": 0,
"sh": 9,
"sw": 16,
"top": 31,
"width": 600
},
"isImage": True,
"isStored": True,
"mimeType": "image/jpeg",
"name": "boardroom-background.jpg",
"originalImageInfo": {
"color_mode": "RGB",
"datetime_original": None,
"dpi": [72, 72],
"format": "JPEG",
"geo_location": None,
"height": 400,
"orientation": None,
"sequence": False,
"width": 600
},
"originalUrl": "https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/",
"size": 45492,
"sourceInfo": { "source": "local" },
"uuid": "59187216-f258-47c9-bb2e-1cd2f3be733b"
},
"is_active": True,
"link": {
"path": "",
"type": "false"
},
"period": {
"end": "",
"start": "2022-11-30T18:43:00.365Z"
},
"subtitle": "<p>We have stocked the best items in the market at the best prices, all for your convenience</p>
",
"title": "Welcome to our store"
}
],
"colors": {
"primary": "#ffcc00",
"secondary": "#000000"
},
"font": "Arial",
"hideLogo": False,
"showEmailSignup": False,
"showFooterMenu": False,
"showSocialLinks": False,
"showStoreDetails": False,
"theme": "MINIMAL"
}
},
"shopCategory": "62c6985ba6f4d62c88ea0e6e"
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
config: {
calculateProfit: false,
customerNotification: {email: true, whatsApp: true},
enableReviews: false,
order: {acceptWithoutShippingRate: false},
product: {
inventory: {
displayOptionKey: 'always',
displayOptionKeyId: '624d9757733a4a29e8ec0d81',
enableProductPageStockCount: false,
isLowStockEnabled: true,
isOutOfStockEnabled: true,
lowStockThreshold: 50,
outOfStockThreshold: 9,
storefrontDisplaySoldOut: false
}
},
shipping: {
defaultProvider: 'store',
hasDeliveryRates: true,
hasPickupRates: true,
integrations: {
enabled: false,
serviceType: 'dropoff-and-pickup',
supportedProviders: ['kwik'],
supportedRegions: 'selected-regions',
useAlternativeCarriers: true
},
returnAllRates: false
},
storefront: {
banners: [
{
banner: {
cdnUrl: 'https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/',
cdnUrlModifiers: '-/crop/600x338/0,31/-/resize/16x9/',
crop: {height: 338, left: 0, sh: 9, sw: 16, top: 31, width: 600},
isImage: true,
isStored: true,
mimeType: 'image/jpeg',
name: 'boardroom-background.jpg',
originalImageInfo: {
color_mode: 'RGB',
datetime_original: null,
dpi: [72, 72],
format: 'JPEG',
geo_location: null,
height: 400,
orientation: null,
sequence: false,
width: 600
},
originalUrl: 'https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/',
size: 45492,
sourceInfo: {source: 'local'},
uuid: '59187216-f258-47c9-bb2e-1cd2f3be733b'
},
is_active: true,
link: {path: '', type: 'false'},
period: {end: '', start: '2022-11-30T18:43:00.365Z'},
subtitle: '<p>We have stocked the best items in the market at the best prices, all for your convenience</p>\n',
title: 'Welcome to our store'
}
],
colors: {primary: '#ffcc00', secondary: '#000000'},
font: 'Arial',
hideLogo: false,
showEmailSignup: false,
showFooterMenu: false,
showSocialLinks: false,
showStoreDetails: false,
theme: 'MINIMAL'
}
},
shopCategory: '62c6985ba6f4d62c88ea0e6e'
})
};
fetch('http://staging.qshop.ng/apiv2/{shopId}/', 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/{shopId}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'config' => [
'calculateProfit' => false,
'customerNotification' => [
'email' => true,
'whatsApp' => true
],
'enableReviews' => false,
'order' => [
'acceptWithoutShippingRate' => false
],
'product' => [
'inventory' => [
'displayOptionKey' => 'always',
'displayOptionKeyId' => '624d9757733a4a29e8ec0d81',
'enableProductPageStockCount' => false,
'isLowStockEnabled' => true,
'isOutOfStockEnabled' => true,
'lowStockThreshold' => 50,
'outOfStockThreshold' => 9,
'storefrontDisplaySoldOut' => false
]
],
'shipping' => [
'defaultProvider' => 'store',
'hasDeliveryRates' => true,
'hasPickupRates' => true,
'integrations' => [
'enabled' => false,
'serviceType' => 'dropoff-and-pickup',
'supportedProviders' => [
'kwik'
],
'supportedRegions' => 'selected-regions',
'useAlternativeCarriers' => true
],
'returnAllRates' => false
],
'storefront' => [
'banners' => [
[
'banner' => [
'cdnUrl' => 'https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/',
'cdnUrlModifiers' => '-/crop/600x338/0,31/-/resize/16x9/',
'crop' => [
'height' => 338,
'left' => 0,
'sh' => 9,
'sw' => 16,
'top' => 31,
'width' => 600
],
'isImage' => true,
'isStored' => true,
'mimeType' => 'image/jpeg',
'name' => 'boardroom-background.jpg',
'originalImageInfo' => [
'color_mode' => 'RGB',
'datetime_original' => null,
'dpi' => [
72,
72
],
'format' => 'JPEG',
'geo_location' => null,
'height' => 400,
'orientation' => null,
'sequence' => false,
'width' => 600
],
'originalUrl' => 'https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/',
'size' => 45492,
'sourceInfo' => [
'source' => 'local'
],
'uuid' => '59187216-f258-47c9-bb2e-1cd2f3be733b'
],
'is_active' => true,
'link' => [
'path' => '',
'type' => 'false'
],
'period' => [
'end' => '',
'start' => '2022-11-30T18:43:00.365Z'
],
'subtitle' => '<p>We have stocked the best items in the market at the best prices, all for your convenience</p>
',
'title' => 'Welcome to our store'
]
],
'colors' => [
'primary' => '#ffcc00',
'secondary' => '#000000'
],
'font' => 'Arial',
'hideLogo' => false,
'showEmailSignup' => false,
'showFooterMenu' => false,
'showSocialLinks' => false,
'showStoreDetails' => false,
'theme' => 'MINIMAL'
]
],
'shopCategory' => '62c6985ba6f4d62c88ea0e6e'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://staging.qshop.ng/apiv2/{shopId}/"
payload := strings.NewReader("{\n \"config\": {\n \"calculateProfit\": false,\n \"customerNotification\": {\n \"email\": true,\n \"whatsApp\": true\n },\n \"enableReviews\": false,\n \"order\": {\n \"acceptWithoutShippingRate\": false\n },\n \"product\": {\n \"inventory\": {\n \"displayOptionKey\": \"always\",\n \"displayOptionKeyId\": \"624d9757733a4a29e8ec0d81\",\n \"enableProductPageStockCount\": false,\n \"isLowStockEnabled\": true,\n \"isOutOfStockEnabled\": true,\n \"lowStockThreshold\": 50,\n \"outOfStockThreshold\": 9,\n \"storefrontDisplaySoldOut\": false\n }\n },\n \"shipping\": {\n \"defaultProvider\": \"store\",\n \"hasDeliveryRates\": true,\n \"hasPickupRates\": true,\n \"integrations\": {\n \"enabled\": false,\n \"serviceType\": \"dropoff-and-pickup\",\n \"supportedProviders\": [\n \"kwik\"\n ],\n \"supportedRegions\": \"selected-regions\",\n \"useAlternativeCarriers\": true\n },\n \"returnAllRates\": false\n },\n \"storefront\": {\n \"banners\": [\n {\n \"banner\": {\n \"cdnUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/\",\n \"cdnUrlModifiers\": \"-/crop/600x338/0,31/-/resize/16x9/\",\n \"crop\": {\n \"height\": 338,\n \"left\": 0,\n \"sh\": 9,\n \"sw\": 16,\n \"top\": 31,\n \"width\": 600\n },\n \"isImage\": true,\n \"isStored\": true,\n \"mimeType\": \"image/jpeg\",\n \"name\": \"boardroom-background.jpg\",\n \"originalImageInfo\": {\n \"color_mode\": \"RGB\",\n \"datetime_original\": null,\n \"dpi\": [\n 72,\n 72\n ],\n \"format\": \"JPEG\",\n \"geo_location\": null,\n \"height\": 400,\n \"orientation\": null,\n \"sequence\": false,\n \"width\": 600\n },\n \"originalUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/\",\n \"size\": 45492,\n \"sourceInfo\": {\n \"source\": \"local\"\n },\n \"uuid\": \"59187216-f258-47c9-bb2e-1cd2f3be733b\"\n },\n \"is_active\": true,\n \"link\": {\n \"path\": \"\",\n \"type\": \"false\"\n },\n \"period\": {\n \"end\": \"\",\n \"start\": \"2022-11-30T18:43:00.365Z\"\n },\n \"subtitle\": \"<p>We have stocked the best items in the market at the best prices, all for your convenience</p>\\n\",\n \"title\": \"Welcome to our store\"\n }\n ],\n \"colors\": {\n \"primary\": \"#ffcc00\",\n \"secondary\": \"#000000\"\n },\n \"font\": \"Arial\",\n \"hideLogo\": false,\n \"showEmailSignup\": false,\n \"showFooterMenu\": false,\n \"showSocialLinks\": false,\n \"showStoreDetails\": false,\n \"theme\": \"MINIMAL\"\n }\n },\n \"shopCategory\": \"62c6985ba6f4d62c88ea0e6e\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("http://staging.qshop.ng/apiv2/{shopId}/")
.header("Content-Type", "application/json")
.body("{\n \"config\": {\n \"calculateProfit\": false,\n \"customerNotification\": {\n \"email\": true,\n \"whatsApp\": true\n },\n \"enableReviews\": false,\n \"order\": {\n \"acceptWithoutShippingRate\": false\n },\n \"product\": {\n \"inventory\": {\n \"displayOptionKey\": \"always\",\n \"displayOptionKeyId\": \"624d9757733a4a29e8ec0d81\",\n \"enableProductPageStockCount\": false,\n \"isLowStockEnabled\": true,\n \"isOutOfStockEnabled\": true,\n \"lowStockThreshold\": 50,\n \"outOfStockThreshold\": 9,\n \"storefrontDisplaySoldOut\": false\n }\n },\n \"shipping\": {\n \"defaultProvider\": \"store\",\n \"hasDeliveryRates\": true,\n \"hasPickupRates\": true,\n \"integrations\": {\n \"enabled\": false,\n \"serviceType\": \"dropoff-and-pickup\",\n \"supportedProviders\": [\n \"kwik\"\n ],\n \"supportedRegions\": \"selected-regions\",\n \"useAlternativeCarriers\": true\n },\n \"returnAllRates\": false\n },\n \"storefront\": {\n \"banners\": [\n {\n \"banner\": {\n \"cdnUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/\",\n \"cdnUrlModifiers\": \"-/crop/600x338/0,31/-/resize/16x9/\",\n \"crop\": {\n \"height\": 338,\n \"left\": 0,\n \"sh\": 9,\n \"sw\": 16,\n \"top\": 31,\n \"width\": 600\n },\n \"isImage\": true,\n \"isStored\": true,\n \"mimeType\": \"image/jpeg\",\n \"name\": \"boardroom-background.jpg\",\n \"originalImageInfo\": {\n \"color_mode\": \"RGB\",\n \"datetime_original\": null,\n \"dpi\": [\n 72,\n 72\n ],\n \"format\": \"JPEG\",\n \"geo_location\": null,\n \"height\": 400,\n \"orientation\": null,\n \"sequence\": false,\n \"width\": 600\n },\n \"originalUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/\",\n \"size\": 45492,\n \"sourceInfo\": {\n \"source\": \"local\"\n },\n \"uuid\": \"59187216-f258-47c9-bb2e-1cd2f3be733b\"\n },\n \"is_active\": true,\n \"link\": {\n \"path\": \"\",\n \"type\": \"false\"\n },\n \"period\": {\n \"end\": \"\",\n \"start\": \"2022-11-30T18:43:00.365Z\"\n },\n \"subtitle\": \"<p>We have stocked the best items in the market at the best prices, all for your convenience</p>\\n\",\n \"title\": \"Welcome to our store\"\n }\n ],\n \"colors\": {\n \"primary\": \"#ffcc00\",\n \"secondary\": \"#000000\"\n },\n \"font\": \"Arial\",\n \"hideLogo\": false,\n \"showEmailSignup\": false,\n \"showFooterMenu\": false,\n \"showSocialLinks\": false,\n \"showStoreDetails\": false,\n \"theme\": \"MINIMAL\"\n }\n },\n \"shopCategory\": \"62c6985ba6f4d62c88ea0e6e\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://staging.qshop.ng/apiv2/{shopId}/")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"config\": {\n \"calculateProfit\": false,\n \"customerNotification\": {\n \"email\": true,\n \"whatsApp\": true\n },\n \"enableReviews\": false,\n \"order\": {\n \"acceptWithoutShippingRate\": false\n },\n \"product\": {\n \"inventory\": {\n \"displayOptionKey\": \"always\",\n \"displayOptionKeyId\": \"624d9757733a4a29e8ec0d81\",\n \"enableProductPageStockCount\": false,\n \"isLowStockEnabled\": true,\n \"isOutOfStockEnabled\": true,\n \"lowStockThreshold\": 50,\n \"outOfStockThreshold\": 9,\n \"storefrontDisplaySoldOut\": false\n }\n },\n \"shipping\": {\n \"defaultProvider\": \"store\",\n \"hasDeliveryRates\": true,\n \"hasPickupRates\": true,\n \"integrations\": {\n \"enabled\": false,\n \"serviceType\": \"dropoff-and-pickup\",\n \"supportedProviders\": [\n \"kwik\"\n ],\n \"supportedRegions\": \"selected-regions\",\n \"useAlternativeCarriers\": true\n },\n \"returnAllRates\": false\n },\n \"storefront\": {\n \"banners\": [\n {\n \"banner\": {\n \"cdnUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/-/crop/600x338/0,31/-/resize/16x9/\",\n \"cdnUrlModifiers\": \"-/crop/600x338/0,31/-/resize/16x9/\",\n \"crop\": {\n \"height\": 338,\n \"left\": 0,\n \"sh\": 9,\n \"sw\": 16,\n \"top\": 31,\n \"width\": 600\n },\n \"isImage\": true,\n \"isStored\": true,\n \"mimeType\": \"image/jpeg\",\n \"name\": \"boardroom-background.jpg\",\n \"originalImageInfo\": {\n \"color_mode\": \"RGB\",\n \"datetime_original\": null,\n \"dpi\": [\n 72,\n 72\n ],\n \"format\": \"JPEG\",\n \"geo_location\": null,\n \"height\": 400,\n \"orientation\": null,\n \"sequence\": false,\n \"width\": 600\n },\n \"originalUrl\": \"https://ucarecdn.com/59187216-f258-47c9-bb2e-1cd2f3be733b/\",\n \"size\": 45492,\n \"sourceInfo\": {\n \"source\": \"local\"\n },\n \"uuid\": \"59187216-f258-47c9-bb2e-1cd2f3be733b\"\n },\n \"is_active\": true,\n \"link\": {\n \"path\": \"\",\n \"type\": \"false\"\n },\n \"period\": {\n \"end\": \"\",\n \"start\": \"2022-11-30T18:43:00.365Z\"\n },\n \"subtitle\": \"<p>We have stocked the best items in the market at the best prices, all for your convenience</p>\\n\",\n \"title\": \"Welcome to our store\"\n }\n ],\n \"colors\": {\n \"primary\": \"#ffcc00\",\n \"secondary\": \"#000000\"\n },\n \"font\": \"Arial\",\n \"hideLogo\": false,\n \"showEmailSignup\": false,\n \"showFooterMenu\": false,\n \"showSocialLinks\": false,\n \"showStoreDetails\": false,\n \"theme\": \"MINIMAL\"\n }\n },\n \"shopCategory\": \"62c6985ba6f4d62c88ea0e6e\"\n}"
response = http.request(request)
puts response.read_bodyWas this page helpful?
⌘I