Get Design Model List

Get the list of sample clothing model that can be designed by the system.

intEndpoint

POST /openapi/v1/product/custom/designModel/search

Headers

For common header, refer to How to call KakaClo Shop APIs - Common Headers

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

Content-Type

application/json

Authorization

Bearer <token>

Request Body Properties

Properties
Type
Require
Sample
Properties description

categoryNames

[]string

N

["Skirt"]

Category name comes from category name list

modelCodes

[]string

N

["PODQRA028"]

Design model code array

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 model per page. Each page can retrieve up to 100 custom order records.default is 20

enName

string

N

"Short sleeve T-shirt"

Design model english name,Support fuzzy query

Body

Name
Type
Description

id

int[64]

Primary key ID

categoryName

string

Design model category name

modelCode

string

Design model code

price

double

Design model normal price(USD)

enName

string

Design model english name

imageUrl

string

Design model image url

backImageUrl

string

Design model back image url

createDate

int[64]

Design model crated time

modifyDate

int[64]

Design model update time

Response

{
    "code": 10000,
    "data": {
        "list": [
            {
                "id": 73,
                "modelCode": "PODQRA028",
                "categoryName": "T-shirt",
                "price": 8.05,
                "enName": "Short sleeve T-shirt",
                "imageUrl": "https://oss-pubilc.kakaclo.com/images/common/custom/images/20240323/5b14dda5-68e6-41bf-ae3a-b8caa2eaa267.png",
                "backImageUrl": "https://oss-pubilc.kakaclo.com/images/common/custom/images/20240329/5140a1a5-7f33-4ceb-99c7-6b86184d012e.png",
                "createDate": 1712629505078,
                "modifyDate": 1712629505078
            }
        ],
        "total": 1
    },
    "message": "success"
}

Last updated