Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/pages/overview/pdf-services-api/howtos/export-pdfform-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@
title: Export PDF Form Data | How Tos | PDF Services API | Adobe PDF Services
---

# Export PDF Form
# Export PDF Form Data
The Export PDF Form Data API will retrieve the data from a PDF form and return it as a JSON file
![Export PDF Form](../exportform_overview.png)
![Export PDF Form Data](../exportform_overview.png)

## Input Documents : **Required**

Supported format is PDF (application/pdf). Input PDF with version 1.6 and above is supported.

### Input Document

A PDF document basically an acroform for which the data needs to be exported.
A PDF AcroForm from which data needs to be exported.

## REST API

See our public API Reference for [Export PDF Form API](../../../apis/#tag/Export-PDF-Form-Data).
See our public API Reference for [Export PDF Form Data API](../../../apis/#tag/Export-PDF-Form-Data).

## Export PDF Form Data

The sample below exports a PDF form data and returns it as a JSON file.
The sample below exports PDF form data and returns it as a JSON file.

Please refer to the [API usage guide](../api-usage.md) to understand how to use our APIs.

Expand All @@ -30,7 +30,7 @@ Please refer to the [API usage guide](../api-usage.md) to understand how to use

```javascript
// Please refer our REST API docs for more information
// https://developer.adobe.com/document-services/docs/apis/#tag/Export-PDF-Form-API
// https://developer.adobe.com/document-services/docs/apis/#tag/Export-PDF-Form-Data-API

curl --location --request POST 'https://pdf-services.adobe.io/operation/getformdata' \
--header 'x-api-key: {{Placeholder for client_id}}' \
Expand Down
10 changes: 5 additions & 5 deletions src/pages/overview/pdf-services-api/howtos/import-pdfform-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Import PDF Form Data | How Tos | PDF Services API | Adobe PDF Services
---

# Export PDF Form
# Import PDF Form Data
The Import PDF Form Data API will take the form data provided as a JSON, insert it into the PDF form, and generate the resulting PDF document.
![Import PDF Form](../importform_overview.png)

Expand All @@ -12,15 +12,15 @@ Supported format is PDF (application/pdf). Input PDF with version 1.6 and above

### Input Document

A PDF document basically an acroform to which the data needs to be imported from a json file that contains the form data.
A PDF AcroForm to which form data, provided as a JSON, is imported to generate the resulting PDF document.

## REST API

See our public API Reference for [Import PDF Form API](../../../apis/#tag/Import-PDF-Form-Data).
See our public API Reference for [Import PDF Form Data API](../../../apis/#tag/Import-PDF-Form-Data).

## Import PDF Form Data

The sample below exports a PDF form data and returns it as a JSON file.
The sample below demonstrates how to import form data from a JSON into PDF and generate the resulting PDF document.

Please refer to the [API usage guide](../api-usage.md) to understand how to use our APIs.

Expand All @@ -30,7 +30,7 @@ Please refer to the [API usage guide](../api-usage.md) to understand how to use

```javascript
// Please refer our REST API docs for more information
// https://developer.adobe.com/document-services/docs/apis/#tag/Export-PDF-Form-API
// https://developer.adobe.com/document-services/docs/apis/#tag/Import-PDF-Form-Data-API

curl --location --request POST 'https://pdf-services.adobe.io/operation/setformdata' \
--header 'x-api-key: {{Placeholder for client_id}}' \
Expand Down
4 changes: 2 additions & 2 deletions src/pages/overview/releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ Upgrading to the latest SDK should not break existing applications.

### January 27, 2024; Server Side Release

- Added [Export PDF Form API](../pdf-services-api/howtos/export-pdfform-api/) operation in PDF Services API to retrieve the data from a PDF form and return it as a JSON file.
- Added [Import PDF Form API](../pdf-services-api/howtos/import-pdfform-api/) operation in PDF Services API to import form data from a json file.
- Added [Export PDF Form Data](../pdf-services-api/howtos/export-pdfform-api/) operation in PDF Services API to retrieve the data from a PDF form and return it as a JSON file.
- Added [Import PDF Form Data](../pdf-services-api/howtos/import-pdfform-api/) operation in PDF Services API to populate PDF forms with JSON data and generate the resulting PDF document.
- Support for external storage and webhook notifier config for both operations is excluded for this release.

### November 06, 2024; Adobe Document Generation Server Side Release
Expand Down