Chilkat Online Tools

DataFlex / Orchestrator / Assets - Get all

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    String sName
    Boolean iCanBeDeleted
    String sValueScope
    String sValueType
    String sValue
    String sStringValue
    Boolean iBoolValue
    Integer iIntValue
    String sCredentialUsername
    String sCredentialPassword
    String sExternalName
    String sCredentialStoreId
    Boolean iHasDefaultValue
    String sDescription
    Integer iId
    Integer j
    Integer iCount_j
    String sOdata_context
    Integer iOdata_count
    Integer i
    Integer iCount_i
    String sTemp1

    // 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

    // Adds the "Authorization: Bearer <access_token>" header.
    Set ComAuthToken Of hoHttp To "<access_token>"
    Send ComSetRequestHeader To hoHttp "X-UIPATH-OrganizationUnitId" "{{folderId}}"
    Send ComSetRequestHeader To hoHttp "X-UIPATH-TenantName" "{{tenantName}}"

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComQuickGetSb Of hoHttp "https://domain.com/odata/Assets" vSbResponseBody To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

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

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

    Get ComLastStatus Of hoHttp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComLastHeader Of hoHttp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Procedure_Return
    End

    // 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

    Get ComStringOf Of hoJResp '"@odata.context"' To sOdata_context
    Get ComIntOf Of hoJResp '"@odata.count"' To iOdata_count
    Move 0 To i
    Get ComSizeOfArray Of hoJResp "value" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Get ComStringOf Of hoJResp "value[i].Name" To sName
        Get ComBoolOf Of hoJResp "value[i].CanBeDeleted" To iCanBeDeleted
        Get ComStringOf Of hoJResp "value[i].ValueScope" To sValueScope
        Get ComStringOf Of hoJResp "value[i].ValueType" To sValueType
        Get ComStringOf Of hoJResp "value[i].Value" To sValue
        Get ComStringOf Of hoJResp "value[i].StringValue" To sStringValue
        Get ComBoolOf Of hoJResp "value[i].BoolValue" To iBoolValue
        Get ComIntOf Of hoJResp "value[i].IntValue" To iIntValue
        Get ComStringOf Of hoJResp "value[i].CredentialUsername" To sCredentialUsername
        Get ComStringOf Of hoJResp "value[i].CredentialPassword" To sCredentialPassword
        Get ComStringOf Of hoJResp "value[i].ExternalName" To sExternalName
        Get ComStringOf Of hoJResp "value[i].CredentialStoreId" To sCredentialStoreId
        Get ComBoolOf Of hoJResp "value[i].HasDefaultValue" To iHasDefaultValue
        Get ComStringOf Of hoJResp "value[i].Description" To sDescription
        Get ComIntOf Of hoJResp "value[i].Id" To iId
        Move 0 To j
        Get ComSizeOfArray Of hoJResp "value[i].KeyValueList" To iCount_j
        While (j < iCount_j)
            Set ComJ Of hoJResp To j
            Move (j + 1) To j
        Loop

        Move (i + 1) To i
    Loop



End_Procedure

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