Create API Version
POST https://api.getpostman.com/apis/{{apiId}}/versions
This call creates a new API version in the specified API.
Request body should contain a version
object which should have fields:
name | Required. Name of the API Version | ||||||
source |
If specified, it will copy the contents of the specified api version to create a new api verison.
|
Response contains a version
object with all the details related to the created API Version, namely, id
, name
, api
.
Requires API Key as
X-Api-Key
request header orapikey
URL query parameter.
Request Body
{"version"=>{"name"=>"1.0", "source"=>{"id"=>"{{apiVersionId}}", "schema"=>true, "relations"=>{"monitor"=>true, "mock"=>true, "documentation"=>true}}}}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string |
RESPONSES
status: OK
{"version":{"id":"d71cf403-c549-4c7c-9dc6-a6a105acf67c","name":"1.0","api":"2b95d07c-8379-4bd1-924f-e7e1af185284"}}