Creates or updates stores.
stores.create_stores(StoreCreateStoresParams**kwargs) -> StoreCreateStoresResponse
POST/api/v2/public/stores
Creates or updates stores.
Parameters
When true, removes existing stores before inserting.
Returns
Creates or updates stores.
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.stores.create_stores()
print(response.data){
"data": "12345",
"message": "Record created successfully.",
"success": true
}Returns Examples
{
"data": "12345",
"message": "Record created successfully.",
"success": true
}