9 lines
183 B
Python
9 lines
183 B
Python
from sipro.api.client import get_client
|
|
|
|
client = get_client()
|
|
router = '/general'
|
|
|
|
|
|
def get_shipping_warehouses():
|
|
return client.method('GET', f'{router}/getShippingWarehouses')
|