action staging_ecotaco_reserve_a_ride { label: "Reserve a ride" description: "To book, the ride must belong to the connected user. The ride must have a main passenger at least, the booking user id and the payment hash must be set.\n\n**Must be authenticate**" provider: staging_ecotaco method: POST path: "/rides/{id}/reserve" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Accept-Language": { type: "string" } id: { type: "number" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }