Queue Items Requests Related

   "SpecificContent": {
        "EmployeeName": "John Kensington",
        "ContactNumber": "+4457899",
        "RelocationDistance": 500,
        "Description": "Home relocation",
        "ExpenseCode": "UI234",
        "Amount": 1000,
        "RequirePass": true
     },
 **for this we can write like this in add data table**
{item("SpecificContent")("AccountNumber").ToString}

      "SpecificData": "{\"DynamicProperties\":{\"EmployeeName\":\"John Kensington\",\"ContactNumber\":\"+4457899\",\"RelocationDistance\":500,\"Description\":\"Home relocation\",\"ExpenseCode\":\"UI234\",\"Amount\":1000,\"RequirePass\":true}}",
 **How can we need to write in add data table**

Hi @Sayed_Tabrez

Please check on this

Regards,

Hi @Sayed_Tabrez

Please check the below thread

Regards

i found how to get Queue item. our requirement is get data from specific data not specific content

Hi @Sayed_Tabrez

The output is an IEnumerable right so please try with the below linq:

JArray.FromObject(YourGetQueueItemsOut.Select(Function (x) x.SpecificContent).toArray).toObject(Of DataTable)

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.