Request Catalog Item Using POST
Creates a deployment from a catalog item.
Request
URI
POST
https://{api_host}//api.mgmt.cloud.vmware.com/catalog/api/items/{id}/request
COPY
Path Parameters
string
id
Required
Catalog item ID
Request Body
request
CatalogItemRequest of type(s) application/json
Required
{
"deploymentName": "string",
"projectId": "string",
"reason": "string",
"version": "string"
}
string
deploymentName
Optional
Name of the requested deployment
object
inputs
Optional
Input parameters for the request. These must be compliant with the schema of the corresponding catalog item
string
projectId
Optional
Project to be used for the request
string
reason
Optional
Reason for request
string
version
Optional
Version of the catalog item. e.g. v2.0
Responses
200
OK
Returns CatalogItemRequestResponse of type(s) */*
{
"deploymentId": "string",
"deploymentName": "string"
}
string
deploymentId
Optional
The created deployment's ID
string
deploymentName
Optional
The created deployment's name
201
Created
Operation doesn't return any data structure
401
Unauthorized
Operation doesn't return any data structure
403
Forbidden
Operation doesn't return any data structure
404
Not Found
Operation doesn't return any data structure
On This Page
Catalog Items Operations
GET
Get Catalog Items Using GET 1
GET
Get Catalog Item Using GET 1
GET
Get Version By Id Using GET
GET
Get Versions Using GET
POST
Request Catalog Item Using POST