Thank you, Dick. Here's the issue, I'm trying to automate device adding using Rest API, it will accept the command as below - url: http://5.5.5.5/api/json/ncmsettings/assocCredential?apiKey=xx6689kk&RESOURCEID_LIST=4204&SSH_PROFILELIST=ABC&protocolCombinationList=SSH
Whereas in current situation it is automatically putting the value in the bracket as below - url: http://5.5.5.5/api/json/ncmsettings/assocCredential?apiKey= xx6689kk &RESOURCEID_LIST=[4204]&SSH_PROFILELIST=ABC&protocolCombinationList=SSH This way it is not working. Like we have one filter - ipaddr, which converts the value without network like below 3.3.3.3/24 to 3.3.3.3. I was able to achieve the result using the below command - {{ result.primary_ip4.address | ipaddr ('address') }} Please suggest what can we do in this situation. Thanks, On Tuesday, 10 November 2020 at 19:10:59 UTC+5:30 Pravin V wrote: > Thank you, Dick. > > Here's the issue, I'm trying to automate device adding using Rest API, it > will accept the command as below - > url: > http://5.5.5.5/api/json/ncmsettings/assocCredential?apiKey=xx6689kk&RESOURCEID_LIST=4204&SSH_PROFILELIST=ABC&protocolCombinationList=SSH > > Whereas in current situation it is automatically putting the value in the > bracket as below - > url: http://5.5.5.5/api/json/ncmsettings/assocCredential?apiKey= xx6689kk > &RESOURCEID_LIST=[4204]&SSH_PROFILELIST=ABC&protocolCombinationList=SSH > This way it is not working. > > Please suggest what can we do in this situation. > > On Tuesday, 10 November 2020 at 19:03:21 UTC+5:30 [email protected] > wrote: > >> Brackets is the correct way to display lists variables, which your >> variable apparently is. >> >> >> >> On Tue, 10 Nov 2020 at 14:14, Pravin V <[email protected]> wrote: >> >>> Hello Everyone, >>> Below is the output of the task >>> json: >>> resourceIds: >>> - 66523 >>> >>> and I'm trying to fetch the resourceIDs into the task like below. >>> RESOURCEID_LIST={{ resourceID.json.resourceIds }} >>> >>> But the issue is when I'm running the playbook, it is automatically >>> putting the value in bracket [] >>> &RESOURCEID_LIST=[66523]. >>> >>> How can we input the value without putting in the bracket. >>> >>> Thanks in advance. >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ansible Project" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected]. >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/ansible-project/42cc9fff-b3fe-4584-bb0f-bdd580647822n%40googlegroups.com >>> >>> <https://groups.google.com/d/msgid/ansible-project/42cc9fff-b3fe-4584-bb0f-bdd580647822n%40googlegroups.com?utm_medium=email&utm_source=footer> >>> . >>> >> -- >> Sent from a mobile device - please excuse the brevity, spelling and >> punctuation. >> > -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/c861ba93-66fc-4c94-ac86-dbd1174cb2e1n%40googlegroups.com.
