Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Visual Basic 6.0 Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Visual Basic 6.0) Akeneo: Create New Product

Demonstrates how to create a new product.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

Dim http As New ChilkatHttp

' Use your previously obtained access token.
' See Get Akeneo Access Token
http.AuthToken = "access_token"

' Build the following JSON to be sent in the request body:
' Use this online tool to generate the code from sample JSON: 
' Generate Code to Create JSON

' {
'   "identifier": "top",
'   "enabled": true,
'   "family": "tshirt",
'   "categories": [
'     "summer_collection"
'   ],
'   "groups": [],
'   "parent": null,
'   "values": {
'     "name": [
'       {
'         "data": "Top",
'         "locale": "en_US",
'         "scope": null
'       },
'       {
'         "data": "Dbardeur",
'         "locale": "fr_FR",
'         "scope": null
'       }
'     ],
'     "description": [
'       {
'         "data": "Summer top",
'         "locale": "en_US",
'         "scope": "ecommerce"
'       },
'       {
'         "data": "Top",
'         "locale": "en_US",
'         "scope": "tablet"
'       },
'       {
'         "data": "Dbardeur pour l't",
'         "locale": "fr_FR",
'         "scope": "ecommerce"
'       },
'       {
'         "data": "Dbardeur",
'         "locale": "fr_FR",
'         "scope": "tablet"
'       }
'     ],
'     "price": [
'       {
'         "locale": null,
'         "scope": null,
'         "data": [
'           {
'             "amount": "150.5",
'             "currency": "EUR"
'           },
'           {
'             "amount": "150",
'             "currency": "USD"
'           }
'         ]
'       }
'     ],
'     "color": [
'       {
'         "locale": null,
'         "scope": null,
'         "data": "black"
'       }
'     ],
'     "size": [
'       {
'         "locale": null,
'         "scope": null,
'         "data": "m"
'       }
'     ]
'   },
'   "associations": {
'     "PACK": {
'       "products": [
'         "sunglass"
'       ],
'       "groups": []
'     }
'   }
' }
' 

Dim json As New ChilkatJsonObject
success = json.UpdateString("identifier","top")
success = json.UpdateBool("enabled",1)
success = json.UpdateString("family","tshirt")
success = json.UpdateString("categories[0]","summer_collection")
success = json.UpdateNewArray("groups")
success = json.UpdateNull("parent")
success = json.UpdateString("values.name[0].data","Top")
success = json.UpdateString("values.name[0].locale","en_US")
success = json.UpdateNull("values.name[0].scope")
success = json.UpdateString("values.name[1].data","Dbardeur")
success = json.UpdateString("values.name[1].locale","fr_FR")
success = json.UpdateNull("values.name[1].scope")
success = json.UpdateString("values.description[0].data","Summer top")
success = json.UpdateString("values.description[0].locale","en_US")
success = json.UpdateString("values.description[0].scope","ecommerce")
success = json.UpdateString("values.description[1].data","Top")
success = json.UpdateString("values.description[1].locale","en_US")
success = json.UpdateString("values.description[1].scope","tablet")
success = json.UpdateString("values.description[2].data","Dbardeur pour l't")
success = json.UpdateString("values.description[2].locale","fr_FR")
success = json.UpdateString("values.description[2].scope","ecommerce")
success = json.UpdateString("values.description[3].data","Dbardeur")
success = json.UpdateString("values.description[3].locale","fr_FR")
success = json.UpdateString("values.description[3].scope","tablet")
success = json.UpdateNull("values.price[0].locale")
success = json.UpdateNull("values.price[0].scope")
success = json.UpdateString("values.price[0].data[0].amount","150.5")
success = json.UpdateString("values.price[0].data[0].currency","EUR")
success = json.UpdateString("values.price[0].data[1].amount","150")
success = json.UpdateString("values.price[0].data[1].currency","USD")
success = json.UpdateNull("values.color[0].locale")
success = json.UpdateNull("values.color[0].scope")
success = json.UpdateString("values.color[0].data","black")
success = json.UpdateNull("values.size[0].locale")
success = json.UpdateNull("values.size[0].scope")
success = json.UpdateString("values.size[0].data","m")
success = json.UpdateString("associations.PACK.products[0]","sunglass")
success = json.UpdateNewArray("associations.PACK.groups")

json.EmitCompact = 0
' Show the JSON to be sent..
Debug.Print json.Emit()

Dim url As String
url = "http://pim.my-akeneo-site.com/api/rest/v1/products"
Dim resp As ChilkatHttpResponse
Set resp = http.PostJson3(url,"application/json",json)
If (http.LastMethodSuccess <> 1) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If

Debug.Print "Response Status Code: " & resp.StatusCode
Debug.Print "Response Body: "
Debug.Print resp.BodyStr

' The akeneo response will include a "Location" header, such as the following:
' HTTP/1.1 201 Created
' Date: Tue, 22 Jan 2019 10:36:35 GMT
' Server: Apache/2
' X-Powered-By: PHP/7.1.25
' Cache-Control: max-age=0, private, must-revalidate, no-cache, private
' Set-Cookie: abcdefg; path=/; HttpOnly
' Location: http://xyz.example.com/api/rest/v1/products/L0000123
' Vary: User-Agent
' Content-Length: 0
' Keep-Alive: timeout=2, max=100
' Connection: Keep-Alive
' Content-Type: application/json

' Get the location header using resp.GetHeaderField
Dim location As String
location = resp.GetHeaderField("Location")
Debug.Print "Location: " & location


 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.