Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Go) Yapily - Get Application SelfSee more Yapily ExamplesGet the information about the institutions configured in your application For more information, see https://docs.yapily.com/api/reference/#operation/getApplicationMe
// This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http := chilkat.NewHttp() var success bool // Implements the following CURL command: // curl -i -X GET \ // -u <username>:<password> \ // https://api.yapily.com/me // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code http.SetLogin("<username>") http.SetPassword("<password>") sbResponseBody := chilkat.NewStringBuilder() success = http.QuickGetSb("https://api.yapily.com/me",sbResponseBody) if success == false { fmt.Println(http.LastErrorText()) http.DisposeHttp() sbResponseBody.DisposeStringBuilder() return } jResp := chilkat.NewJsonObject() jResp.LoadSb(sbResponseBody) jResp.SetEmitCompact(false) fmt.Println("Response Body:") fmt.Println(*jResp.Emit()) respStatusCode := http.LastStatus() fmt.Println("Response Status Code = ", respStatusCode) if respStatusCode >= 400 { fmt.Println("Response Header:") fmt.Println(http.LastHeader()) fmt.Println("Failed.") http.DisposeHttp() sbResponseBody.DisposeStringBuilder() jResp.DisposeJsonObject() return } // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "uuid": "64949de6-6510-4d70-9500-d4aa094c506c", // "name": "APPLICATION NAME", // "active": true, // "authCallbacks": [ // "https://display-parameters.com/" // ], // "institutions": [ // { // "id": "modelo-sandbox", // "name": "Modelo Sandbox", // "fullName": "Modelo Sandbox", // "countries": [ // { // "displayName": "United Kingdom", // "countryCode2": "GB" // } // ], // "environmentType": "SANDBOX", // "credentialsType": "OPEN_BANKING_UK_AUTO", // "media": [ // { // "source": "https://images.yapily.com/image/ce2bfdbf-1ae2-4919-ab7b-e8b3d5e93b36?size=0", // "type": "icon" // }, // { // "source": "https://images.yapily.com/image/ca502f24-d6df-4785-b4b8-1034b100af77?size=0", // "type": "logo" // } // ], // "features": [ // "INITIATE_SINGLE_PAYMENT_SORTCODE", // "CREATE_DOMESTIC_PERIODIC_PAYMENT", // "ACCOUNT_REQUEST_DETAILS", // "ACCOUNT_STATEMENT_FILE", // "CREATE_SINGLE_PAYMENT_SORTCODE", // "ACCOUNTS", // "CREATE_DOMESTIC_SCHEDULED_PAYMENT", // "ACCOUNT_PERIODIC_PAYMENTS", // "CREATE_DOMESTIC_SINGLE_PAYMENT", // "INITIATE_DOMESTIC_PERIODIC_PAYMENT", // "EXISTING_PAYMENTS_DETAILS", // "INITIATE_BULK_PAYMENT", // "EXISTING_PAYMENT_INITIATION_DETAILS", // "ACCOUNT_DIRECT_DEBITS", // "ACCOUNT_TRANSACTIONS", // "INITIATE_DOMESTIC_SINGLE_PAYMENT", // "PERIODIC_PAYMENT_FREQUENCY_EXTENDED", // "CREATE_INTERNATIONAL_SINGLE_PAYMENT", // "ACCOUNT_SCHEDULED_PAYMENTS", // "ACCOUNT", // "ACCOUNT_STATEMENTS", // "ACCOUNT_TRANSACTIONS_WITH_MERCHANT", // "CREATE_BULK_PAYMENT", // "ACCOUNT_BALANCES", // "INITIATE_INTERNATIONAL_SINGLE_PAYMENT", // "INITIATE_DOMESTIC_SCHEDULED_PAYMENT", // "ACCOUNT_BENEFICIARIES", // "IDENTITY", // "ACCOUNT_STATEMENT", // "INITIATE_ACCOUNT_REQUEST" // ] // } // ], // "media": [ // ], // "created": "2020-11-09T10:05:29.897+0000", // "updated": "2021-04-14T12:51:07.419+0000" // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON var strVal *string = new(string) var id *string = new(string) var fullName *string = new(string) var environmentType *string = new(string) var credentialsType *string = new(string) var j int var count_j int var displayName *string = new(string) var countryCode2 *string = new(string) var source *string = new(string) var v_type *string = new(string) uuid := jResp.StringOf("uuid") name := jResp.StringOf("name") active := jResp.BoolOf("active") created := jResp.StringOf("created") updated := jResp.StringOf("updated") i := 0 count_i := jResp.SizeOfArray("authCallbacks") for i < count_i { jResp.SetI(i) strVal = *jResp.StringOf("authCallbacks[i]") i = i + 1 } i = 0 count_i = jResp.SizeOfArray("institutions") for i < count_i { jResp.SetI(i) id = *jResp.StringOf("institutions[i].id") name = *jResp.StringOf("institutions[i].name") fullName = *jResp.StringOf("institutions[i].fullName") environmentType = *jResp.StringOf("institutions[i].environmentType") credentialsType = *jResp.StringOf("institutions[i].credentialsType") j = 0 count_j = jResp.SizeOfArray("institutions[i].countries") for j < count_j { jResp.SetJ(j) displayName = *jResp.StringOf("institutions[i].countries[j].displayName") countryCode2 = *jResp.StringOf("institutions[i].countries[j].countryCode2") j = j + 1 } j = 0 count_j = jResp.SizeOfArray("institutions[i].media") for j < count_j { jResp.SetJ(j) source = *jResp.StringOf("institutions[i].media[j].source") v_type = *jResp.StringOf("institutions[i].media[j].type") j = j + 1 } j = 0 count_j = jResp.SizeOfArray("institutions[i].features") for j < count_j { jResp.SetJ(j) strVal = *jResp.StringOf("institutions[i].features[j]") j = j + 1 } i = i + 1 } i = 0 count_i = jResp.SizeOfArray("media") for i < count_i { jResp.SetI(i) i = i + 1 } http.DisposeHttp() sbResponseBody.DisposeStringBuilder() jResp.DisposeJsonObject() |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.