Printago API
PATCH
/v1/materials/{id}
Update material
Update a material type's properties
Path Parameters
id
required
string
Material ID
Request Body
Fields to update
UpdateMaterialRequest
brandoptional
string
filamentSystemProfileIdoptional
number
filamentUserProfileIdoptional
string
identifieroptional
string
nameoptional
string
starredoptional
boolean
tagsoptional
string[]
Example Request
application/json
{
"name": "string",
"brand": "string",
"tags": [
"string"
],
"starred": true
}
Response Schema
Material
brandrequired
string
createdAtrequired
string
format: date-time
externalIdoptional
string
filamentSystemProfileIdrequired
number
filamentUserProfileIdrequired
string
idrequired
string
pattern: ^[a-z0-9]{24}$
identifieroptional
string
namerequired
string
pricePer1000goptional
number
sourceoptional
string
starredoptional
boolean
storeIdrequired
string
pattern: ^[a-z0-9]{24}$
tagsrequired
string[]
typerequired
string
updatedAtrequired
string
format: date-time
Example Response
200 OK — application/json
{
"name": "string",
"brand": "string",
"type": "string",
"tags": [
"string"
],
"starred": true,
"id": "string",
"storeId": "string",
"createdAt": "2026-08-24T03:58:55.566Z",
"updatedAt": "2026-08-24T03:58:55.566Z"
}