Create export to S3
documentedCreate an export task that stores output to Amazon S3.
POST /v2/export/s3Exportsno implementation yet0 runsNo 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://api.cloudconvert.com/v2/export/s3" \
-X POST \
-H "Authorization: Bearer {{CLOUDCONVERT_API_KEY}}" \
-H "Content-Type: application/json" \
-d '{ "input": "{{$input_task_id}}", "access_key_id": "{{$aws_access_key_id}}", "secret_access_key": "{{$aws_secret_access_key}}", "bucket": "{{$s3_bucket}}", "region": "{{$s3_region}}", "key": "{{$s3_key}}", "metadata": {{$metadata}} }'