When you initiate an endpoint in archived mode, you work with a single archive file that can contain more than one data file, allowing you to manipulate several data files at a time. This is the default mode for performing exports and imports.

For example, the following export request is in archived mode. It generates two different files that are combined into a single archive file:

POST /ccadmin/v1/exportProcess
        {
          "fileName": "profile.zip",
          "items": [
            {
              "id": "Profiles",
              "format": "json"
            },
            {
              "id": "Accounts",
              "format": "json"
            }
          ]
        }

As displayed in the above example, the request contains the fileName parameter, which represents the name of the archive file. It also contains the items, id and format parameters.


Copyright © 1997, 2017 Oracle and/or its affiliates. All rights reserved. Legal Notices