The name of the transaction is limited to 100 characters and is editable until a participant action.task is done. The default name is the transaction ID and is visible by participants in all emails and on the signature page.
Set the transaction name
To set the name when you create a transaction, send a request to POST /v1/transactions and pass the name of your transaction in the name argument:
curl
https://api.universign.com/v1/transactions \
-d name=MyTransaction
Update the transaction name
To update the name of an existing transaction, send a request to POST /v1/transactions/{transaction_id} and pass the name of your transaction in the name argument:
curl
https://api.universign.com/v1/transactions/tx_AWo949MOq0JE \
-d name=NewTransactionName
