> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tavus.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Reconnect OAuth

> Issue a fresh authorize URL for an OAuth connector. Use it when `oauth_status` is `needs_reauth` - the refresh token stopped working, usually because the customer revoked access - or any time you want the customer to re-authorize.

Tavus reuses its existing client registration, so this does not create a second client on the server.




## OpenAPI

````yaml post /v2/connectors/{connector_id}/oauth/reconnect
openapi: 3.0.3
info:
  title: Tavus Developer API Collection
  version: 1.0.0
  contact: {}
servers:
  - url: https://tavusapi.com
security:
  - apiKey: []
tags:
  - name: Videos
  - name: Faces
  - name: Voices
  - name: Conversations
  - name: Deployments
  - name: PALs
  - name: Tools
  - name: PAL Tools
  - name: Connectors
  - name: Pronunciation Dictionaries
  - name: Replacements
  - name: Transcriptions
  - name: Documents
  - name: Memory Stores
paths:
  /v2/connectors/{connector_id}/oauth/reconnect:
    parameters:
      - name: connector_id
        in: path
        required: true
        schema:
          type: string
          example: c8-58ea0f6420b2
    post:
      tags:
        - Connectors
      summary: Reconnect OAuth
      description: >
        Issue a fresh authorize URL for an OAuth connector. Use it when
        `oauth_status` is `needs_reauth` - the refresh token stopped working,
        usually because the customer revoked access - or any time you want the
        customer to re-authorize.


        Tavus reuses its existing client registration, so this does not create a
        second client on the server.
      operationId: reconnectConnectorOauth
      responses:
        '200':
          description: Authorize URL issued
          content:
            application/json:
              schema:
                type: object
                properties:
                  authorize_url:
                    type: string
                    example: >-
                      https://mcp.linear.app/authorize?response_type=code&client_id=...
                  oauth_state:
                    type: string
                    example: wA0meZRQKOwa4wHxcN27xt3eYfII0hLs
        '404':
          description: Connector not found
        '502':
          description: OAuth discovery or client registration failed
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````