Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

VB.NET UWP/WinRT Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Bitfinex v2 REST
Bluzone
BrickLink
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter
UniPin
VoiceBase
Vonage
Walmart
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yousign
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(VB.NET UWP/WinRT) Yousign: Making your first API call

Demonstrates making the simplest of calls to test your API key. This example tests using the sandbox URLs.

For more information, see https://dev.yousign.com/?version=latest#c803dbec-2afb-4b2d-b70b-b42e5c8cbc9a

Chilkat Universal Windows Platform (UWP) / WinRT Downloads

Chilkat for the Universal Windows Platform (UWP)

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

Dim http As New Chilkat.Http
Dim success As Boolean

' Implements the following CURL command:

' curl --location --request GET 'https://staging-api.yousign.com/users' \
' --header 'Authorization: Bearer YOUR_API_KEY' \
' --header 'Content-Type: application/json'

' Use the following online tool to generate HTTP code from a CURL command
' Convert a cURL Command to HTTP Source Code

' Adds the "Authorization: Bearer YOUR_API_KEY" header.
http.AuthToken = "YOUR_API_KEY"
http.SetRequestHeader("Content-Type","application/json")

Dim sbResponseBody As New Chilkat.StringBuilder
success = Await http.QuickGetSbAsync("https://staging-api.yousign.com/users",sbResponseBody)
If (success = False) Then
    Debug.WriteLine(http.LastErrorText)
    Exit Sub
End If


Dim jResp As New Chilkat.JsonObject
jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = False

Debug.WriteLine("Response Body:")
Debug.WriteLine(jResp.Emit())

Dim respStatusCode As Integer = http.LastStatus
Debug.WriteLine("Response Status Code = " & respStatusCode)
If (respStatusCode >= 400) Then
    Debug.WriteLine("Response Header:")
    Debug.WriteLine(http.LastHeader)
    Debug.WriteLine("Failed.")
    Exit Sub
End If


' Sample JSON response:
' (Sample code for parsing the JSON response is shown below)

' {
'   "id": "/users/XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
'   "firstname": "John",
'   "lastname": "Doe",
'   "email": "john.doe@yousign.fr",
'   "title": "Developer",
'   "phone": "+33612345678",
'   "status": "activated",
'   "organization": "/organizations/XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
'   "workspaces": [
'     {
'       "id": "/workspaces/XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
'       "name": "Acme"
'     }
'   ],
'   "permission": "ROLE_ADMIN",
'   "group": {
'     "id": "/user_groups/XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
'     "name": "Administrateur",
'     "permissions": [
'       "procedure_write",
'       "procedure_template_write",
'       "procedure_create_from_template",
'       "contact",
'       "sign",
'       "organization",
'       "user",
'       "api_key",
'       "procedure_custom_field",
'       "signature_ui",
'       "certificate",
'       "archive"
'     ]
'   },
'   "createdAt": "2018-12-01T09:42:25+01:00",
'   "updatedAt": "2018-12-01T09:42:25+01:00",
'   "deleted": false,
'   "deletedAt": null,
'   "config": [
'   ],
'   "inweboUserRequest": null,
'   "samlNameId": null,
'   "defaultSignImage": null,
'   "notifications": {
'     "procedure": true
'   },
'   "fastSign": false,
'   "fullName": "John Doe"
' }

' 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 name As String
Dim strVal As String

Dim id As String = jResp.StringOf("id")
Dim firstname As String = jResp.StringOf("firstname")
Dim lastname As String = jResp.StringOf("lastname")
Dim email As String = jResp.StringOf("email")
Dim title As String = jResp.StringOf("title")
Dim phone As String = jResp.StringOf("phone")
Dim status As String = jResp.StringOf("status")
Dim organization As String = jResp.StringOf("organization")
Dim permission As String = jResp.StringOf("permission")
Dim groupId As String = jResp.StringOf("group.id")
Dim groupName As String = jResp.StringOf("group.name")
Dim createdAt As String = jResp.StringOf("createdAt")
Dim updatedAt As String = jResp.StringOf("updatedAt")
Dim deleted As Boolean = jResp.BoolOf("deleted")
Dim deletedAt As String = jResp.StringOf("deletedAt")
Dim inweboUserRequest As String = jResp.StringOf("inweboUserRequest")
Dim samlNameId As String = jResp.StringOf("samlNameId")
Dim defaultSignImage As String = jResp.StringOf("defaultSignImage")
Dim notificationsProcedure As Boolean = jResp.BoolOf("notifications.procedure")
Dim fastSign As Boolean = jResp.BoolOf("fastSign")
Dim fullName As String = jResp.StringOf("fullName")
Dim i As Integer = 0
Dim count_i As Integer = jResp.SizeOfArray("workspaces")
While i < count_i
    jResp.I = i
    id = jResp.StringOf("workspaces[i].id")
    name = jResp.StringOf("workspaces[i].name")
    i = i + 1
End While
i = 0
count_i = jResp.SizeOfArray("group.permissions")
While i < count_i
    jResp.I = i
    strVal = jResp.StringOf("group.permissions[i]")
    i = i + 1
End While
i = 0
count_i = jResp.SizeOfArray("config")
While i < count_i
    jResp.I = i
    i = i + 1
End While

 

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