Get application types
get
                    /apiplatform/management/v1/applications/types
Returns the available application types.
Users requesting this resource must be assigned the API Manager, Application Developer, or Plan Manager roles.
Request
There are no request parameters for this operation.
Back to TopResponse
Supported Media Types
                - application/json
 
200 Response
The collection of application types.
                
                
                    Nested Schema : Type
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            description(optional): 
            string
            
 - 
            id: 
            string
            The grant type's ID.
 - 
            name(optional): 
            string
            
 
403 Response
Forbidden.
                
                
                    Root Schema : Error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        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
Unexpected error.
                
                
                    Root Schema : Error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        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 available application types 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/types
 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 18:40:27 GMT Content-length: 413 Content-type: application/json X-oracle-dms-ecid: CafX61vnR00000000 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 about all application types:
{
    "items": [
        {
            "name": {
                "localized": "Desktop App",
                "en": "Desktop App"
            },
            "id": "108"
        },
        {
            "name": {
                "localized": "Mobile - Windows",
                "en": "Mobile - Windows"
            },
            "id": "103"
        },
        {
            "name": {
                "localized": "Backend Service",
                "en": "Backend Service"
            },
            "id": "101"
        },
        {
            "name": {
                "localized": "Web Application",
                "en": "Web Application"
            },
            "id": "102"
        },
        {
            "name": {
                "localized": "Mobile - iOS",
                "en": "Mobile - iOS"
            },
            "id": "104"
        },
        {
            "name": {
                "localized": "Thing",
                "en": "Thing"
            },
            "id": "107"
        },
        {
            "name": {
                "localized": "Integration",
                "en": "Integration"
            },
            "id": "100"
        },
        {
            "name": {
                "localized": "Mobile - Android",
                "en": "Mobile - Android"
            },
            "id": "105"
        },
        {
            "name": {
                "localized": "Game",
                "en": "Game"
            },
            "id": "106"
        }
    ]
}