action contribly_get_users_id { label: "Retrieve a single user by id" provider: contribly method: GET path: "/users/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { bio: { type: "string" } displayName: { type: "string" } id: { type: "string" } registered: { type: "string" format: "date-time" } username: { type: "string" } } } }