# 注文履歴
# 注文情報の取得
# ルート
以下のGETルートを使用してストアの注文履歴を取得できます。
GET
https://loyalty.slrs.io/api/shopify/orders?ids=
ids
のリクエストパラメーターにはポイントデータを取得したいShopify注文IDをコンマ区切りのリストで挿入します。
# 引数
最大で250ID分のリクエストを受理します。
# 必須パラメーター
ids
のリクエストパラメーターにはポイントデータを取得したいShopify注文IDをコンマ区切りのリストで挿入してください。
# オプションパラメーター
なし
# 戻り値
以下のデータが返されます
キー | タイプ | 定義 |
---|---|---|
id | String | この注文のShopify ID |
awardable_points | Integer | この注文で獲得できるポイントの総数 |
points_awarded | Integer | この注文ですでに獲得したポイント数 |
points_redeemed | Integer | この注文の割引に使用されたポイント数 |
リクエストと結果の例:
curl -X GET \
'https://loyalty.slrs.io/api/shopify/orders?ids=123,456,789' \
-H 'content-type: application/json' \
-H 'authorization: Basic ${API_CREDENTIALS}' \
{
"data": {
"123": {
"awardable_points": 210,
"points_awarded": 210,
"points_redeemed": 0
},
"456": {
"awardable_points": 119,
"points_awarded": 0,
"points_redeemed": 200
}
}
}