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

# jira:credentials:create

> Save a Jira API token under the user config.

Save a Jira API token so commands that interact with Jira, such as [`issue:pull`](/cli/commands/issue-pull), can authenticate. The base URL, account email, and token are written as block-style YAML to `~/.talos/credentials/jira.yml` under the `default` profile.

Create an API token at [id.atlassian.com](https://id.atlassian.com/manage-profile/security/api-tokens).

## Usage

```bash theme={null}
talos jira:credentials:create [options]
```

## Examples

Run with no flags to be prompted for the base URL, email, and token (token input is hidden):

```bash theme={null}
talos jira:credentials:create
```

Provide everything non-interactively:

```bash theme={null}
talos jira:credentials:create --base-url=https://your-domain.atlassian.net --email=you@example.com --token=xxxxxxxxxxxxxxxx
```

## Options

| Option       | Description                                                       | Default             |
| ------------ | ----------------------------------------------------------------- | ------------------- |
| `--base-url` | Jira base URL (e.g. `https://your-domain.atlassian.net`).         | Prompted if omitted |
| `--email`    | Jira account email used for Basic auth.                           | Prompted if omitted |
| `--token`    | Jira API token to store.                                          | Prompted if omitted |
| `--silent`   | Suppress the instructional message and the saved-to confirmation. | `false`             |
