# 주문 가져오기 지정한 주문을 검색합니다. Endpoint: GET /v2/project/{project_id}/order/{order_id} Version: 2.0.0 Security: AuthForCart ## 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` (boolean) true일 경우 주문이 무료입니다. - `content.items` (array) 아이템 목록입니다. Example: [{"is_free":false,"price":{"amount":"30","amount_without_discount":"30","currency":"USD"},"quantity":1,"sku":"com.xsolla.item_1"}] - `content.items.is_free` (boolean) true일 경우 아이템은 무료입니다. - `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.price.currency` (string) 주문 가격 통화입니다. [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217)에 따른 3자리 코드입니다. Example: "USD" - `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