Syntax
GetJsonNodeAt(index)
Description
Use this method to return the JsonNode value of the property at the specified index in the JSON Object.
Parameters
| Name | Description | 
|---|---|
| index | Specifies the index in the JSON Object as an Integer. | 
Returns
JsonNode.
Example
Local PSM_JSON:Object &oObject = create PSM_JSON:Object();
   
&oObject.AddString("one", "test");
   
Local JsonNode &jnJson = &oObject.GetJsonNodeAt(1);