Number of APIs: 5
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 Response contains a Requires API Key as release
object which should have fields:name Required.
Name of the Releasesummary Optional.
Summary of the releasedescription Optional.
Description of the releasevisibility Required.
Value can be private
or public
gitTag Optional
This should be a valid Git tag in the repository connected with the API versionrelease
object with all the details related to the created release, namely, id
, name
, summary
, description
, visbility
and gitTag
.
X-Api-Key
request header or apikey
URL query parameter.
DELETE https://api.getpostman.com/apis/{{apiId}}/versions/{{apiVersionId}}/releases/{{releaseId}}
GET https://api.getpostman.com/apis/:apiId/versions/:apiVersionId/releases/:releaseId
This endpoint can be called to get information about a particular Release of the given API Version.
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 Response contains a Requires API Key as release
object which can have the following fields:name Optional.
Name of the Releasesummary Optional.
Summary of the releasedescription Optional.
Description of the releasevisibility Optional.
Value can be either private
or public
gitTag Optional
This should be a valid Git tag in the repository connected with the API versionrelease
object with all the details related to the updated release, namely, id
, name
, summary
, description
, visbility
and gitTag
.
X-Api-Key
request header or apikey
URL query parameter.
GET https://api.getpostman.com/apis/:apiId/versions/:apiVersionId/releases
ENDPOINTS