# 注文を受ける 指定された注文を取得します。 Endpoint: GET /v2/project/{project_id}/distribution_hub/order/{order_id} Version: 1.0.0 Security: AuthForClient ## Path parameters: - `project_id` (integer, required) プロジェクトID。 Example: 44056 - `order_id` (string, required) 注文ID。 Example: "656" ## Response 200 fields (application/json): - `content` (object) 注文内容。 - `content.is_free` (string) trueの場合、注文は無料です。 Example: "false" - `content.items` (array) アイテムリスト。 Example: [{"is_free":false,"price":{"amount":"30","amount_without_discount":"30","currency":"USD"},"quantity":1,"sku":"some_sku"}] - `content.items.is_free` (string) trueの場合、アイテムは無料です。 Example: "false" - `content.items.price` (object) アイテム価格。 - `content.items.price.amount` (string) 割引商品価格。 Example: "30" - `content.items.price.amount_without_discount` (string) アイテム価格。 Example: "30" - `content.items.price.currency` (string) デフォルトの購入通貨。[ISO 4217](https://en.wikipedia.org/wiki/ISO_4217)ごとの3文字のコード。 Example: "USD" - `content.items.quantity` (integer) アイテム数量。 Example: 1 - `content.items.sku` (string) 一意のアイテムID。SKUには、小文字のラテン英数字、ピリオド、ダッシュ、およびアンダースコアのみを含めることができます。 Example: "some_sku" - `content.price` (object) 注文価格。 - `content.price.amount` (string) 注文割引価格。 Example: "30" - `content.price.amount_without_discount` (string) 注文価格。 Example: "30" - `content.virtual_price` (object) 仮想通貨での注文価格。 - `content.virtual_price.currency` (string) 順番に使用される仮想通貨SKU。 Example: "test_vc" - `order_id` (integer) 注文ID。 Example: 1 - `status` (string) 注文状況:new/paid/done/canceled。 Example: "paid" ## Response 404 fields (application/json): - `errorCode` (integer) Example: 9001 - `errorMessage` (string) Example: "[0401-9001]: Order not found" - `statusCode` (integer) Example: 404