action greenpeace_get_volunteers_uuid { label: "get_volunteers_UUID" description: "Get one specific `Volunteer` object by specifying its UUID in the url path." provider: greenpeace method: GET path: "/volunteers/{UUID}" encoding: json input: { type: "object" properties: { UUID: { type: "string" } } required: ["UUID"] additionalProperties: false } output: { type: "object" additionalProperties: true } }