Sign in

Create data import/export task

documented

Create a new data import/export task.

POST /integrations/rest/v3/dataImportExportTasksData Import/Export Tasksno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$integration_domain}}/integrations/rest/v3/dataImportExportTasks" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"taskName":"{{$task_name}}","operation":"EXPORT","format":"CSV","includeHeaders":true,"tables":[{"name":"{{$table_name}}"}],"destination":{"repositoryName":"{{$repository_name}}","type":"S3","bucket":"{{$bucket}}","path":"{{$path}}","fileName":"{{$file_name}}"},"schedule":{"frequency":"ON_DEMAND"},"zip":true}'
Create data import/export task · Caspio · OpenIntegrations