Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/workato_platform_cli/cli/commands/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ async def create(
@connections.command(name="create-oauth")
@click.option(
"--parent-id",
type=int,
required=True,
help="ID of the parent OAuth connection (must be established/authorized)",
)
Expand All @@ -269,7 +270,11 @@ async def create(
type=int,
help="ID of the project/folder (uses current project if not specified)",
)
@click.option("--external-id", help="End user string ID for identifying the connection")
@click.option(
"--external-id",
required=True,
help="End user string ID for identifying the connection",
)
@click.option(
"--callback-url",
help="URL called back after successful token acquisition (optional)",
Expand Down