action ptv_outlets_get_all_outlets { label: "List all ticket outlets" provider: ptv method: GET path: "/v3/outlets" encoding: json input: { type: "object" properties: { devid: { type: "string" } max_results: { type: "integer" format: "int32" } signature: { type: "string" } token: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { outlets: { type: "array" description: "myki ticket outlets" items: { type: "object" properties: { outlet_business: { type: "string" description: "The business name of the outlet" } outlet_business_hour_fri: { type: "string" description: "The business hours on Friday" } outlet_business_hour_mon: { type: "string" description: "The business hours on Monday" } outlet_business_hour_sat: { type: "string" description: "The business hours on Saturday" } outlet_business_hour_sun: { type: "string" description: "The business hours on Sunday" } outlet_business_hour_thur: { type: "string" description: "The business hours on Thursday" } outlet_business_hour_tue: { type: "string" description: "The business hours on Tuesday" } outlet_business_hour_wed: { type: "string" description: "The business hours on Wednesday" } outlet_latitude: { type: "number" format: "float" description: "Geographic coordinate of latitude at outlet" } outlet_longitude: { type: "number" format: "float" description: "Geographic coordinate of longitude at outlet" } outlet_name: { type: "string" description: "The location name of the outlet" } outlet_notes: { type: "string" description: "Any additional notes for the outlet such as 'Buy pre-loaded myki cards only'. May be null/empty." } outlet_postcode: { type: "integer" format: "int32" description: "The postcode for the outlet" } outlet_slid_spid: { type: "string" description: "The SLID / SPID" } outlet_suburb: { type: "string" description: "The city/municipality the outlet is in" } } } } status: { type: "object" properties: { health: { type: "integer" format: "int32" description: "API system health status (0=offline, 1=online)" enum: [0, 1] } version: { type: "string" description: "API Version number" } } } } } }