action contribly_get_users { label: "List users" provider: contribly method: GET path: "/users" encoding: json input: { type: "object" properties: { assignment: { type: "string" } country: { type: "string" } linkedProfile: { type: "string" } minimumContributions: { type: "number" } ownedBy: { type: "string" } submittedAfter: { type: "string" format: "date-time" } submittedBefore: { type: "string" format: "date-time" } username: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { bio: { type: "string" } displayName: { type: "string" } id: { type: "string" } registered: { type: "string" format: "date-time" } username: { type: "string" } } } } }