글로벌링크 상품 등록
curl --request POST \
--url https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"products": [
{
"productName": "베이직 코튼 반팔 티셔츠",
"brandName": "Delivered Korea",
"mainImage": "https://www.***.co.kr/main.jpg",
"productImages": [
"<string>"
],
"productDetailImages": [
"<string>"
],
"productPrice": 19900,
"discountedProductPrice": 14900,
"domesticShippingPrice": 3000,
"freeDomesticShippingPriceCondition": 30000,
"stockQuantity": 250,
"originProductUrl": "https://www.***.co.kr/***",
"shopProductId": "product-001",
"description": [
{
"label": "소재",
"value": "100% 순면"
}
],
"productOptionGroup": [
{
"productOptionGroupType": "COMBINATION",
"productOptionGroupName": [
{
"shopGroupOptionId": 1,
"productOptionGroupName": "색상"
}
],
"productOption": [
{
"productOptionName": [
{
"shopGroupOptionId": 1,
"productOptionName": "블랙"
}
],
"optionPrice": 19900,
"stockQuantity": 50,
"order": 0,
"shopOptionId": "opt-001",
"availablePurchaseQuantityMin": 1,
"availablePurchaseQuantityMax": 10
}
]
}
]
}
]
}
'import requests
url = "https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products"
payload = { "products": [
{
"productName": "베이직 코튼 반팔 티셔츠",
"brandName": "Delivered Korea",
"mainImage": "https://www.***.co.kr/main.jpg",
"productImages": ["<string>"],
"productDetailImages": ["<string>"],
"productPrice": 19900,
"discountedProductPrice": 14900,
"domesticShippingPrice": 3000,
"freeDomesticShippingPriceCondition": 30000,
"stockQuantity": 250,
"originProductUrl": "https://www.***.co.kr/***",
"shopProductId": "product-001",
"description": [
{
"label": "소재",
"value": "100% 순면"
}
],
"productOptionGroup": [
{
"productOptionGroupType": "COMBINATION",
"productOptionGroupName": [
{
"shopGroupOptionId": 1,
"productOptionGroupName": "색상"
}
],
"productOption": [
{
"productOptionName": [
{
"shopGroupOptionId": 1,
"productOptionName": "블랙"
}
],
"optionPrice": 19900,
"stockQuantity": 50,
"order": 0,
"shopOptionId": "opt-001",
"availablePurchaseQuantityMin": 1,
"availablePurchaseQuantityMax": 10
}
]
}
]
}
] }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
products: [
{
productName: '베이직 코튼 반팔 티셔츠',
brandName: 'Delivered Korea',
mainImage: 'https://www.***.co.kr/main.jpg',
productImages: ['<string>'],
productDetailImages: ['<string>'],
productPrice: 19900,
discountedProductPrice: 14900,
domesticShippingPrice: 3000,
freeDomesticShippingPriceCondition: 30000,
stockQuantity: 250,
originProductUrl: 'https://www.***.co.kr/***',
shopProductId: 'product-001',
description: [{label: '소재', value: '100% 순면'}],
productOptionGroup: [
{
productOptionGroupType: 'COMBINATION',
productOptionGroupName: [{shopGroupOptionId: 1, productOptionGroupName: '색상'}],
productOption: [
{
productOptionName: [{shopGroupOptionId: 1, productOptionName: '블랙'}],
optionPrice: 19900,
stockQuantity: 50,
order: 0,
shopOptionId: 'opt-001',
availablePurchaseQuantityMin: 1,
availablePurchaseQuantityMax: 10
}
]
}
]
}
]
})
};
fetch('https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'products' => [
[
'productName' => '베이직 코튼 반팔 티셔츠',
'brandName' => 'Delivered Korea',
'mainImage' => 'https://www.***.co.kr/main.jpg',
'productImages' => [
'<string>'
],
'productDetailImages' => [
'<string>'
],
'productPrice' => 19900,
'discountedProductPrice' => 14900,
'domesticShippingPrice' => 3000,
'freeDomesticShippingPriceCondition' => 30000,
'stockQuantity' => 250,
'originProductUrl' => 'https://www.***.co.kr/***',
'shopProductId' => 'product-001',
'description' => [
[
'label' => '소재',
'value' => '100% 순면'
]
],
'productOptionGroup' => [
[
'productOptionGroupType' => 'COMBINATION',
'productOptionGroupName' => [
[
'shopGroupOptionId' => 1,
'productOptionGroupName' => '색상'
]
],
'productOption' => [
[
'productOptionName' => [
[
'shopGroupOptionId' => 1,
'productOptionName' => '블랙'
]
],
'optionPrice' => 19900,
'stockQuantity' => 50,
'order' => 0,
'shopOptionId' => 'opt-001',
'availablePurchaseQuantityMin' => 1,
'availablePurchaseQuantityMax' => 10
]
]
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products"
payload := strings.NewReader("{\n \"products\": [\n {\n \"productName\": \"베이직 코튼 반팔 티셔츠\",\n \"brandName\": \"Delivered Korea\",\n \"mainImage\": \"https://www.***.co.kr/main.jpg\",\n \"productImages\": [\n \"<string>\"\n ],\n \"productDetailImages\": [\n \"<string>\"\n ],\n \"productPrice\": 19900,\n \"discountedProductPrice\": 14900,\n \"domesticShippingPrice\": 3000,\n \"freeDomesticShippingPriceCondition\": 30000,\n \"stockQuantity\": 250,\n \"originProductUrl\": \"https://www.***.co.kr/***\",\n \"shopProductId\": \"product-001\",\n \"description\": [\n {\n \"label\": \"소재\",\n \"value\": \"100% 순면\"\n }\n ],\n \"productOptionGroup\": [\n {\n \"productOptionGroupType\": \"COMBINATION\",\n \"productOptionGroupName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionGroupName\": \"색상\"\n }\n ],\n \"productOption\": [\n {\n \"productOptionName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionName\": \"블랙\"\n }\n ],\n \"optionPrice\": 19900,\n \"stockQuantity\": 50,\n \"order\": 0,\n \"shopOptionId\": \"opt-001\",\n \"availablePurchaseQuantityMin\": 1,\n \"availablePurchaseQuantityMax\": 10\n }\n ]\n }\n ]\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"products\": [\n {\n \"productName\": \"베이직 코튼 반팔 티셔츠\",\n \"brandName\": \"Delivered Korea\",\n \"mainImage\": \"https://www.***.co.kr/main.jpg\",\n \"productImages\": [\n \"<string>\"\n ],\n \"productDetailImages\": [\n \"<string>\"\n ],\n \"productPrice\": 19900,\n \"discountedProductPrice\": 14900,\n \"domesticShippingPrice\": 3000,\n \"freeDomesticShippingPriceCondition\": 30000,\n \"stockQuantity\": 250,\n \"originProductUrl\": \"https://www.***.co.kr/***\",\n \"shopProductId\": \"product-001\",\n \"description\": [\n {\n \"label\": \"소재\",\n \"value\": \"100% 순면\"\n }\n ],\n \"productOptionGroup\": [\n {\n \"productOptionGroupType\": \"COMBINATION\",\n \"productOptionGroupName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionGroupName\": \"색상\"\n }\n ],\n \"productOption\": [\n {\n \"productOptionName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionName\": \"블랙\"\n }\n ],\n \"optionPrice\": 19900,\n \"stockQuantity\": 50,\n \"order\": 0,\n \"shopOptionId\": \"opt-001\",\n \"availablePurchaseQuantityMin\": 1,\n \"availablePurchaseQuantityMax\": 10\n }\n ]\n }\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"products\": [\n {\n \"productName\": \"베이직 코튼 반팔 티셔츠\",\n \"brandName\": \"Delivered Korea\",\n \"mainImage\": \"https://www.***.co.kr/main.jpg\",\n \"productImages\": [\n \"<string>\"\n ],\n \"productDetailImages\": [\n \"<string>\"\n ],\n \"productPrice\": 19900,\n \"discountedProductPrice\": 14900,\n \"domesticShippingPrice\": 3000,\n \"freeDomesticShippingPriceCondition\": 30000,\n \"stockQuantity\": 250,\n \"originProductUrl\": \"https://www.***.co.kr/***\",\n \"shopProductId\": \"product-001\",\n \"description\": [\n {\n \"label\": \"소재\",\n \"value\": \"100% 순면\"\n }\n ],\n \"productOptionGroup\": [\n {\n \"productOptionGroupType\": \"COMBINATION\",\n \"productOptionGroupName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionGroupName\": \"색상\"\n }\n ],\n \"productOption\": [\n {\n \"productOptionName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionName\": \"블랙\"\n }\n ],\n \"optionPrice\": 19900,\n \"stockQuantity\": 50,\n \"order\": 0,\n \"shopOptionId\": \"opt-001\",\n \"availablePurchaseQuantityMin\": 1,\n \"availablePurchaseQuantityMax\": 10\n }\n ]\n }\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"successCount": 98,
"failureCount": 2,
"failures": [
{
"shopProductId": "product-001",
"errorCode": "INVALID_PRICE",
"message": "할인가가 원가보다 큽니다"
}
]
}상품 API
상품 등록
상품 등록 API 입니다. 상품을 Bulk로 등록합니다. 1회 요청 시 최대 100건까지 처리합니다.
응답은 부분 성공 모델입니다.
- successCount: 등록 성공한 상품 수
- failureCount: 실패한 상품 수
- failures[]: 실패한 상품별 상세 (shopProductId, errorCode, message) 실패가 있어도 HTTP 200으로 응답하므로, 클라이언트는 failures[]를 반드시 확인해야 합니다.
POST
/
open-api
/
v1
/
global-link
/
products
글로벌링크 상품 등록
curl --request POST \
--url https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"products": [
{
"productName": "베이직 코튼 반팔 티셔츠",
"brandName": "Delivered Korea",
"mainImage": "https://www.***.co.kr/main.jpg",
"productImages": [
"<string>"
],
"productDetailImages": [
"<string>"
],
"productPrice": 19900,
"discountedProductPrice": 14900,
"domesticShippingPrice": 3000,
"freeDomesticShippingPriceCondition": 30000,
"stockQuantity": 250,
"originProductUrl": "https://www.***.co.kr/***",
"shopProductId": "product-001",
"description": [
{
"label": "소재",
"value": "100% 순면"
}
],
"productOptionGroup": [
{
"productOptionGroupType": "COMBINATION",
"productOptionGroupName": [
{
"shopGroupOptionId": 1,
"productOptionGroupName": "색상"
}
],
"productOption": [
{
"productOptionName": [
{
"shopGroupOptionId": 1,
"productOptionName": "블랙"
}
],
"optionPrice": 19900,
"stockQuantity": 50,
"order": 0,
"shopOptionId": "opt-001",
"availablePurchaseQuantityMin": 1,
"availablePurchaseQuantityMax": 10
}
]
}
]
}
]
}
'import requests
url = "https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products"
payload = { "products": [
{
"productName": "베이직 코튼 반팔 티셔츠",
"brandName": "Delivered Korea",
"mainImage": "https://www.***.co.kr/main.jpg",
"productImages": ["<string>"],
"productDetailImages": ["<string>"],
"productPrice": 19900,
"discountedProductPrice": 14900,
"domesticShippingPrice": 3000,
"freeDomesticShippingPriceCondition": 30000,
"stockQuantity": 250,
"originProductUrl": "https://www.***.co.kr/***",
"shopProductId": "product-001",
"description": [
{
"label": "소재",
"value": "100% 순면"
}
],
"productOptionGroup": [
{
"productOptionGroupType": "COMBINATION",
"productOptionGroupName": [
{
"shopGroupOptionId": 1,
"productOptionGroupName": "색상"
}
],
"productOption": [
{
"productOptionName": [
{
"shopGroupOptionId": 1,
"productOptionName": "블랙"
}
],
"optionPrice": 19900,
"stockQuantity": 50,
"order": 0,
"shopOptionId": "opt-001",
"availablePurchaseQuantityMin": 1,
"availablePurchaseQuantityMax": 10
}
]
}
]
}
] }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
products: [
{
productName: '베이직 코튼 반팔 티셔츠',
brandName: 'Delivered Korea',
mainImage: 'https://www.***.co.kr/main.jpg',
productImages: ['<string>'],
productDetailImages: ['<string>'],
productPrice: 19900,
discountedProductPrice: 14900,
domesticShippingPrice: 3000,
freeDomesticShippingPriceCondition: 30000,
stockQuantity: 250,
originProductUrl: 'https://www.***.co.kr/***',
shopProductId: 'product-001',
description: [{label: '소재', value: '100% 순면'}],
productOptionGroup: [
{
productOptionGroupType: 'COMBINATION',
productOptionGroupName: [{shopGroupOptionId: 1, productOptionGroupName: '색상'}],
productOption: [
{
productOptionName: [{shopGroupOptionId: 1, productOptionName: '블랙'}],
optionPrice: 19900,
stockQuantity: 50,
order: 0,
shopOptionId: 'opt-001',
availablePurchaseQuantityMin: 1,
availablePurchaseQuantityMax: 10
}
]
}
]
}
]
})
};
fetch('https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'products' => [
[
'productName' => '베이직 코튼 반팔 티셔츠',
'brandName' => 'Delivered Korea',
'mainImage' => 'https://www.***.co.kr/main.jpg',
'productImages' => [
'<string>'
],
'productDetailImages' => [
'<string>'
],
'productPrice' => 19900,
'discountedProductPrice' => 14900,
'domesticShippingPrice' => 3000,
'freeDomesticShippingPriceCondition' => 30000,
'stockQuantity' => 250,
'originProductUrl' => 'https://www.***.co.kr/***',
'shopProductId' => 'product-001',
'description' => [
[
'label' => '소재',
'value' => '100% 순면'
]
],
'productOptionGroup' => [
[
'productOptionGroupType' => 'COMBINATION',
'productOptionGroupName' => [
[
'shopGroupOptionId' => 1,
'productOptionGroupName' => '색상'
]
],
'productOption' => [
[
'productOptionName' => [
[
'shopGroupOptionId' => 1,
'productOptionName' => '블랙'
]
],
'optionPrice' => 19900,
'stockQuantity' => 50,
'order' => 0,
'shopOptionId' => 'opt-001',
'availablePurchaseQuantityMin' => 1,
'availablePurchaseQuantityMax' => 10
]
]
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products"
payload := strings.NewReader("{\n \"products\": [\n {\n \"productName\": \"베이직 코튼 반팔 티셔츠\",\n \"brandName\": \"Delivered Korea\",\n \"mainImage\": \"https://www.***.co.kr/main.jpg\",\n \"productImages\": [\n \"<string>\"\n ],\n \"productDetailImages\": [\n \"<string>\"\n ],\n \"productPrice\": 19900,\n \"discountedProductPrice\": 14900,\n \"domesticShippingPrice\": 3000,\n \"freeDomesticShippingPriceCondition\": 30000,\n \"stockQuantity\": 250,\n \"originProductUrl\": \"https://www.***.co.kr/***\",\n \"shopProductId\": \"product-001\",\n \"description\": [\n {\n \"label\": \"소재\",\n \"value\": \"100% 순면\"\n }\n ],\n \"productOptionGroup\": [\n {\n \"productOptionGroupType\": \"COMBINATION\",\n \"productOptionGroupName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionGroupName\": \"색상\"\n }\n ],\n \"productOption\": [\n {\n \"productOptionName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionName\": \"블랙\"\n }\n ],\n \"optionPrice\": 19900,\n \"stockQuantity\": 50,\n \"order\": 0,\n \"shopOptionId\": \"opt-001\",\n \"availablePurchaseQuantityMin\": 1,\n \"availablePurchaseQuantityMax\": 10\n }\n ]\n }\n ]\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"products\": [\n {\n \"productName\": \"베이직 코튼 반팔 티셔츠\",\n \"brandName\": \"Delivered Korea\",\n \"mainImage\": \"https://www.***.co.kr/main.jpg\",\n \"productImages\": [\n \"<string>\"\n ],\n \"productDetailImages\": [\n \"<string>\"\n ],\n \"productPrice\": 19900,\n \"discountedProductPrice\": 14900,\n \"domesticShippingPrice\": 3000,\n \"freeDomesticShippingPriceCondition\": 30000,\n \"stockQuantity\": 250,\n \"originProductUrl\": \"https://www.***.co.kr/***\",\n \"shopProductId\": \"product-001\",\n \"description\": [\n {\n \"label\": \"소재\",\n \"value\": \"100% 순면\"\n }\n ],\n \"productOptionGroup\": [\n {\n \"productOptionGroupType\": \"COMBINATION\",\n \"productOptionGroupName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionGroupName\": \"색상\"\n }\n ],\n \"productOption\": [\n {\n \"productOptionName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionName\": \"블랙\"\n }\n ],\n \"optionPrice\": 19900,\n \"stockQuantity\": 50,\n \"order\": 0,\n \"shopOptionId\": \"opt-001\",\n \"availablePurchaseQuantityMin\": 1,\n \"availablePurchaseQuantityMax\": 10\n }\n ]\n }\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://gw-staging.delivered.co.kr/global-ship/open-api/v1/global-link/products")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"products\": [\n {\n \"productName\": \"베이직 코튼 반팔 티셔츠\",\n \"brandName\": \"Delivered Korea\",\n \"mainImage\": \"https://www.***.co.kr/main.jpg\",\n \"productImages\": [\n \"<string>\"\n ],\n \"productDetailImages\": [\n \"<string>\"\n ],\n \"productPrice\": 19900,\n \"discountedProductPrice\": 14900,\n \"domesticShippingPrice\": 3000,\n \"freeDomesticShippingPriceCondition\": 30000,\n \"stockQuantity\": 250,\n \"originProductUrl\": \"https://www.***.co.kr/***\",\n \"shopProductId\": \"product-001\",\n \"description\": [\n {\n \"label\": \"소재\",\n \"value\": \"100% 순면\"\n }\n ],\n \"productOptionGroup\": [\n {\n \"productOptionGroupType\": \"COMBINATION\",\n \"productOptionGroupName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionGroupName\": \"색상\"\n }\n ],\n \"productOption\": [\n {\n \"productOptionName\": [\n {\n \"shopGroupOptionId\": 1,\n \"productOptionName\": \"블랙\"\n }\n ],\n \"optionPrice\": 19900,\n \"stockQuantity\": 50,\n \"order\": 0,\n \"shopOptionId\": \"opt-001\",\n \"availablePurchaseQuantityMin\": 1,\n \"availablePurchaseQuantityMax\": 10\n }\n ]\n }\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"successCount": 98,
"failureCount": 2,
"failures": [
{
"shopProductId": "product-001",
"errorCode": "INVALID_PRICE",
"message": "할인가가 원가보다 큽니다"
}
]
}Authorizations
발급받은 시크릿 키
Body
application/json
등록할 상품 목록 (1회 요청당 최대 100건)
Show child attributes
Show child attributes
⌘I