Get entitlement details

get

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

Returns details of the {entitlementId} entitlement for the {planId} plan.

Users must have Gateway Manager, Application Developer, Plan Manager or API Manager Role. This call is made in the context of a plan so the user requesting this resource must have Manage Plan, View All Details Plan or View Public Details grant to view all the details of the entitlement. If the user has View Public Details Plan, Subscribe Application to Plan, Request Subscribe Application to Plan, Entitle API to Plan grants, only public view details of entitlements are returned.

Request

Supported Media Types
Path Parameters
Query Parameters
  • Collection Format: csv
    Pass optional fields, separated by commas, in this parameter to return them in the response. See the operation's description for a list of expand values.
  • Collection Format: csv
    Pass optional fields, separated by commas, in this parameter to return them in the response. See the operation's description for a list of field values.
Back to Top

Response

Supported Media Types

200 Response

The entitlement
Body ()
Root Schema : GetEntitlementResponse
Match All
Show Source
Nested Schema : ResourceLinksProperties
Type: object
Show Source
Nested Schema : Entitlement
Match All
Show Source
Nested Schema : EntitlementId
Type: object
Show Source
Nested Schema : EntitlementDef
Type: object
Nested Schema : Entitlement-allOf[2]
Type: object
Show Source
Nested Schema : Entitlement-allOf[3]
Type: object
Show Source
Nested Schema : EntitlementState
Type: object
Show Source
Nested Schema : Entitlement-allOf[5]
Type: object
Show Source
Nested Schema : EntitlementMetadata
Type: object
Show Source
Nested Schema : Api
Type: object
Nested Schema : Plan
Type: object
Nested Schema : EntitlementPublication
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 retrieve details of  the  {entitlementId} entitlement for the {planId} plan by submitting a GET request on the REST resource using cURL For more information about cURL, see Use cURL.

curl -i -X GET 
-H "Authorization: Bearer access_token"
https://example.com/apiplatform/management/v1/plans/{planId}/entitlements/{entitlementId}
  • {planId} is the unique Id for a plan. To retrieve available plan Ids, see Get plans.

  • {entitlementId} is the unique ID for an entitlement. To retrieve available entitlement IDs, see Get entitlements.

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 200 OK
Server: Oracle-Traffic-Director/12.2.1.0.0
Date:  Mon, 12 Feb 2018 18:56:43 GMT
Content-Length:  1153
Content-Type:  application/json
X-oracle-dms-ecid:  49d14691-2176-4c99-aed3-38438604f528-00001e9d
X-oracle-dms-rid:  0
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 details of the associated plan and API.

{
    "createdAt": "2018-02-12T06:53:05-0800",
    "updatedBy": "admin",
    "createdBy": "admin",
    "publication": {
        "state": "UNPUBLISHED"
    },
    "links": [
        {
            "templated": "true",
            "method": "GET",
            "rel": "self",
            "href": "http://example.com:443/apiplatform/management/v1/plans/117/entitlements/118"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "canonical",
            "href": "http://example.com:443/apiplatform/management/v1/plans/117/entitlements/118"
        },
        {
            "templated": "true",
            "method": "PUT",
            "rel": "inactivate",
            "href": "http://example.com:443/apiplatform/management/v1/plans/117/entitlements/118/state"
        },
        {
            "templated": "true",
            "method": "PUT",
            "rel": "publish",
            "href": "http://example.com:443/apiplatform/management/v1/plans/117/entitlements/118/publication"
        },
        {
            "templated": "true",
            "method": "PUT",
            "rel": "edit",
            "href": "http://example.com:443/apiplatform/management/v1/plans/117/entitlements/118"
        },
        {
            "templated": "true",
            "method": "DELETE",
            "rel": "remove",
            "href": "http://example.com:443/apiplatform/management/v1/plans/117/entitlements/118"
        }
    ],
    "state": "ACTIVE",
    "api": {
        "id": "100"
    },
    "id": "118",
    "plan": {
        "id": "117"
    },
    "updatedAt": "2018-02-12T06:53:05-0800"
}
Back to Top