Chilkat Online Tools

VB6 / Orchestrator / Assets - Get all

Back to Collection Items

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

Dim http As New ChilkatHttp
Dim success As Long

' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
http.SetRequestHeader "X-UIPATH-OrganizationUnitId","{{folderId}}"
http.SetRequestHeader "X-UIPATH-TenantName","{{tenantName}}"

Dim sbResponseBody As New ChilkatStringBuilder
success = http.QuickGetSb("https://domain.com/odata/Assets",sbResponseBody)
If (success = 0) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If

Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0

Debug.Print "Response Body:"
Debug.Print jResp.Emit()

Dim respStatusCode As Long
respStatusCode = http.LastStatus
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
    Debug.Print "Response Header:"
    Debug.Print http.LastHeader
    Debug.Print "Failed."
    Exit Sub
End If

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

' {
'   "@odata.context": "https://platform.uipath.com/deanmauro/dean/odata/$metadata#Assets",
'   "@odata.count": 15,
'   "value": [
'     {
'       "Name": "Asset 2",
'       "CanBeDeleted": true,
'       "ValueScope": "Global",
'       "ValueType": "Text",
'       "Value": "I would not, Cassius, yet I love him well.",
'       "StringValue": "I would not, Cassius, yet I love him well.",
'       "BoolValue": false,
'       "IntValue": 0,
'       "CredentialUsername": "",
'       "CredentialPassword": "",
'       "ExternalName": "",
'       "CredentialStoreId": null,
'       "HasDefaultValue": true,
'       "Description": null,
'       "Id": 8558,
'       "KeyValueList": [
'       ]
'     },
'     {
'       "Name": "blah",
'       "CanBeDeleted": true,
'       "ValueScope": "PerRobot",
'       "ValueType": "Integer",
'       "Value": null,
'       "StringValue": "",
'       "BoolValue": false,
'       "IntValue": 0,
'       "CredentialUsername": "",
'       "CredentialPassword": "",
'       "ExternalName": "",
'       "CredentialStoreId": null,
'       "HasDefaultValue": false,
'       "Description": null,
'       "Id": 23446,
'       "KeyValueList": [
'       ]
'     },
'     {
'       "Name": "Caesar",
'       "CanBeDeleted": true,
'       "ValueScope": "Global",
'       "ValueType": "Text",
'       "Value": "Et tu Asset 2",
'       "StringValue": "Et tu Asset 2",
'       "BoolValue": false,
'       "IntValue": 0,
'       "CredentialUsername": "",
'       "CredentialPassword": "",
'       "ExternalName": "",
'       "CredentialStoreId": null,
'       "HasDefaultValue": true,
'       "Description": null,
'       "Id": 8735,
'       "KeyValueList": [
'       ]
'     }
'   ]
' }

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

Dim Name As String
Dim CanBeDeleted As Long
Dim ValueScope As String
Dim ValueType As String
Dim Value As String
Dim StringValue As String
Dim BoolValue As Long
Dim IntValue As Long
Dim CredentialUsername As String
Dim CredentialPassword As String
Dim ExternalName As String
Dim CredentialStoreId As String
Dim HasDefaultValue As Long
Dim Description As String
Dim Id As Long
Dim j As Long
Dim count_j As Long

Dim odata_context As String
odata_context = jResp.StringOf("""@odata.context""")
Dim odata_count As Long
odata_count = jResp.IntOf("""@odata.count""")
Dim i As Long
i = 0
Dim count_i As Long
count_i = jResp.SizeOfArray("value")
Do While i < count_i
    jResp.I = i
    Name = jResp.StringOf("value[i].Name")
    CanBeDeleted = jResp.BoolOf("value[i].CanBeDeleted")
    ValueScope = jResp.StringOf("value[i].ValueScope")
    ValueType = jResp.StringOf("value[i].ValueType")
    Value = jResp.StringOf("value[i].Value")
    StringValue = jResp.StringOf("value[i].StringValue")
    BoolValue = jResp.BoolOf("value[i].BoolValue")
    IntValue = jResp.IntOf("value[i].IntValue")
    CredentialUsername = jResp.StringOf("value[i].CredentialUsername")
    CredentialPassword = jResp.StringOf("value[i].CredentialPassword")
    ExternalName = jResp.StringOf("value[i].ExternalName")
    CredentialStoreId = jResp.StringOf("value[i].CredentialStoreId")
    HasDefaultValue = jResp.BoolOf("value[i].HasDefaultValue")
    Description = jResp.StringOf("value[i].Description")
    Id = jResp.IntOf("value[i].Id")
    j = 0
    count_j = jResp.SizeOfArray("value[i].KeyValueList")
    Do While j < count_j
        jResp.J = j
        j = j + 1
    Loop
    i = i + 1
Loop

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
	-H "X-UIPATH-TenantName: {{tenantName}}"
	-H "X-UIPATH-OrganizationUnitId: {{folderId}}"
https://domain.com/odata/Assets

Postman Collection Item JSON

{
  "name": "Assets - Get all",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "X-UIPATH-TenantName",
        "value": "{{tenantName}}",
        "type": "text"
      },
      {
        "key": "X-UIPATH-OrganizationUnitId",
        "value": "{{folderId}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{url}}/odata/Assets",
      "host": [
        "{{url}}"
      ],
      "path": [
        "odata",
        "Assets"
      ]
    },
    "description": "Get all Assets. Use query params to narrow the response group."
  },
  "response": [
    {
      "name": "Assets - Get all",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "key": "X-UIPATH-TenantName",
            "value": "{{tenantName}}",
            "type": "text"
          },
          {
            "key": "X-UIPATH-OrganizationUnitId",
            "value": "{{folderId}}",
            "type": "text"
          }
        ],
        "url": {
          "raw": "{{url}}/odata/Assets",
          "host": [
            "{{url}}"
          ],
          "path": [
            "odata",
            "Assets"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Fri, 13 Dec 2019 18:47:31 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json; odata.metadata=minimal"
        },
        {
          "key": "Transfer-Encoding",
          "value": "chunked"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Cache-Control",
          "value": "no-store, must-revalidate, no-cache, max-age=0"
        },
        {
          "key": "Content-Encoding",
          "value": "gzip"
        },
        {
          "key": "Vary",
          "value": "Accept-Encoding"
        },
        {
          "key": "api-supported-versions",
          "value": "9.0"
        },
        {
          "key": "OData-Version",
          "value": "4.0"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-Frame-Options",
          "value": "DENY"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=31536000; includeSubDomains"
        },
        {
          "key": "CF-Cache-Status",
          "value": "DYNAMIC"
        },
        {
          "key": "Expect-CT",
          "value": "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
        },
        {
          "key": "Server",
          "value": "cloudflare"
        },
        {
          "key": "CF-RAY",
          "value": "544a1b60c919f019-EWR"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"@odata.context\": \"https://platform.uipath.com/deanmauro/dean/odata/$metadata#Assets\",\n    \"@odata.count\": 15,\n    \"value\": [\n        {\n            \"Name\": \"Asset 2\",\n            \"CanBeDeleted\": true,\n            \"ValueScope\": \"Global\",\n            \"ValueType\": \"Text\",\n            \"Value\": \"I would not, Cassius, yet I love him well.\",\n            \"StringValue\": \"I would not, Cassius, yet I love him well.\",\n            \"BoolValue\": false,\n            \"IntValue\": 0,\n            \"CredentialUsername\": \"\",\n            \"CredentialPassword\": \"\",\n            \"ExternalName\": \"\",\n            \"CredentialStoreId\": null,\n            \"HasDefaultValue\": true,\n            \"Description\": null,\n            \"Id\": 8558,\n            \"KeyValueList\": []\n        },\n        {\n            \"Name\": \"blah\",\n            \"CanBeDeleted\": true,\n            \"ValueScope\": \"PerRobot\",\n            \"ValueType\": \"Integer\",\n            \"Value\": null,\n            \"StringValue\": \"\",\n            \"BoolValue\": false,\n            \"IntValue\": 0,\n            \"CredentialUsername\": \"\",\n            \"CredentialPassword\": \"\",\n            \"ExternalName\": \"\",\n            \"CredentialStoreId\": null,\n            \"HasDefaultValue\": false,\n            \"Description\": null,\n            \"Id\": 23446,\n            \"KeyValueList\": []\n        },\n        {\n            \"Name\": \"Caesar\",\n            \"CanBeDeleted\": true,\n            \"ValueScope\": \"Global\",\n            \"ValueType\": \"Text\",\n            \"Value\": \"Et tu Asset 2\",\n            \"StringValue\": \"Et tu Asset 2\",\n            \"BoolValue\": false,\n            \"IntValue\": 0,\n            \"CredentialUsername\": \"\",\n            \"CredentialPassword\": \"\",\n            \"ExternalName\": \"\",\n            \"CredentialStoreId\": null,\n            \"HasDefaultValue\": true,\n            \"Description\": null,\n            \"Id\": 8735,\n            \"KeyValueList\": []\n        }\n    ]\n}"
    }
  ]
}