G
Godfrey Sorita
Guest
1) What URL should I provide in Integration Field? - It depends on the API you want to use. I will try to provide you an example for this. 2) How to call Trigger to run automatically? - Set the trigger timing. For Graphs API, I think it should be set to run after creating or updating the record. 3) How do I get the response? - The response can be fetched using rbv_api.getSharedValue("ReturnStatus") and rbv_api.getSharedValue("ReturnBody"). However, this must be called within a trigger (after the Send GET Request). 4) Do I need to parse the JSON I got in response? - Yes, it is necessary to fetch the specific result parameters of the request. You can use rbv_api.stringToJson() to make the parsing easier. 5) How to save the data in Object's fields? - After getting and parsing the response, rbv_api.setFieldValue() or rbv_api.updateRecord() API can be used to set the results to the object's fields.
Continue reading...
Continue reading...