Skip to main content
POST
/
signature_request
/
{signature_request_id}
/
signing-link
Get Signing Link
curl --request POST \
  --url https://api.luminpdf.com/v1/signature_request/{signature_request_id}/signing-link \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "signer_email": "[email protected]"
}
'
{
  "view_url": "https://sign.luminpdf.com/auth?mode=view-contract&token=8647b08b...",
  "signer_email": "[email protected]",
  "status": "NEED_TO_SIGN"
}

Documentation Index

Fetch the complete documentation index at: https://developers.luminpdf.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Provide your API key in the X-API-Key header, e.g., X-API-Key: YOUR_API_KEY.

Path Parameters

signature_request_id
string
required

ID of the signature request.

Body

application/json
signer_email
string<email>
required

Email address of the signer whose signing link should be generated.

Response

Signing link generated successfully.

view_url
string
required

The signing URL that the signer can use to view and sign the document.

signer_email
string
required

Email address of the signer.

status
enum<string>
required

Current signing status of the signer.

Available options:
NEED_TO_SIGN,
APPROVED,
WAITING_FOR_OTHERS,
REJECTED,
FAILED,
WAITING_FOR_PROCESSING