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.

Custom Capabilities API (beta)

The Custom Capabilities API allows you to submit custom capabilities to do almost anything you can do in InDesign using a custom script.

Submit a custom capability

Submit the capability bundle. This returns the URL for posting an execution request for the capability.

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

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

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/zip
required

The capability bundle, in ZIP format. This package describes the capability to the app engine.

object
Responses
202

Status of a capability execution.

400

Bad Parameter

401

Unauthorized

403

Forbidden

404

Not Found

429

Too Many Requests

500

Internal Server Error

post/v3/capability
Response samples
application/json
{
  • "capability": "string",
  • "version": "string",
  • "url": "string"
}

Submit a capability execution request

Submit an execution request for a custom capability. Define the input assets and parameters the capability will use when it is executed against the app engine.

SecurityApiKeyAuth or BearerAuth
Request
path Parameters
organization
required
string

The organization identifier, reported in the response to a capability submit request.

capability
required
string

The name of the capability, specified in the capability manifest.

header Parameters
x-gw-ims-org-id
required
string

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

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 the execution of the capability.

required
Array of objects (InputAsset)

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

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/{organization}/{capability}
Request samples
application/json
{
  • "assets": [
    ],
  • "params": {
    },
  • "outputs": [
    ]
}
Response samples
application/json
{
  • "jobId": "string",
  • "statusUrl": "string"
}