- 09 Oct 2024
- 1 Minute to read
- DarkLight
- PDF
Getting Thank You Dialog Content
- Updated on 09 Oct 2024
- 1 Minute to read
- DarkLight
- PDF
Java SDK
To download the full code sample see our Code Share site.
The Thank You dialog box appears to recipients when they have finished signing all the documents in a transaction. This box asks recipients if they want to review the documents they have signed, or leave the system.
To customize the content of this dialog box contact our Support Team.
You can retrieve the contents of this dialog box by using the following code sample:
String thankYouDialogContent = eslClient.getPackageService().getThankYouDialogContent(packageId);
Here is an example of what you can expect to see once you have run your code.
.NET SDK
To download the full code sample see our Code Share site.
The Thank You dialog box appears to recipients when they have finished signing all the documents in a transaction. This box asks recipients if they want to review the documents they have signed, or leave the system.
To customize the content of this dialog box contact our Support Team.
You can retrieve the contents of this dialog box by using the following code sample:
string thankYouDialogContent = eslClient.PackageService.GetThankYouDialogContent(packageId);
Here is an example of what you can expect to see once you have run your code.
REST API
To download the full code sample see our Code Share site.
The Thank You dialog box appears to recipients when they have finished signing all the documents in a transaction. This box asks recipients if they want to review the documents they have signed, or leave the system.
To customize the content of this dialog box contact our Support Team.
You can retrieve the contents of this dialog box by using the following code sample:
HTTP Request
GET /api/packages/{packageId}/thank_you_dialog
HTTP Headers
Accept: application/json
Content-Type: application/json
Authorization: Basic api_key
Response Payload
{
"body": "You have successfully e-signed your documents.",
"logo": "esl",
"title": "Thank you!"
}
Here is an example of what you can expect to see once you have run your code.