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

Mono C# Web API Examples

Primary Categories

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

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
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 API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(Mono C#) Bluzone Get Project Details

Get a project by its id

For more information, see https://bluzone.io/portal/static/docs/index.html#_getprojectbyprojectid

Chilkat .NET Downloads

Chilkat .NET Assemblies

Chilkat for .NET Core

Chilkat for Mono

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

Chilkat.Http http = new Chilkat.Http();
bool success;

// 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");

Chilkat.StringBuilder sbResponseBody = new Chilkat.StringBuilder();
success = http.QuickGetSb("https://bluzone.io/portal/papis/v1/projects/YOUR_PROJECT_ID_HERE/",sbResponseBody);
if (success == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Chilkat.JsonObject jResp = new Chilkat.JsonObject();
jResp.LoadSb(sbResponseBody);
jResp.EmitCompact = false;

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

int respStatusCode = http.LastStatus;
Debug.WriteLine("Response Status Code = " + Convert.ToString(respStatusCode));
if (respStatusCode >= 400) {
    Debug.WriteLine("Response Header:");
    Debug.WriteLine(http.LastHeader);
    Debug.WriteLine("Failed.");
    return;
}

// 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

int projectId;
string name;
string description;
string status;
string ownerUsername;
string ownerEmailAddress;
string defaultUuidValue;
bool enableLocusMaps;
string mapProviderType;
bool enableAdvancedPackets;
string enabledPacketTypes;
bool enableDataUnload;
bool enableScanConsumer;
bool enablePolicyConsumer;
bool enableLocationConsumer;
bool enableEmail;
string firmwareUpdateStrategy;
int deviceJobConcurrency;
string mapProviderApiKey;
string wakeupUuid;
string reportTimezone;
string language;
string blufiHostnameNaming;
int dateCreated;
int dateUpdated;
bool enableStreamProducer;
bool enableMetricStorage;
int i;
int count_i;

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;
}


 

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