action greenpeace_get_volunteers { label: "get_volunteers" description: "Gets an array of `Volunteer` object. Mandatory query param of **domain** determines the site / country the volunteers are from." provider: greenpeace method: GET path: "/volunteers" encoding: json input: { type: "object" properties: { domain: { type: "string" } limit: { type: "string" } must_have_default_avatar: { type: "string" } } required: ["domain"] additionalProperties: false } output: { type: "object" additionalProperties: true } }