Moves product stock between locations within a store.
Deprecated
movement.create_movement(strstore_number, MovementCreateMovementParams**kwargs) -> MovementCreateMovementResponse
POST/api/v2/public/stores/{store_number}/storeproductlocation/movement
Deprecated. Moves product stock between two locations within a single store.
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.success){
"success": true,
"data": "data",
"message": "message"
}Returns Examples
{
"success": true,
"data": "data",
"message": "message"
}