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
Query Parameters
  • Indicates the file format to return the entire application components. Valid values SQL_SCRIPT | SQL_ZIP
    Allowed Values: [ "SQL_SCRIPT", "SQL_ZIP" ]
  • Parameter for APEX Export function. Comma-delimited list of export types to perform APPLICATION_SOURCE,EMBEDDED_CODE, CHECKSUM-SH1
    Examples

  • If true, export installed packaged applications with references to the packaged application definition. If false, export them as normal applications.
  • Parameter for APEX Export function. If true, export ACL user role assignments. Only valid if export_format query parameter is also specified.
  • Parameter for APEX Export function. If true, include developer comments. Only valid if export_format query parameter is also specified.
  • 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.
  • Parameter for APEX Export function. If true, include report notifications. Only valid if export_format query parameter is also specified.
  • Parameter for APEX Export function. If true, include private reports that a user saved. Only valid if export_format query parameter is also specified.
  • Parameter for APEX Export function. If true, include public reports that a user saved. Only valid if export_format query parameter is also specified.
  • Parameter for APEX Export function. If true, components contain subscription references. Only valid if export_format query parameter is also specified.
  • 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.
  • 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" ]
  • 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 Top

Response

Supported Media Types

200 Response

The specified Oracle APEX application.
Body ()
Root Schema : APEXApplicationsItem
Type: object
This object represents a single row on APEX_APPLICATIONS.
Show Source
Nested Schema : LinkRelation
Type: object
Show Source
Examples

400 Response

Bad Request - The export related query parameters provided without specifying export_format.
Back to Top