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"
}
주문 키를 이용하여 주문정보를 조회합니다.
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"
}
발급받은 시크릿 키
OK
The response is of type object
.