---
title: "Manually save PDF annotation in React Native | Nutrient"
canonical_url: "https://www.nutrient.io/guides/react-native/annotations/save/manual-save/"
md_url: "https://www.nutrient.io/guides/react-native/annotations/save/manual-save.md"
last_updated: "2026-06-24T08:10:54.196Z"
description: "Learn how to manually save annotations in PSPDFKit using JavaScript. Explore sample code and examples for effective document management."
---

# Manually save annotations in React Native

PSPDFKit allows you to manually save changed, created, or deleted annotations to a document. You can trigger a manual save by calling `save()` on the current document, like so:

```js

await this.pdfRef?.current?.getDocument().save();

```

For more details and sample code, see the [`ManualSave.tsx` example](https://github.com/PSPDFKit/react-native/tree/master/samples/Catalog/examples/ManualSave.tsx) from the [Catalog example project](https://www.nutrient.io/guides/react-native/prebuilt-solutions/example-projects.md#pspdfkit-catalog).
---

## Related pages

- [Embed annotations in a PDF file on React Native](/guides/react-native/annotations/save/embed-into-pdf.md)
- [Customize annotation saving permissions in React Native](/guides/react-native/annotations/save/saving-permissions.md)
- [Auto save annotations in React Native](/guides/react-native/annotations/save/auto-save.md)

