# OnePasswordSecretResponse

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    OnePasswordSecretResponse:
      type: object
      properties:
        secret:
          type: string
          description: Secret value retrieved from 1Password
          examples:
            - mysecretpassword123
      required:
        - secret
      x-apidog-orders:
        - secret
      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: []

```
