HSX_E_INPUT_MISSING_CONNECT_FLAGS
Missing connect flags.
What this error means
`hs-x connect hubspot` ran without a terminal to prompt in, and the flags it would have prompted for were not passed.
When this error stops a command, hs-x exits with code 10. With --json, the failure is reported as a structured error whose code field is HSX_E_INPUT_MISSING_CONNECT_FLAGS — stable to match on in scripts and agents.
Likely causes
- Running in CI, a script, or behind a pipe (no TTY), where interactive prompts are unavailable
- Missing
--developer-account-id(the numeric HubSpot portal id) and/or--display-name
How to fix it
- Pass the missing flags, e.g.
hs-x connect hubspot --account-id <hs-x-account-id> --developer-account-id 7222370 --display-name "My HubSpot Dev" --pak <key> --account-idis your HS-X account id — runhs-x accounts listto see yours- Or run
hs-x connect hubspotin an interactive terminal to be prompted
Still stuck? Re-run the command with --debug for the wire-level detail, or hs-x doctor to check accounts, link state, and connectivity in one pass.