### Example URL for GET Job Definitions Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/get_job_definitions.html An example of a GET request URL to retrieve all job definitions for a specific application. ```bash https:///HyperionPlanning/rest/v3/applications/PS4app1/jobdefinitions ``` -------------------------------- ### Example URL for Get Filters Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/get_filters_with_all_possible_values.html This example demonstrates how to construct a URL to retrieve filters for limited Approvals functionality. ```url https://-/HyperionPlanning/rest/v3/applications/PS4app1/pufilters?q={"options":"0"} ``` -------------------------------- ### Example URL for Get Application Summary Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/get_applications_summary.html An example URL demonstrating how to call the Get Application Summary REST API for the 'Vision' application. Replace '' with your actual Oracle Cloud EPM base URL. ```text https:///HyperionPlanning/rest/v3/applications/Vision/summary ``` -------------------------------- ### Example Request URL Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/download_application_snapshot.html This is an example of a GET request to download an application snapshot. Ensure the BASE-URL and snapshot name are correctly substituted. ```HTTP https:///interop/rest/v1/applicationsnapshots/Vision.zip/contents ``` -------------------------------- ### Example URL with Paging Parameters Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_get_user_variables_for_app_by_user_variable_name.html This example demonstrates how to use offset and limit query parameters to paginate the results when retrieving user variable values. It specifies to return 5 records starting from the first one (offset 0). ```text https:///HyperionPlanning/rest/v3/applications/Vision/uservariablevalues/uservar2?offset=0&limit=5 ``` -------------------------------- ### Example URL for Get Dimension Details Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/get_dim_details.html This example shows how to construct a URL to retrieve details for a specific dimension, including selecting fields and an alias table. ```http https:///HyperionPlanning/rest/v3/applications/Vision/plantypes/Plan1/dimensions/Entity?fields=id,name,alias,path,children&aliasTableName=Default ``` -------------------------------- ### Upload Authorization Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/appendix_postman_upload.html Example showing how to set up authorization for file upload requests. ```text Authorization: Basic ``` -------------------------------- ### Example URL for Get Build Version and Maintenance Time (v2) Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/lcm_get_build_version_and_maintenance_time_v2.html Construct the URL to call the API, optionally including the showTimeZone parameter to display the maintenance time in a specified time zone. ```http https:///interop/rest/v2/maintenance/getdailymaintenancestarttime?showTimeZone=true ``` -------------------------------- ### Example URL for User Variable Values Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_get_user_variables_for_app_by_user_variable_name.html An example of a GET request URL to retrieve user variable values for a specific application and variable name. Replace with your EPM Cloud instance URL. ```text https:///HyperionPlanning/rest/v3/applications/Vision/uservariablevalues/uservar2 ``` -------------------------------- ### Import Template Request Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/pcmc_import_template.html Example URL and payload for initiating a template import job. ```JSON https:///epm/rest/v1/applications/Ex3F3/jobs/templateImportJob {"description":"description","fileName":" testFile12345.zip","isApplicationOverwrite":"true"} ``` -------------------------------- ### Upload Parameters Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/appendix_postman_upload.html Example demonstrating the parameters used for file upload via REST API. ```text https:///interop/rest/11.1.2.3.600/applicationsnapshots/users.csv/contents ``` -------------------------------- ### Example Request URL Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/fccs_update_validation_status_of_enterprise_journals_for_financial_consolidation_and_close.html An example of how to construct the request URL for the API, including placeholders for base URL and identifiers. ```text POST https:///HyperionPlanning/rest/ej/v1/ejjournals/100000000008821/validationstatus ``` -------------------------------- ### Get All User Variables (With Offset and Limit) Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_user_variables_get_all.html This example demonstrates how to retrieve a subset of user variables by specifying the offset and limit parameters. This is useful for paginating through large sets of variables. ```HTTP GET /HyperionPlanning/rest/v3/applications/{application}/uservariables?offset=0&limit=2 ``` ```HTTP https:///HyperionPlanning/rest/v3/applications/Vision/uservariables?offset=0&limit=2 ``` -------------------------------- ### Upload Headers Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/appendix_postman_upload.html Example of the necessary headers for a file upload request. ```text Content-Type: multipart/form-data ``` -------------------------------- ### Example URL to Retrieve All Periods Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/arcs_rest_get_periods.html An example URL demonstrating how to retrieve all periods by setting the status parameter to 'ALL'. ```text https://oraclecloud.com/armARCS/rest/periods?status=ALL ``` -------------------------------- ### Response Body Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/upload_application_snapshot.html This is an example of a successful response body when uploading an application snapshot. ```json { "status":0, "details":null, "links":[ { "data":null, "action":"POST", "href":"https:///interop/rest/v1/applicationsnapshots/ss2.zip/contents", "rel":"self" } ] } ``` -------------------------------- ### Upload Response on Success Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/appendix_postman_upload.html Example of a successful response after uploading a file. ```text HTTP/1.1 200 OK Content-Type: application/json { "status": "success", "message": "File uploaded successfully." } ``` -------------------------------- ### Initiate Application Snapshot Download (v2) Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/download_application_snapshot_v2.html Use this POST request to start the download process for a specified application snapshot. Ensure the correct Base URL and snapshot file name are provided. ```json https:///interop/rest/v2/files/download ``` ```json { "fileName": ".zip" } ``` -------------------------------- ### Get Lock Status REST API Request Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/fdmee_lock_unlock.html An example of a GET request to check the lock status for a specific application, period, and category. ```http /aif/rest/V1/POV?application=FCCSAPP1&period=Jan-17&category=Actual ``` -------------------------------- ### Example URL for Viewing All Connections Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/arcs_connections_get_all_connections.html This is an example URL to retrieve all connections for a specific module. Replace `` with your actual EPM Cloud base URL. ```text https:///arm/rest/fcmapi/v1/rc/connections ``` -------------------------------- ### Example URL for Viewing Connections Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/epm_connections_get_all_connections.html This example demonstrates how to construct the URL to retrieve connections, utilizing offset and limit parameters for pagination. Ensure you replace `` with your actual Oracle Cloud EPM base URL. ```HTTP https:///HyperionPlanning/rest/epm/v1/applications/epbcs1/connections?offset=2&limit=2 ``` -------------------------------- ### Get Plan Types API URL Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/get_plan_types.html This is an example URL for the Get Plan Types REST API. Replace '' with your actual Oracle Cloud EPM base URL. ```text https:///HyperionPlanning/rest/v3/applications/Vision/plantypes ``` -------------------------------- ### Get User Preferences Response Body Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/get_user_preferences.html Example of the JSON response body returned by the Get User Preferences REST API. This includes various display preference settings for the user. ```json { "decimalSeparator": "", "scale": 0, "thousandsSeparator": "", "negativeStyle": 255, "minPrecision": 0, "maxPrecision": 0, "showPUAlias": false, "currSymbol": "", "links": [{ "rel": "self", "href": "https:///HyperionPlanning/rest/v3/applications/PS4app1/userpreferences", "action": "GET" }] } ``` -------------------------------- ### Example URL with Pagination Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_get_user_variables_for_app.html Shows how to use the 'offset' and 'limit' query parameters to paginate through the user variable values. This is useful for handling large datasets. ```text https:///HyperionPlanning/rest/v3/applications/Vision/uservariablevalues?offset=0&limit=5 ``` -------------------------------- ### Get Member REST API Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/get_member.html This snippet shows an example URL and payload for retrieving member properties using the Get Member REST API. Ensure you replace with your actual base URL. ```url https:///HyperionPlanning/rest/v3/applications/Vision/dimensions/Entity/North%20America ``` ```json {"memberName":"North America","parentName":"Enterprise Global"} ``` -------------------------------- ### Example URL - Retrieve Multiple User Variable Values Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_get_user_variables_for_user_and_member.html Shows how to format a URL to retrieve user variable values for multiple users simultaneously. ```text https:///HyperionPlanning/rest/v3/applications/Vision/uservariablevalues?q={"userName":["testuser1","testuser2"], "member":"Apr"} ``` -------------------------------- ### GET Request to Retrieve Journals Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/fccs_retrieve_journals.html This is an example of a GET request to retrieve journals with specific filters and pagination parameters. ```bash GET /HyperionPlanning/rest/{api_version}/applications/{application}/journals?q={"scenario":"Actual","year":"FY16","period":"Jan","consolidation":"FCCS_Entity Input","status": "WORKING","group":"group1" ,"label":"J1" ,"description":"JournalDesc","entity":"FCCS_Total Geography"}&offset=0&limit=5 ``` -------------------------------- ### Example URL for Planning Unit History and Annotations Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/get_planning_unit_history_and_annotations.html This example shows how to construct the URL to retrieve history and annotations for a specific planning unit, including filtering by annotation and log sequence. ```HTTP https:///HyperionPlanning/rest/v3/applications/PS4app1/planningunits/Forecast::"BU Version_1"::Marketing::/historyandannotations?q={annotSeq:-1,logSeq:-1} ``` -------------------------------- ### Example URL with paging parameters Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_get_user_variables_for_user.html This URL demonstrates how to retrieve user variable values with optional paging parameters for offset and limit. ```bash https:///HyperionPlanning/rest/v3/applications/Vision/uservariablevalues?q={"userName":"testuser1"}&offset=0&limit=5 ``` -------------------------------- ### Example URL with jobType Filter Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/get_job_definitions.html An example of a GET request URL to retrieve job definitions filtered by a specific job type, such as 'RULES'. ```bash https:///HyperionPlanning/rest/v3/applications/PS4app1/jobdefinitions?q={"jobType":"RULES"} ``` -------------------------------- ### Upload Snapshot Authorization Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/appendix_postman_upload_snapshot.html Example of authorization setup for uploading a snapshot. ```text Authorization: Basic ``` -------------------------------- ### Example URL for User Variable Values Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_get_user_variables_for_app.html Demonstrates how to construct a URL to retrieve user variable values for a given application. The base URL and API version should be replaced with your specific environment details. ```text https:///HyperionPlanning/rest/v3/applications/Vision/uservariablevalues ``` -------------------------------- ### Example Request: Retrieve Child Job Details Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/retrieve_child_job_status_details.html A basic example of a GET request to retrieve child job details for a given application and job identifiers. ```http https:///HyperionPlanning/rest/v3/applications/PS4app1/jobs/145/childjobs/123/details ``` -------------------------------- ### Get Lock Status Response Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/fdmee_lock_unlock.html An example response body showing the lock status for multiple locations within a specified application, period, and category. ```json { "details": null, "status": 0, "response": [ { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "FCCSAPP1" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "FCCSAPP1_LOC11" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "AD_ASO_PBCS_To_FCCS" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "AD_ASO_EPBCS_To_FCCS" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "ORCL_To_FCCS" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "SQL_To_FCCS" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "FCCSAPP1_LOC31" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "FCCSAPP1_LOC23" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "FCCSAPP1_LOC22" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "FCCSAPP1_LOC27" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "FCCSAPP1_LOC26" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "FCCSAPP1_LOC25" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "FCCSAPP1_LOC24" }, { "period": "Jan-17", "category": "Actual", "status": "Locked", "application": "FCCSAPP1", "location": "FCCSAPP1_LOC21" } ] } ``` -------------------------------- ### Example URL for User Variables Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_get_user_variables_for_mem.html Demonstrates how to construct a URL to retrieve user variable values for a specific application and member. Replace `` with your EPM Cloud instance URL. ```text https:///HyperionPlanning/rest/v3/applications/Vision/uservariablevalues?q={"member":"Apr"} ``` -------------------------------- ### Initialize Upload Step (curl) Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/upload_application_snapshot.html Use this `curl` command to initiate the application snapshot upload process. Ensure you replace placeholders like , , , and with your actual values. The query parameters specify the first chunk, chunk size, and total file size. ```curl curl -s -u : -H 'Content-Type: application/octet-stream' --request POST 'https:///interop/rest/v1/applicationsnapshots/.zip/contents?q=%7B%22isFirst%22%3Atrue%2C%22chunkSize%22%3A14%2C%22fileSize%22%3A%22%22%2C%22isLast%22%3Afalse%7D' ``` -------------------------------- ### Example URL for Derived Substitution Variables Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_get_derived_subst_variables_at_plan_type_level_6.html This is an example URL demonstrating how to call the REST API to get derived substitution variables for a specific application and plan type. ```URL https:///HyperionPlanning/rest/v3/applications/Vision/plantypes/Plan1/substitutionvariables?q={"derivedValues":true} ``` -------------------------------- ### GET Job Status Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/arcs_get_job_status.html This example shows the structure of a successful response when retrieving the status of a Reconciliation Compliance job. It indicates the number of items copied successfully and unsuccessfully. ```json { "type": "ARCS", "status": 0, "details": "Total to copy : 3\nSuccessfully copied : 2\nUnsuccessfully copied : 1\n", "links": [ { "rel": "self", "href": "https://-...oraclecloud.com/armARCS/rest/v1/jobs/91", "action": "GET" } ], "error": null, "items": null, "link": null } ``` -------------------------------- ### Get User Preferences REST API URL Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/get_user_preferences.html Example URL for accessing the Get User Preferences REST API. Replace with your Oracle Cloud EPM instance URL. ```text https:///HyperionPlanning/rest/v3/applications/PS4app1/userpreferences ``` -------------------------------- ### Example URL with Paging for User Variables Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_get_user_variables_for_mem.html Shows how to paginate the results when retrieving user variable values. This example specifies an offset of 0 and a limit of 5 records. ```text https:///HyperionPlanning/rest/v3/applications/Vision/uservariablevalues?q={"member":"Apr"}&offset=0&limit=5 ``` -------------------------------- ### Get Idle Session Timeout Response Body Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/get_idle_session_timeout.html This JSON structure represents a successful response from the Get Idle Session Timeout (v2) API, indicating the session timeout value in minutes. ```json { "details": null, "links": [{ "rel": "self", "href": "https:///interop/rest/v2/config/services/idlesessiontimeout", "data": "null", "action": "GET" }], "status": "0", "items": [{ "timeout": "30" }] } ``` -------------------------------- ### Get Categories API Response Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/migration_get_categories.html This is a successful response body example for the Get Categories REST API. It lists various artifact categories such as 'Document Repository', 'Core', 'Data Management', 'Calculation Manager', and 'Groups and Membership'. ```json { "status": 0, "items": [ { "categoryName": "Document Repository" }, { "categoryName": "Core" }, { "categoryName": "Data Management" }, { "categoryName": "Calculation Manager" }, { "categoryName": "Groups and Membership" } ], "links": [ { "href": " https:///interop/rest/v2/migration/categories/list", "action": "GET", "rel": "self" } ] } ``` -------------------------------- ### Example URL - Retrieve Single User Variable Values Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_get_user_variables_for_user_and_member.html Illustrates how to construct a URL to fetch user variable values for a single specified user and member. ```text https:///HyperionPlanning/rest/v3/applications/Vision/uservariablevalues?q={"userName":"testuser1", "member":"Apr"} ``` -------------------------------- ### Example: Call SQL Query with GET and URL Variable Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/sql_application_express_rest_api_client.html An example of calling an APEX RESTful SQL query with specific module, URI, and a bind variable '7839'. This assumes a REST service defined with `bics/test/{ID}`. ```Java apexClient.launchSQLQueryUsingGETAndVariableOnUrl("bics/test", "7839") ``` -------------------------------- ### Example API URL for Planning Jobs Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/versioning.html This example shows the URL structure for accessing jobs within Oracle Hyperion Planning, including the API version placeholder. ```text https://https:///HyperionPlanning/rest/{api_version}/applications/{applicationName}/jobs ``` -------------------------------- ### Get LCM Import Status Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/lcm_import.html Retrieves the status of an ongoing LCM import job. The '9' in the resource path is an example version. ```bash GET /interop/rest/{api_version}/applicationsnapshots/{applicationSnapshotName}/migration/9 ``` -------------------------------- ### Example API URL for Application Snapshots Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/versioning.html This example demonstrates the URL format for retrieving application snapshots via the interop REST API, with a placeholder for the API version. ```text https://https:///interop/rest/{api_version}/applicationsnapshots ``` -------------------------------- ### Deploy Form Templates Request Body Example 2 Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/fccs_deploy_form_templates.html Example request body for deploying form templates with a single template and specific parameters. ```json { "jobType" : "DEPLOY_FORM_TEMPLATES", "parameters": { "CollectionIntervalName" : "Loan Collection Interval", "Year" : "2020", "Period" : "July", "Category" : "Oracle EPM", "Movement" : "Actual", "Template" : ["Template 3"] } } ``` -------------------------------- ### Example URL for Derived Substitution Variable Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_get_derived_subst_variables_defined_at_plan_type_level_8.html This example URL demonstrates how to call the REST API to get substitution variables, specifying the base URL, API version, application name, plan type, and setting the 'derivedValues' query parameter to true. ```text https:///HyperionPlanning/rest/v3/applications/Vision/plantypes/Plan1/substitutionvariables?q={"derivedValues"=true} ``` -------------------------------- ### Request URL with Optional Parameters Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/fccs_get_enterprise_journals.html Example of a GET request to retrieve enterprise journals with optional query parameters for year, period, posting status, and validation status. ```text GET /HyperionPlanning/rest/ej/{api_version}/ejjournals?Year=2018&Period=Jan&PostingStatus=ReadyToPost&ValidationStatus=ReadyToValidate ``` -------------------------------- ### Example URL and Payload for File Application Creation Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/pcmc_create_file_based_application.html This example shows the structure of the URL and the JSON payload required to create a file-based application. ```JSON https:///epm/rest/v1/fileApplications/BksML12 {"description": "description","ruleDimensionName":"Rule","balanceDimensionName":"Balance"} ``` -------------------------------- ### Get All User Variables (No Optional Parameters) Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_user_variables_get_all.html This example shows how to retrieve all user variables for an application without specifying offset or limit. It demonstrates the basic structure of the request URI. ```HTTP GET /HyperionPlanning/rest/v3/applications/{application}/uservariables ``` ```HTTP https:///HyperionPlanning/rest/v3/applications/Vision/uservariables ``` -------------------------------- ### Response Body for Copy Data Job Execution Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/fccs_copy_data.html This is an example of the JSON response received after starting a Copy Data job. It includes the jobId, status, and links for further job details. ```json { "jobId": 8, "descriptiveStatus": "Processing", "details": null, "jobName": "Copy Data", "status": -1, "links": [ { "href":"https://-...oraclecloud.com/HyperionPlanning/rest/v3/applications//jobs/","rel":"self","action":"GET"}, "href":"https://-...oraclecloud.com/HyperionPlanning/rest/v3/applications/", "rel":"job-details","action":"GET"}, } ] } ``` -------------------------------- ### Example URL for Setting User Variables Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/planning_set_user_variables.html An example of the full URL to access the user variable setting endpoint. Replace with your Oracle EPM Cloud instance URL. ```shell https:///HyperionPlanning/rest/v3/applications/Vision/uservariables ``` -------------------------------- ### Retrieve Job Status Request Example Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/lcm_set_encryption_key.html This GET request is used to retrieve the status of an asynchronous job, such as setting an encryption key. The jobID is obtained from the response of the initial job execution request. ```shell GET /interop/rest/v1/services/jobs/{jobID} ``` -------------------------------- ### List Planning Units with Filters and Pagination Source: https://docs.oracle.com/en/cloud/saas/enterprise-performance-management-common/prest/list_all_planning_units.html This example demonstrates how to filter planning units by status and sub-status, and paginate the results. Multiple values can be provided for filters. ```HTTP https:///HyperionPlanning/rest/v3/applications/PS4app1/planningunits?q={"scenario":"Forecast","version":"BU Version_1"} Payload: filter={name:"Status",type:4,values:[2,5]}&filter={name:"SubStatus",type:3,values:[0,4]} ```