action lyft_set_ride_destination { label: "Update the destination of the ride" description: "Add or update the ride's destination. Note that the ride must still be active (not droppedOff or canceled), and that destinations on Lyft Line rides can not be changed.\n" provider: lyft method: PUT path: "/rides/{id}/destination" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }