action api2cart_product_store_assign { label: "ProductStoreAssign" description: "Assign product to store" provider: api2cart method: POST path: "/product.store.assign.json" encoding: json input: { type: "object" properties: { product_id: { type: "string" } store_id: { type: "string" } } required: ["product_id", "store_id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { updated_items: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }