Moves product stock between locations within a store.
movement.create_movement(strstore_number, MovementCreateMovementParams**kwargs) -> MovementCreateMovementResponse
POST/api/v2/public/stores/{store_number}/storeproductlocation/movement
Moves product stock between locations within a store.
Parameters
store_number: str
app_user_name: Optional[str]
The app user performing the movement.
Returns
Moves product stock between locations within a store.
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.movement.create_movement(
store_number="store_number",
)
print(response.data){
"data": "12345",
"message": "Record created successfully.",
"success": true
}Returns Examples
{
"data": "12345",
"message": "Record created successfully.",
"success": true
}