B4X
B4X
WiX Create Product
See more WiX Examples
Creates a new product.Note: If you get a 403 error response, try refreshing the access token.
Chilkat B4X Downloads
Dim success As Boolean = False
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As ChilkatHttp
http.Initialize("http")
' Implements the following CURL command:
' curl -X POST \
' 'https://www.wixapis.com/stores/v1/products' \
' --data-binary '{
' "product": {
' "name": "T-shirt",
' "productType": "physical",
' "priceData": {
' "price": 10.5
' },
' "description": "nice summer t-shirt",
' "sku": "123df",
' "visible": false,
' "weight": 0.2,
' "discount": {
' "type": "AMOUNT",
' "value": 1
' },
' "manageVariants": true,
' "productOptions": [
' {
' "name": "Size",
' "choices": [
' {
' "value": "S",
' "description": "S"
' },
' {
' "value": "L",
' "description": "L"
' }
' ]
' }
' ]
' }
' }' \
' -H 'Content-Type: application/json' \
' -H 'Authorization: <AUTH>'
' Use the following online tool to generate HTTP code from a CURL command
' Convert a cURL Command to HTTP Source Code
' Use this online tool to generate code from sample JSON:
' Generate Code to Create JSON
' The following JSON is sent in the request body.
' {
' "product": {
' "name": "T-shirt",
' "productType": "physical",
' "priceData": {
' "price": 10.5
' },
' "description": "nice summer t-shirt",
' "sku": "123df",
' "visible": false,
' "weight": 0.2,
' "discount": {
' "type": "AMOUNT",
' "value": 1
' },
' "manageVariants": true,
' "productOptions": [
' {
' "name": "Size",
' "choices": [
' {
' "value": "S",
' "description": "S"
' },
' {
' "value": "L",
' "description": "L"
' }
' ]
' }
' ]
' }
' }
Dim json As ChilkatJsonObject
json.Initialize
json.UpdateString("product.name", "T-shirt")
json.UpdateString("product.productType", "physical")
json.UpdateNumber("product.priceData.price", "10.5")
json.UpdateString("product.description", "nice summer t-shirt")
json.UpdateString("product.sku", "123df")
json.UpdateBool("product.visible", False)
json.UpdateNumber("product.weight", "0.2")
json.UpdateString("product.discount.type", "AMOUNT")
json.UpdateInt("product.discount.value", 1)
json.UpdateBool("product.manageVariants", True)
json.UpdateString("product.productOptions[0].name", "Size")
json.UpdateString("product.productOptions[0].choices[0].value", "S")
json.UpdateString("product.productOptions[0].choices[0].description", "S")
json.UpdateString("product.productOptions[0].choices[1].value", "L")
json.UpdateString("product.productOptions[0].choices[1].description", "L")
http.AuthToken = "ACCESS_TOKEN"
Dim resp As ChilkatHttpResponse
resp.Initialize
success = http.HttpJson("POST", "https://www.wixapis.com/stores/v1/products", json, "application/json", resp)
If success = False Then
Log(http.LastErrorText)
Return
End If
Dim sbResponseBody As ChilkatStringBuilder
sbResponseBody.Initialize
resp.GetBodySb(sbResponseBody)
Dim jResp As ChilkatJsonObject
jResp.Initialize
jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = False
Log("Response Body:")
Log(jResp.Emit)
Dim respStatusCode As Int = resp.StatusCode
Log("Response Status Code = " & respStatusCode)
If respStatusCode >= 400 Then
Log("Response Header:")
Log(resp.Header)
Log("Failed.")
Return
End If
' Sample JSON response:
' (Sample code for parsing the JSON response is shown below)
' {
' "product": {
' "id": "e28e4ddd-6ed0-4098-a5e5-cf4bd9c4f7b5",
' "name": "T-shirt",
' "slug": "t-shirt-1",
' "visible": false,
' "productType": "physical",
' "description": "nice summer t-shirt",
' "stock": {
' "trackInventory": false,
' "inStock": true
' },
' "price": {
' "currency": "ILS",
' "price": 10.5,
' "discountedPrice": 9.5,
' "formatted": {
' "price": "10.50",
' "discountedPrice": "9.50"
' }
' },
' "priceData": {
' "currency": "ILS",
' "price": 10.5,
' "discountedPrice": 9.5,
' "formatted": {
' "price": "10.50",
' "discountedPrice": "9.50"
' }
' },
' "additionalInfoSections": [
' ],
' "ribbons": [
' ],
' "media": {
' "items": [
' ]
' },
' "customTextFields": [
' ],
' "manageVariants": true,
' "productOptions": [
' {
' "optionType": "drop_down",
' "name": "Size",
' "choices": [
' {
' "value": "S",
' "description": "S",
' "inStock": true,
' "visible": true
' },
' {
' "value": "L",
' "description": "L",
' "inStock": true,
' "visible": true
' }
' ]
' }
' ],
' "productPageUrl": {
' "base": "https://www.itsjusttooeasy123.com/",
' "path": "/product-page/t-shirt-1"
' },
' "numericId": "1567588455405000",
' "inventoryItemId": "1d71b222-912f-bf67-5a1a-30b4263b084a",
' "discount": {
' "type": "AMOUNT",
' "value": 1
' },
' "collectionIds": [
' ],
' "variants": [
' {
' "id": "00000000-0000-0001-0005-93fc95e0514a",
' "choices": {
' "Size": "S"
' },
' "variant": {
' "priceData": {
' "currency": "ILS",
' "price": 10.5,
' "discountedPrice": 9.5,
' "formatted": {
' "price": "10.50",
' "discountedPrice": "9.50"
' }
' },
' "weight": 10,
' "visible": true
' }
' },
' {
' "id": "00000000-0000-0002-0005-93fc95e0514a",
' "choices": {
' "Size": "L"
' },
' "variant": {
' "priceData": {
' "currency": "ILS",
' "price": 10.5,
' "discountedPrice": 9.5,
' "formatted": {
' "price": "10.50",
' "discountedPrice": "9.50"
' }
' },
' "visible": true
' }
' }
' ]
' }
' }
' Sample code for parsing the JSON response...
' Use the following online tool to generate parsing code from sample JSON:
' Generate Parsing Code from JSON
Dim optionType As String
Dim name As String
Dim j As Int
Dim count_j As Int
Dim value As String
Dim description As String
Dim inStock As Boolean
Dim visible As Boolean
Dim id As String
Dim choicesSize As String
Dim variantPriceDataCurrency As String
Dim variantPriceDataPrice As String
Dim variantPriceDataDiscountedPrice As String
Dim variantPriceDataFormattedPrice As String
Dim variantPriceDataFormattedDiscountedPrice As String
Dim variantWeight As Int
Dim variantVisible As Boolean
Dim productId As String = jResp.StringOf("product.id")
Dim productName As String = jResp.StringOf("product.name")
Dim productSlug As String = jResp.StringOf("product.slug")
Dim productVisible As Boolean = jResp.BoolOf("product.visible")
Dim productProductType As String = jResp.StringOf("product.productType")
Dim productDescription As String = jResp.StringOf("product.description")
Dim productStockTrackInventory As Boolean = jResp.BoolOf("product.stock.trackInventory")
Dim productStockInStock As Boolean = jResp.BoolOf("product.stock.inStock")
Dim productPriceCurrency As String = jResp.StringOf("product.price.currency")
Dim productPricePrice As String = jResp.StringOf("product.price.price")
Dim productPriceDiscountedPrice As String = jResp.StringOf("product.price.discountedPrice")
Dim productPriceFormattedPrice As String = jResp.StringOf("product.price.formatted.price")
Dim productPriceFormattedDiscountedPrice As String = jResp.StringOf("product.price.formatted.discountedPrice")
Dim productPriceDataCurrency As String = jResp.StringOf("product.priceData.currency")
Dim productPriceDataPrice As String = jResp.StringOf("product.priceData.price")
Dim productPriceDataDiscountedPrice As String = jResp.StringOf("product.priceData.discountedPrice")
Dim productPriceDataFormattedPrice As String = jResp.StringOf("product.priceData.formatted.price")
Dim productPriceDataFormattedDiscountedPrice As String = jResp.StringOf("product.priceData.formatted.discountedPrice")
Dim productManageVariants As Boolean = jResp.BoolOf("product.manageVariants")
Dim productProductPageUrlBase As String = jResp.StringOf("product.productPageUrl.base")
Dim productProductPageUrlPath As String = jResp.StringOf("product.productPageUrl.path")
Dim productNumericId As String = jResp.StringOf("product.numericId")
Dim productInventoryItemId As String = jResp.StringOf("product.inventoryItemId")
Dim productDiscountType As String = jResp.StringOf("product.discount.type")
Dim productDiscountValue As Int = jResp.IntOf("product.discount.value")
Dim i As Int = 0
Dim count_i As Int = jResp.SizeOfArray("product.additionalInfoSections")
Do While i < count_i
jResp.I = i
i = i + 1
Loop
i = 0
count_i = jResp.SizeOfArray("product.ribbons")
Do While i < count_i
jResp.I = i
i = i + 1
Loop
i = 0
count_i = jResp.SizeOfArray("product.media.items")
Do While i < count_i
jResp.I = i
i = i + 1
Loop
i = 0
count_i = jResp.SizeOfArray("product.customTextFields")
Do While i < count_i
jResp.I = i
i = i + 1
Loop
i = 0
count_i = jResp.SizeOfArray("product.productOptions")
Do While i < count_i
jResp.I = i
optionType = jResp.StringOf("product.productOptions[i].optionType")
name = jResp.StringOf("product.productOptions[i].name")
j = 0
count_j = jResp.SizeOfArray("product.productOptions[i].choices")
Do While j < count_j
jResp.J = j
value = jResp.StringOf("product.productOptions[i].choices[j].value")
description = jResp.StringOf("product.productOptions[i].choices[j].description")
inStock = jResp.BoolOf("product.productOptions[i].choices[j].inStock")
visible = jResp.BoolOf("product.productOptions[i].choices[j].visible")
j = j + 1
Loop
i = i + 1
Loop
i = 0
count_i = jResp.SizeOfArray("product.collectionIds")
Do While i < count_i
jResp.I = i
i = i + 1
Loop
i = 0
count_i = jResp.SizeOfArray("product.variants")
Do While i < count_i
jResp.I = i
id = jResp.StringOf("product.variants[i].id")
choicesSize = jResp.StringOf("product.variants[i].choices.Size")
variantPriceDataCurrency = jResp.StringOf("product.variants[i].variant.priceData.currency")
variantPriceDataPrice = jResp.StringOf("product.variants[i].variant.priceData.price")
variantPriceDataDiscountedPrice = jResp.StringOf("product.variants[i].variant.priceData.discountedPrice")
variantPriceDataFormattedPrice = jResp.StringOf("product.variants[i].variant.priceData.formatted.price")
variantPriceDataFormattedDiscountedPrice = jResp.StringOf("product.variants[i].variant.priceData.formatted.discountedPrice")
variantWeight = jResp.IntOf("product.variants[i].variant.weight")
variantVisible = jResp.BoolOf("product.variants[i].variant.visible")
i = i + 1
Loop