action medium_get_user_id_for_username { label: "Get User ID" description: "Returns the unique `user_id` for the given `username`.\n\n**Note:** You can find the `username` from the user's/author's profile page URL. \n- **username**.medium.com\n- medium.com/@**username**\n" provider: medium method: GET path: "/user/id_for/{username}" encoding: json input: { type: "object" properties: { username: { type: "string" } } required: ["username"] additionalProperties: false } output: { type: "object" properties: { id: { type: "string" description: "Unique hash id of the user." } } } }