It is possible to add emails in copy of the transaction: once the transaction is completed, they will be sent the signed documents.
Add emails in copy of a new transaction
To add emails in copy when you create the transaction, send a request POST /v1/transactions
and pass the email in the carbon_copies
argument:
curl
https://api.universign.com/v1/transactions \
-d carbon_copies=sarah@company.com
-d carbon_copies=alice@company.com
Add emails in copy of an existing transaction
To add emails in copy of an existing transaction, send a request to POST /v1/transactions/{transaction_id}
and pass the carbon_copies
argument:
curl
https://api.universign.com/v1/transactions/tx_AWo949MOq0JE \
-d carbon_copies=john@company.com \
-d carbon_copies=jane@company.com
Please note that is is not possible to add emails in copy once the transaction is completed.
Delete emails in copy of a transaction
To update the list of carbon copies, pass all the emails you want to keep in the list and do not pass the emails you want to delete.
To delete all emails in carbon copies, pass an empty carbon_copies
argument, as follows:
curl
https://api.universign.com/v1/transactions/tx_AWo949MOq0JE \
-d carbon_copies