Update entitlement of a plan

put

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

Updates the {entitlementId} entitlement of {planId} plan.

User must have API Manager or Plan Manager roles and must have Manage Plan or Entitle API to Plan grants on the Plan and Manage API or Entitle API grants on the API.

.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : UpdateEntitlementRequest
Match All
Show Source
Nested Schema : EntitlementDef
Type: object
Back to Top

Response

Supported Media Types

204 Response

The entitlement 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 update the entitlement metadata for a plan by submitting a PUT request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X PUT 
-H "Authorization: Bearer access_token"
https://example.com/apiplatform/management/v1/plans/{planId}/entitlements/{entitlementId}

Example of Request Body

The following example provides a request body for updating an API.

{
	"createdBy": "admin",
	"createdAt": "13 Feb 2018",
	"updatedBy": "admin",
	"updatedAt": "13 Feb 2018"
}

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 Feb 2018 19:37:49 GMT
X-oracle-dms-ecid:  f102c33f-1c5b-4409-806d-03bf5706c492-000196fb
X-oracle-dms-rid: 0:1
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0
Back to Top