action visagecloud_perform_analysis_using_post { label: "Perform detection on a given picture or picture URL" provider: visagecloud method: POST path: "/rest/v1.1/analysis/detection" encoding: json input: { type: "object" properties: { accessKey: { type: "string" } algorithmVersion: { type: "string" } autoRotate: { type: "string" } filters: { type: "string" } options: { type: "string" } pictureURL: { type: "string" } retentionTime: { type: "string" } secretKey: { type: "string" } skipEXIF: { type: "string" } storeAnalysisPicture: { type: "string" } storeFacePictures: { type: "string" } storeResult: { type: "string" } waitForPictureUpload: { type: "string" } } required: ["accessKey", "secretKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }