Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Disconnect an OAuth provider for the current user, revoking stored tokens (no project required).
| Field | Value |
|---|
| Name | disconnect_user_oauth_integration |
| Group | OAuth |
Playground
{
"type": "object",
"properties": {
"provider": {
"type": "string",
"description": "OAuth provider name (e.g., \"github\", \"slack\", \"google\")"
}
},
"required": [
"provider"
],
"additionalProperties": false,
"description": "Input schema for the disconnect_user_oauth_integration tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"provider": {
"type": "string",
"description": "OAuth provider name"
},
"disconnected": {
"type": "boolean",
"description": "Whether the provider was disconnected"
}
},
"required": [
"provider",
"disconnected"
],
"additionalProperties": false,
"description": "Structured result returned by the disconnect_user_oauth_integration tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}