Dynamic Population of dropdown using Rest API Response
0
I have been trying to map my REST API Response that I obtain via microflow call into dropdown/select boxes. I have setup the microflow to get the api response and have tried mapping it to a reference selector, but the values are being populated. I have created the the non-persisting entities and mapped them as follows- This is my api response - [ { "usecaseId": 2, "usecaseName": "Sample UseCase", "usecaseDescriptionLocal": "Sample UseCase Jp", "usecaseDescriptionEnglish": "Sample UseCase", "usecaseDetailLocal": "Sample UseCase Jp", "usecaseDetailEnglish": "Sample UseCase", "userLists": [ { "useCaseId": 2, "ulistId": 1, "userListName": "Sample UserList", "userListDescriptionLocal": "Sample UserList Jp", "userListDescriptionEnglish": "Sample UserList", "userListDetailLocal": "Sample UserList Jp", "userListDetailEnglish": "Sample UserList test", "userListUserName": "Sample UseCase_Sample UserList", "userListPassword": "Nj11JWFxclA=", "useCustomUserName": false, "useCustomPassword": false } ] }, { "usecaseId": 3, "usecaseName": "ANNELINGFUNACE", "usecaseDescriptionLocal": "To show s3 image image tableau dashboard", "usecaseDescriptionEnglish": "To show s3 image image tableau dashboard", "usecaseDetailLocal": "To show s3 image image tableau dashboard", "usecaseDetailEnglish": "To show s3 image image tableau dashboard", "userLists": [ { "useCaseId": 3, "ulistId": 17, "userListName": "Tableau Dashboard Users", "userListDescriptionLocal": "Tableau Dashboard Users", "userListDescriptionEnglish": "Tableau Dashboard Users", "userListDetailLocal": "Tableau Dashboard Users", "userListDetailEnglish": "Tableau Dashboard Users", "userListUserName": "ANNELINGFUNACE_Tableau Dashboard Users", "userListPassword": "NDgqc1xAJlY=", "useCustomUserName": false, "useCustomPassword": false } ] } ] This is how i have implemented in my other applications: - When user selects a particular usecase from the first dropdown, the corresponding userlist details is showed in the next dropdown. (Usecase already selected,he userlist detail is shown in the dropdown) Please do let me know if there is any solution for this. Mendix level - Beginner. (detailed explanations will be appreciated)