List Design Kits
GET/brand-boards/locations/:locationId/design-kits
Get list of design kits for a location
Request
Version stringrequired
API Version
Available options
v3locationId stringrequired
ID of the location to list design kits for.
limit number
Maximum number of design kits to return.
Possible values: >= 1 and <= 20
Default value:
10offset number
Number of design kits to skip for pagination.
Possible values: >= 0
Default value:
0search string
Filter results by design kit name (case-insensitive partial match).
deleted boolean
Include soft-deleted design kits in the results.
Default value:
falseSuccess
- application/json
- Schema
- Example (auto)
Schema
itemsobject[]required
List of design kits for the current page.
totalnumberrequired
Total number of design kits matching the query.
traceIdstring
Trace identifier for the request, useful for debugging and support.
{
"items": [
{
"id": "507f1f77bcf86cd799439011",
"name": "My Design Kit",
"isDefault": false,
"createdAt": "2024-01-05T12:00:00.000Z",
"updatedAt": "2024-01-05T12:00:00.000Z"
}
],
"total": 25,
"traceId": "019e4ef5-a65e-4198-8cf9-8e93dca9bda4"
}