RE: Need Good Approach - please Suggest : Want to call External API from Dynamics CRM except Scripting & want to capture response of API
Hi,
you might create an on-retrieve plugin for the entity for which you want to display that grid, add a multi-line text field to the entity, and use the plugin to
1) Retrieve required data from the external API every time somebody is about to open a record of that entity type in CRM
2) Serialize retrieved data into a json string and add results to the field created above (you don't need to store that data in the database)
Then you can use javascript on the "client" to parse that json