Adding a signer
How to add a signer to an already created document
mutation(
$document_id: UUID!,
$signer: SignerInput
) {
createSigner(
document_id: $document_id
signer: $signer
) {
public_id
name
email
delivery_method
action { name }
link {
id
short_link
}
created_at
}
}Expected response: the response will include details about the created signer, as defined in the mutation.
Here is an example of the expected response:
Last updated