My App

Create Project

POST
/project-mgt/create
/project-mgt/create

Request Body

application/jsonRequired

descriptionstring

Description of the project

statusstring

Status of the project

assigneesarray<string>

List of assignees

tagsarray<string>

Tags for the project

title
Required
string

Title of the project

startTimestring

Start time of the project

Format: "date-time"

endTimestring

End time of the project

Format: "date-time"

billStatusstring

Billing status of the project

currencystring

Currency of the project

customerstring

Customer associated with the project

coordinatorstring

Coordinator of the project

hourlyCostnumber

Hourly cost of the project

curl -X POST "https://api.zedblock.com/api/project-mgt/create" \
  -H "Content-Type: application/json" \
  -d '{
    "description": "string",
    "status": "Not Started",
    "assignees": [
      "string"
    ],
    "tags": [
      "string"
    ],
    "title": "string",
    "startTime": "2019-08-24T14:15:22Z",
    "endTime": "2019-08-24T14:15:22Z",
    "billStatus": "string",
    "currency": "string",
    "customer": "string",
    "coordinator": "string",
    "hourlyCost": 0
  }'

The project has been successfully created.