Assets
Assets Management
Get list of jewellery-assets with pagination. Filters and sorting can be applied.
No of of records to fetch.
20Records to be fetched from this offset.
0Sort records by field
created_atPossible values: Order type - asc or desc.
descPossible values: OK
Unauthorized
Unprocessable Entity
GET /api/jewellery/assets HTTP/1.1
Host: console.studio360.tech
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 167
{
"limit": 20,
"offset": 0,
"order_by": "created_at",
"order_type": "desc",
"filters": {
"asset_type_code": "BN",
"background_color": "B",
"tags": [
"text"
],
"created_at": "2025-12-06"
}
}{
"count": 1,
"limit": 1,
"offset": 1,
"records": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"asset_no": 1,
"asset_name": "text",
"asset_type_code": "BN",
"asset_type": "text",
"background_color": "B",
"tags": [
"text"
],
"properties": {
"price": 1,
"net_weight": 1,
"gross_weight": 1,
"stone_weight": 1,
"metal_type": "gold",
"metal_purity": "g-10",
"gender": "men",
"made_for": "adult",
"stone_variety": "amethyst",
"stone_count": "single",
"stone_color": "black",
"stone_cut": "asscher",
"stone_settings": "bar",
"stone_type": "natural",
"stone_clarity": "fl",
"occasion": [
"text"
],
"style": [
"text"
],
"design": [
"text"
],
"dimensions": {},
"custom_properties": [
{
"key": "text",
"value": "text"
}
],
"remark": "text"
},
"expires_at": "2025-12-06T04:09:36.671Z",
"thumbnail": "https://example.com",
"preview": "https://example.com",
"video": {
"embedded_url": "text",
"standalone_url": "text",
"multi_view_url": "text"
},
"created_at": "2025-12-06T04:09:36.671Z",
"status": "PUBLISHED"
}
]
}Get a jewellery-asset details by id
ID of the asset to fetch
OK
Unauthorized
Asset not found
Asset details can not be viewed, when asset is in state
GET /api/jewellery/assets/{id} HTTP/1.1
Host: console.studio360.tech
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"asset_no": 1,
"asset_name": "text",
"asset_type_code": "BN",
"asset_type": "text",
"background_color": "B",
"tags": [
"text"
],
"properties": {
"price": 1,
"net_weight": 1,
"gross_weight": 1,
"stone_weight": 1,
"metal_type": "gold",
"metal_purity": "g-10",
"gender": "men",
"made_for": "adult",
"stone_variety": "amethyst",
"stone_count": "single",
"stone_color": "black",
"stone_cut": "asscher",
"stone_settings": "bar",
"stone_type": "natural",
"stone_clarity": "fl",
"occasion": [
"text"
],
"style": [
"text"
],
"design": [
"text"
],
"dimensions": {},
"custom_properties": [
{
"key": "text",
"value": "text"
}
],
"remark": "text"
},
"expires_at": "2025-12-06T04:09:36.671Z",
"thumbnail": "https://example.com",
"preview": "https://example.com",
"video": {
"embedded_url": "text",
"standalone_url": "text",
"multi_view_url": "text"
},
"created_at": "2025-12-06T04:09:36.671Z",
"status": "PUBLISHED"
}Update a jewellery-asset details by id. Properties can be updated are asset_name, tags, properties.
ID of the asset to update
A jewellery asset for form
Unique identifier of the asset
Name of the asset (unique). Allowed characters are alphabets, numbers, hyphen and underscore.
Tags associated with the asset. Tag names should be registered at the settings section of your account.
Asset updated successfully
No content
Unauthorized
Asset not found
Asset is not in editable state
Unprocessable Entity
PATCH /api/jewellery/assets/{id} HTTP/1.1
Host: console.studio360.tech
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 487
{
"asset_name": "text",
"tags": [
"text"
],
"properties": {
"price": 1,
"net_weight": 1,
"gross_weight": 1,
"stone_weight": 1,
"metal_type": "gold",
"metal_purity": "g-10",
"gender": "men",
"made_for": "adult",
"stone_variety": "amethyst",
"stone_count": "single",
"stone_color": "black",
"stone_cut": "asscher",
"stone_settings": "bar",
"stone_type": "natural",
"stone_clarity": "fl",
"occasion": [
"text"
],
"style": [
"text"
],
"design": [
"text"
],
"dimensions": {},
"custom_properties": [
{
"key": "text",
"value": "text"
}
],
"remark": "text"
}
}No content
Last updated