Chilkat Online Tools

PowerBuilder / Belvo API Docs / List

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_QueryParams
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
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 j
integer li_Count_j
string ls_Value
string ls_Count
string ls_V_next
string ls_Previous
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_QueryParams = create oleobject
li_rc = loo_QueryParams.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_QueryParams.UpdateInt("page",1)

loo_Resp = loo_Http.QuickRequestParams("GET","https://domain.com/api/transactions/",loo_QueryParams)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_QueryParams
    return
end if

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

loo_Resp.GetBodySb(loo_SbResponseBody)

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_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Resp.Header
    Write-Debug "Failed."
    destroy loo_Resp
    destroy loo_Http
    destroy loo_QueryParams
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

destroy loo_Resp

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

// {
//   "count": "<integer>",
//   "next": "<string>",
//   "previous": "<string>",
//   "results": [
//     {
//       "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": "ipsum quis",
//       "status": "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>"
//       }
//     },
//     {
//       "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": "labore sunt ad",
//       "status": "commodo",
//       "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_Count = loo_JResp.StringOf("count")
ls_V_next = loo_JResp.StringOf("next")
ls_Previous = loo_JResp.StringOf("previous")
i = 0
li_Count_i = loo_JResp.SizeOfArray("results")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Id = loo_JResp.StringOf("results[i].id")
    ls_Id = loo_JResp.StringOf("results[i].account.id")
    ls_Value = loo_JResp.StringOf("results[i].account.link.value")
    ls_InstitutionValue = loo_JResp.StringOf("results[i].account.institution.value")
    ls_Collected_atValue = loo_JResp.StringOf("results[i].account.collected_at.value")
    ls_CategoryValue = loo_JResp.StringOf("results[i].account.category.value")
    ls_TypeValue = loo_JResp.StringOf("results[i].account.type.value")
    ls_NameValue = loo_JResp.StringOf("results[i].account.name.value")
    ls_NumberValue = loo_JResp.StringOf("results[i].account.number.value")
    ls_BalanceValue = loo_JResp.StringOf("results[i].account.balance.value")
    ls_CurrencyValue = loo_JResp.StringOf("results[i].account.currency.value")
    ls_Bank_product_idValue = loo_JResp.StringOf("results[i].account.bank_product_id.value")
    ls_Internal_identificationValue = loo_JResp.StringOf("results[i].account.internal_identification.value")
    ls_Public_identification_nameValue = loo_JResp.StringOf("results[i].account.public_identification_name.value")
    ls_Public_identification_valueValue = loo_JResp.StringOf("results[i].account.public_identification_value.value")
    ls_Last_accessed_atValue = loo_JResp.StringOf("results[i].account.last_accessed_at.value")
    ls_Credit_dataValue = loo_JResp.StringOf("results[i].account.credit_data.value")
    ls_Loan_dataValue = loo_JResp.StringOf("results[i].account.loan_data.value")
    ls_Funds_dataValue = loo_JResp.StringOf("results[i].account.funds_data.value")
    ls_Gig_payment_dataValue = loo_JResp.StringOf("results[i].account.gig_payment_data.value")
    ls_Collected_at = loo_JResp.StringOf("results[i].collected_at")
    ls_Value_date = loo_JResp.StringOf("results[i].value_date")
    ls_Accounting_date = loo_JResp.StringOf("results[i].accounting_date")
    ls_Amount = loo_JResp.StringOf("results[i].amount")
    ls_Balance = loo_JResp.StringOf("results[i].balance")
    ls_V_currency = loo_JResp.StringOf("results[i].currency")
    ls_Description = loo_JResp.StringOf("results[i].description")
    ls_Observations = loo_JResp.StringOf("results[i].observations")
    ls_Category = loo_JResp.StringOf("results[i].category")
    ls_Reference = loo_JResp.StringOf("results[i].reference")
    ls_V_type = loo_JResp.StringOf("results[i].type")
    ls_Status = loo_JResp.StringOf("results[i].status")
    ls_Pickup_at = loo_JResp.StringOf("results[i].gig_data.pickup_at")
    ls_Dropoff_at = loo_JResp.StringOf("results[i].gig_data.dropoff_at")
    ls_Request_at = loo_JResp.StringOf("results[i].gig_data.request_at")
    ls_Pickup_address = loo_JResp.StringOf("results[i].gig_data.pickup_address")
    ls_Dropoff_address = loo_JResp.StringOf("results[i].gig_data.dropoff_address")
    ls_Pickup_latitude = loo_JResp.StringOf("results[i].gig_data.pickup_latitude")
    ls_Pickup_longitude = loo_JResp.StringOf("results[i].gig_data.pickup_longitude")
    ls_Dropoff_latitude = loo_JResp.StringOf("results[i].gig_data.dropoff_latitude")
    ls_Dropoff_longitude = loo_JResp.StringOf("results[i].gig_data.dropoff_longitude")
    ls_Distance = loo_JResp.StringOf("results[i].gig_data.distance")
    ls_Payment_method = loo_JResp.StringOf("results[i].gig_data.payment_method")
    ls_Vehicle_type = loo_JResp.StringOf("results[i].gig_data.vehicle_type")
    ls_Merchant_type = loo_JResp.StringOf("results[i].gig_data.merchant_type")
    ls_Collected_at = loo_JResp.StringOf("results[i].gig_data.collected_at")
    ls_Bill_name = loo_JResp.StringOf("results[i].credit_card_data.bill_name")
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("results[i].gig_data.breakdown")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Value = loo_JResp.StringOf("results[i].gig_data.breakdown[j].value")
        j = j + 1
    loop
    i = i + 1
loop


destroy loo_Http
destroy loo_QueryParams
destroy loo_SbResponseBody
destroy loo_JResp

Curl Command

curl -G -d "page=1"
	-u '{{secretId}}:{{secretPassword}}'
https://domain.com/api/transactions/

Postman Collection Item JSON

{
  "name": "List",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{baseUrl}}/api/transactions/?page=1",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "transactions",
        ""
      ],
      "query": [
        {
          "key": "page",
          "value": "1",
          "description": "A page number within the paginated result set."
        }
      ]
    },
    "description": "Get a paginated list of all existing transactions in your Belvo account. We return up to 100 results per page."
  },
  "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?page=<integer>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "transactions"
          ],
          "query": [
            {
              "key": "page",
              "value": "<integer>"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n\t\"count\": \"<integer>\",\n\t\"next\": \"<string>\",\n\t\"previous\": \"<string>\",\n\t\"results\": [\n\t\t{\n\t\t\t\"id\": \"<uuid>\",\n\t\t\t\"account\": {\n\t\t\t\t\"id\": \"<uuid>\",\n\t\t\t\t\"link\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"institution\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"collected_at\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"category\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"type\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"name\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"number\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"balance\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"currency\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"bank_product_id\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"internal_identification\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"public_identification_name\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"public_identification_value\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"last_accessed_at\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"credit_data\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"loan_data\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"funds_data\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"gig_payment_data\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"collected_at\": \"<date>\",\n\t\t\t\"value_date\": \"<string>\",\n\t\t\t\"accounting_date\": \"<date>\",\n\t\t\t\"amount\": \"<number>\",\n\t\t\t\"balance\": \"<number>\",\n\t\t\t\"currency\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"observations\": \"<string>\",\n\t\t\t\"category\": \"<string>\",\n\t\t\t\"reference\": \"<string>\",\n\t\t\t\"type\": \"ipsum quis\",\n\t\t\t\"status\": \"nostrud\",\n\t\t\t\"gig_data\": {\n\t\t\t\t\"pickup_at\": \"<dateTime>\",\n\t\t\t\t\"dropoff_at\": \"<dateTime>\",\n\t\t\t\t\"request_at\": \"<dateTime>\",\n\t\t\t\t\"pickup_address\": \"<string>\",\n\t\t\t\t\"dropoff_address\": \"<string>\",\n\t\t\t\t\"pickup_latitude\": \"<number>\",\n\t\t\t\t\"pickup_longitude\": \"<number>\",\n\t\t\t\t\"dropoff_latitude\": \"<number>\",\n\t\t\t\t\"dropoff_longitude\": \"<number>\",\n\t\t\t\t\"distance\": \"<number>\",\n\t\t\t\t\"payment_method\": \"<string>\",\n\t\t\t\t\"vehicle_type\": \"<string>\",\n\t\t\t\t\"merchant_type\": \"<string>\",\n\t\t\t\t\"breakdown\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"collected_at\": \"<dateTime>\"\n\t\t\t},\n\t\t\t\"credit_card_data\": {\n\t\t\t\t\"bill_name\": \"<string>\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<uuid>\",\n\t\t\t\"account\": {\n\t\t\t\t\"id\": \"<uuid>\",\n\t\t\t\t\"link\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"institution\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"collected_at\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"category\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"type\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"name\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"number\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"balance\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"currency\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"bank_product_id\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"internal_identification\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"public_identification_name\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"public_identification_value\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"last_accessed_at\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"credit_data\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"loan_data\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"funds_data\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t},\n\t\t\t\t\"gig_payment_data\": {\n\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"collected_at\": \"<date>\",\n\t\t\t\"value_date\": \"<string>\",\n\t\t\t\"accounting_date\": \"<date>\",\n\t\t\t\"amount\": \"<number>\",\n\t\t\t\"balance\": \"<number>\",\n\t\t\t\"currency\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"observations\": \"<string>\",\n\t\t\t\"category\": \"<string>\",\n\t\t\t\"reference\": \"<string>\",\n\t\t\t\"type\": \"labore sunt ad\",\n\t\t\t\"status\": \"commodo\",\n\t\t\t\"gig_data\": {\n\t\t\t\t\"pickup_at\": \"<dateTime>\",\n\t\t\t\t\"dropoff_at\": \"<dateTime>\",\n\t\t\t\t\"request_at\": \"<dateTime>\",\n\t\t\t\t\"pickup_address\": \"<string>\",\n\t\t\t\t\"dropoff_address\": \"<string>\",\n\t\t\t\t\"pickup_latitude\": \"<number>\",\n\t\t\t\t\"pickup_longitude\": \"<number>\",\n\t\t\t\t\"dropoff_latitude\": \"<number>\",\n\t\t\t\t\"dropoff_longitude\": \"<number>\",\n\t\t\t\t\"distance\": \"<number>\",\n\t\t\t\t\"payment_method\": \"<string>\",\n\t\t\t\t\"vehicle_type\": \"<string>\",\n\t\t\t\t\"merchant_type\": \"<string>\",\n\t\t\t\t\"breakdown\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"collected_at\": \"<dateTime>\"\n\t\t\t},\n\t\t\t\"credit_card_data\": {\n\t\t\t\t\"bill_name\": \"<string>\"\n\t\t\t}\n\t\t}\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?page=<integer>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "transactions"
          ],
          "query": [
            {
              "key": "page",
              "value": "<integer>"
            }
          ]
        }
      },
      "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]"
    }
  ]
}