View application details

get

/apiplatform/management/v1/applications/{appId}

Returns details of the {appId} application. The response also contains HATEOAS links to related operations.

Users requesting this resource must be assigned the API Manager, Application Developer, or Plan Manager role and must be issued the Manage Application or View All Details grants for the specified application.

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 application's definition.
Body ()
Root Schema : GetApplicationResponse
Match All
Show Source
Nested Schema : ResourceLinksProperties
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

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 an application 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/applications/{appId}

{appId} is the unique Id for an application. To retrieve available application Ids, see Get Applications.

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:  Thu, 16 Mar 2017 07:15:26 GMT
Content-Length:  1154
Content-Type:  application/json
X-oracle-dms-ecid:  f102c33f-1c5b-4409-806d-03bf5706c492-00026745
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 details of the application and HATEOAS links to related operations.

{
    "createdAt": "2017-03-13T23:59:25-0700",
    "types": [
        "105"
    ],
    "updatedBy": "apicsadmin",
    "createdBy": "apicsadmin",
    "contact": {},
    "name": "Temperature",
    "description": "Monitors the temperature",
    "links": [
        {
            "templated": "true",
            "method": "GET",
            "rel": "canonical",
            "href": "https://example.com:443/apiplatform/management/v1/applications/100"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "preview",
            "href": "https://example.com:443/apiplatform/management/v1/applications/100/preview"
        },
        {
            "templated": "true",
            "method": "PUT",
            "rel": "edit",
            "href": "https://example.com:443/apiplatform/management/v1/applications/100"
        },
        {
            "templated": "true",
            "method": "PUT",
            "rel": "issueKey",
            "href": "https://example.com:443/apiplatform/management/v1/applications/100/key"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "registrations",
            "href": "https://example.com:443/apiplatform/management/v1/applications/100/registrations"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "grants",
            "href": "https://example.com:443/apiplatform/management/v1/applications/100/grants"
        }
    ],
    "id": "100",
    "key": "0de290eb-fd11-4ec5-93c3-3f152d23c98e",
    "updatedAt": "2017-03-15T03:10:04-0700"
}
Back to Top