Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.

Page updated Apr 29, 2024

Delete data

Amplify Flutter v1 is now in Maintenance Mode until April 30th, 2025. This means that we will continue to include updates to ensure compatibility with backend services and security. No new features will be introduced in v1.

Please use the latest version (v2) of Amplify Flutter to get started.

If you are currently using v1, follow these instructions to upgrade to v2.

DELETE requests

Future<void> deleteTodo() async {
try {
final restOperation = Amplify.API.delete('todo/1');
final response = await restOperation.response;
safePrint('DELETE call succeeded: ${response.decodeBody()}');
} on ApiException catch (e) {
safePrint('DELETE call failed: $e');
}
}