action learnifier_get_users_userid_pic_key_apikey { label: "User profile picture" description: "Returns a thumbnail picture of the user. This can either be a selected picture or an auto generated image. This method doesn't require a full sign in. The api key is sufficient.\nThe image is square and is likely, but not necessary, to be in 128x128 PNG format. However the format will always be either PNG, JPEG or GIF.\n" provider: learnifier method: GET path: "/users/{userid}/pic?key={APIKEY}" encoding: json input: { type: "object" properties: { APIKEY: { type: "string" } userid: { type: "string" } } required: ["APIKEY", "userid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }