v1

latestOpenAPI 3.1.02026-07-2498134321.1 KB
Workflows

Create an Embeddable Recipient URL for a Signer

Create an embeddable recipient URL for a signer to access the signature request.

This functionality is exclusive to Ironclad Signature. See this help center article for more information.

OAuth Scope required: public.workflows.createEmbeddableSignerUrls

post/workflows/{id}/signatures/recipient-urls/embedded

Path parameters

idstring required

The unique identifier or Ironclad ID of a workflow.

Headers

x-as-user-emailstring
Example:jane.doe@test.com

Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-id is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.

x-as-user-idstring
Example:5f0375c4cdc1927a3c5edcd3

Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-email is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.

Request body

type'signer' required

The type of recipient.

roleNamestring required

The role name of the signer. A full list of role names can be located using the List All Workflow Signers endpoint.

frameAncestorstring required

The hostname of the parent frame that the recipient URL can be embedded in. Can optionally include a URL scheme and/or port number. Wildcards (i.e. '*') are not allowed.

allowMultipleUsagesboolean

Whether or not the embeddable recipient URL can be used multiple times before it expires. Defaults to false if not set.

Example request

{
  "roleName": "Counterparty Signer",
  "frameAncestor": "https://example.com",
  "allowMultipleUsages": true
}

Response

201

urlstring required

The embeddable URL for the recipient to access the signature request. The URL can only be embedded in a parent matching the host specified in frameAncestor.

Example response

{
  "url": "https://na1.ironcladapp.com/sign?r=5e51f2b9-a684-4c50-887c-32911b661300&s=b2a303cd-f7a0-425e-8f36-d94e38c4e1a8"
}