Dart
Dart
IntakeQ: Download Intake Form PDF
See more IntakeQ Examples
Use this method to download a client’s complete intake package as a PDF file.Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
final http = CkHttp();
http.setRequestHeader('X-Auth-Key', 'xxxxxxxxxxxxxxxxxxxxxxxxx');
try {
http.download('https://intakeq.com/api/v1/intakes/[intake-id]/pdf', 'my_local_dir/intake_form_xxxx.pdf');
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
print('Success.');
}