---
title: "Update Registry"
method: PUT
path: "/registries/{registry_id}"
tags: ["REGISTRY"]
deprecated: true
---

# Update Registry

`PUT /registries/{registry_id}`

> **Deprecated.**

Update the registry by the provided information
:param db: database session
:param registry: registry object fetched from db. Check if the registry exists
:param registry_update_request: registry update request
:param auth: auth token. Also gets the user_id from the token
:param registry_id: registry id. This is the path param

## Path parameters

- `registry_id` integer, required

## Request body

- RegistryUpdateRequest
  - `name` string, nullable
  - `description` string, nullable
  - `status` string, nullable

## Response `200`

Successful Response

- RegistryUpdateResponse
  - `id` integer, required
  - `name` string, required
  - `description` string, nullable
  - `created_by` string, required
  - `last_modified_by` string, required
  - `status` string, required
  - `message` string, required

## Other responses

- `400` — Not supported for public user
- `403` — Not supported for public user
- `422` — Validation Error

---

[API](https://skmtc.net/myaltimate/apis/fastapi.md) · [All operations](https://skmtc.net/myaltimate/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myaltimate/fastapi/versions/103580dad816/schema)
