action dev_get_user_me { label: "The authenticated user" description: "This endpoint allows the client to retrieve information about the authenticated user" provider: dev method: GET path: "/api/users/me" encoding: json output: { type: "object" 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" } } } } }