# OnePasswordSecretsResponse

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    OnePasswordSecretsResponse:
      type: object
      properties:
        secrets:
          description: >-
            List of secrets including both successfully retrieved secrets and
            error information for failed retrievals
          type: array
          items:
            type: object
            properties:
              reference:
                type: string
                description: The original reference path
              error:
                type: string
                description: Error message (if failed)
              secret:
                type: string
                description: The secret value (if successful)
            x-apidog-orders:
              - reference
              - secret
              - error
      required:
        - secrets
      x-apidog-orders:
        - secrets
      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: []

```
