PATCH
/
project
/
{id}
curl --request PATCH \
  --url http://localhost:3003/project/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "data": {
    "name": "<string>",
    "slug": "<string>",
    "website": "<string>",
    "profile": {}
  }
}'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "website": "<string>",
    "profile": {},
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

JWT Authorization Token header using the Bearer scheme

Path Parameters

id
string
required

Unique identifier of the project

Body

application/json
data
object
required

Response

200
application/json

Project updated successfully

data
object