## Create External Counting Lines `CountingLineCreateExternalCountingLinesResponse CountingLines.CreateExternalCountingLines(CountingLineCreateExternalCountingLinesParams?parameters, CancellationTokencancellationToken = default)` **post** `/api/v2/public/externalcountinglines` Submits external counting lines from an external counting integration. ### Parameters - `CountingLineCreateExternalCountingLinesParams parameters` - `DateTimeOffset countingDateTime` The date and time the counting was performed. - `IReadOnlyList? lines` The list of counted product lines. - `Float CountedQuantity` The counted quantity for this product. - `string? ProductBarcode` The product barcode that was scanned. - `string? storeNo` The store number. ### Returns - `class CountingLineCreateExternalCountingLinesResponse:` Standard success response returned by mutation endpoints. - `string? Data` Optional data payload returned by the operation. - `string? Message` Human-readable message describing the result. - `Boolean Success` Indicates whether the operation completed successfully. ### Example ```csharp CountingLineCreateExternalCountingLinesParams parameters = new(); var response = await client.CountingLines.CreateExternalCountingLines(parameters); Console.WriteLine(response); ```