Submits external counting lines from an external counting integration.
counting_lines.create_external_counting_lines(CountingLineCreateExternalCountingLinesParams**kwargs) -> CountingLineCreateExternalCountingLinesResponse
POST/api/v2/public/externalcountinglines
Submits external counting lines from an external counting integration.
Parameters
counting_date_time: Optional[Union[str, datetime]]
The date and time the counting was performed.
formatdate-time
store_no: Optional[str]
The store number.
Returns
Submits external counting lines from an external counting integration.
import os
from colleqtive_sdk import Colleqtive
client = Colleqtive(
bearer_token=os.environ.get("COLLEQTIVE_BEARER_TOKEN"), # This is the default and can be omitted
)
response = client.counting_lines.create_external_counting_lines()
print(response.data){
"data": "12345",
"message": "Record created successfully.",
"success": true
}Returns Examples
{
"data": "12345",
"message": "Record created successfully.",
"success": true
}