Printago API
PATCH /v1/stores

Update organization settings

Requires: organization.edit

Request Body

The fields to update

StoreUpdate
countryoptional
string
logoDarkUploadPathoptional
string
logoLightUploadPathoptional
string
nameoptional
string
timezoneoptional
string
websiteUrloptional
string

Example Request

application/json
{
  "name": "string"
}

Response Schema

Store
auditEnabledrequired
boolean
countryoptional
string
createdAtrequired
string
format: date-time
deletionScheduledForoptional
string
Set while a deletion is scheduled, cleared when an owner cancels it, and gone with the row once the deletion runs. Every member reads it from `GET /v1/stores` to render the scheduled-deletion banner.
idrequired
string
pattern: ^[a-z0-9]{24}$
logoDarkUrloptional
string
logoLightUrloptional
string
namerequired
string
timezoneoptional
string
updatedAtrequired
string
format: date-time
websiteUrloptional
string

Example Response

200 OK — application/json
{
  "name": "string",
  "auditEnabled": true,
  "id": "string",
  "updatedAt": "2026-09-09T20:31:47.615Z",
  "createdAt": "2026-09-09T20:31:47.615Z"
}