Get subscription details

get

/apiplatform/management/v1/plans/{planId}/subscriptions/{subId}

Returns details of the {subId} subscription for the {planId} plan. The response also contains HATEOAS links to related operations.

Users requesting this resource must be assigned the API Manager, Application Developer or Plan Manager roles and must be issued the Application Manager or View All Details grants for the plan.

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 subscription
Body ()
Root Schema : GetSubscriptionResponse
Match All
Show Source
Nested Schema : ResourceLinksProperties
Type: object
Show Source
Nested Schema : Subscription
Match All
Show Source
Nested Schema : SubscriptionId
Type: object
Show Source
Nested Schema : Subscription-allOf[1]
Type: object
Show Source
Nested Schema : Subscription-allOf[2]
Type: object
Show Source
Nested Schema : SubscriptionState
Type: object
Show Source
Nested Schema : SubscriptionMetadata
Type: object
Show Source
Nested Schema : Application
Match All
Show Source
Nested Schema : ApplicationId
Type: object
Show Source
Nested Schema : ApplicationIdentity
Type: object
Show Source
Nested Schema : ApplicationDef
Type: object
Show Source
Nested Schema : ApplicationKey
Type: object
Show Source
Nested Schema : ApplicationMetadata
Type: object
Show Source
Nested Schema : contact
Type: object
The application owner's contact information.
Show Source
Nested Schema : types
Type: array
Show Source
Nested Schema : Plan
Type: object

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 available subscriptions to a 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}/subscriptions/{subId}

{planId} is the unique Id for a plan. To retrieve available plan Ids, see Get plans.

{subId} is the unique Id for a subscription. To retrieve available subscription Ids, see Get subscriptions.

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:  Tue, 14 Mar 2017 10:04:07 GMT
Content-Length:  750
Content-Type:  application/json
X-oracle-dms-ecid:  f102c33f-1c5b-4409-806d-03bf5706c492-0001df01
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 subscription details and HATEOAS links to related operations.

{
    "createdAt": "2018-02-13T01:47:47-0800",
    "stateUpdatedAt": "2018-02-13T01:47:47-0800",
    "updatedBy": "apcsadmin",
    "application": {
        "id": "107"
    },
    "createdBy": "apcsadmin",
    "links": [
        {
            "templated": "true",
            "method": "GET",
            "rel": "self",
            "href": "http://example.com:443/apiplatform/management/v1/plans/119/subscriptions/134"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "canonical",
            "href": "http://example.com:443/apiplatform/management/v1/plans/119/subscriptions/134"
        },
        {
            "templated": "true",
            "method": "PUT",
            "rel": "suspend",
            "href": "http://example.com:443/apiplatform/management/v1/plans/119/subscriptions/134/state"
        },
        {
            "templated": "true",
            "method": "DELETE",
            "rel": "unsubscribe",
            "href": "http://example.com:443/apiplatform/management/v1/plans/119/subscriptions/134"
        }
    ],
    "state": "SUBSCRIBED",
    "id": "134",
    "plan": {
        "id": "119"
    },
    "stateUpdatedBy": "apcsadmin",
    "updatedAt": "2018-02-13T01:47:47-0800"
}
Back to Top