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

# Reset endpoint connectivity (clear PDP context and location)

> Reset endpoint connectivity (clear PDP context and location)



## OpenAPI

````yaml /generated/specs/diagnostics.json patch /api/v1/emnify/endpoint/{endpointId}/connectivity/reset
openapi: 3.0.0
info:
  title: Raul API - Diagnostico
  description: Health, consumo, conectividad, SIMs, webhooks fallidos y estados tecnicos.
  version: 2.0.0
  contact: {}
servers:
  - url: https://api.raul.ugps.io
    description: Production
security: []
tags: []
paths:
  /api/v1/emnify/endpoint/{endpointId}/connectivity/reset:
    patch:
      tags:
        - Endpoint Management
      summary: Reset endpoint connectivity (clear PDP context and location)
      description: Reset endpoint connectivity (clear PDP context and location)
      operationId: EndpointManagementController_resetConnectivity
      parameters:
        - name: endpointId
          required: true
          in: path
          description: Emnify endpoint ID
          schema:
            type: number
      responses:
        '200':
          description: Connectivity reset successfully
        '500':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmnifyErrorDto'
      security:
        - bearerAuth: []
components:
  schemas:
    EmnifyErrorDto:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        details:
          type: string
      required:
        - error
        - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````