WP Data Sync uses dot notation to retrieve nested values from arrays and JSON.
Example JSON
1 2 3 4 5 6 | { "response":{ "success": true, "token": "abc-123" } } |
Retrieve the token, abc-123, from the example JSON using dot notation .
response.token