# QueryTeamCredentialDto

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    QueryTeamCredentialDto:
      type: object
      properties:
        origin:
          type: string
          description: The origin URL (domain) for which credentials are stored
          examples:
            - https://example.com
        namespace:
          type: string
          description: >-
            Optional namespace for credential organization (e.g., 'production',
            'staging', 'development')
          examples:
            - production
      required:
        - origin
      x-apidog-orders:
        - origin
        - namespace
      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: []

```
