---
title: "Update My Blog Settings (PUT)"
method: PUT
path: "/blogs/me"
tags: ["Blogs"]
---

# Update My Blog Settings (PUT)

`PUT /blogs/me`

Update basic settings like blog name, description, logo, favicon, and featured image using PUT.

**Image Processing:**
Logo, favicon, and featured image URLs are uploaded to Inblog R2 storage by default.
To preserve original URLs, use the `preserve_external_images=true` query parameter.

## Query parameters

- `preserve_external_images` boolean

## Request body

- BlogUpdateRequest
  - `jsonapi` object, required — JSON:API version metadata included in every JSON:API response.
    - `version` string, required — Implemented JSON:API version.
  - `data` object — Blog resource payload to update.
    - `type` 'blogs', required — Resource type identifier. Always `blogs`.
    - `attributes` object — Blog fields to update. Only included fields are changed.
      - `title` string — Blog title
      - `description` string — Blog description
      - `ga_measurement_id` string — Google Analytics 4 measurement ID
      - `logo` union
        - string, uri — Logo image URL
        - string — Base64 data URL (max 10MB)
        - object — Image object
          - `url` string, uri — Logo image URL
      - `favicon` union
        - string, uri — Favicon URL
        - string — Base64 data URL (max 10MB)
        - object — Image object
          - `url` string, uri — Favicon image URL
      - `og_image` union
        - string, uri — Open Graph image URL
        - string — Base64 data URL (max 10MB)
        - object — Image object
          - `url` string, uri — Open Graph image URL
      - `blog_language` string — Blog language code
      - `timezone_diff` integer — Time difference from UTC (in hours)

## Response `200`

Blog updated successfully

## Other responses

- `401` — Authentication failed
- `403` — Insufficient permissions
- `404` — Resource not found
- `405` — Method not allowed
- `500` — 서버 내부 오류

---

[API](https://skmtc.dev/inblog/apis/inblog-api.md) · [All operations](https://skmtc.dev/inblog/apis/inblog-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/inblog/inblog-api/revisions/445daf773d30/schema)
