How to extract specific data from a JSON payload using SelectToken?

image

So I think you need to do something like this:

out_json_to_manipulate.SelectToken("telefones[0].ddd").ToString
out_json_to_manipulate.SelectToken("telefones[0].numero").ToString

Results:

image
image

Reference: https://docs.uipath.com/activities/docs/deserialize-json

1 Like