action ptv_routes_route_from_id { label: "View route name and number for specific route ID" provider: ptv method: GET path: "/v3/routes/{route_id}" encoding: json input: { type: "object" properties: { devid: { type: "string" } geopath_utc: { type: "string" format: "date-time" } include_geopath: { type: "boolean" } route_id: { type: "integer" format: "int32" } signature: { type: "string" } token: { type: "string" } } required: ["route_id"] additionalProperties: false } output: { type: "object" properties: { route: { type: "object" properties: {} } 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" } } } } } }