action ticketmaster_get_event_offers { label: "Event Offers" description: "Returns Event Offers." provider: ticketmaster method: GET path: "/commerce/v2/events/{eventId}/offers" encoding: json input: { type: "object" properties: { "X-SSL-CERT-UID": { type: "string" } "X-TM-ACCESS-TOKEN": { type: "string" } access_token: { type: "string" } "api-key": { type: "string" } eventId: { type: "string" } } required: ["eventId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }