> ## Documentation Index
> Fetch the complete documentation index at: https://docs.prophecy.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Username Password

> API properties for username-password secrets

Properties for username-password secrets are specified in the `properties` object when creating or updating a secret. Username-password secrets store basic authentication credentials with a username and password pair.

## Properties

<ParamField body="name" type="string" required>
  The key name for the secret. This name is used to reference the secret in connections and other
  resources.
</ParamField>

<ParamField body="value" type="object" required>
  Username and password credentials object.

  <Expandable title="value properties">
    <ParamField body="value.username" type="string" required>
      The username for basic authentication.
    </ParamField>

    <ParamField body="value.password" type="string" required>
      The password for basic authentication.
    </ParamField>
  </Expandable>
</ParamField>
