Smithery
connected_accounts.refresh
Initiates a new authentication flow for a connected account when credentials have expired or become invalid. This may generate a new authentication URL for OAuth flows or refresh tokens for other auth schemes.
Remote smithery/composio
Other tools also called connected_accounts.refresh?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"nanoid": {
"type": "string",
"format": "connectedAccountId",
"description": "The unique identifier of the connected account"
},
"redirect_url": {
"type": "string",
"format": "uri",
"description": "query parameter"
},
"body_redirect_url": {
"type": "string",
"format": "uri",
"description": "body parameter"
},
"validate_credentials": {
"type": "boolean",
"default": false,
"description": "[EXPERIMENTAL] Whether to validate the provided credentials, validates only for API Key Auth scheme",
"x-experimental": true
}
}
}