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

# Testflight

# testflight

> Manage TestFlight groups, testers, feedback, crashes, and review workflows

The `testflight` command groups the higher-level TestFlight resources that sit around builds: groups, testers, feedback, crash submissions, review details, notifications, and exported config.

## Usage

```bash theme={null} theme={null}
asc testflight <subcommand> [flags]
```

## Key subcommands

### Groups

Create and manage internal or external beta groups:

```bash theme={null} theme={null}
asc testflight groups list --app APP_ID
asc testflight groups create --app APP_ID --name "Beta Testers"
asc testflight groups create --app APP_ID --name "Internal Testers" --internal
asc testflight groups view --id GROUP_ID
```

### Testers

List testers, add new testers, and manage their group/build access:

```bash theme={null} theme={null}
asc testflight testers list --app APP_ID
asc testflight testers add --app APP_ID --email user@example.com --group "Beta"
asc testflight testers view --id TESTER_ID
asc testflight testers add-groups --id TESTER_ID --group GROUP_ID
```

### Feedback and crashes

Inspect beta feedback submissions and crash reports:

```bash theme={null} theme={null}
asc testflight feedback list --app APP_ID
asc testflight feedback view --submission-id SUBMISSION_ID
asc testflight crashes list --app APP_ID
asc testflight crashes log --submission-id SUBMISSION_ID
```

### Review and distribution

Manage TestFlight review details and distribution settings:

```bash theme={null} theme={null}
asc testflight review view --app APP_ID
asc testflight distribution view --build-id BUILD_ID
asc testflight notifications send --build-id BUILD_ID
```

### Metrics and config

```bash theme={null} theme={null}
asc testflight metrics group-testers --group GROUP_ID
asc testflight metrics app-testers --app APP_ID
asc testflight config export --app APP_ID --output ./testflight.yaml
```

## Common workflows

### Create a beta group and add testers

```bash theme={null} theme={null}
# Create a new beta group
asc testflight groups create \
  --app 123456789 \
  --name "External Testers"

# Add testers to the group
asc testflight testers add \
  --app 123456789 \
  --email tester@example.com \
  --group "External Testers"
```

### Review incoming beta feedback

```bash theme={null} theme={null}
asc testflight feedback list --app 123456789 --output table
asc testflight crashes list --app 123456789 --sort -createdDate --limit 10
```

## Related

<CardGroup cols={2}>
  <Card title="Builds command" icon="box" href="/commands/builds">
    Manage uploads, processing, and build distribution
  </Card>

  <Card title="TestFlight guide" icon="plane" href="/guides/testflight">
    Complete TestFlight distribution guide
  </Card>
</CardGroup>
