# 주문 받기 지정된 주문을 검색합니다. 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) 주문 아이디. 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) 주문 아이디. 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