action trashnothing_set_profile_image { label: "Set a profile image" description: "Profile images must be at least 90 pixels wide and tall. And if the image used is not square it will be automatically cropped to be square.\n" provider: trashnothing method: POST path: "/users/me/profile-image" encoding: json output: { type: "object" properties: { photo: { type: "object" description: "The result of uploading or editing a photo." properties: { photo_id: { type: "string" } thumbnail: { type: "object" description: "Photo thumbnail data." properties: { height: { type: "integer" } url: { type: "string" } width: { type: "integer" } } } } } user: { type: "object" } } } }