Get the list of the assets of a given asset family
GET
/api/rest/v1/asset-families/{asset_family_code}/assets
Asset
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/rest/v1/asset-families//assets'
Response Response Example
200 - Example 1
{
"_links": {
"first": {
"href": "string"
},
"next": {
"href": "string"
},
"self": {
"href": "string"
}
},
"_embedded": {
"_items": [
{
"_links": {
"self": {
"href": "string"
}
},
"code": "sku_54628_picture1",
"created": "2023-08-15T05:53:50.698Z",
"updated": "2023-08-15T05:53:50.698Z",
"values": {
"end_of_use_date": [
{
"channel": null,
"data": "02/03/2021",
"locale": null
}
],
"main_colors": [
{
"channel": null,
"data": [
"red",
"purple"
],
"locale": null
}
],
"media_preview": [
{
"channel": null,
"data": "sku_54628_picture1.jpg",
"locale": null
}
],
"model_wears_size": [
{
"channel": null,
"data": "s",
"locale": null
}
],
"photographer": [
{
"channel": null,
"data": "ben_levy",
"locale": null
}
]
}
}
]
}
}
Request
Path Params
asset_family_code
stringÂ
required
Query Params
search
stringÂ
optional
channel
stringÂ
optional
locales
stringÂ
optional
search_after
stringÂ
optional
search_after
pagination method type. Should never be set manually, see Pagination sectionResponses
Modified at 2023-08-15 05:53:55