-
Sendleのアカウント作成とAPIアクセスの設定
- Sendleのウェブサイト(https://www.sendle.com/)にアクセスし、無料アカウントを作成します。
- SendleのAPIアクセスを有効化します。APIアクセスには、アクセスキーとシークレットキーが必要です。
-
Sendleの送料計算とラベル作成
-
SendleのAPIを使用して、送料を即座に計算することができます。例えば、以下のコードを使用して送料を計算します。
import requests url = "https://api.sendle.com/api/quote" headers = { "Content-Type": "application/json", "Authorization": "Bearer YOUR_API_KEY" } data = { "pickup_suburb": "送り元の市区町村", "pickup_postcode": "送り元の郵便番号", "delivery_suburb": "配送先の市区町村", "delivery_postcode": "配送先の郵便番号", "kilogram_weight": 2.5 } response = requests.post(url, headers=headers, json=data) result = response.json() print("送料:", result["quote"]["gross"]["amount"])
-
SendleのAPIを使用してラベルを作成することもできます。以下のコードは、ラベルを作成する例です。
import requests url = "https://api.sendle.com/api/labels" headers = { "Content-Type": "application/json", "Authorization": "Bearer YOUR_API_KEY" } data = { "pickup_suburb": "送り元の市区町村", "pickup_postcode": "送り元の郵便番号", "delivery_suburb": "配送先の市区町村", "delivery_postcode": "配送先の郵便番号", "kilogram_weight": 2.5, "description": "パッケージの説明", "customer_reference": "顧客参照番号" } response = requests.post(url, headers=headers, json=data) result = response.json() print("ラベルURL:", result["labels"][0]["url"])
-
-
Sendleプランの選択と料金削減
- Sendleには、Sendle Standard、Sendle Premium、Sendle Proの3つのプランがあります。ビジネスの規模に応じて最適なプランを選択しましょう。
- Sendle Proプランに申し込むと、さらなる割引、専任サポート、地域および全国の配送ドライバーへのアクセスなどの特典があります。
以上が、Sendleを使った小規模ビジネスの送料削減方法とコード例です。SendleのAPIを活用して送料を計算し、ラベルを作成することで、ビジネスの効率化とコスト削減が可能です。ぜひこの情報を活用して、ビジネスの配送プロセスを改善しましょう。