# CreateTeamCredentialDto

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    CreateTeamCredentialDto:
      type: object
      properties:
        origin:
          type: string
          description: The origin URL (domain) for which these credentials apply
          examples:
            - https://example.com
        namespace:
          type: string
          description: >-
            Optional namespace for credential organization (e.g., 'production',
            'staging', 'development')
          examples:
            - production
        metadata:
          type: object
          description: >-
            Credential metadata containing authentication data such as username,
            password, API keys, etc.
          properties: {}
          x-apidog-orders: []
          examples:
            - username: admin_user
              password: secure_password_123
              api_key: sk_test_abc123
      required:
        - origin
        - metadata
      x-apidog-orders:
        - origin
        - namespace
        - metadata
      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: []

```
