Kakaclo Api Docs
  • Welcome!
  • Quick Start
  • Release Notes
    • 2023-08 Add API token refresh function, logistics channel to add Express
    • 2023-07 product api increase supplierLevel info
    • 2023-06 Order Automatic Split interface changes
    • 2023-04 Product CountryAndWarehouse interface changes
    • 2023-04 Order V1 Version And Order V2 Version
    • 2022-12 Order V2 Version
  • API Usage
    • API Endpoint
    • Rate Limits
  • Admin API
    • Product
      • Category
      • Products
      • CountryAndWarehouse
      • Stock
      • Product API pull suggestion
    • Order V1(Outdated)
      • Logistics Channel
      • Order
      • Query Order
        • Orders Status Json Response
      • Refund Order
      • Query ReFund
    • Order V2
      • Logistics Channel
      • Order
      • Query Order
        • Orders Status Json Response
      • Refund Order
      • Query ReFund
      • Automatic Split Logistics Channel
    • Custom Product
      • Get Design Category Name List
      • Get Design Model List
      • Get Design Model Detail
      • Get Custom Designed List
      • Get Custom Designed Detail
      • Create designed product orders and get order list
      • Get KakaClo pod-designer address
      • Save POD Designed Product
    • Payment
      • Query Balance
Powered by GitBook
On this page
  1. Admin API
  2. Custom Product

Save POD Designed Product

Requesting this interface is equivalent to accessing the interface for saving designed products on the Kakaclo designer. A new product data item will be added to the list of designed products.

PreviousGet KakaClo pod-designer addressNextPayment

Last updated 10 months ago

Create a new POD designed product

POST /openapi/v1/product/custom/customDesigned/addProduct

Headers

For common header, refer to

curl --request POST
     --url 'https://developer.kakaclo.com/openapi/v1/product/custom/customDesigned/addProduct'
     --header 'Content-Type: application/json'
     --header 'Authorization: Bearer YOU_ACCES-TOKEN'
Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Request Body Properties

Name
Type
Description

modelId

string

modelId value source: id field returned by Get Design Model List or Get Design Model Detail interface

enName

string

Name of the designed product

imageUrl

string

Designed clothing front picture

backImageUrl

string

Designed clothing back picture

materialImages

array

All the material pictures used in the clothing design pictures

colorValue

string

Select the specific color value of the color

Request body

{
  "modelId": "1",
  "enName": "Dinosaur Round Neck Short Sleeve T-Shirt-Children's Clothing",
  "imageUrl": "https://oss-pubilc.kakaclo.com/images/common/custom/images/20240325/1f74a546-96ce-4940-86d2-b345f4897ad0.png",
  "backImageUrl": "https://oss-pubilc.kakaclo.com/images/common/custom/images/20240325/5baf5db0-4e6a-41e9-9c79-df2ec2bc758e.png",
  "materialImages": [
    {
      "imageName": "aaa",
      "imageUrl": "https://oss-pubilc.kakaclo.com/images/common/custom/images/20240325/5baf5db0-4e6a-41e9-9c79-df2ec2bc758e.png"
    }
  ],
  "colorValue": "#A72525"
}

Response

{
  "data": "",
  "code": 10000,
  "message": "Success!"
}
{
  "error": "Invalid request"
}
How to call KakaClo Shop APIs - Common Headers