このコールを実行して、以降のコールに必要なファイル ID と一致する importDataSourceId を取得してください。
メソッドとエンドポイント
https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/files
パラメーター
| パラメーター | 説明 | 
| AnaplanAuthToken:{token} | Anaplan の認証トークンの値 | 
| workspaceID | ワークスペース ID | 
| modelID | モデル ID | 
Curl のサンプル
curl -X GET \
https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/files \ -H 'Authorization:AnaplanAuthToken:{token}'
レスポンス
{
   "meta":{
      "paging":{
         "currentPageSize":23,
         "offset":0,
         "totalSize":23
      },
      "schema":"https://api.anaplan.com/2/0/models/F1111111C11111111B11111F1111E11F/objects/file"
   },
   "status":{
      "code":200,
      "message":"Success"
   },
   "files":[
      {
         "id":"113000000000",
         "name":"Organization.txt",
         "chunkCount":0,
         "delimiter":"\"",
         "encoding":"ISO-8859-1",
         "firstDataRow":2,
         "format":"txt",
         "headerRow":1,
         "separator":"\t"
      },
      {
         "id":"113000000001",
         "name":"Sales Roll Up.txt",
         "chunkCount":0,
         "delimiter":"\"",
         "encoding":"ISO-8859-1",
         "firstDataRow":2,
         "format":"txt",
         "headerRow":1,
         "separator":"\t"
      }
   ]
...
}