Resend signatures

How to resend signatures via API

To resend a signature, use the following mutation:

mutation{
  resendSignatures(public_ids: [
    "SIGNATURE_ID_1",
    "SIGNATURE_ID_2",
    "..."
  ])
}

Paramaters

  • public_ids: A list of signature IDs to be resent. These represent the public_id field of the signatures.

This mutation accounts for the possibility that some resends may be in a timeout state. If all of the signature IDs have already been resent recently, you will receive the error too_many_resent_emails. If only some of them are within the resend limit, those will be skipped, and the remaining signatures will be resent.

Expected response

{
  "data": {
    "resendSignatures": true
  }
}

If Altair doesn't help you integrate with the API, check out some examples of how to make these requests in other ways: https://graphql.org/graphql-js/graphql-clients/

Last updated

Was this helpful?