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

Get Custom Designed List

Get the list of products designed in the designer

PreviousGet Design Model DetailNextGet Custom Designed Detail

Last updated 1 year ago

Endpoint

POST /openapi/v1/product/custom/customDesigned/search

Headers

For common header, refer to

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

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Request Body Properties

Properties
Type
Require
Sample
Properties description

modelCodes

[]string

N

["PODQRA028"]

Design model code array

spus

[]string

N

["QCUT00042"]

Spu array

searchContent

string

N

Short sleeve T-shirt

Product name or single spu, fuzzy query

lastUpdatedTime

int[64]

N

1694319208000

Design model last updated time

pageNumber

int

N

1

pageNumber starts from 1, default is 1

pageSize

int

N

20

"page Size" represents the return list pagination, the number of custom designed product per page. Each page can retrieve up to 100 custom order records.default is 20

Body

Name
Type
Description

id

int[64]

Primary key ID

customDesignedId

string

POD customized designed product ID

modelCode

string

Design model code

price

double

Designed product price(USD)

enName

string

Design product english name

imageUrl

string

Design product image url

backImageUrl

string

Design product back image url

kkProductId

int[64]

Kaka product ID

orderCount

int

Quantity of order

spu

string

Spu code

createDate

int[64]

Design product crated time

modifyDate

int[64]

Design product update time

Response


  "code": 10000,
  "data": {
    "list": [
      {
        "backImageUrl": "https://oss-pubilc.kakaclo.com/images/common/custom/images/20240325/5baf5db0-4e6a-41e9-9c79-df2ec2bc758e.png",
        "customDesignedId": 234234645,
        "enName": "en_name",
        "id": 1,
        "imageUrl": "https://oss-pubilc.kakaclo.com/images/common/custom/images/20240325/1f74a546-96ce-4940-86d2-b345f4897ad0.png",
        "kkProductId": 2323423,
        "modelCode": "PODQRA028",
        "orderCount": 0,
        "price": 8.35,
        "spu": "A302",
        "createDate":1712475208144,
        "modifyDate":1712475208144,
      }
    ],
    "total": 1
  },
  "message": "Success!"
}
How to call KakaClo Shop APIs - Common Headers