# UpsertOnePasswordDto

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    UpsertOnePasswordDto:
      type: object
      properties:
        name:
          type: string
          description: >-
            Integration name used to identify this 1Password integration
            configuration
          examples:
            - Production Vault Integration
        token:
          type: string
          description: >-
            1Password API access token for securely accessing your 1Password
            vault. This should be a service account token starting with 'ops_'
          examples:
            - ops_eyJhbGciOiJFUzI1NiIsImtpZCI6InNpZ25pbl8xIiwidHlwIjoiSldUIn0...
      required:
        - name
        - token
      x-apidog-orders:
        - name
        - token
      x-apidog-folder: ''
  securitySchemes:
    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: []

```
