Thank you for your help.
Last question, when I run the Send an HTTP (office 365 groups) action, the JSON schema from this is below. How can I drill down to just get each item within the 'values' element? 'Values' is an array of arrays.
Thanks
K.
{
"type": "object",
"properties": {
"statusCode": {
"type": "integer"
},
"headers": {
"type": "object",
"properties": {
"Transfer-Encoding": {
"type": "string"
},
"Vary": {
"type": "string"
},
"Strict-Transport-Security": {
"type": "string"
},
"request-id": {
"type": "string"
},
"client-request-id": {
"type": "string"
},
"x-ms-ags-diagnostic": {
"type": "string"
},
"OData-Version": {
"type": "string"
},
"Timing-Allow-Origin": {
"type": "string"
},
"x-ms-apihub-cached-response": {
"type": "string"
},
"x-ms-apihub-obo": {
"type": "string"
},
"Cache-Control": {
"type": "string"
},
"Date": {
"type": "string"
},
"Content-Type": {
"type": "string"
},
"Content-Length": {
"type": "string"
}
}
},
"body": {
"type": "object",
"properties": {
"@@odata.context": {
"type": "string"
},
"@@odata.type": {
"type": "string"
},
"@@odata.id": {
"type": "string"
},
"address": {
"type": "string"
},
"addressLocal": {
"type": "string"
},
"columnCount": {
"type": "integer"
},
"cellCount": {
"type": "integer"
},
"columnHidden": {
"type": "boolean"
},
"rowHidden": {
"type": "boolean"
},
"numberFormat": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
}
},
"columnIndex": {
"type": "integer"
},
"text": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
}
},
"formulas": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
}
},
"formulasLocal": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
}
},
"formulasR1C1": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
}
},
"hidden": {
"type": "boolean"
},
"rowCount": {
"type": "integer"
},
"rowIndex": {
"type": "integer"
},
"valueTypes": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
}
},
"values": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}