
Anyone know the steps to Send the output of Find Meeting Times back to a gallery or collection to power apps? Here is a sample of the output
Hi @ctedesco3307 ,
Please try this
{
"type": "array",
"items": {
"type": "object",
"properties": {
"confidence": {
"type": "integer"
},
"organizerAvailability": {
"type": "string"
},
"attendeeAvailability": {
"type": "array",
"items": {
"type": "object",
"properties": {
"availability": {
"type": "string"
},
"attendee": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
}
}
}
}
}
},
"required": [
"availability",
"attendee"
]
}
},
"locations": {
"type": "array"
},
"meetingTimeSlot": {
"type": "object",
"properties": {
"start": {
"type": "object",
"properties": {
"dateTime": {
"type": "string"
},
"timeZone": {
"type": "string"
}
}
},
"end": {
"type": "object",
"properties": {
"dateTime": {
"type": "string"
},
"timeZone": {
"type": "string"
}
}
}
}
}
},
"required": [
"confidence",
"organizerAvailability",
"attendeeAvailability",
"meetingTimeSlot"
]
}
}
Best Regards,
Wearsky