Integration
Integration
Browse the services your workspace can use and the operations each one exposes.
Discover what General Input supports and what each service can do. Discovery is read-only and free; only geni exec bash resolves credentials and runs code.
geni integration searchsearches operations across every service at once. Usually the fastest first move.geni integration listlists every integration available to your workspace.geni integration getshows one integration's setup details, env vars, and OAuth scopes.geni integration operationslists what one integration can do.geni integration operationprints one operation's full reference.
Bare geni integration (and the alias geni integrations) runs the list.
The order that works
geni integration search "send slack message" # find the service and operation
geni integration operation <id> --format markdown # read its reference
geni credential list --service slack # find a connected credential
geni exec bash --cred <id> --reason "…" -- '<curl>' # run itReading the operation reference before writing a call is the step that matters. Guessing URLs, params, and env var names is the most common way a credentialed call fails.