Get or export a specific APEX application
get
                    /apex/applications/{application_id}
This service returns a representation of the specified APEX Application. The representation data will be a metadata about the APEX Application from APEX_APPLICATIONS view or an export of the entire application using APEX GET_APPLICATION.EXPORT database procedure. See APEX documentation for more information. A client requires SQL Developer or SQL Administrator role.
                
                Request
Path Parameters
                - 
                    application_id(required):  string
                    
                    Application Primary Key, Unique over all workspaces.
 
Query Parameters
                    - 
                            export_format: string
                            
                            Indicates the file format to return the entire application components. Valid values SQL_SCRIPT | SQL_ZIPAllowed Values:
[ "SQL_SCRIPT", "SQL_ZIP" ] - 
                            export_type: string
                            
                            Parameter for APEX Export function. Comma-delimited list of export types to perform APPLICATION_SOURCE,EMBEDDED_CODE, CHECKSUM-SH1Examples
 - 
                            p_with_audit_Info: string
                            
                            Parameter for the APEX Export function. If "NULL", export excludes all audit information. If "NAMES_AND_DATES", export includes Created On, Created By, Updated On, and Updated By values if they exist. If "DATES_ONLY", export includes Created On and Updated On values only; user names are excluded. Only valid if the export_format query parameter is also specified. Enum: "NAMES_AND_DATES", "DATES_ONLY".Allowed Values:
[ "NAMES_AND-DATES", "DATES_ONLY" ] - 
                            p_with_pkg_app_mapping: boolean
                            
                            If true, export installed packaged applications with references to the packaged application definition. If false, export them as normal applications.
 - 
                            with_acl_assignments: boolean
                            
                            Parameter for APEX Export function. If true, export ACL user role assignments. Only valid if export_format query parameter is also specified.
 - 
                            with_comments: boolean
                            
                            Parameter for APEX Export function. If true, include developer comments. Only valid if export_format query parameter is also specified.
 - 
                            with_date: boolean
                            
                            Parameter for APEX Export function. If true include export date and time in the result. Only valid if export_format query parameter is also specified.
 - 
                            with_ir_notifications: boolean
                            
                            Parameter for APEX Export function. If true, include report notifications. Only valid if export_format query parameter is also specified.
 - 
                            with_ir_private_reports: boolean
                            
                            Parameter for APEX Export function. If true, include private reports that a user saved. Only valid if export_format query parameter is also specified.
 - 
                            with_ir_public_reports: boolean
                            
                            Parameter for APEX Export function. If true, include public reports that a user saved. Only valid if export_format query parameter is also specified.
 - 
                            with_no_subscriptions: boolean
                            
                            Parameter for APEX Export function. If true, components contain subscription references. Only valid if export_format query parameter is also specified.
 - 
                            with_original_ids: boolean
                            
                            Parameter for APEX Export function. If true, export with the IDs as they were when the application was imported. Only valid if export_format query parameter is also specified.
 - 
                            with_supporting_objects: string
                            
                            Parameter for APEX Export function. If 'Y', export supporting objects. If 'I',automatically install on import. If 'N', do not export supporting objects. If null, the application's include in export deployment value is used. Only valid if export_format query parameter is also specified.Allowed Values:
[ "Y", "I", "N" ] - 
                            with_translations: boolean
                            
                            Parameter for APEX Export function. If true, include application translation mappings and all text from the translation repository. Only valid if export_format query parameter is also specified.
 
There's no request body for this operation.
Back to TopResponse
Supported Media Types
                - application/json
 - application/sql
 - application/zip
 
200 Response
The specified Oracle APEX application.
                            
                            
                                Root Schema : APEXApplicationsItem
    
    	Type: 
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectThis object represents a single row on APEX_APPLICATIONS.
    
    
    
    
        Show Source
        - 
                
                    
                    application_alias: string
                    
                    
                     
                    
                
                
                The alternate alphanumeric application identifier.
 - 
                
                    
                    application_group: string
                    
                    
                     
                    
                
                
                The alternate alphanumeric application identifier.
 - 
                
                    
                    application_id: integer
                    
                    
                     
                    
                
                
                Application Primary Key, Unique over all workspaces.
 - 
                
                    
                    application_name: string
                    
                    
                     
                    
                
                
                The name of this application.
 - 
                
                    
                    application_owner: string
                    
                    
                     
                    
                
                
                The alternate alphanumeric application identifier.
 - 
                
                    
                    availability_status: string
                    
                    
                     
                    
                
                
                Specifies whether or not the application is available or unavailable for use.
 - 
                
                    
                    last_updated_by: string
                    
                    
                     
                    
                
                
                Last updated by.
 - 
                
                    
                    last_updated_on: string
                    
                    
                     
                    
                
                
                The date and time of the last update.
 - 
                
                    
                    links: array
                    
                    
                
                
                    links
                
                
                
 - 
                
                    
                    page_count: integer
                    
                    
                     
                    
                
                
                Number of application pages.
 - 
                
                    
                    workspace: string
                    
                    
                     
                    
                
                
                The internal name of the workspace.
 
Examples
                                
                                
                            
                            
                            
                        400 Response
Bad Request - The export related query parameters provided without specifying export_format.