My App

Create Milestone

POST
/project-mgt/createMileStone
/project-mgt/createMileStone

Request Body

application/jsonRequired

title
Required
string

The title of the milestone

description
Required
string

A brief description of the milestone

startTime
Required
string

The start time of the milestone

endTime
Required
string

The end time of the milestone

projectId
Required
string

The ID of the associated project

tasks
Required
array<string>

An array of task IDs associated with this milestone

status
Required
string

The status of the milestone

curl -X POST "https://api.zedblock.com/api/project-mgt/createMileStone" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Milestone 1",
    "description": "This is a milestone.",
    "startTime": "2023-10-01T00:00:00Z",
    "endTime": "2023-10-15T00:00:00Z",
    "projectId": "projectId123",
    "tasks": [
      "string"
    ],
    "status": "In Progress"
  }'

Milestone successfully created.