Chilkat Online Tools

DataFlex / Belvo API Docs / Retrieve

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vJson
    Handle hoJson
    Variant vResp
    Handle hoResp
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJarrResp
    Integer iRespStatusCode
    Variant vJson
    Handle hoJson
    String sLink
    String sId
    String sName
    String sCategory
    String sV_Currency
    String sCollected_at
    String sAccount_number
    String sClient_number
    String sRFC
    String sCLABE
    String sPeriod_start_date
    String sPeriod_end_date
    String sCut_date
    String sFinal_balance
    String sPrevious_balance
    String sTotal_inflow_amount
    String sTotal_outflow_amount
    String sTotal_inflow_transactions
    String sTotal_outflow_transactions
    String sPdf
    Integer j
    Integer iCount_j
    String sValue
    String sAccounting_dateValue
    String sValue_dateValue
    String sReferenceValue
    String sObservationsValue
    String sAdditional_dataValue
    String sBalanceValue
    String sStatusValue
    String sTypeValue
    String sCurrencyValue
    String sDescriptionValue
    String sInternal_identificationValue
    String sAccountValue
    Integer i
    Integer iCount_i
    String sTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    Set ComBasicAuth Of hoHttp To True
    Set ComLogin Of hoHttp To "{{secretId}}"
    Set ComPassword Of hoHttp To "{{secretPassword}}"

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "link": "d4617561-1c01-4b2f-83b6-a594f7b3bc57",
    //   "account": "d4617561-1c01-4b2f-83b6-a594f7b3bc57",
    //   "year": "magna nisi",
    //   "month": "dolor commodo esse do",
    //   "token": "1234ab",
    //   "attach_pdf": false,
    //   "save_data": true
    // }

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComUpdateString Of hoJson "link" "d4617561-1c01-4b2f-83b6-a594f7b3bc57" To iSuccess
    Get ComUpdateString Of hoJson "account" "d4617561-1c01-4b2f-83b6-a594f7b3bc57" To iSuccess
    Get ComUpdateString Of hoJson "year" "magna nisi" To iSuccess
    Get ComUpdateString Of hoJson "month" "dolor commodo esse do" To iSuccess
    Get ComUpdateString Of hoJson "token" "1234ab" To iSuccess
    Get ComUpdateBool Of hoJson "attach_pdf" False To iSuccess
    Get ComUpdateBool Of hoJson "save_data" True To iSuccess

    Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"

    Get pvComObject of hoJson to vJson
    Get ComPostJson3 Of hoHttp "https://domain.com/api/statements/" "application/json" vJson To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess

    Get Create (RefClass(cComChilkatJsonArray)) To hoJarrResp
    If (Not(IsComObjectCreated(hoJarrResp))) Begin
        Send CreateComObject of hoJarrResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJarrResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJarrResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJarrResp To sTemp1
    Showln sTemp1

    Get ComStatusCode Of hoResp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Send Destroy of hoResp
        Procedure_Return
    End

    Send Destroy of hoResp

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

    // [
    //   {
    //     "link": "<string>",
    //     "account": {
    //       "id": "<uuid>",
    //       "name": "<string>",
    //       "category": "laboris Ut laborum officia id",
    //       "currency": "<string>"
    //     },
    //     "collected_at": "<dateTime>",
    //     "account_number": "<string>",
    //     "client_number": "<string>",
    //     "RFC": "<string>",
    //     "CLABE": "<string>",
    //     "period_start_date": "<date>",
    //     "period_end_date": "<date>",
    //     "cut_date": "<string>",
    //     "final_balance": "<number>",
    //     "previous_balance": "<number>",
    //     "total_inflow_amount": "<number>",
    //     "total_outflow_amount": "<number>",
    //     "total_inflow_transactions": "<number>",
    //     "total_outflow_transactions": "<number>",
    //     "transactions": [
    //       {
    //         "collected_at": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "accounting_date": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "value_date": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "reference": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "observations": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "additional_data": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "balance": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "status": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "type": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "currency": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "description": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "internal_identification": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "account": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         }
    //       },
    //       {
    //         "collected_at": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "accounting_date": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "value_date": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "reference": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "observations": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "additional_data": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "balance": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "status": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "type": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "currency": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "description": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "internal_identification": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "account": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         }
    //       }
    //     ],
    //     "pdf": "<binary>"
    //   },
    //   {
    //     "link": "<string>",
    //     "account": {
    //       "id": "<uuid>",
    //       "name": "<string>",
    //       "category": "incididunt laboris",
    //       "currency": "<string>"
    //     },
    //     "collected_at": "<dateTime>",
    //     "account_number": "<string>",
    //     "client_number": "<string>",
    //     "RFC": "<string>",
    //     "CLABE": "<string>",
    //     "period_start_date": "<date>",
    //     "period_end_date": "<date>",
    //     "cut_date": "<string>",
    //     "final_balance": "<number>",
    //     "previous_balance": "<number>",
    //     "total_inflow_amount": "<number>",
    //     "total_outflow_amount": "<number>",
    //     "total_inflow_transactions": "<number>",
    //     "total_outflow_transactions": "<number>",
    //     "transactions": [
    //       {
    //         "collected_at": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "accounting_date": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "value_date": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "reference": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "observations": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "additional_data": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "balance": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "status": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "type": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "currency": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "description": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "internal_identification": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "account": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         }
    //       },
    //       {
    //         "collected_at": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "accounting_date": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "value_date": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "reference": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "observations": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "additional_data": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "balance": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "status": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "type": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "currency": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "description": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "internal_identification": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         },
    //         "account": {
    //           "value": "<Error: Too many levels of nesting to fake this schema>"
    //         }
    //       }
    //     ],
    //     "pdf": "<binary>"
    //   }
    // ]

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

    Move 0 To i
    Get ComSize Of hoJarrResp To iCount_i
    While (i < iCount_i)
        Get ComObjectAt Of hoJarrResp i To vJson
        If (IsComObject(vJson)) Begin
            Get Create (RefClass(cComChilkatJsonObject)) To hoJson
            Set pvComObject Of hoJson To vJson
        End
        Get ComStringOf Of hoJson "link" To sLink
        Get ComStringOf Of hoJson "account.id" To sId
        Get ComStringOf Of hoJson "account.name" To sName
        Get ComStringOf Of hoJson "account.category" To sCategory
        Get ComStringOf Of hoJson "account.currency" To sV_Currency
        Get ComStringOf Of hoJson "collected_at" To sCollected_at
        Get ComStringOf Of hoJson "account_number" To sAccount_number
        Get ComStringOf Of hoJson "client_number" To sClient_number
        Get ComStringOf Of hoJson "RFC" To sRFC
        Get ComStringOf Of hoJson "CLABE" To sCLABE
        Get ComStringOf Of hoJson "period_start_date" To sPeriod_start_date
        Get ComStringOf Of hoJson "period_end_date" To sPeriod_end_date
        Get ComStringOf Of hoJson "cut_date" To sCut_date
        Get ComStringOf Of hoJson "final_balance" To sFinal_balance
        Get ComStringOf Of hoJson "previous_balance" To sPrevious_balance
        Get ComStringOf Of hoJson "total_inflow_amount" To sTotal_inflow_amount
        Get ComStringOf Of hoJson "total_outflow_amount" To sTotal_outflow_amount
        Get ComStringOf Of hoJson "total_inflow_transactions" To sTotal_inflow_transactions
        Get ComStringOf Of hoJson "total_outflow_transactions" To sTotal_outflow_transactions
        Get ComStringOf Of hoJson "pdf" To sPdf
        Move 0 To j
        Get ComSizeOfArray Of hoJson "transactions" To iCount_j
        While (j < iCount_j)
            Set ComJ Of hoJson To j
            Get ComStringOf Of hoJson "transactions[j].collected_at.value" To sValue
            Get ComStringOf Of hoJson "transactions[j].accounting_date.value" To sAccounting_dateValue
            Get ComStringOf Of hoJson "transactions[j].value_date.value" To sValue_dateValue
            Get ComStringOf Of hoJson "transactions[j].reference.value" To sReferenceValue
            Get ComStringOf Of hoJson "transactions[j].observations.value" To sObservationsValue
            Get ComStringOf Of hoJson "transactions[j].additional_data.value" To sAdditional_dataValue
            Get ComStringOf Of hoJson "transactions[j].balance.value" To sBalanceValue
            Get ComStringOf Of hoJson "transactions[j].status.value" To sStatusValue
            Get ComStringOf Of hoJson "transactions[j].type.value" To sTypeValue
            Get ComStringOf Of hoJson "transactions[j].currency.value" To sCurrencyValue
            Get ComStringOf Of hoJson "transactions[j].description.value" To sDescriptionValue
            Get ComStringOf Of hoJson "transactions[j].internal_identification.value" To sInternal_identificationValue
            Get ComStringOf Of hoJson "transactions[j].account.value" To sAccountValue
            Move (j + 1) To j
        Loop

        Send Destroy of hoJson
        Move (i + 1) To i
    Loop



End_Procedure

Curl Command

curl -X POST
	-u '{{secretId}}:{{secretPassword}}'
	-H "Content-Type: application/json"
	-d '{
    "link": "d4617561-1c01-4b2f-83b6-a594f7b3bc57",
    "account": "d4617561-1c01-4b2f-83b6-a594f7b3bc57",
    "year": "magna nisi",
    "month": "dolor commodo esse do",
    "token": "1234ab",
    "attach_pdf": false,
    "save_data": true
}'
https://domain.com/api/statements/

Postman Collection Item JSON

{
  "name": "Retrieve",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"link\": \"d4617561-1c01-4b2f-83b6-a594f7b3bc57\",\n    \"account\": \"d4617561-1c01-4b2f-83b6-a594f7b3bc57\",\n    \"year\": \"magna nisi\",\n    \"month\": \"dolor commodo esse do\",\n    \"token\": \"1234ab\",\n    \"attach_pdf\": false,\n    \"save_data\": true\n}"
    },
    "url": {
      "raw": "{{baseUrl}}/api/statements/",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "statements",
        ""
      ]
    },
    "description": "Retrieve statements information for a specific banking link.\n"
  },
  "response": [
    {
      "name": "Ok (when save_data=false)",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"link\": \"<uuid>\",\n    \"account\": \"<uuid>\",\n    \"year\": \"<string>\",\n    \"month\": \"<string>\",\n    \"token\": \"<string>\",\n    \"attach_pdf\": false,\n    \"encryption_key\": \"<string>\",\n    \"save_data\": true\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/statements",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "statements"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "[\n\t{\n\t\t\"link\": \"<string>\",\n\t\t\"account\": {\n\t\t\t\"id\": \"<uuid>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"category\": \"laboris Ut laborum officia id\",\n\t\t\t\"currency\": \"<string>\"\n\t\t},\n\t\t\"collected_at\": \"<dateTime>\",\n\t\t\"account_number\": \"<string>\",\n\t\t\"client_number\": \"<string>\",\n\t\t\"RFC\": \"<string>\",\n\t\t\"CLABE\": \"<string>\",\n\t\t\"period_start_date\": \"<date>\",\n\t\t\"period_end_date\": \"<date>\",\n\t\t\"cut_date\": \"<string>\",\n\t\t\"final_balance\": \"<number>\",\n\t\t\"previous_balance\": \"<number>\",\n\t\t\"total_inflow_amount\": \"<number>\",\n\t\t\"total_outflow_amount\": \"<number>\",\n\t\t\"total_inflow_transactions\": \"<number>\",\n\t\t\"total_outflow_transactions\": \"<number>\",\n\t\t\"transactions\": [\n\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\"accounting_date\": {\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\"value_date\": {\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\"reference\": {\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\"observations\": {\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\"additional_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\"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\"status\": {\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\"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\"description\": {\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\"account\": {\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{\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\"accounting_date\": {\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\"value_date\": {\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\"reference\": {\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\"observations\": {\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\"additional_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\"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\"status\": {\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\"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\"description\": {\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\"account\": {\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],\n\t\t\"pdf\": \"<binary>\"\n\t},\n\t{\n\t\t\"link\": \"<string>\",\n\t\t\"account\": {\n\t\t\t\"id\": \"<uuid>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"category\": \"incididunt laboris\",\n\t\t\t\"currency\": \"<string>\"\n\t\t},\n\t\t\"collected_at\": \"<dateTime>\",\n\t\t\"account_number\": \"<string>\",\n\t\t\"client_number\": \"<string>\",\n\t\t\"RFC\": \"<string>\",\n\t\t\"CLABE\": \"<string>\",\n\t\t\"period_start_date\": \"<date>\",\n\t\t\"period_end_date\": \"<date>\",\n\t\t\"cut_date\": \"<string>\",\n\t\t\"final_balance\": \"<number>\",\n\t\t\"previous_balance\": \"<number>\",\n\t\t\"total_inflow_amount\": \"<number>\",\n\t\t\"total_outflow_amount\": \"<number>\",\n\t\t\"total_inflow_transactions\": \"<number>\",\n\t\t\"total_outflow_transactions\": \"<number>\",\n\t\t\"transactions\": [\n\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\"accounting_date\": {\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\"value_date\": {\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\"reference\": {\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\"observations\": {\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\"additional_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\"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\"status\": {\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\"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\"description\": {\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\"account\": {\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{\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\"accounting_date\": {\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\"value_date\": {\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\"reference\": {\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\"observations\": {\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\"additional_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\"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\"status\": {\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\"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\"description\": {\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\"account\": {\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],\n\t\t\"pdf\": \"<binary>\"\n\t}\n]"
    },
    {
      "name": "Created (when save_data=true)",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"link\": \"<uuid>\",\n    \"account\": \"<uuid>\",\n    \"year\": \"<string>\",\n    \"month\": \"<string>\",\n    \"token\": \"<string>\",\n    \"attach_pdf\": false,\n    \"encryption_key\": \"<string>\",\n    \"save_data\": true\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/statements",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "statements"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "[\n\t{\n\t\t\"id\": \"<uuid>\",\n\t\t\"link\": \"<string>\",\n\t\t\"account\": {\n\t\t\t\"id\": \"<uuid>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"category\": \"in anim \",\n\t\t\t\"currency\": \"<string>\"\n\t\t},\n\t\t\"collected_at\": \"<dateTime>\",\n\t\t\"account_number\": \"<string>\",\n\t\t\"client_number\": \"<string>\",\n\t\t\"RFC\": \"<string>\",\n\t\t\"CLABE\": \"<string>\",\n\t\t\"period_start_date\": \"<date>\",\n\t\t\"period_end_date\": \"<date>\",\n\t\t\"cut_date\": \"<string>\",\n\t\t\"final_balance\": \"<number>\",\n\t\t\"previous_balance\": \"<number>\",\n\t\t\"total_inflow_amount\": \"<number>\",\n\t\t\"total_outflow_amount\": \"<number>\",\n\t\t\"total_inflow_transactions\": \"<number>\",\n\t\t\"total_outflow_transactions\": \"<number>\",\n\t\t\"transactions\": [\n\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\"accounting_date\": {\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\"value_date\": {\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\"reference\": {\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\"observations\": {\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\"additional_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\"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\"status\": {\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\"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\"description\": {\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\"account\": {\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{\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\"accounting_date\": {\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\"value_date\": {\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\"reference\": {\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\"observations\": {\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\"additional_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\"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\"status\": {\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\"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\"description\": {\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\"account\": {\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],\n\t\t\"pdf\": \"<binary>\"\n\t},\n\t{\n\t\t\"id\": \"<uuid>\",\n\t\t\"link\": \"<string>\",\n\t\t\"account\": {\n\t\t\t\"id\": \"<uuid>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"category\": \"ut minim exercitat\",\n\t\t\t\"currency\": \"<string>\"\n\t\t},\n\t\t\"collected_at\": \"<dateTime>\",\n\t\t\"account_number\": \"<string>\",\n\t\t\"client_number\": \"<string>\",\n\t\t\"RFC\": \"<string>\",\n\t\t\"CLABE\": \"<string>\",\n\t\t\"period_start_date\": \"<date>\",\n\t\t\"period_end_date\": \"<date>\",\n\t\t\"cut_date\": \"<string>\",\n\t\t\"final_balance\": \"<number>\",\n\t\t\"previous_balance\": \"<number>\",\n\t\t\"total_inflow_amount\": \"<number>\",\n\t\t\"total_outflow_amount\": \"<number>\",\n\t\t\"total_inflow_transactions\": \"<number>\",\n\t\t\"total_outflow_transactions\": \"<number>\",\n\t\t\"transactions\": [\n\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\"accounting_date\": {\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\"value_date\": {\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\"reference\": {\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\"observations\": {\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\"additional_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\"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\"status\": {\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\"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\"description\": {\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\"account\": {\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{\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\"accounting_date\": {\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\"value_date\": {\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\"reference\": {\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\"observations\": {\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\"additional_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\"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\"status\": {\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\"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\"description\": {\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\"account\": {\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],\n\t\t\"pdf\": \"<binary>\"\n\t}\n]"
    },
    {
      "name": "Bad request error",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"link\": \"<uuid>\",\n    \"account\": \"<uuid>\",\n    \"year\": \"<string>\",\n    \"month\": \"<string>\",\n    \"token\": \"<string>\",\n    \"attach_pdf\": false,\n    \"encryption_key\": \"<string>\",\n    \"save_data\": true\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/statements",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "statements"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_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": "Unauthorized",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"link\": \"<uuid>\",\n    \"account\": \"<uuid>\",\n    \"year\": \"<string>\",\n    \"month\": \"<string>\",\n    \"token\": \"<string>\",\n    \"attach_pdf\": false,\n    \"encryption_key\": \"<string>\",\n    \"save_data\": true\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/statements",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "statements"
          ]
        }
      },
      "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": "Request Timeout",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"link\": \"<uuid>\",\n    \"account\": \"<uuid>\",\n    \"year\": \"<string>\",\n    \"month\": \"<string>\",\n    \"token\": \"<string>\",\n    \"attach_pdf\": false,\n    \"encryption_key\": \"<string>\",\n    \"save_data\": true\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/statements",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "statements"
          ]
        }
      },
      "status": "Request Timeout",
      "code": 408,
      "_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": "MFA Token Required",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"link\": \"<uuid>\",\n    \"account\": \"<uuid>\",\n    \"year\": \"<string>\",\n    \"month\": \"<string>\",\n    \"token\": \"<string>\",\n    \"attach_pdf\": false,\n    \"encryption_key\": \"<string>\",\n    \"save_data\": true\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/statements",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "statements"
          ]
        }
      },
      "status": "Precondition Required",
      "code": 428,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n\t\"code\": \"<string>\",\n\t\"message\": \"<string>\",\n\t\"request_id\": \"<uuid>\",\n\t\"session\": \"<uuid>\",\n\t\"expiry\": \"<integer>\",\n\t\"link\": \"<uuid>\",\n\t\"token_generation_data\": {\n\t\t\"instructions\": \"<string>\",\n\t\t\"type\": \"<string>\",\n\t\t\"value\": \"<string>\"\n\t}\n}"
    },
    {
      "name": "Unexpected Error",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"link\": \"<uuid>\",\n    \"account\": \"<uuid>\",\n    \"year\": \"<string>\",\n    \"month\": \"<string>\",\n    \"token\": \"<string>\",\n    \"attach_pdf\": false,\n    \"encryption_key\": \"<string>\",\n    \"save_data\": true\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/statements",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "statements"
          ]
        }
      },
      "status": "Internal Server Error",
      "code": 500,
      "_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]"
    }
  ]
}