Chuyển tới nội dung chính

v2.product.register_brand

POST /api/v2/product/register_brand

Use this call to register a brand.

Đường dẫn Endpoint

URL: https://partner.shopeemobile.com/api/v2/product/register_brand

Tham số chung

TênKiểuMẫuMô tả
partner_idint1Partner ID được gán khi đăng ký thành công. Bắt buộc cho tất cả các yêu cầu.
timestamptimestamp1610000000Dùng để chỉ định thời gian của yêu cầu. Bắt buộc cho tất cả các yêu cầu. Hết hạn sau 5 phút.
access_tokenstringc09222e3fc40ffb25fc947f738b1abf1Token truy cập API, dùng để xác định quyền của bạn đối với API. Có thể sử dụng nhiều lần và hết hạn sau 4 giờ.
shop_idint600000Mã định danh duy nhất của Shopee cho một cửa hàng. Tham số bắt buộc cho hầu hết các API.
signstringe318d3e932719916a9f9ebb57e2011961bd47abfa54a36e040d050d8931596e2Signature generated by partner_id, api path, timestamp, access_token, shop_id and partner_key via HMAC-SHA256 hashing algorithm. More details: https://open.shopee.com/documents?module=87&type=2&id=58&version=2

Tham số Request

TênKiểuBắt buộcMẫuMô tả
original_brand_namestringTrueNikeTên thương hiệu, length<=254.
category_listint[]True[16521,16522]Category_id list for this brand, please input category in L1 or L2. Max input num of category_id is 50.
product_imageobjectTrue
image_id_liststring[]TrueImage Id of product image for this brand, max input num of file = 10 ,each file's length<=498. ID market is optional.
app_logo_image_idstringFalse6373157f9408b42c8aacda1d63d3a209Image_id of logo for app client,please input hashcode of this picture.
brand_websitestringFalsewww.nike.comOfficial website of brand, length<=254.
brand_descriptionstringFalseOur mission is what drives us to do everything possible to expand human potential. We do that by creating groundbreaking sport innovations, by making our products more sustainably, by building a creative and diverse global team and by making a positive impact in communities where we live and workMô tả về this brand, can input the information, length<=254.
additional_informationstringFalseadditional notes or comment can seller can addAdditional notes or comment can seller can add, length<=254.
pc_logo_image_idstringFalse6373157f9408b42c8aacda1d63d3a209Image_id of logo for pc client,please input hashcode of this picture.
brand_regionstringTrueUSorigin region of brand.
licensesobject[]FalseFor appeal blacklisted brand data
file_namestringFalseimage.jpgBrand registration certificate image name, len < 254
file_hashstringFalse6373157f9408b42c8aacda1d63d3a209Image id of brand registration certificate image , max input num of file = 1 , each file's length<=498
brand_registration_websitestringFalsehttps://www.jumbomark.com/indonesia/trademark-registration/mischief-DID2019017755The link to brand registration website, It is mandatory when tên thương hiệu hit blacklist.len<254

Tham số Response

TênKiểuMẫuMô tả
request_idstring3e0976b06baa4e059b278ef1fdae1f01Mã định danh của yêu cầu API dùng để theo dõi lỗi.
errorstringproduct.duplicate_requestLoại lỗi nếu có lỗi xảy ra. Trống nếu không có lỗi.
messagestringYou has replied this comment already.Chi tiết lỗi nếu có lỗi xảy ra. Trống nếu không có lỗi.
responseobject
brand_idintThe identity of brand.
original_brand_namestringTên thương hiệu

Dữ liệu gửi

, "app_logo_image_id": "6373157f9408b42c8aacda1d63d3a209", "brand_website": "www.nike.com", "brand_description": "Our mission is what drives us to do everything possible to expand human potential. We do that by creating groundbreaking sport innovations, by making our products more sustainably, by building a creative and diverse global team and by making a positive impact in communities where we live and work", "additional_information": "additional notes or comment can seller can add", "pc_logo_image_id": "6373157f9408b42c8aacda1d63d3a209", "brand_region": "US" }Unirest.setTimeouts(0, 0); HttpResponse<String> response = Unirest.post("https://partner.shopeemobile.com/api/v2/product/register\_brand?shop\_id=shop\_id&partner\_id=partner\_id&sign=sign&access\_token=access\_token&timestamp=timestamp") .header("Content-Type","application/json") .body("{ "additional_information": "additional notes or comment can seller can add", "app_logo_image_id": "6373157f9408b42c8aacda1d63d3a209", "brand_country": "US", "brand_description": "Our mission is what drives us to do everything possible to expand human potential. We do that by creating groundbreaking sport innovations, by making our products more sustainably, by building a creative and diverse global team and by making a positive impact in communities where we live and work", "brand_website": "www.nike.com", "category_list": [ 16521, 16522 ], "original_brand_name": "Nike", "pc_logo_image_id": "6373157f9408b42c8aacda1d63d3a209", "product_image": { "image_id_list": [ "-" ] } }") .asString();<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://partner.shopeemobile.com/api/v2/product/register\_brand?access\_token=access\_token&partner\_id=partner\_id&shop\_id=shop\_id&sign=sign&timestamp=timestamp', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS => '{ "additional_information": "additional notes or comment can seller can add", "app_logo_image_id": "6373157f9408b42c8aacda1d63d3a209", "brand_country": "US", "brand_description": "Our mission is what drives us to do everything possible to expand human potential. We do that by creating groundbreaking sport innovations, by making our products more sustainably, by building a creative and diverse global team and by making a positive impact in communities where we live and work", "brand_website": "www.nike.com", "category_list": [ 16521, 16522 ], "original_brand_name": "Nike", "pc_logo_image_id": "6373157f9408b42c8aacda1d63d3a209", "product_image": { "image_id_list": [ "-" ] } }', CURLOPT_HTTPHEADER => array( 'Content-Type: application/json' ), )); $response = curl_exec($curl); curl_close($curl); echo $response; curl --location --request POST 'https://partner.shopeemobile.com/api/v2/product/register\_brand?shop\_id=shop\_id&partner\_id=partner\_id&sign=sign&access\_token=access\_token&timestamp=timestamp'
--header 'Content-Type: application/json'
--data-raw '{ "additional_information": "additional notes or comment can seller can add", "app_logo_image_id": "6373157f9408b42c8aacda1d63d3a209", "brand_country": "US", "brand_description": "Our mission is what drives us to do everything possible to expand human potential. We do that by creating groundbreaking sport innovations, by making our products more sustainably, by building a creative and diverse global team and by making a positive impact in communities where we live and work", "brand_website": "www.nike.com", "category_list": [ 16521, 16522 ], "original_brand_name": "Nike", "pc_logo_image_id": "6373157f9408b42c8aacda1d63d3a209", "product_image": { "image_id_list": [ "-" ] } }' import requests import json url = "https://partner.shopeemobile.com/api/v2/product/register\_brand?access\_token=access\_token&partner\_id=partner\_id&shop\_id=shop\_id&sign=sign&timestamp=timestamp" payload=json.dumps({ "additional_information": "additional notes or comment can seller can add", "app_logo_image_id": "6373157f9408b42c8aacda1d63d3a209", "brand_country": "US", "brand_description": "Our mission is what drives us to do everything possible to expand human potential. We do that by creating groundbreaking sport innovations, by making our products more sustainably, by building a creative and diverse global team and by making a positive impact in communities where we live and work", "brand_website": "www.nike.com", "category_list": [ 16521, 16522 ], "original_brand_name": "Nike", "pc_logo_image_id": "6373157f9408b42c8aacda1d63d3a209", "product_image": { "image_id_list": [ "-" ] } }) headers = { 'Content-Type': 'application/json' } response = requests.request("POST",url,headers=headers, data=payload, allow_redirects=False) print(response.text)

}