# GetOnePasswordSecretsDto

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    GetOnePasswordSecretsDto:
      type: object
      properties:
        references:
          description: >-
            Array of 1Password secret reference paths for batch retrieval of
            multiple secrets. Each reference format:
            `op://[vault]/[item]/[field]`
          type: array
          items:
            type: string
          examples:
            - - vaults/production_vault_id/items/database_credentials_item_id
              - vaults/production_vault_id/items/api_key_item_id
              - vaults/shared_vault_id/items/stripe_key_item_id
      required:
        - references
      x-apidog-orders:
        - references
      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: []

```
