# GetOnePasswordSecretDto

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    GetOnePasswordSecretDto:
      type: object
      properties:
        reference:
          type: string
          description: >-
            1Password secret reference path in format:
            `op://[vault]/[item]/[field]`. You can obtain vault ID and item ID
            from the 1Password admin interface
          examples:
            - vaults/production_vault_id/items/database_credentials_item_id
      required:
        - reference
      x-apidog-orders:
        - reference
      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: []

```
