GET
/
open-api
/
v1
/
orders
주문 조회
curl --request GET \
  --url https://gw-staging.delivered.co.kr/global-checkout/open-api/v1/orders \
  --header 'Authorization: <api-key>'
{
  "orderNumber": "<string>",
  "orderKey": "<string>",
  "orderStatus": "CREATED",
  "deliveryType": "BASIC",
  "carrierType": "STANDARD",
  "items": [
    {
      "orderItemKey": "<string>",
      "sellerProductId": "<string>",
      "productTitle": "<string>",
      "quantity": 123
    }
  ],
  "recipient": {
    "email": "<string>",
    "phoneCode": "<string>",
    "phoneNumber": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "address": {
      "addressLine1": "<string>",
      "addressLine2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "countryCode": "<string>",
      "zipCode": "<string>"
    }
  },
  "payment": {
    "billingPhoneCode": "<string>",
    "billingPhoneNumber": "<string>",
    "billingEmail": "<string>",
    "billingFirstName": "<string>",
    "billingLastName": "<string>",
    "billingAddress": {
      "addressLine1": "<string>",
      "addressLine2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "countryCode": "<string>",
      "zipCode": "<string>"
    },
    "totalPriceKrw": 123,
    "totalPriceUsd": 123,
    "carrierTotalPriceKrw": 123,
    "carrierTotalPriceUsd": 123,
    "productTotalPriceKrw": 123,
    "productTotalPriceUsd": 123,
    "handlingFeeKrw": 123,
    "handlingFeeUsd": 123,
    "creditCardDiscountAmountKrw": 123,
    "creditCardDiscountAmountUsd": 123,
    "productCouponDiscountAmountKrw": 123,
    "productCouponDiscountAmountUsd": 123,
    "shippingCouponDiscountAmountKrw": 123,
    "shippingCouponDiscountAmountUsd": 123,
    "taxId": "<string>",
    "paymentMethod": "CARD",
    "currency": "KRW",
    "paidAt": "<string>"
  },
  "coupons": [
    {
      "couponCode": "<string>",
      "discountTarget": "PRODUCT"
    }
  ],
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

발급받은 시크릿 키

Query Parameters

orderKey
string
required

Response

200 - */*

OK

The response is of type object.