complete_authentication
Validate user authentication using a device code to access Microsoft Graph API for managing Outlook, Calendar, OneDrive, and Contacts.
Instructions
Complete the authentication process after the user has entered the device code
Args:
flow_cache: The flow data returned from authenticate_account (the _flow_cache field)
Returns:
Account information if authentication was successful
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flow_cache | Yes |
Input Schema (JSON Schema)
{
"properties": {
"flow_cache": {
"title": "Flow Cache",
"type": "string"
}
},
"required": [
"flow_cache"
],
"type": "object"
}