action trashnothing_get_profile_image_file { label: "Retrieve a users' profile image" description: "This is designed to be used as the src attribute of an HTML <img> tag to show the profile image of the given user.\n" provider: trashnothing method: GET path: "/users/{user_id}/profile-image" encoding: json input: { type: "object" properties: { default: { type: "string" } user_id: { type: "string" } } required: ["user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }