Create Release
POST https://api.getpostman.com/apis/{{apiId}}/versions/{{apiVersionId}}/releases
This call creates a new release in the specified API.
The request body should contain a release object which should have fields:
| name | Required. Name of the API Version | 
| description | Required. Description of the release | 
| visibility | Required. Value can be privateorpublic | 
| 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 created release, namely, id, name, description, visbility and gitTag.
Requires API Key as
X-Api-Keyrequest header orapikeyURL query parameter.
Request Body
{"release"=>{"name"=>"R1", "description"=>"Description of the release", "visibility"=>"public", "gitTag"=>"G1"}}