An export involves bringing data out of Anaplan. 

The export sequence with the API is:

  1. Get the list of export actions for your workspace and model.
    GET https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/exports
  2. Get the definition for a specific export action.
    GET https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/exports/{exportID}
  3. Run the export action.
    POST https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/exports/{exportID}/tasks
  4. Get the status of the export task.  Repeat until the task completes.
    GET https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/exports/{exportID}/tasks/{taskID}
  5. Get the list of files in the model.
    GET https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/files
  6. Retrieve the list of export file chunks.
    GET https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/files/{fileID}/chunks/
  7. Retrieve the export file chunks.
    GET https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/files/{fileID}/chunks/{chunkID}