Skip to main content
GET
/
masterfiles
/
{packageId}
/
signer
/
{signerId}
/
pdf
/
download
Download
curl --request GET \
  --url https://sandbox.syngrafii.com/api/v1/masterfiles/{packageId}/signer/{signerId}/pdf/download \
  --header 'api_key: <api-key>'
HTTP/1.1 200 OK
Content-Type: application/pdf
Content-Disposition: attachment; name="example.pdf";filename*=utf-8''example.pdf

<PDF-BINARY-DATA>
This endpoint will generate a MasterFile for the specified signer, all other signers’ sensitive personally identifiable information (PII) will be nulled out. If the signer is also the package owner they will still see all signers’ PII. If the signer is not the package owner they will only see their own PII. This is useful when sharing MasterFile data with signers while keeping other signers’ PII private.

PII not shared when using /signer/{signerId} endpoint:

  • Mobile Number
  • Device
  • IP Address
  • Location (Address, Latitude, and Longitude)
If you want more control over the content included in the MasterFile consider using the MasterFile export API endpoint instead.

Request

Request
GET /masterfiles/{packageId}/signer/{signerId}/pdf/download

Parameters

packageId
string
required
The unique identifier of the package you want to download MasterFile for.
signerId
string
required
The unique identifier of the signer you want to download MasterFile as.

Response

Returns a PDF file of the requested package’s MasterFile for the specified signer.
HTTP/1.1 200 OK
Content-Type: application/pdf
Content-Disposition: attachment; name="example.pdf";filename*=utf-8''example.pdf

<PDF-BINARY-DATA>