---
title: "Update project information"
method: PATCH
path: "/project/{id}"
tags: ["Project"]
---

# Update project information

`PATCH /project/{id}`

Updates a Userback project

## Path parameters

- `id` integer, required — ID is a generic type that is used to represent a unique identifier

## Request body

- ProjectUpdateParams — Make all properties in T optional
  - `name` string — Project name
  - `url` string, uri — Project url

## Response `201`

Created

- Project — Project Model
  - `id` integer, required — ID is a generic type that is used to represent a unique identifier
  - `name` string, required — Project name
  - `url` string, uri — Project url
  - `logo` string, uri — Logo url
  - `isArchived` boolean, required — If true, the project has been archived An archived project is not accessible in Userback and will eventually be deleted
  - `created` string, date-time, required — The date and time when the project was created in RFC 3339 format
  - `createdBy` integer, required — ID is a generic type that is used to represent a unique identifier
  - `projectType` 'feedback' | 'survey', required — Project type
  - `Members` BaseMember[], required — Members of the project
    - `id` integer, required — ID is a generic type that is used to represent a unique identifier
    - `userId` integer, required — ID is a generic type that is used to represent a unique identifier
    - `name` string, required — The name of the user.
    - `email` string, email, required — The email address of the user.
    - `avatar` string, uri — The avatar URL of the user.
    - `role` 'Admin' | 'Collaborator' | 'Client' | 'ExternalUser', required — The role of the user.
    - `isDisabled` boolean, required — If true, the member has been disabled and cannot login.

## Other responses

- `401` — Not Authorized
- `422` — Validation Error
- `429` — Too Many Requests
- `500` — Interal Server Error

---

[API](https://skmtc.net/userback/apis/userback-rest-api.md) · [All operations](https://skmtc.net/userback/apis/userback-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/userback/userback-rest-api/versions/7fb30e1173ca/schema)
