action logoraisr_projects_read { label: "Get project details." description: "This GET-Method returns a specific project." provider: logoraisr method: GET path: "/projects/{project_number}/" encoding: json input: { type: "object" properties: { project_number: { type: "string" } } required: ["project_number"] additionalProperties: false } output: { type: "object" required: ["process_id"] properties: { created: { type: "string" format: "date-time" description: "The Date when the project was created." } file_id: { type: "string" format: "uuid" description: "Id of the file on which the process was applied." } id: { type: "integer" description: "Id of the created project." } paypal_payment_id: { type: "string" description: "Id of the paypal payment." } process: { type: "object" required: ["processing_algorithm"] properties: { crop: { type: "string" description: "Crops the image according to the specified mechanism. If you specify the size \"WidthexHeight\", the image will be cropped centered. If coordinates \"x1,y1,x2,y2\" are given, the image is cropped according to the coordinates. The image will be cropped to the size of the stories if \"faces\" are specified as. Example Centered: \"crop\": \"200x300\". Example Region: \"crop\": \"200,300,150,300\". Example Faces: \"crop\": \"faces\"." } flip: { type: "boolean" description: "Flips the image around the horizontal axis, from top to bottom. Example: \"flip\": true" } mirror: { type: "boolean" description: "Mirrors the image around the vertical axis, i.e. from right to left. Example: \"mirror\": true" } processing_algorithm: { type: "string" description: "Schlüssel welcher Verarbeitungs-Algorithmus angewendet wird. Zur Auswahl stehen \"logo-to-vector\", \"logo-super-resolution\", \"logo-segmentation\" und \"image-processing\"." } resize: { type: "string" description: "Changes the size of the image according to the specified size. Example: \"resize\": \"200x300\"." } rotate: { type: "integer" description: "Rotates the image around the center according to the specified degree. Example: \"rotate\": 90" } } } process_id: { type: "string" description: "Process which should applied. Processes are \"color-classification\"." } project_number: { type: "integer" description: "Number of the created project." } project_title: { type: "string" description: "Name of the project with which it was saved." } result_file_id: { type: "string" format: "uuid" description: "Id of the result file which the process created." } } } }