Skip to main content
PATCH
/
api
/
v1
/
projects
/
{projectId}
cURL
curl --request PATCH \
  --url http://localhost:52000/api/v1/projects/{projectId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "id": 123,
  "name": "<string>",
  "description": "<string>",
  "environmentId": 123
}

Path Parameters

projectId
integer<int64>
required

Body

application/json
name
string
description
string

Response

200 - */*

OK

createdAt
string<date-time>
updatedAt
string<date-time>
id
integer<int64>
name
string
description
string
environmentId
integer<int64>