My App

Update Project

PUT
/project-mgt/project
/project-mgt/project

Request Body

application/jsonRequired

descriptionstring

The description of the project

tagsarray<string>

List of tags related to the project

titlestring

The title of the project

startTimestring

Start time of the project

Format: "date-time"

statusstring

Status of the project (e.g. Not Started, In Progress, Completed)

endTimestring

End time of the project

Format: "date-time"

assigneesarray<string>

List of assignees for the project

namestring

Coordinator or responsible person for the project

Query Parameters

projectId
Required
string

curl -X PUT "https://api.zedblock.com/api/project-mgt/project?projectId=string" \
  -H "Content-Type: application/json" \
  -d '{
    "description": "This is a sample project description",
    "tags": [
      "backend",
      "API"
    ],
    "title": "New Backend API",
    "startTime": "2024-09-20T10:00:00Z",
    "status": "In Progress",
    "endTime": "2024-12-31T18:00:00Z",
    "assignees": [
      "user1",
      "user2"
    ],
    "name": "John Doe"
  }'

Project updated successfully.