Update Release
PATCH https://api.getpostman.com/apis/{{apiId}}/versions/{{apiVersionId}}/releases/{{releaseId}}
This call updates an existing release in the specified API Version.
The request body should contain a release object which can have the following fields:
| name | Optional. Name of the Release |
| summary | Optional. Summary of the release |
| description | Optional. Description of the release |
| visibility | Optional. Value can be either private or public |
| gitTag | Optional This should be a valid Git tag in the repository connected with the API version |
Response contains a release object with all the details related to the updated release, namely, id, name, summary, description, visbility and gitTag.
Requires API Key as
X-Api-Keyrequest header orapikeyURL query parameter.
Request Body
{"release"=>{"name"=>"R1", "summary"=>"Summary of the release", "description"=>"Description of the release", "visibility"=>"public", "gitTag"=>"G1"}}