/api/space/configuration-management/execute-export-device-configuration

The following operation is supported on this resource:

  • POST - Execute Export Device Configuration
POST /execute-export-device-configurationVersion 3

Execute Export Device Configuration.

Sample Usage

This API makes an asynchronous method call; so, you can optionally specify queue and schedule parameters:

POST /execute-export-device-configuration?queue=<queue>&schedule=<schedule>


Note: The queue URL denoted by <queue> must have been created already.


  • Parameters:
    NameTypeURI TypeDescriptionRequired
    queueQueue URLQueryA fully qualified queue URL, where job progress notifications will be sent (See Asynchronous API Usage)N
    schedulecron-like-expressionQuerySchedule this API in the future, by specifying a cron-like-expression (See Job Scheduling)N
  • Sample Input XML:
    <execute-export-device-configuration-request>
         <x-date>String</x-date>
         <device-list>
               <device href="/api/space/managed-domain/devices-require-polling/{id}"/>
         </device-list>
         <content-type>XML</content-type>
    </execute-export-device-configuration-request>

  • Sample Output XML:
    <task href="/api/space/job-management/jobs/3244036">
       <id>3244036</id>
    </task>

  • Sample Input JSON:
    {
      "execute-export-device-configuration-request": {
        "x-date": "String",
        "device-list": {
          "device": [
            {
              "@href": "/api/space/managed-domain/devices-require-polling/{id}"
            }
          ]
        },
        "content-type": "XML"
      }
    }

  • Sample Output JSON:
    {
      "task":{
        "@href":"/api/space/job-management/jobs/3244036",
        "id":3244036
      }
    }

  • Access Control

    The following capabilities are required to access this API: ExportConfigFilesCap, ConfigViewerCap