action beezup_get_profile_picture_info { label: "Get profile picture information" provider: beezup method: GET path: "/v2/user/customer/account/profilePictureInfo" encoding: json input: { type: "object" properties: { "If-None-Match": { type: "string" } } additionalProperties: false } output: { type: "object" required: ["links", "profilePictureInfo"] properties: { links: { type: "object" required: ["save", "self"] properties: { save: { type: "object" } self: { type: "object" } } } profilePictureInfo: { type: "object" } } } }