action tfl_occupancy_get_charge_connector_status { label: "Gets the occupancy for a charge connectors with a given id (sourceSystemPlaceId)" provider: tfl method: GET path: "/Occupancy/ChargeConnector/{ids}" encoding: json input: { type: "object" properties: { ids: { type: "array" items: { type: "string" } } } required: ["ids"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int32" } sourceSystemPlaceId: { type: "string" } status: { type: "string" } } } } }