Material Parameters
Authorizations
x-api-keystringRequired
Query parameters
namestringOptional
Header parameters
x-tenant-idstring · uuidOptional
Tenant id (uuid v4)
Responses
200Success
application/json
idstring · uuidRequiredExample:
Unique identifier of the material parameter
b86fa12a-76fc-46f5-8a3e-bf39e7be4c4enamestringRequiredExample:
Name of the material parameter
Colorcreated_atstring · date-timeRequiredExample:
Timestamp when the parameter was created
2025-01-23T17:01:31.692Z429
Returned when the rate limit is exceeded
get/api/v1/public/material-parameters
GET /api/v1/public/material-parameters HTTP/1.1
Host: api-stage.hesh.tech
x-api-key: YOUR_API_KEY
Accept: */*
[
{
"id": "b86fa12a-76fc-46f5-8a3e-bf39e7be4c4e",
"name": "Color",
"created_at": "2025-01-23T17:01:31.692Z"
}
]Authorizations
x-api-keystringRequired
Header parameters
x-tenant-idstring · uuidOptional
Tenant id (uuid v4)
Body
namestringRequiredExample:
Name of the material parameter
ColorResponses
201Success
application/json
idstring · uuidRequiredExample:
Unique identifier of the material parameter
b86fa12a-76fc-46f5-8a3e-bf39e7be4c4enamestringRequiredExample:
Name of the material parameter
Colorcreated_atstring · date-timeRequiredExample:
Timestamp when the parameter was created
2025-01-23T17:01:31.692Z429
Returned when the rate limit is exceeded
post/api/v1/public/material-parameters
POST /api/v1/public/material-parameters HTTP/1.1
Host: api-stage.hesh.tech
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 16
{
"name": "Color"
}{
"id": "b86fa12a-76fc-46f5-8a3e-bf39e7be4c4e",
"name": "Color",
"created_at": "2025-01-23T17:01:31.692Z"
}Authorizations
x-api-keystringRequired
Path parameters
parameter_idstring · UUIDRequired
Parameter ID
Header parameters
x-tenant-idstring · uuidOptional
Tenant id (uuid v4)
Body
namestringOptionalExample:
Name of the material parameter
ColorResponses
200Success
application/json
messagestringRequiredExample:
Message returned from API confirming the operation
The operation was done successfully429
Returned when the rate limit is exceeded
patch/api/v1/public/material-parameters/{parameter_id}
PATCH /api/v1/public/material-parameters/{parameter_id} HTTP/1.1
Host: api-stage.hesh.tech
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 16
{
"name": "Color"
}{
"message": "The operation was done successfully"
}Last updated

