Logo
30 days challenge API Documentation

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:

nameRequired.
Name of the Release
summaryOptional.
Summary of the release
descriptionOptional.
Description of the release
visibilityRequired.
Value can be private or public
gitTagOptional
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, summary, description, visbility and gitTag.

Requires API Key as X-Api-Key request header or apikey URL query parameter.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 




RESPONSES

status





Curl
curl -X POST 'https://api.getpostman.com/apis/undefined/versions/undefined/releases' -d '{"release":{"name":"R1","summary":"Summary of the release","description":"Description of the release","visibility":"public","gitTag":"G1"}}'

ENDPOINTS