> ## Documentation Index
> Fetch the complete documentation index at: https://developers-partners.delivered.co.kr/llms.txt
> Use this file to discover all available pages before exploring further.

# 주문 정보 조회

> orderKey 또는 orderNumber를 통해 주문 정보를 조회할 수 있습니다.<br/>이 중 최소 하나의 값은 반드시 입력해야 합니다.



## OpenAPI

````yaml /api-reference/global-checkout-api.json GET /open-api/v1/orders
openapi: 3.0.1
info:
  title: Global Checkout Open API
  description: '-'
  version: 1.0.0
servers:
  - url: https://gw-staging.delivered.co.kr/global-checkout
    description: 테스트 환경
  - url: https://gw.delivered.co.kr/global-checkout
    description: 운영 환경
  - url: http://localhost:9220
    description: 로컬 환경
security:
  - Authorization: []
tags:
  - name: 주문
    description: 주문
  - name: 환율
    description: 환율
paths:
  /open-api/v1/orders:
    get:
      tags:
        - 주문
      summary: 주문 조회
      description: >-
        orderKey 또는 orderNumber를 통해 주문 정보를 조회할 수 있습니다.<br/>이 중 최소 하나의 값은 반드시
        입력해야 합니다.
      operationId: getOrder
      parameters:
        - name: orderKey
          in: query
          required: false
          schema:
            type: string
        - name: orderNumber
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OpenApiOrderResponse'
components:
  schemas:
    OpenApiOrderResponse:
      required:
        - carrierType
        - coupons
        - createdAt
        - deliveryType
        - items
        - orderKey
        - orderNumber
        - orderStatus
        - payment
        - recipient
      type: object
      properties:
        orderNumber:
          type: string
          description: 주문 번호
        orderKey:
          type: string
          description: 주문 고유 Key
        orderStatus:
          type: string
          description: 주문 상태
          enum:
            - CREATED
            - PAID
            - FAILED
            - PARTIAL_CANCELLED
            - CANCELLED
            - ORDER_PROCESSING
            - SHIPPED
            - DELIVERED
            - PARTIAL_DELIVERED
        deliveryType:
          type: string
          description: 배송 타입
          enum:
            - BASIC
            - MY_KOREA_SUITE
        carrierType:
          type: string
          description: 운송사 타입
          enum:
            - STANDARD
            - EXPRESS
            - MY_KOREA_SUITE
        items:
          type: array
          description: 상품 정보
          items:
            $ref: '#/components/schemas/Item'
        recipient:
          $ref: '#/components/schemas/Recipient'
        payment:
          $ref: '#/components/schemas/Payment'
        coupons:
          type: array
          description: 쿠폰 정보
          items:
            $ref: '#/components/schemas/Coupon'
        createdAt:
          type: string
          description: 주문 생성일
          format: date-time
    Item:
      required:
        - orderItemKey
        - productTitle
        - quantity
      type: object
      properties:
        orderItemKey:
          type: string
          description: 상품 고유 Key
        sellerProductId:
          type: string
          description: 고객사 상품 고유 ID
        productTitle:
          type: string
          description: 상품명
        quantity:
          type: integer
          description: 상품 수량
          format: int32
      description: 상품 정보
    Recipient:
      required:
        - address
        - email
        - firstName
        - lastName
        - phoneCode
        - phoneNumber
      type: object
      properties:
        email:
          type: string
          description: 주문자 email
        phoneCode:
          type: string
          description: 주문자 전화번호 국가코드
        phoneNumber:
          type: string
          description: 주문자 전화번호
        firstName:
          type: string
          description: 주문자 이름(firstName)
        lastName:
          type: string
          description: 주문자 이름(lastName)
        address:
          $ref: '#/components/schemas/AddressResponse'
      description: 받는분 정보
    Payment:
      required:
        - carrierTotalPriceKrw
        - carrierTotalPriceUsd
        - creditCardDiscountAmountKrw
        - creditCardDiscountAmountUsd
        - currency
        - handlingFeeKrw
        - handlingFeeUsd
        - productCouponDiscountAmountKrw
        - productCouponDiscountAmountUsd
        - productTotalPriceKrw
        - productTotalPriceUsd
        - shippingCouponDiscountAmountKrw
        - shippingCouponDiscountAmountUsd
        - totalDutyVatAmountKrw
        - totalDutyVatAmountUsd
        - totalPriceKrw
        - totalPriceUsd
      type: object
      properties:
        billingPhoneCode:
          type: string
          description: 결제자 전화번호 국가코드
        billingPhoneNumber:
          type: string
          description: 결제자 전화번호
        billingEmail:
          type: string
          description: 결제자 email
        billingFirstName:
          type: string
          description: 결제자 이름(firstName)
        billingLastName:
          type: string
          description: 결제자 이름(lastName)
        billingAddress:
          $ref: '#/components/schemas/AddressResponse'
        totalPriceKrw:
          type: number
          description: 결제 금액 (원화)
        totalPriceUsd:
          type: number
          description: 결제 금액 (달러)
        carrierTotalPriceKrw:
          type: number
          description: 총 배송비 가격 (원화)
        carrierTotalPriceUsd:
          type: number
          description: 총 배송비 가격 (달러)
        productTotalPriceKrw:
          type: number
          description: 총 상품 가격 (원화)
        productTotalPriceUsd:
          type: number
          description: 총 상품 가격 (달러)
        handlingFeeKrw:
          type: number
          description: 핸들링 피 (원화)
        handlingFeeUsd:
          type: number
          description: 핸들링 피 (달러)
        creditCardDiscountAmountKrw:
          type: number
          description: 카드 할인 금액 (원화)
        creditCardDiscountAmountUsd:
          type: number
          description: 카드 할인 금액 (달러)
        productCouponDiscountAmountKrw:
          type: number
          description: 상품 쿠폰 할인 금액 (원화)
        productCouponDiscountAmountUsd:
          type: number
          description: 상품 쿠폰 할인 금액 (달러)
        shippingCouponDiscountAmountKrw:
          type: number
          description: 배송비 쿠폰 할인 금액 (원화)
        shippingCouponDiscountAmountUsd:
          type: number
          description: 배송비 쿠폰 할인 금액 (달러)
        totalDutyVatAmountKrw:
          type: number
          description: 관부관세 합계 금액 (달러)
        totalDutyVatAmountUsd:
          type: number
          description: 관부관세 합계 금액 (달러)
        taxId:
          type: string
          description: Tax ID
        paymentMethod:
          type: string
          description: 결제 방법
          enum:
            - CARD
            - PAYPAL
            - ALIPAY
            - ALIPAYHK
            - BILLEASE
            - BOOST
            - BPI
            - DANA
            - GCASH
            - RABBIT_LINE_PAY
            - TOUCHNGO
            - TRUEMONEY
        currency:
          type: string
          description: 통화
          enum:
            - KRW
            - USD
            - AED
            - AFN
            - AMD
            - AOA
            - ARS
            - AUD
            - AWG
            - AZN
            - BAM
            - BBD
            - BDT
            - BGN
            - BHD
            - BIF
            - BMD
            - BND
            - BOB
            - BRL
            - BSD
            - BTN
            - BWP
            - BYN
            - BZD
            - CAD
            - CDF
            - CHF
            - CLP
            - CNY
            - COP
            - CRC
            - CUP
            - CVE
            - CZK
            - DJF
            - DKK
            - DOP
            - DZD
            - EGP
            - ERN
            - ETB
            - EUR
            - FJD
            - FKP
            - GBP
            - GEL
            - GHS
            - GIP
            - GMD
            - GNF
            - GTQ
            - GYD
            - HKD
            - HNL
            - HRK
            - HTG
            - HUF
            - IDR
            - ILS
            - INR
            - IQD
            - IRR
            - ISK
            - JMD
            - JOD
            - JPY
            - KES
            - KGS
            - KHR
            - KPW
            - KWD
            - KYD
            - KZT
            - LAK
            - LBP
            - LKR
            - LRD
            - LSL
            - LYD
            - MAD
            - MDL
            - MGA
            - MKD
            - MMK
            - MNT
            - MOP
            - MRU
            - MUR
            - MVR
            - MWK
            - MXN
            - MYR
            - MZN
            - NAD
            - NGN
            - NIO
            - NOK
            - NPR
            - NZD
            - OMR
            - PAB
            - PEN
            - PGK
            - PHP
            - PKR
            - PLN
            - PYG
            - QAR
            - RON
            - RSD
            - RUB
            - RWF
            - SAR
            - SBD
            - SCR
            - SDG
            - SEK
            - SGD
            - SHP
            - SLL
            - SOS
            - SRD
            - SYP
            - SZL
            - THB
            - TJS
            - TMT
            - TND
            - TOP
            - TRY
            - TTD
            - TWD
            - TZS
            - UAH
            - UGX
            - UYU
            - UZS
            - VND
            - VUV
            - WST
            - XAF
            - XCD
            - XPF
            - YER
            - ZAR
            - ZMW
            - ZWL
        paidAt:
          type: string
          description: 결제일
      description: 결제자 정보
    Coupon:
      required:
        - couponCode
        - discountTarget
      type: object
      properties:
        couponCode:
          type: string
          description: 쿠폰 코드
        discountTarget:
          type: string
          description: 쿠폰 타겟
          enum:
            - PRODUCT
            - DELIVERY
      description: 쿠폰 정보
    AddressResponse:
      required:
        - addressLine1
        - city
        - countryCode
        - zipCode
      type: object
      properties:
        addressLine1:
          type: string
          description: 주소
        addressLine2:
          type: string
          description: 상세 주소
        city:
          type: string
          description: 도시
        state:
          type: string
          description: 주
        countryCode:
          type: string
          description: 국가 코드
        zipCode:
          type: string
          description: 우편번호
      description: 결제자 주소
  securitySchemes:
    Authorization:
      type: apiKey
      description: 발급받은 시크릿 키
      name: Authorization
      in: header

````