v1

latestOpenAPI 3.1.02026-08-066378446.6 KB
Document Operations

Add signatory

<small>Requires an API token with the Document Manager role.</small>

Adds a signatory to a document.

Note: When adding a signatory whose email corresponds to an existing user in the current fynk account, only party_uuid and email are required. Any additional fields (first_name, last_name, mobile_phone, title) will be ignored and the signatory information will be populated from the existing user's profile.

post/documents/{document}/signatories

Path parameters

documentstring required

The document UUID

Request body

party_uuidstring uuid required

UUID of the party the signatory will be signing for

emailstring email required

The signatory's email address

first_namestring nullable
last_namestring nullable
mobile_phonestring nullable

Mobile phone number, in E.164 format, as shown in the example

titlestring nullable

Example request

{
  "party_uuid": "595703a2-b7f6-4772-a4b7-ab2f9fac3a9f",
  "email": "miller@example.com",
  "first_name": "Emily",
  "last_name": "Miller",
  "mobile_phone": "+447951123456",
  "title": "Sales Manager"
}

Response

SignatoryResource

Example response

{
  "data": {
    "uuid": "76b8e0ad-e9cd-4c21-98b1-cd0003423ec2",
    "first_name": "Emily",
    "last_name": "Miller",
    "email": "miller@example.com",
    "mobile_phone": "+447951123456",
    "title": "Sales Manager",
    "profile_photo_url": "https://ui-avatars.com/api/?name=EM",
    "party_uuid": "595703a2-b7f6-4772-a4b7-ab2f9fac3a9f"
  }
}