Hello.
I have an HTTP request with the output:
{ "values": [ { "worklogId": 10000, "updatedTime": 1559035866977, "properties": [] }, { "worklogId": 10001, "updatedTime": 1559049406316, "properties": [] }, { "worklogId": 10002, "updatedTime": 1559050837039, "properties": [] }, { "worklogId": 10003, "updatedTime": 1559589921582, "properties": [] } ], "since": 0, "until": 1559589921582, "self": "https://...", "lastPage": true }
I need the worklogIds in this form: 10000,10001,10002,10003 for another request in the same Flow.
Is there a workaround for that?
Sorry for the Label, but I could not take any other.
Solved! Go to Solution.
Hi @Basle
For that what you can do is, make the sdsa variable as an array (currently it is string) and in the apply to each delete the set variable action and add append to array varaible action and put the log id from dynamic selector over there.
Next come out of the loop and create another variable of type string and in this use the expression editor and type join and select the array and put a ',' as a delimiter
join(variables('sdsa'),',')
This will give you all the log ids separated by commas. Does this answer your query?
Hi @Basle
Yes! You can use the parse json action to achieve this. You can get individual items of the worklogId and append those to a string.
I created a reference flow and here is the screenshot of the same:
Json Scehma:
{ "type": "object", "properties": { "values": { "type": "array", "items": { "type": "object", "properties": { "worklogId": { "type": "integer" }, "updatedTime": { "type": "integer" }, "properties": { "type": "array" } } } } } }
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Thanks for your fast reply.
This solution partially answers my question.
For Example , which is the next step to create a file in onedrive or create a variable wich the output: 10000,10001,100002,10003
When i create a file .txt with variable sdsa the text is "100003"
Hi @Basle
For that what you can do is, make the sdsa variable as an array (currently it is string) and in the apply to each delete the set variable action and add append to array varaible action and put the log id from dynamic selector over there.
Next come out of the loop and create another variable of type string and in this use the expression editor and type join and select the array and put a ',' as a delimiter
join(variables('sdsa'),',')
This will give you all the log ids separated by commas. Does this answer your query?
join(variables('sdsa'),',')
thats what i need.
thanks a lot!
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
Power Platform release plan for the 2021 release wave 1 describes all new features releasing from April through September 2021.
User | Count |
---|---|
89 | |
50 | |
36 | |
30 | |
27 |
User | Count |
---|---|
73 | |
65 | |
50 | |
44 | |
42 |