Add an API

post

/apiplatform/management/v1/plans/{planId}/entitlements

Adds an API to the {planId} plan.

Users must have Plan Manager or API Manager roles and must have Manage Plan or Entitle API to Plan grant on the plan and Manage API or Entitle API grant on the API.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : CreateApiEntitlementRequest
Match All
Show Source
Nested Schema : CreateApiEntitlementRequest-allOf[0]
Type: object
Show Source
Nested Schema : EntitlementState
Type: object
Show Source
Nested Schema : CreateApiEntitlementRequest-allOf[2]
Type: object
Show Source
Nested Schema : EntitlementPublication
Type: object
Show Source
Back to Top

Response

Supported Media Types

201 Response

The entitlement was created.
Body ()
Root Schema : EntitlementId
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 add an API to a plan submitting a POST request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X POST 
-H "Authorization: Bearer access_token"
-H "Content-Type:application/json"
-d @deployment.json
https://example.com/apiplatform/management/v1/plans/{planId}/entitlements

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

Example of Request Body

The following shows an example of the request body.

{
	"apiId": "101",
	"stateComments": "published",
	"stateUpdatedBy": "admin",
	"stateUpdatedAt": "12 Feb 2018",
	"publication": {
		"state": "UNPUBLISHED",
		"stateComments": "published",
		"stateUpdatedBy": "admin",
		"stateUpdatedAt": "12 Feb 2018"
	}
}

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 201 Created
Server: Oracle-Traffic-Director/12.2.1.0.0
Date:  Mon, 12 Feb 2018 17:40:10 GMT
Content-Length:  12
Content-Type:  application/json
Location ???http://example.com:443/apiplatform/management/v1/plans/117/entitlements/119
Set-Cookie ???APIPLATFORMSESSION=jFeKgU0gUINPU5hG26oxKzJDhL_k4W1yiLnp6Lrb_50wwuywBHER!-285585961; path=/; HttpOnly
X-oracle-dms-ecid:  f102c33f-1c5b-4409-806d-03bf5706c492-0002ac6f
X-oracle-dms-rid: 0:1
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0

Example of Response Body

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

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