Shipments
- class py_veeqo.endpoints.shipments.Shipments(api_key: str | None = None)
Bases:
PyVeeqoThis class implements all the shipments api calls.
- create_shipment(data: Dict = None, json: Dict[str, Any] | List[Any] | str | int | float | bool | None = None) Result
Create a new shipment. https://developers.veeqo.com/docs#/reference/shipments/shipment-collection/create-a-shipment
- Parameters:
data (Dict, optional) – The data to be sent to the endpoint. Defaults to None.
json (JSONType, optional) – The json data to be sent to the endpoint. Defaults to None.
- delete_shipment(shipment_id: int) Result
Delete a specific shipment. https://developers.veeqo.com/docs#/reference/shipments/shipment/delete
- Parameters:
shipment_id (int) – The id of the shipment to be deleted.