다수 상품 엑셀 동기화

SHOPLIVE 상품 등록 엑셀 형식에 맞는 파일을 첨부하여 상품을 등록 및 수정합니다.

POST https://papi.shoplive.cloud/v1/goods/{accessKey}/excel

REQUEST

ParameterTypeSourceDescriptionRequiredNote
accessKeystringpath발급 받은 accessKeyO샵라이브에서 발급받은 고객사의 키
AuthorizationstringheaderJWT 인증 토큰O
filefilemultipart/form-data상품 엑셀 파일O샵라이브 상품 업로드 형식에 맞는 엑셀 파일

📘

SHOPLIVE 상품 업로드 엑셀 템플릿

RESPONSE

ParameterTypeDescriptionNote
resultslist<UploadGoodsRowResult >동기화된 상품 목록
totalCountint32전체 건수
createCountint32생성 건수
updateCountint32수정 건수
failCountint32실패 건수

Example

curl -X POST 'https://papi.shoplive.cloud/v1/goods/{access key}/excel' \
--header 'Authorization: Bearer {jwt token}' \
-F 'file=@/{filePath}'
HTTP/1.1 200
Content-Type: application/json;charset=UTF-8

{
    "results": [
        {
            "id": 731,
            "name": "상품명2",
            "brand": "shoplive",
            "description": null,
            "url": "https://www.shoplive.cloud/2",
            "sku": "shoplive-goods-3",
            "mediaUrl": "https://shopping-phinf.pstatic.net/main_2658650/26586502065.jpg",
            "medias": [
                {
                    "id": 733,
                    "mediaType": "IMAGE",
                    "url": "https://resource.shoplive.cloud/images/2be33800-4977-4ded-be1f-29ebda7bfee8.jpg",
                    "size": 18501,
                    "width": 500,
                    "height": 500,
                    "thumbnails": [
                        {
                            "imageUrl": "https://resource.shoplive.cloud/images/2be33800-4977-4ded-be1f-29ebda7bfee8_w120.jpg",
                            "original": false,
                            "width": 120,
                            "height": 120,
                            "size": 2323
                        },
                        {
                            "imageUrl": "https://resource.shoplive.cloud/images/2be33800-4977-4ded-be1f-29ebda7bfee8_w240.jpg",
                            "original": false,
                            "width": 240,
                            "height": 240,
                            "size": 5675
                        },
                        {
                            "imageUrl": "https://resource.shoplive.cloud/images/2be33800-4977-4ded-be1f-29ebda7bfee8_w480.jpg",
                            "original": false,
                            "width": 480,
                            "height": 480,
                            "size": 15871
                        }
                    ]
                }
            ],
            "originalPrice": 100000.0,
            "discountedPrice": 50000.0,
            "currency": "KRW",
            "discountPercentage": 50.0,
            "row": 0,
            "message": null,
            "status": "CREATE"
        },
        {
            "id": 729,
            "name": "상품명1_3",
            "brand": "shoplive",
            "description": null,
            "url": "https://www.shoplive.cloud",
            "sku": "shoplive-goods-1",
            "mediaUrl": "https://shopping-phinf.pstatic.net/main_2658650/26586502065.jpg",
            "medias": [
                {
                    "id": 734,
                    "mediaType": "IMAGE",
                    "url": "https://resource.shoplive.cloud/images/2be33800-4977-4ded-be1f-29ebda7bfee8.jpg",
                    "size": 18501,
                    "width": 500,
                    "height": 500,
                    "thumbnails": [
                        {
                            "imageUrl": "https://resource.shoplive.cloud/images/2be33800-4977-4ded-be1f-29ebda7bfee8_w120.jpg",
                            "original": false,
                            "width": 120,
                            "height": 120,
                            "size": 2323
                        },
                        {
                            "imageUrl": "https://resource.shoplive.cloud/images/2be33800-4977-4ded-be1f-29ebda7bfee8_w240.jpg",
                            "original": false,
                            "width": 240,
                            "height": 240,
                            "size": 5675
                        },
                        {
                            "imageUrl": "https://resource.shoplive.cloud/images/2be33800-4977-4ded-be1f-29ebda7bfee8_w480.jpg",
                            "original": false,
                            "width": 480,
                            "height": 480,
                            "size": 15871
                        }
                    ]
                }
            ],
            "originalPrice": 500000.0,
            "discountedPrice": 30000.0,
            "currency": "KRW",
            "discountPercentage": 40.0,
            "row": 0,
            "message": null,
            "status": "UPDATE"
        }
    ],
    "totalCount": 2,
    "createCount": 1,
    "updateCount": 1,
    "failCount": 0
}