Microsoft Outlook
Update Event
POST
/
projects
/
{project_id}
/
actions
/
#OUTLOOK_UPDATE_EVENT
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#OUTLOOK_UPDATE_EVENT' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "OUTLOOK_UPDATE_EVENT",
"parameters": {
"userId": "<string>",
"eventId": "<string>",
"subject": "<string>",
"startTime": "<string>",
"timeZone": "<string>",
"endTime": "<string>",
"calendarId": "<string>",
"description": "<string>",
"contentType": "text",
"locationName": "<string>",
"locationUrl": "<string>",
"attendees": "<string>"
}
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Your Paragon Project ID
Body
application/json
Response
200
Success
Was this page helpful?
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#OUTLOOK_UPDATE_EVENT' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "OUTLOOK_UPDATE_EVENT",
"parameters": {
"userId": "<string>",
"eventId": "<string>",
"subject": "<string>",
"startTime": "<string>",
"timeZone": "<string>",
"endTime": "<string>",
"calendarId": "<string>",
"description": "<string>",
"contentType": "text",
"locationName": "<string>",
"locationUrl": "<string>",
"attendees": "<string>"
}
}'