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

# Reboot Extension Devices

> Send a check-sync SIP NOTIFY to every registered device on the extension, instructing them to resync/reboot



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json post /v2/admin/extensions/{id}/reboot
openapi: 3.1.0
info:
  title: VOXO API
  description: VOXO Communication Platform API
  version: 2.0.0
servers:
  - url: https://api.voxo.co
security:
  - bearerAuth: []
paths:
  /v2/admin/extensions/{id}/reboot:
    post:
      tags:
        - Extensions
      summary: Reboot Extension Devices
      description: >-
        Send a check-sync SIP NOTIFY to every registered device on the
        extension, instructing them to resync/reboot
      parameters:
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: path
          name: id
          required: true
          description: Extension ID
      responses:
        '200':
          description: Reboot request sent
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    description: Extension ID
                  peerName:
                    type: string
                    description: SIP peer name
                  sent:
                    type: boolean
                    description: Whether the check-sync notify was dispatched
                required:
                  - id
                  - peerName
                  - sent
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````