Deploy or request deployment of an API

post

/apiplatform/management/v1/gateways/{gwId}/deployments

Creates a new deployment request for the {gwId} gateway.

Users requesting this resource must be assigned the API Manager, or Gateway Manager role and must be issued the Gateway Manager, Deploy to Gateway, or Request Deployment to Gateway grant for the specified gateway. For a new deployment, the user must also be issued the Deploy API grant for the API they are deploying.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : CreateApiDeploymentRequest
Match All
Show Source
Nested Schema : CreateApiDeploymentRequest-allOf[0]
Type: object
Show Source
Nested Schema : CreateForm
Type: object
Show Source
  • The deployment action. Valid values are DEPLOY (to create a new deployment), UNDEPLOY (to undeploy a deployment), ACTIVATE (to activate a deployment), and INACTIVATE (to inactivate a deployment).
  • The deployment's description. This is an optional value and is applicable to only the DEPLOY action. If no value is specified and a deployment already exists, it defaults to the existing description.
  • A unique ID referencing a specific iteration of an API. This is an optional attribute and is applicable to only the DEPLOY action. If unspecified, it defaults to the latest iteration.
  • The deployment's runtime state. This is an optional attribute and is applicable to only the DEPLOY action. If the API is being deployed to the gateway for the first time, this attribute defaults to INACTIVE; otherwise, it defaults to the existing deployment state.

    Valid values are ACTIVE and INACTIVE.

Back to Top

Response

Supported Media Types

201 Response

The deployment was created.
Body ()
Root Schema : DeploymentId
Type: object
Show Source

403 Response

Forbidden.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source

500 Response

Unexpected error.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source
Back to Top

Examples

The following example shows how to create a new deployment request for a gateway by submitting a POST request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X POST 
-u apicsadmin:password
-H "Content-Type:application/json"
-d @deploy-api.json
https://example.com/apiplatform/management/v1/gateways/{gwId}/deployments

{gwId} is the unique of a gateway. To retrieve available gateway Ids, see Get gateways.

Example of Request Body

The following example shows an example of the request body in JSON format (included with the request above in a file named api-deploy.json) , including the API you want to deploy and details about its deployment.

{"apiId":"103","action":"DEPLOY","description":"","runtimeState":"ACTIVE"}

{apiId} is the unique ID for an API. To retrieve available API IDs, see Get API IDs.

Example of Response Body

The following example shows the contents of the response body in JSON format, including ID of the deployment:

{
    "id": "104"
}
Back to Top