# Revoke 1Password Authorization

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /browser/one-password/token:
    delete:
      summary: Revoke 1Password Authorization
      deprecated: false
      description: >-
        Remove the configured 1Password API token from the system. After
        deletion, access to secrets in 1Password will be disabled until a new
        token is configured.
      operationId: OnePasswordController_deleteToken
      tags:
        - Scraping Browser/1Password
        - 1Password
      parameters:
        - name: x-api-token
          in: header
          description: API key for authentication
          required: false
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: 1Password integration deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
          headers: {}
          x-apidog-name: OK
      security: []
      x-apidog-folder: Scraping Browser/1Password
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/745098/apis/api-23850712-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: bearer
      scheme: bearer
      description: Bearer token authentication using your Scrapeless API key
    apikey-header-x-api-token:
      type: apiKey
      in: header
      name: x-api-token
servers:
  - url: https://api.scrapeless.com
    description: Prod Env
security:
  - apikey-header-x-api-token: []

```
