Chilkat Online Tools

PowerBuilder / EDS API / Struktūrvienību saraksts.

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_SbResponseBody
oleobject loo_JarrResp
integer li_RespStatusCode
oleobject loo_Json
string ls_Nosaukums
string ls_RegNr
integer li_Veids
string ls_Datums
string ls_VeidsTeksts
string ls_Adrese
integer li_AdresesSaistiba
string ls_AdresesSaistibaTeksts
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.SetRequestHeader("Accept","application/json")

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

li_Success = loo_Http.QuickGetSb("https://eds.vid.gov.lv/api/departments",loo_SbResponseBody)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbResponseBody
    return
end if

loo_JarrResp = create oleobject
li_rc = loo_JarrResp.ConnectToNewObject("Chilkat_9_5_0.JsonArray")

loo_JarrResp.LoadSb(loo_SbResponseBody)
loo_JarrResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JarrResp.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_JarrResp
    return
end if

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

// [
//   {
//     "Nosaukums": "laboris Excepteur",
//     "RegNr": "fugiat mollit qui nostrud ",
//     "Veids": -38769346,
//     "Datums": "2000-01-31T00:00:00",
//     "VeidsTeksts": "ad aliquip",
//     "Adrese": "labore id veniam",
//     "AdresesSaistiba": 90754423,
//     "AdresesSaistibaTeksts": "et incididunt proident v"
//   },
//   {
//     "Nosaukums": "est dolor",
//     "RegNr": "consequat laborum",
//     "Veids": 13422983,
//     "Datums": "2000-01-31T00:00:00",
//     "VeidsTeksts": "eiusmod laboris dolor qui pariatur",
//     "Adrese": "nulla officia",
//     "AdresesSaistiba": 39912793,
//     "AdresesSaistibaTeksts": "in veniam"
//   }
// ]

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

i = 0
li_Count_i = loo_JarrResp.Size
do while i < li_Count_i
    loo_Json = loo_JarrResp.ObjectAt(i)
    ls_Nosaukums = loo_Json.StringOf("Nosaukums")
    ls_RegNr = loo_Json.StringOf("RegNr")
    li_Veids = loo_Json.IntOf("Veids")
    ls_Datums = loo_Json.StringOf("Datums")
    ls_VeidsTeksts = loo_Json.StringOf("VeidsTeksts")
    ls_Adrese = loo_Json.StringOf("Adrese")
    li_AdresesSaistiba = loo_Json.IntOf("AdresesSaistiba")
    ls_AdresesSaistibaTeksts = loo_Json.StringOf("AdresesSaistibaTeksts")
    destroy loo_Json
    i = i + 1
loop


destroy loo_Http
destroy loo_SbResponseBody
destroy loo_JarrResp

Curl Command

curl -X GET
	-H "Accept: application/json"
https://eds.vid.gov.lv/api/departments

Postman Collection Item JSON

{
  "name": "Struktūrvienību saraksts.",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/departments",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "departments"
      ]
    }
  },
  "response": [
    {
      "name": "OK",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/api/departments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "departments"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "[\n  {\n    \"Nosaukums\": \"laboris Excepteur\",\n    \"RegNr\": \"fugiat mollit qui nostrud \",\n    \"Veids\": -38769346,\n    \"Datums\": \"2000-01-31T00:00:00\",\n    \"VeidsTeksts\": \"ad aliquip\",\n    \"Adrese\": \"labore id veniam\",\n    \"AdresesSaistiba\": 90754423,\n    \"AdresesSaistibaTeksts\": \"et incididunt proident v\"\n  },\n  {\n    \"Nosaukums\": \"est dolor\",\n    \"RegNr\": \"consequat laborum\",\n    \"Veids\": 13422983,\n    \"Datums\": \"2000-01-31T00:00:00\",\n    \"VeidsTeksts\": \"eiusmod laboris dolor qui pariatur\",\n    \"Adrese\": \"nulla officia\",\n    \"AdresesSaistiba\": 39912793,\n    \"AdresesSaistibaTeksts\": \"in veniam\"\n  }\n]"
    },
    {
      "name": "Lietotājs nav autentificēts.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/api/departments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "departments"
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "Lietotājam nav tiesību veikt šo darbību.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/api/departments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "departments"
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "Pārsniegts izsaukumu skaita ierobežojums.",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/api/departments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "departments"
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}