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:
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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request to import parsed rclone remotes (step 2 - confirm).
List of remotes to import (from the parse preview, with user edits)
1