Confirm Rclone Import
Confirm and execute the rclone.conf import, creating secrets and locations.
Required Role: ADMIN or OWNER
This is step 2 of the import workflow. Send the confirmed list of remotes (with any user modifications like name changes or bucket names) along with the actual credential values.
For each remote, this endpoint creates:
- A Secret with credentials stored in AWS SSM Parameter Store
- A Location linked to that secret
Remotes are processed independently - if one fails, others still succeed.
Request body:
{
"remotes": [
{
"name": "My S3 Remote",
"location_type": "s3",
"auth_method": "s3_access_key",
"region": "us-east-1",
"bucket_name": "my-bucket",
"credentials": {
"access_key_id": "AKIA...",
"secret_access_key": "wJal..."
}
}
]
}
Returns created resource pairs and any errors encountered.
Documentation Index
Fetch the complete documentation index at: https://docs.dataraven.io/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
Request to import parsed rclone remotes (step 2 - confirm).
List of remotes to import (from the parse preview, with user edits)
1