Chilkat Online Tools

TCL / Orchestrator / Assets - Get all

Back to Collection Items

load ./chilkat.dll

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

set http [new_CkHttp]

# Adds the "Authorization: Bearer <access_token>" header.
CkHttp_put_AuthToken $http "<access_token>"
CkHttp_SetRequestHeader $http "X-UIPATH-OrganizationUnitId" "{{folderId}}"
CkHttp_SetRequestHeader $http "X-UIPATH-TenantName" "{{tenantName}}"

set sbResponseBody [new_CkStringBuilder]

set success [CkHttp_QuickGetSb $http "https://domain.com/odata/Assets" $sbResponseBody]
if {$success == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkStringBuilder $sbResponseBody
    exit
}

set jResp [new_CkJsonObject]

CkJsonObject_LoadSb $jResp $sbResponseBody
CkJsonObject_put_EmitCompact $jResp 0

puts "Response Body:"
puts [CkJsonObject_emit $jResp]

set respStatusCode [CkHttp_get_LastStatus $http]
puts "Response Status Code = $respStatusCode"
if {$respStatusCode >= 400} then {
    puts "Response Header:"
    puts [CkHttp_lastHeader $http]
    puts "Failed."
    delete_CkHttp $http
    delete_CkStringBuilder $sbResponseBody
    delete_CkJsonObject $jResp
    exit
}

# 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

set odata_context [CkJsonObject_stringOf $jResp "\"@odata.context\""]
set odata_count [CkJsonObject_IntOf $jResp "\"@odata.count\""]
set i 0
set count_i [CkJsonObject_SizeOfArray $jResp "value"]
while {$i < $count_i} {
    CkJsonObject_put_I $jResp $i
    set Name [CkJsonObject_stringOf $jResp "value[i].Name"]
    set CanBeDeleted [CkJsonObject_BoolOf $jResp "value[i].CanBeDeleted"]
    set ValueScope [CkJsonObject_stringOf $jResp "value[i].ValueScope"]
    set ValueType [CkJsonObject_stringOf $jResp "value[i].ValueType"]
    set Value [CkJsonObject_stringOf $jResp "value[i].Value"]
    set StringValue [CkJsonObject_stringOf $jResp "value[i].StringValue"]
    set BoolValue [CkJsonObject_BoolOf $jResp "value[i].BoolValue"]
    set IntValue [CkJsonObject_IntOf $jResp "value[i].IntValue"]
    set CredentialUsername [CkJsonObject_stringOf $jResp "value[i].CredentialUsername"]
    set CredentialPassword [CkJsonObject_stringOf $jResp "value[i].CredentialPassword"]
    set ExternalName [CkJsonObject_stringOf $jResp "value[i].ExternalName"]
    set CredentialStoreId [CkJsonObject_stringOf $jResp "value[i].CredentialStoreId"]
    set HasDefaultValue [CkJsonObject_BoolOf $jResp "value[i].HasDefaultValue"]
    set Description [CkJsonObject_stringOf $jResp "value[i].Description"]
    set Id [CkJsonObject_IntOf $jResp "value[i].Id"]
    set j 0
    set count_j [CkJsonObject_SizeOfArray $jResp "value[i].KeyValueList"]
    while {$j < $count_j} {
        CkJsonObject_put_J $jResp $j
        set j [expr $j + 1]
    }
    set i [expr $i + 1]
}

delete_CkHttp $http
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp

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}"
    }
  ]
}