Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(VB.NET UWP/WinRT) Bluzone Get Project DetailsGet a project by its id For more information, see https://bluzone.io/portal/static/docs/index.html#_getprojectbyprojectid
' 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 -X GET \ ' https://bluzone.io/portal/papis/v1/projects/YOUR_PROJECT_ID_HERE/ \ ' -H 'bzid: YOUR_API_KEY_HERE' http.SetRequestHeader("bzid","YOUR_API_KEY_HERE") Dim sbResponseBody As New Chilkat.StringBuilder success = Await http.QuickGetSbAsync("https://bluzone.io/portal/papis/v1/projects/YOUR_PROJECT_ID_HERE/",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: ' { ' "projectId": 36845, ' "name": "My Project", ' "description": "Default Project for admin@chilkatsoft.com, created on Thu Jun 06 17:18:11 GMT 2019.", ' "status": null, ' "owner": { ' "username": "admin@chilkatsoft.com", ' "emailAddress": null ' }, ' "defaultUuidValue": "1b4b243c-59aa-405f-90b5-0c434cac1345", ' "enableLocusMaps": false, ' "mapProviderType": "GOOGLE", ' "enableAdvancedPackets": false, ' "enabledPacketTypes": "sBv2", ' "enableDataUnload": false, ' "enableScanConsumer": false, ' "enablePolicyConsumer": false, ' "enableLocationConsumer": false, ' "enableEmail": true, ' "firmwareUpdateStrategy": "MANUAL", ' "deviceJobConcurrency": -1, ' "mapProviderApiKey": null, ' "wakeupUuid": null, ' "reportEmailList": [ ' ], ' "reportTimezone": "Etc/GMT", ' "language": "en", ' "blufiHostnameNaming": "DEFAULT", ' "dateCreated": 1559841491000, ' "dateUpdated": 1559841491000, ' "enableStreamProducer": true, ' "enableMetricStorage": 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 projectId As Integer Dim name As String Dim description As String Dim status As String Dim ownerUsername As String Dim ownerEmailAddress As String Dim defaultUuidValue As String Dim enableLocusMaps As Boolean Dim mapProviderType As String Dim enableAdvancedPackets As Boolean Dim enabledPacketTypes As String Dim enableDataUnload As Boolean Dim enableScanConsumer As Boolean Dim enablePolicyConsumer As Boolean Dim enableLocationConsumer As Boolean Dim enableEmail As Boolean Dim firmwareUpdateStrategy As String Dim deviceJobConcurrency As Integer Dim mapProviderApiKey As String Dim wakeupUuid As String Dim reportTimezone As String Dim language As String Dim blufiHostnameNaming As String Dim dateCreated As Integer Dim dateUpdated As Integer Dim enableStreamProducer As Boolean Dim enableMetricStorage As Boolean Dim i As Integer Dim count_i As Integer projectId = jResp.IntOf("projectId") name = jResp.StringOf("name") description = jResp.StringOf("description") status = jResp.StringOf("status") ownerUsername = jResp.StringOf("owner.username") ownerEmailAddress = jResp.StringOf("owner.emailAddress") defaultUuidValue = jResp.StringOf("defaultUuidValue") enableLocusMaps = jResp.BoolOf("enableLocusMaps") mapProviderType = jResp.StringOf("mapProviderType") enableAdvancedPackets = jResp.BoolOf("enableAdvancedPackets") enabledPacketTypes = jResp.StringOf("enabledPacketTypes") enableDataUnload = jResp.BoolOf("enableDataUnload") enableScanConsumer = jResp.BoolOf("enableScanConsumer") enablePolicyConsumer = jResp.BoolOf("enablePolicyConsumer") enableLocationConsumer = jResp.BoolOf("enableLocationConsumer") enableEmail = jResp.BoolOf("enableEmail") firmwareUpdateStrategy = jResp.StringOf("firmwareUpdateStrategy") deviceJobConcurrency = jResp.IntOf("deviceJobConcurrency") mapProviderApiKey = jResp.StringOf("mapProviderApiKey") wakeupUuid = jResp.StringOf("wakeupUuid") reportTimezone = jResp.StringOf("reportTimezone") language = jResp.StringOf("language") blufiHostnameNaming = jResp.StringOf("blufiHostnameNaming") dateCreated = jResp.IntOf("dateCreated") dateUpdated = jResp.IntOf("dateUpdated") enableStreamProducer = jResp.BoolOf("enableStreamProducer") enableMetricStorage = jResp.BoolOf("enableMetricStorage") i = 0 count_i = jResp.SizeOfArray("reportEmailList") While i < count_i jResp.I = i i = i + 1 End While |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.