feature/IO-3456-Broken-Image - Fix issue

This commit is contained in:
Dave
2025-12-04 14:30:42 -05:00
parent 12b4ae3b8d
commit 0ef68afa0c

View File

@@ -30,7 +30,7 @@ Send a JSON object with one or more of the following fields to update:
- `email` (string, shop's email, not user email)
- `timezone` (string)
- `phone` (string)
- `logo_img_path` (object, e.g. `{ src, width, height, headerMargin }`)
- `logo_img_path` (string)
Any fields not included in the request body will remain unchanged.
@@ -50,12 +50,7 @@ Content-Type: application/json
"email": "shop@example.com",
"timezone": "America/Chicago",
"phone": "555-123-4567",
"logo_img_path": {
"src": "https://example.com/logo.png",
"width": "200",
"height": "100",
"headerMargin": 10
}
"logo_img_path": "https://example.com/logo.png"
}
```