Hello @DanielTorralba-3123 ,
You can use following sample snippet to create an event with a hyperlink "contentType": "html".
{
"subject": "Event with Hyperlink",
"body": {
"contentType": "html",
"content": "<a href='https://developer.microsoft.com/en-us/graph/graph-explorer'>link text</a>"
},
"start": {
"dateTime": "2023-01-13T15:00:00",
"timeZone": "India Standard Time"
},
"end": {
"dateTime": "2023-01-13T16:00:00",
"timeZone": "India Standard Time"
},
"attendees": [
{
"emailAddress": {
"address": "******@contoso.com"
},
"type": "required"
}
]
}
Hope this helps. If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".