TicketSource Connector for Openclaw

Use TicketSource through a secure OOMOL connector to discover events, performance dates, and venues without handling API credentials.

oomol
v1.0.0
Aug 11, 2026
0
218
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install oo-ticket-source

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install oo-ticket-source using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is TicketSource Connector?

The TicketSource Connector is an Openclaw Skills integration for searching and reading TicketSource data through an OOMOL-connected account. It supports event discovery, event lookup, performance-date retrieval, and venue listing through the oo command-line interface.

This skill provides a schema-first workflow: inspect the live action contract, build a matching JSON payload, and execute the connector request with server-side credential injection. That approach keeps raw tokens out of agent workflows while producing structured JSON responses suitable for automation, reporting, and downstream Openclaw Skills.

TicketSource Connector Use Cases

  • Search all events available in a connected TicketSource account.
  • Retrieve one event using its case-sensitive identifier.
  • List performance dates for a specific TicketSource event.
  • List venues associated with an event.
  • Build event discovery, ticketing, or venue research workflows with Openclaw Skills.
  • Integrate TicketSource lookups into shell scripts and other OOMOL automations.
  • Diagnose authentication, expired-connection, scope, or billing errors when a request fails.

How TicketSource Connector Works

  1. Confirm that the OOMOL oo CLI is installed, the user is signed in, and TicketSource is connected.
  2. Select one of the supported read actions: get_event, list_event_dates, list_event_venues, or list_events.
  3. Inspect the authoritative live input and output contract before creating a request:
    oo connector schema "ticket_source" --action "<action_name>"
    
  4. Build a JSON object that matches the returned schema. Use an empty payload when the action requires no inputs.
  5. Execute the connector through the oo CLI:
    oo connector run "ticket_source" --action "<action_name>" --data '<json>' --json
    
  6. Parse the structured response from data and record the request identifier at meta.executionId when tracing is needed.
  7. If execution fails because of authentication or connection state, perform the relevant one-time setup step and retry the action.

TicketSource Connector Setup

The normal workflow assumes the oo CLI is already installed, the user is signed in, and TicketSource is connected. Do not run login or open the connection page proactively; use these steps only when the matching error occurs.

Install the OOMOL CLI if oo is unavailable:

curl -fsSL https://cli.oomol.com/install.sh | bash

On Windows PowerShell:

irm https://cli.oomol.com/install.ps1 | iex

Sign in once after an authentication error:

oo auth login

Connect or reconnect TicketSource when the CLI reports scope_missing, credential_expired, app_not_ready, or app_not_found. Use the OOMOL connection page and select API key authentication:

https://console.oomol.com/app-connections?provider=ticket_source

For HTTP 402 or OOMOL_INSUFFICIENT_CREDIT, recharge OOMOL billing credits before retrying. Once setup succeeds, return to the schema inspection and connector execution workflow used by these Openclaw Skills.

TicketSource Connector Data Schema & Taxonomy

Connector identity

Field Value
Connector ticket_source
Service TicketSource
CLI OOMOL oo
Authentication Injected server-side by OOMOL
Supported operations get_event, list_event_dates, list_event_venues, list_events

Request structure

  • Inspect each action with oo connector schema "ticket_source" --action "<action_name>" before creating input data.
  • Pass a JSON object through --data '<json>', or provide a JSON file with --data @path/to/file.json.
  • Omit --data when the action accepts an empty object {}.
  • Event identifiers are case-sensitive where required by get_event and related event-specific actions.

Response envelope

{
  "data": "<action-specific result>",
  "meta": {
    "executionId": "<oomol-execution-id>"
  }
}

The data property contains the action-specific TicketSource result. The meta.executionId value provides execution tracing metadata. The skill does not define a local database or generated project files; results are returned directly as JSON for the calling agent or automation.

TicketSource Connector Advanced Features

  • Schema-first execution uses the live connector contract instead of relying on stale hard-coded fields.
  • Supports both inline JSON payloads and JSON input files for repeatable command-line workflows.
  • Returns an OOMOL execution ID for logging, tracing, and troubleshooting.
  • Keeps TicketSource credentials server-side so agents never handle raw API tokens.
  • Provides focused event, date, venue, and account-level listing actions for composable Openclaw Skills workflows.
  • Includes targeted recovery guidance for missing CLI installations, authentication failures, expired credentials, missing scopes, unavailable apps, and billing stops.
  • Applies safety classification to connector actions; the currently listed TicketSource operations are read-only and can be run directly.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*