---
title: "Update entity profile"
method: PATCH
path: "/v3/entities/{id}"
tags: ["Entities"]
---

# Update entity profile

`PATCH /v3/entities/{id}`

Updates mutable entity profile fields. Requires a platform admin or an admin session for the same entity, with the corresponding CSRF token.

## Path parameters

- `id` string, required

## Request body

- EntityUpdateRequest
  - `name` string
  - `logo` union — Absolute HTTP(S) URL or a safe asset filename without path separators.
    - string, uri
    - string
  - `description` string, nullable
  - `url` string, uri, nullable
  - `socialTwitter` string, uri, nullable
  - `socialYoutube` string, uri, nullable
  - `socialDiscord` string, uri, nullable
  - `socialTelegram` string, uri, nullable
  - `socialGithub` string, uri, nullable

## Response `200`

Entity profile was updated.

- object
  - `data` Entity, required
    - `id` string, required — Stable lowercase slug identifier.
    - `name` string, required
    - `logo` union, required — Absolute HTTP(S) URL or a safe asset filename without path separators.
      - string, uri
      - string
    - `description` string, nullable, required
    - `url` string, uri, nullable, required
    - `socialTwitter` string, uri, nullable, required
    - `socialYoutube` string, uri, nullable, required
    - `socialDiscord` string, uri, nullable, required
    - `socialTelegram` string, uri, nullable, required
    - `socialGithub` string, uri, nullable, required
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required
  - `meta` PaginationMeta, required
    - `total` integer — Exact total count when the endpoint provides one.
    - `hasMore` boolean — Indicates whether another page exists beyond the current page.
    - `offset` integer
    - `limit` integer — Echoed page size after endpoint-side clamping.
    - `timestamp` string, date-time, required
    - `chainId` string — Comma-separated chain IDs for multi-chain responses.
    - `degradedProviders` string[] — Live providers whose data is incomplete in this response.

## Other responses

- `400` — Malformed JSON request body.
- `401` — Missing, invalid, or expired authenticated session.
- `403` — Session is inactive, lacks same-entity admin access, targets a different entity, or has a missing or mismatched CSRF token.
- `404` — Entity profile was not found.
- `422` — Missing or invalid entity field.

---

[API](https://skmtc.dev/euler/apis/euler-data-api-v3.md) · [All operations](https://skmtc.dev/euler/apis/euler-data-api-v3/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/euler/euler-data-api-v3/revisions/9e69e7cdb054/schema)
