action apacta_get_products_product_id { label: "View single product" provider: apacta method: GET path: "/products/{product_id}" encoding: json input: { type: "object" properties: { product_id: { type: "string" } } required: ["product_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { average_cost_price: { type: "number" format: "double" } barcode: { type: "string" } buying_price: { type: "number" format: "double" } centiga_id: { type: "string" } company_id: { type: "string" format: "uuid" } created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } description: { type: "string" } erp_id: { type: "string" } id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } name: { type: "string" } pogo_id: { type: "string" } product_number: { type: "string" } project_status_type_id: { type: "string" format: "uuid" } selling_price: { type: "number" format: "double" } tripletex_id: { type: "string" } } } success: { type: "boolean" } } } }