Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Use the following operation to create a release in Zephyr Enterprise:

POST /flex/services/rest/latest/release/

Request format

To create a release, send a POST request to the following URL:

http://{ZEPHYR-SERVER}/flex/services/rest/latest/release/

Request body

{
"name":"release 3.0",
"description":"",
"releaseStartDate":"07/30/2019",
"releaseEndDate":"08/31/2019",
"projectId":1
}

projectId is the ID of the project in which you want to create the release.

Response body

{
  "id": 10,
  "name": "release 3.0",
  "description": "",
  "startDate": 1564470000000,
  "releaseStartDate": "07/30/2019",
  "endDate": 1567234800000,
  "releaseEndDate": "08/31/2019",
  "createdDate": 1588073157080,
  "projectId": 1,
  "orderId": 2,
  "globalRelease": false,
  "projectRelease": false
}

See Also

Migration REST API

  • No labels