Processing Methods
Using Separate API Calls
Using separate API calls for creating a transaction, uploading a file, and starting a transaction. Choose this method if you want to process large files in multiple threads. Best for:- Large files
- Multiple file processing
- Multi-threaded uploads
- More control over the process
Using a Single API Call
Using a single API call that does all of the above in one step. Choose this method if you only have one file that is less than 30 MB in size. Best for:- Small files (< 30 MB)
- Single file processing
- Quick integration
- Simplified workflow
