JOC API

Version 2.4.1

Download RAML
JOC API
/agents/export
POST

Provides archive file (zip, tar.gz) to download agent configurations


Parameters in the POST body schema

Name Type Description Example Default
exportFile required, object This objects describes the export file with filename and format.
"exportFile" : {
"filename" : "test_export.zip",
"format" : "ZIP"
}
filename required, string "filename" : "test_export.zip"
format required, enum The desired format of the export archive file. The enum archiveFormat for the value consist of ZIP and TAR_GZ "format" : "ZIP"
agentIds required, array An array of the desired agentIds to export to the archive file. "agentIds" : [ "agent_cluster_001", "agent_001", "agent_002", "agent_003", "agent_006" ]