Fields to update on an existing document recipient.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DocumentRecipientUpdateRequest", "title": "DocumentRecipientUpdateRequest", "type": "object", "description": "Fields to update on an existing document recipient.", "properties": { "first_name": { "type": "string", "description": "Updated first name." }, "last_name": { "type": "string", "description": "Updated last name." }, "email": { "type": "string", "format": "email", "description": "Updated email address." }, "signing_order": { "type": "integer", "description": "Updated signing order position." } } }