Google Vision Activity

HI All,

I’m using ‘Google Vision’ service and trying out the Annotate Image activity.
I’m able to get the valid response from Google cloud, but is in form of ‘AnnotateImageResponse’ object.
I’m unable to read/parse this, i want my information in JSON format.
Please share the steps to convert the output of Google Vision activity in simple JSON format having all the information.

Thanks

1 Like

Hi @Vinod_Swain .
Add Uipath.Web.Activities at Manage Pakages.

Use Newtonsoft.Json.JsonConvert.SerializeObject() for converting from object to json string.
Flow

Debugging.

Converted json string.

Refernce

What about this?

1 Like

Thank you so much