Chilkat Online Tools

PowerBuilder / Belvo API Docs / Detail

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Value
string ls_Id
string ls_Id
string ls_Value
string ls_InstitutionValue
string ls_Collected_atValue
string ls_CategoryValue
string ls_TypeValue
string ls_NameValue
string ls_NumberValue
string ls_BalanceValue
string ls_CurrencyValue
string ls_Bank_product_idValue
string ls_Internal_identificationValue
string ls_Public_identification_nameValue
string ls_Public_identification_valueValue
string ls_Last_accessed_atValue
string ls_Credit_dataValue
string ls_Loan_dataValue
string ls_Funds_dataValue
string ls_Gig_payment_dataValue
string ls_Collected_at
string ls_Value_date
string ls_Accounting_date
string ls_Amount
string ls_Balance
string ls_V_currency
string ls_Description
string ls_Observations
string ls_Category
string ls_Reference
string ls_V_type
string ls_Status
string ls_Pickup_at
string ls_Dropoff_at
string ls_Request_at
string ls_Pickup_address
string ls_Dropoff_address
string ls_Pickup_latitude
string ls_Pickup_longitude
string ls_Dropoff_latitude
string ls_Dropoff_longitude
string ls_Distance
string ls_Payment_method
string ls_Vehicle_type
string ls_Merchant_type
string ls_Collected_at
string ls_Bill_name
integer i
integer li_Count_i

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_Http.BasicAuth = 1
loo_Http.Login = "{{secretId}}"
loo_Http.Password = "{{secretPassword}}"

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

li_Success = loo_Http.QuickGetSb("https://domain.com/api/transactions/:id/",loo_SbResponseBody)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbResponseBody
    return
end if

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Http.LastHeader
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

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

// {
//   "id": "<uuid>",
//   "account": {
//     "id": "<uuid>",
//     "link": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "institution": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "collected_at": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "category": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "type": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "name": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "number": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "balance": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "currency": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "bank_product_id": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "internal_identification": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "public_identification_name": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "public_identification_value": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "last_accessed_at": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "credit_data": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "loan_data": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "funds_data": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     },
//     "gig_payment_data": {
//       "value": "<Error: Too many levels of nesting to fake this schema>"
//     }
//   },
//   "collected_at": "<date>",
//   "value_date": "<string>",
//   "accounting_date": "<date>",
//   "amount": "<number>",
//   "balance": "<number>",
//   "currency": "<string>",
//   "description": "<string>",
//   "observations": "<string>",
//   "category": "<string>",
//   "reference": "<string>",
//   "type": "eiusmod veniam ea sint",
//   "status": "est nostrud",
//   "gig_data": {
//     "pickup_at": "<dateTime>",
//     "dropoff_at": "<dateTime>",
//     "request_at": "<dateTime>",
//     "pickup_address": "<string>",
//     "dropoff_address": "<string>",
//     "pickup_latitude": "<number>",
//     "pickup_longitude": "<number>",
//     "dropoff_latitude": "<number>",
//     "dropoff_longitude": "<number>",
//     "distance": "<number>",
//     "payment_method": "<string>",
//     "vehicle_type": "<string>",
//     "merchant_type": "<string>",
//     "breakdown": [
//       {
//         "value": "<Error: Too many levels of nesting to fake this schema>"
//       },
//       {
//         "value": "<Error: Too many levels of nesting to fake this schema>"
//       }
//     ],
//     "collected_at": "<dateTime>"
//   },
//   "credit_card_data": {
//     "bill_name": "<string>"
//   }
// }

// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

ls_Id = loo_JResp.StringOf("id")
ls_Id = loo_JResp.StringOf("account.id")
ls_Value = loo_JResp.StringOf("account.link.value")
ls_InstitutionValue = loo_JResp.StringOf("account.institution.value")
ls_Collected_atValue = loo_JResp.StringOf("account.collected_at.value")
ls_CategoryValue = loo_JResp.StringOf("account.category.value")
ls_TypeValue = loo_JResp.StringOf("account.type.value")
ls_NameValue = loo_JResp.StringOf("account.name.value")
ls_NumberValue = loo_JResp.StringOf("account.number.value")
ls_BalanceValue = loo_JResp.StringOf("account.balance.value")
ls_CurrencyValue = loo_JResp.StringOf("account.currency.value")
ls_Bank_product_idValue = loo_JResp.StringOf("account.bank_product_id.value")
ls_Internal_identificationValue = loo_JResp.StringOf("account.internal_identification.value")
ls_Public_identification_nameValue = loo_JResp.StringOf("account.public_identification_name.value")
ls_Public_identification_valueValue = loo_JResp.StringOf("account.public_identification_value.value")
ls_Last_accessed_atValue = loo_JResp.StringOf("account.last_accessed_at.value")
ls_Credit_dataValue = loo_JResp.StringOf("account.credit_data.value")
ls_Loan_dataValue = loo_JResp.StringOf("account.loan_data.value")
ls_Funds_dataValue = loo_JResp.StringOf("account.funds_data.value")
ls_Gig_payment_dataValue = loo_JResp.StringOf("account.gig_payment_data.value")
ls_Collected_at = loo_JResp.StringOf("collected_at")
ls_Value_date = loo_JResp.StringOf("value_date")
ls_Accounting_date = loo_JResp.StringOf("accounting_date")
ls_Amount = loo_JResp.StringOf("amount")
ls_Balance = loo_JResp.StringOf("balance")
ls_V_currency = loo_JResp.StringOf("currency")
ls_Description = loo_JResp.StringOf("description")
ls_Observations = loo_JResp.StringOf("observations")
ls_Category = loo_JResp.StringOf("category")
ls_Reference = loo_JResp.StringOf("reference")
ls_V_type = loo_JResp.StringOf("type")
ls_Status = loo_JResp.StringOf("status")
ls_Pickup_at = loo_JResp.StringOf("gig_data.pickup_at")
ls_Dropoff_at = loo_JResp.StringOf("gig_data.dropoff_at")
ls_Request_at = loo_JResp.StringOf("gig_data.request_at")
ls_Pickup_address = loo_JResp.StringOf("gig_data.pickup_address")
ls_Dropoff_address = loo_JResp.StringOf("gig_data.dropoff_address")
ls_Pickup_latitude = loo_JResp.StringOf("gig_data.pickup_latitude")
ls_Pickup_longitude = loo_JResp.StringOf("gig_data.pickup_longitude")
ls_Dropoff_latitude = loo_JResp.StringOf("gig_data.dropoff_latitude")
ls_Dropoff_longitude = loo_JResp.StringOf("gig_data.dropoff_longitude")
ls_Distance = loo_JResp.StringOf("gig_data.distance")
ls_Payment_method = loo_JResp.StringOf("gig_data.payment_method")
ls_Vehicle_type = loo_JResp.StringOf("gig_data.vehicle_type")
ls_Merchant_type = loo_JResp.StringOf("gig_data.merchant_type")
ls_Collected_at = loo_JResp.StringOf("gig_data.collected_at")
ls_Bill_name = loo_JResp.StringOf("credit_card_data.bill_name")
i = 0
li_Count_i = loo_JResp.SizeOfArray("gig_data.breakdown")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Value = loo_JResp.StringOf("gig_data.breakdown[i].value")
    i = i + 1
loop


destroy loo_Http
destroy loo_SbResponseBody
destroy loo_JResp

Curl Command

curl -X GET
	-u '{{secretId}}:{{secretPassword}}'
https://domain.com/api/transactions/:id/

Postman Collection Item JSON

{
  "name": "Detail",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{baseUrl}}/api/transactions/:id/",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "transactions",
        ":id",
        ""
      ],
      "variable": [
        {
          "key": "id",
          "value": "consequa",
          "description": "(Required) The `transaction.id` you want to get detailed information about."
        }
      ]
    },
    "description": "Get the details of a specific transaction."
  },
  "response": [
    {
      "name": "Ok",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/transactions/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "transactions",
            ":id"
          ],
          "variable": [
            {
              "key": "id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n\t\"id\": \"<uuid>\",\n\t\"account\": {\n\t\t\"id\": \"<uuid>\",\n\t\t\"link\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"institution\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"collected_at\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"category\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"type\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"name\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"number\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"balance\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"currency\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"bank_product_id\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"internal_identification\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"public_identification_name\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"public_identification_value\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"last_accessed_at\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"credit_data\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"loan_data\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"funds_data\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t},\n\t\t\"gig_payment_data\": {\n\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t}\n\t},\n\t\"collected_at\": \"<date>\",\n\t\"value_date\": \"<string>\",\n\t\"accounting_date\": \"<date>\",\n\t\"amount\": \"<number>\",\n\t\"balance\": \"<number>\",\n\t\"currency\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"observations\": \"<string>\",\n\t\"category\": \"<string>\",\n\t\"reference\": \"<string>\",\n\t\"type\": \"eiusmod veniam ea sint\",\n\t\"status\": \"est nostrud\",\n\t\"gig_data\": {\n\t\t\"pickup_at\": \"<dateTime>\",\n\t\t\"dropoff_at\": \"<dateTime>\",\n\t\t\"request_at\": \"<dateTime>\",\n\t\t\"pickup_address\": \"<string>\",\n\t\t\"dropoff_address\": \"<string>\",\n\t\t\"pickup_latitude\": \"<number>\",\n\t\t\"pickup_longitude\": \"<number>\",\n\t\t\"dropoff_latitude\": \"<number>\",\n\t\t\"dropoff_longitude\": \"<number>\",\n\t\t\"distance\": \"<number>\",\n\t\t\"payment_method\": \"<string>\",\n\t\t\"vehicle_type\": \"<string>\",\n\t\t\"merchant_type\": \"<string>\",\n\t\t\"breakdown\": [\n\t\t\t{\n\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t}\n\t\t],\n\t\t\"collected_at\": \"<dateTime>\"\n\t},\n\t\"credit_card_data\": {\n\t\t\"bill_name\": \"<string>\"\n\t}\n}"
    },
    {
      "name": "Unauthorized",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/transactions/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "transactions",
            ":id"
          ],
          "variable": [
            {
              "key": "id"
            }
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "[\n\t{\n\t\t\"code\": \"<string>\",\n\t\t\"message\": \"<string>\",\n\t\t\"request_id\": \"<string>\"\n\t},\n\t{\n\t\t\"code\": \"<string>\",\n\t\t\"message\": \"<string>\",\n\t\t\"request_id\": \"<string>\"\n\t}\n]"
    },
    {
      "name": "Too Many Sessions",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/transactions/:id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "transactions",
            ":id"
          ],
          "variable": [
            {
              "key": "id"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "[\n\t{\n\t\t\"code\": \"<string>\",\n\t\t\"message\": \"<string>\",\n\t\t\"request_id\": \"<string>\"\n\t},\n\t{\n\t\t\"code\": \"<string>\",\n\t\t\"message\": \"<string>\",\n\t\t\"request_id\": \"<string>\"\n\t}\n]"
    }
  ]
}