Skip to content
DevelopersTerminal

Connector CLI reference


Inspect and manage browser-owned connections without accepting credentials in the CLI.

On this page

Use this page to inspect every public atoi connector command, its accepted flags, and one runnable example. Return to the CLI reference index to choose another command group.

atoi connectorInspect and manage browser-owned connections without accepting credentials in the CLI.

CommandWhat it does
atoi connector listList safe connection state without exposing credentials.
atoi connector getRead one connector state.
atoi connector connectOpen the browser-owned connection flow.
atoi connector disconnectDisconnect one exact connector.

#connector list

List safe connection state without exposing credentials.

atoi connector list

FlagTypeDefaultValuesWhat it does
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run connector list

bash
atoi connector list --json

#connector get

Read one connector state.

atoi connector get <github|slack|linear|google-workspace>

FlagTypeDefaultValuesWhat it does
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run connector get

bash
atoi connector get github --json

#connector connect

Open the browser-owned connection flow.

atoi connector connect <github|slack|linear|google-workspace>

FlagTypeDefaultValuesWhat it does
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run connector connect

bash
atoi connector connect github --json

#connector disconnect

Disconnect one exact connector.

atoi connector disconnect <github|slack|linear|google-workspace> --confirm [--idempotency-key <key>]

FlagTypeDefaultValuesWhat it does
--confirm requiredbooleanConfirm the exact consequential action after you inspect its target.
--idempotency-keystringReuse a mutation identity when you safely retry the same action.
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run connector disconnect

bash
atoi connector disconnect github --confirm --json

Was this useful?