Page updated Nov 9, 2023

Delete data

Amplify Android v1 is now in Maintenance Mode until May 31st, 2024. 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 Library for Android to get started.

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

DELETE requests

RestOptions options = RestOptions.builder() .addPath("/todo/1") .build(); Amplify.API.delete(options, response -> Log.i("MyAmplifyApp", "DELETE succeeded: " + response), error -> Log.e("MyAmplifyApp", "DELETE failed.", error) );
1RestOptions options = RestOptions.builder()
2 .addPath("/todo/1")
3 .build();
4
5Amplify.API.delete(options,
6 response -> Log.i("MyAmplifyApp", "DELETE succeeded: " + response),
7 error -> Log.e("MyAmplifyApp", "DELETE failed.", error)
8);