Update an API's publication state

put

/apiplatform/management/v1/apis/{apiId}/publication

Publishes or unpublishes the {apiId} API. Send a state of PUBLISHED to publish to or UNPUBLISHED to unpublish from the Developer Portal. If publishing, the latest iteration is published.

Users requesting this resource must be assigned the API Manager role and must be issued the Manage API grant for the specified API.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : UpdateApiPublicationRequest
Type: object
Show Source
  • The updated publication state. This value determines if the API is published to the Developer Portal. Valid values are PUBLISHED, to publish the latest iteration of an API to the Developer Portal, or UNPUBLISHED, to remove the API from the Developer Portal.
  • Optional comments for the publication state change.
  • The updated publication visibility.
Back to Top

Response

Supported Media Types

204 Response

The API's publication state was updated.

400 Response

Bad request, indicates a problem with the input parameters.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
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 publish or unpublish an API by submitting a PUT request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X PUT 
-u apicsadmin:password
-H "Content-Type:application/json"
-d @publish.json
https://example.com/apiplatform/management/v1/apis/{apiId}/publication

{apiId} is the unique Id for an API. To retrieve available API Ids, see Get APIs.

Example of Request Body (Publish an API)

The following example shows the contents of the request body in JSON format, included with the request above in a file named publish.json.

{
   "state":"PUBLISHED",
   "stateComments":"Publish the API"
}

Example of Request Body (Unpublish an API)

The following example shows the contents of the request body in JSON format.

{
   "state":"UNPUBLISHED",
   "stateComments":"Unpublish the API"
}

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 204 No Content
Server: Oracle-Traffic-Director/12.2.1.0.0
Date:  Mon, 13 Mar 2017 06:51:56 GMT
X-oracle-dms-ecid:  f102c33f-1c5b-4409-806d-03bf5706c492-00018e20
X-oracle-dms-rid:  0
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0
Back to Top