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

# Re-apply the current /twilio/{org_id}/bridge webhook URL to all bridge numbers



## OpenAPI

````yaml /api-reference/openapi.json post /v1/identity/org/bridge-numbers/reprovision
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/identity/org/bridge-numbers/reprovision:
    post:
      tags:
        - identity
      summary: >-
        Re-apply the current /twilio/{org_id}/bridge webhook URL to all bridge
        numbers
      operationId: reprovisionBridgeWebhooks
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ReprovisionResultView'
                type: array
                title: Response Reprovisionbridgewebhooks
      security:
        - APIKeyHeader: []
components:
  schemas:
    ReprovisionResultView:
      properties:
        phone_e164:
          type: string
          title: Phone E164
        configured:
          type: boolean
          title: Configured
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      required:
        - phone_e164
        - configured
      title: ReprovisionResultView
      description: >-
        Per-number outcome of re-applying the webhook URL (reprovision
        endpoint).
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````