Firefly Services - InDesign APIs

Download OpenAPI specification:Download

Firefly Service's RESTful InDesign APIs offer resources to automate tedious, time-consuming design tasks through scalable cloud services, encouraging more personalization at scale, creative automation, and faster content delivery.

Data Merge API

The Data Merge API is used to create document variations from CSV data and an InDesign file.

The Data Merge API supports UTF-16BE encoding for CSV files, which is necessary for languages or characters requiring multi-byte representation. For plain English characters, the CSV will function correctly even without this encoding.

Perform a data merge

Returns InDesign documents or PDFs that are created by merging the data provided and the specified template.

The data merge output MIME types are:

    image/jpeg for JPEG.
    image/png for PNG.
    application/pdf for PDF.
    application/x-indesign for INDD.

SecurityApiKeyAuth or BearerAuth
Request
header Parameters
x-gw-ims-org-id
string

This is the identifier for Adobe Identity Management Service (IMS) as defined in Adobe's developer console. This is optional.

x-api-key
required
string

The API key as defined in Adobe's developer console.

Authorization
required
string

The authorization token with bearer "token_value".

Request Body schema: application/json
required

This job request object specifies parameters for merging the data with the given template.

required
Array of objects (InputAsset)

Information about the assets, which will be used to process the job.

required
object
Array of objects (OutputAsset)
Responses
202

The job/capability has been accepted for processing.

400

Bad Parameter

401

Unauthorized

403

Forbidden

404

Not Found

429

Too Many Requests

500

Internal Server Error

post/v3/merge-data
Request samples
application/json
{
  • "assets": [
    ],
  • "params": {
    },
  • "outputs": [
    ]
}
Response samples
application/json
{
  • "jobId": "string",
  • "statusUrl": "string"
}

Get data merge tags

Retrieves the data merge tags from a document.

SecurityApiKeyAuth or BearerAuth
Request
header Parameters
x-gw-ims-org-id
string

This is the identifier for Adobe Identity Management Service (IMS) as defined in Adobe's developer console. This is optional.

x-api-key
required
string

The API key as defined in Adobe's developer console.

Authorization
required
string

The authorization token with bearer "token_value".

Request Body schema: application/json
required

This job request object specifies parameters for retrieving the data merge tags.

required
Array of objects (InputAsset)

Information about the assets, which will be used to process the job.

required
object
Responses
202

The job/capability has been accepted for processing.

400

Bad Parameter

401

Unauthorized

403

Forbidden

404

Not Found

429

Too Many Requests

500

Internal Server Error

post/v3/merge-data-tags
Request samples
application/json
{
  • "assets": [
    ],
  • "params": {
    }
}
Response samples
application/json
{
  • "jobId": "string",
  • "statusUrl": "string"
}