Skip to main content
The feedback command retrieves feedback submitted by beta testers through TestFlight.

Usage

asc feedback [flags]

List feedback

Retrieve feedback for an app:
asc feedback --app APP_ID
asc feedback --app APP_ID --output table
asc feedback --app APP_ID --paginate

Output example

{
  "data": [
    {
      "id": "feedback-id",
      "type": "betaFeedbacks",
      "attributes": {
        "comment": "Great app, but the login screen is slow",
        "timestamp": "2024-03-04T10:30:00Z",
        "email": "tester@example.com"
      }
    }
  ]
}

Flags

--app
string
required
App ID to retrieve feedback for
--output
string
Output format: json, table, or markdown
--limit
number
Maximum number of results
--paginate
boolean
Fetch all pages automatically

Example workflows

View all feedback in table format

asc feedback --app 123456789 --output table --paginate

Export feedback to file

asc feedback --app 123456789 --paginate > feedback.json

Filter recent feedback

asc feedback --app 123456789 --output json | jq '.data[] | select(.attributes.timestamp > "2024-03-01")'

Crashes command

View crash reports

TestFlight guide

Complete TestFlight guide