Skip to content
Get started

Submits external counting lines from an external counting integration.

CountingLineCreateExternalCountingLinesResponse CountingLines.CreateExternalCountingLines(CountingLineCreateExternalCountingLinesParams?parameters, CancellationTokencancellationToken = default)
POST/api/v2/public/externalcountinglines

Submits external counting lines from an external counting integration.

ParametersExpand Collapse
CountingLineCreateExternalCountingLinesParams parameters
DateTimeOffset countingDateTime

The date and time the counting was performed.

formatdate-time
IReadOnlyList<Line>? lines

The list of counted product lines.

Float CountedQuantity

The counted quantity for this product.

formatfloat
string? ProductBarcode

The product barcode that was scanned.

string? storeNo

The store number.

ReturnsExpand Collapse
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.

Submits external counting lines from an external counting integration.

CountingLineCreateExternalCountingLinesParams parameters = new();

var response = await client.CountingLines.CreateExternalCountingLines(parameters);

Console.WriteLine(response);
{
  "data": "12345",
  "message": "Record created successfully.",
  "success": true
}
Returns Examples
{
  "data": "12345",
  "message": "Record created successfully.",
  "success": true
}