Get plans
/apiplatform/management/v1/plans
Returns plans the requesting user is authorized to view. The response also contains HATEOAS links to related operations.
Users requesting this resource must be assigned the Plan Manager or API Manager role. Plans the user is issued Manage Plan, View All Details or View Public Details grant are returned.
If users requesting this resource are assigned the View All Details grant, Plans with View All Details and View Public Details grants are returned.
If users requesting this resource are assigned the View All Details grant, Plans with View All Details and View Public Details grants are returned.
Request
- application/json
 
- 
                        expand(optional): array
                        
                        Collection Format:
csvPass 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. - 
                        fields(optional): array
                        
                        Collection Format:
csvPass 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. - 
                        limit(optional): integer(int32)
                        
                        Number of items to retrieve.
1is the minumum;128is the maximum.Default Value:128 - links(optional): array
 - 
                        offset(optional): integer(int32)
                        
                        Offset the list returned results by this amount. Default is zero.Default Value:
0 - orderBy(optional): array
 - 
                        q(optional): string
                        
                        Pass filtering criteria, using the SCIM filter expression syntax
 - 
                        totalResults(optional): boolean
                        
                        Include the total result count in the response.Default Value:
false 
Response
- application/json
 
200 Response
object- 
            count(optional): 
            integer(int32)
            The number of items in this collection.
 
object- 
            totalResults(optional): 
            integer(int32)
            The total number of results available. Only provided if the showTotalResults query parameter is set to true
 
object403 Response
object- 
            detail(optional): 
            string
            Detailed error message
 - 
            errorCode(optional): 
            string
            Application specific error code
 - 
            errorDetails(optional): 
            array  errorDetails
            
            additional errors
 - 
            errorPath(optional): 
            string
            
 - 
            instance(optional): 
            string
            URI to the link that provides more detail about the error
 - 
            status(optional): 
            string
            HTTP status code
 - 
            title: 
            string
            Summary error message
 - 
            type: 
            string
            Error type
 
500 Response
object- 
            detail(optional): 
            string
            Detailed error message
 - 
            errorCode(optional): 
            string
            Application specific error code
 - 
            errorDetails(optional): 
            array  errorDetails
            
            additional errors
 - 
            errorPath(optional): 
            string
            
 - 
            instance(optional): 
            string
            URI to the link that provides more detail about the error
 - 
            status(optional): 
            string
            HTTP status code
 - 
            title: 
            string
            Summary error message
 - 
            type: 
            string
            Error type
 
Examples
The following example shows how to retrieve the plans the requesting user is authorized to view by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL
curl -i -X GET -u apicsadmin:password https://example.com/apiplatform/management/v1/plans
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, 02 Jan 2017 19:00:41 GMT Content-length: 6342 Content-type: application/json X-oracle-dms-ecid: 7smGS1D2S00000000 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 ID of each plan and HATEOAS links to related operations.
{
  "count": 3,
  "links": [
    {
      "method": "GET",
      "rel": "self",
      "href": "https://example.com:443/apiplatform/management/v1/plans"
    },
    {
      "method": "GET",
      "rel": "canonical",
      "href": "https://example.com:443/apiplatform/management/v1/plans"
    }
  ],
  "items": [
    {
      "links": [
        {
          "templated": "true",
          "method": "GET",
          "rel": "canonical",
          "href": "https://example.com:443/apiplatform/management/v1/plans/116"
        }
      ],
      "id": "116"
    },
    {
      "links": [
        {
          "templated": "true",
          "method": "GET",
          "rel": "canonical",
          "href": "https://example.com:443/apiplatform/management/v1/plans/117"
        }
      ],
      "id": "117"
    },
    {
      "links": [
        {
          "templated": "true",
          "method": "GET",
          "rel": "canonical",
          "href": "https://example.com:443/apiplatform/management/v1/plans/137"
        }
      ],
      "id": "137"
    }
  ]
}