Printago API
PATCH
/v1/customizer/textures/store/{id}
Update store custom texture
Update editable fields on a store-level custom texture (name or opacity). Either field may be omitted.
Path Parameters
id
required
string
Request Body
CustomizerStoreTextureUpdateBody
nameoptional
string
opacityoptional
number
Tile rendering opacity in [0, 1].
Example Request
application/json
{
"name": "string",
"opacity": 1
}
Response Schema
StoreCustomTextureWithUrl
createdAtrequired
string
format: date-time
customSvgUrlrequired
string
idrequired
string
pattern: ^[a-z0-9]{24}$
mimeTyperequired
string
MIME type of the uploaded file (`image/svg+xml` or `image/png`).
namerequired
string
opacityrequired
number
Tile rendering opacity in the customer UI (0..1).
storagePathrequired
string
storeIdrequired
string
pattern: ^[a-z0-9]{24}$
updatedAtrequired
string
format: date-time
viewBoxrequired
string
Raw `viewBox` string copied from the uploaded SVG. Null for PNGs.
Example Response
200 OK — application/json
{
"customSvgUrl": "string",
"name": "string",
"storagePath": "string",
"mimeType": "string",
"opacity": 1,
"id": "string",
"storeId": "string",
"createdAt": "2026-08-24T03:58:55.377Z",
"updatedAt": "2026-08-24T03:58:55.377Z"
}