Skip to content
Get started

Submits external counting lines from an external counting integration.

POST/api/v2/public/externalcountinglines

Submits external counting lines from an external counting integration.

Body ParametersJSONExpand Collapse
CountingDateTime: optional string

The date and time the counting was performed.

formatdate-time
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.

formatfloat
product_barcode: optional string

The product barcode that was scanned.

StoreNo: optional string

The store number.

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

Submits external counting lines from an external counting integration.

curl https://api.colleqtive.net/api/v2/public/externalcountinglines \
    -X POST \
    -H "Authorization: $COLLEQTIVE_BEARER_TOKEN"
{
  "data": "12345",
  "message": "Record created successfully.",
  "success": true
}
Returns Examples
{
  "data": "12345",
  "message": "Record created successfully.",
  "success": true
}