action dev_get_org_users { label: "Organization's users" description: "This endpoint allows the client to retrieve a list of users belonging to the organization\n\nIt supports pagination, each page will contain `30` users by default." provider: dev method: GET path: "/api/organizations/{username}/users" encoding: json input: { type: "object" properties: { username: { type: "string" } } required: ["username"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "The representation of a user" properties: { github_username: { type: "string" } id: { type: "integer" format: "int64" } joined_at: { type: "string" } location: { type: "string" } name: { type: "string" } profile_image: { type: "string" } summary: { type: "string" } twitter_username: { type: "string" } type_of: { type: "string" } username: { type: "string" } website_url: { type: "string" } } } } }