## Create External Counting Lines **post** `/api/v2/public/externalcountinglines` Submits external counting lines from an external counting integration. ### Body Parameters - `CountingDateTime: optional string` The date and time the counting was performed. - `Lines: optional array of object { counted_quantity, product_barcode }` The list of counted product lines. - `counted_quantity: optional number` The counted quantity for this product. - `product_barcode: optional string` The product barcode that was scanned. - `StoreNo: optional string` The store number. ### Returns - `data: optional string` Optional data payload returned by the operation. - `message: optional string` Human-readable message describing the result. - `success: optional boolean` Indicates whether the operation completed successfully. ### Example ```http curl https://api.colleqtive.net/api/v2/public/externalcountinglines \ -X POST \ -H "Authorization: $COLLEQTIVE_BEARER_TOKEN" ```