Introduction
Schema
- Structured data are sent and received as JSON.
- All timestamps are returned in milliseconds since January 1, 1970.
Errors
All error responses have a code
field so that your client can tell what the problem is.
Error response
HTTP/1.1 404 Not Found
Content-Type: application/json;charset=UTF-8
Content-Length: 111
{
"status" : 404,
"error" : "Not Found",
"message" : "Request not found.",
"code" : "RequestNotFound"
}
Fields:
Path | Type | Description |
---|---|---|
status |
Number | The HTTP status code. |
error |
String | The HTTP status message. |
message |
String | The error message. |
code |
String | The error code. |
Version
Obtain the version of the application.
HTTP request
GET /api/version HTTP/1.1
Here is how you can make the HTTP request:
$ curl 'https://workflow-manager/api/version' -i -X GET
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 22
"sgs-wm-webapp:1.13.4"
Here is what you should get as a response:
"sgs-wm-webapp:1.13.4"
Access tokens
Create access token
Create a user access token.
HTTP request
POST /api/users/usr_4aqKyeFGVZTMqH7FfFdVRD1C/accessTokens HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 92
{
"name" : "Father A. Long",
"authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ]
}
Path parameters:
/api/users/{userId}/accessTokens
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
name |
String | The name of the access token. |
authorizedIpRanges |
Array | The IP addresses range authorized for the access token. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_ECB4mUfNYreUrMTL2VW1z97z
ETag: "2PNnkaJAyxZKiK4DEQjZ4qWm"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 397
{
"authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ],
"created" : 1731411814481,
"id" : "act_FFMaGDaPB9aWgrsVwdDym3vV",
"name" : "Father A. Long",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"tokenValue" : "act_FFMaGDaPB9aWgrsVwdDym3vV.5YgU9wnGbGovBswZ3Am44msxTLaPgR79TBothmcKgNk36MNLexFb7tycq7jV5q1U",
"updated" : 1731411814481,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the access token. |
tenantId |
String | The identifier of the tenant the access token belongs to. |
userId |
String | The identifier of the user the access token belongs to. |
name |
String | The name of the access token. |
authorizedIpRanges |
Array | The IP addresses range authorized for the access token. |
tokenValue |
String | The access token value. The actual value is only returned on creation. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve access token
Retrieve an existing access token.
HTTP request
GET /api/accessTokens/act_3mgSVh6bp6Cn5DS856o2H1NZ HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/accessTokens/{accessTokenId}
Parameter | Description |
---|---|
accessTokenId |
The identifier of the access token. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "ZU17nZfYJLxSZF4jMWTvPhkY"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 287
{
"authorizedIpRanges" : [ ],
"created" : 1731411603753,
"id" : "act_3mgSVh6bp6Cn5DS856o2H1NZ",
"name" : "I. M. Boring",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"tokenValue" : "****************",
"updated" : 1731411603753,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the access token. |
tenantId |
String | The identifier of the tenant the access token belongs to. |
userId |
String | The identifier of the user the access token belongs to. |
name |
String | The name of the access token. |
authorizedIpRanges |
Array | The IP addresses range authorized for the access token. |
tokenValue |
String | The access token value. The actual value is only returned on creation. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
AccessTokenNotFound | The specified access token can not be found. |
Update access token
Update an existing access token.
HTTP request
PATCH /api/accessTokens/act_K9PkY2QpzMBGB31PERSnHVXD HTTP/1.1
Authorization: Bearer act_K9PkY2QpzMBGB31PERSnHVXD.3BVcjSR93tP9BX23zpQzdzcZVcgk8qwbAS3jmKMvjYcU5bRtLxZM7Yjg12e2xa55
If-Match: "BuK7tT4EPX6gbdH7GiQWHUqX"
Content-Type: application/json
Content-Length: 90
{
"name" : "Mark Z. Spot",
"authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ]
}
Path parameters:
/api/accessTokens/{accessTokenId}
Parameter | Description |
---|---|
accessTokenId |
The identifier of the access token. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
name |
String | The name of the access token. |
authorizedIpRanges |
Array | The IP addresses range authorized for the access token. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_5DxivyhUNdnVV7skEJynhHqS
ETag: "Ck28tL4TDEA894MvGiVDrQR5"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 318
{
"authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ],
"created" : 1731411806455,
"id" : "act_K9PkY2QpzMBGB31PERSnHVXD",
"name" : "Mark Z. Spot",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"tokenValue" : "****************",
"updated" : 1731411806484,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the access token. |
tenantId |
String | The identifier of the tenant the access token belongs to. |
userId |
String | The identifier of the user the access token belongs to. |
name |
String | The name of the access token. |
authorizedIpRanges |
Array | The IP addresses range authorized for the access token. |
tokenValue |
String | The access token value. The actual value is only returned on creation. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
AccessTokenNotFound | The specified access token can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Delete access token
Delete an existing access token.
HTTP request
DELETE /api/accessTokens/act_7j2aN1G1LHCUL47Ki5EtNcME HTTP/1.1
Authorization: Bearer act_7j2aN1G1LHCUL47Ki5EtNcME.4djqJtMne5xD46sw8zPbjo8eWfR94pEz9NfX79dGYgieqX6fC4MveJLUbukDB4Un
Path parameters:
/api/accessTokens/{accessTokenId}
Parameter | Description |
---|---|
accessTokenId |
The identifier of the access token. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_LVj9aSVE5ae2RAv2RAkmqP75
ETag: "HX4NrgGANRTExbtuSb9bXsUr"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 285
{
"authorizedIpRanges" : [ ],
"created" : 1731411815611,
"id" : "act_7j2aN1G1LHCUL47Ki5EtNcME",
"name" : "Marty Graw",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"tokenValue" : "****************",
"updated" : 1731411815611,
"userId" : "usr_NTjdBkrtttdwvndWLKHEHTcQ"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the access token. |
tenantId |
String | The identifier of the tenant the access token belongs to. |
userId |
String | The identifier of the user the access token belongs to. |
name |
String | The name of the access token. |
authorizedIpRanges |
Array | The IP addresses range authorized for the access token. |
tokenValue |
String | The access token value. The actual value is only returned on creation. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
AccessTokenNotFound | The specified access token can not be found. |
Search access tokens
Search in all the access tokens.
HTTP request
GET /api/accessTokens?text=act_3mgSVh6bp6Cn5DS856o2H1NZ&items.id=act_3mgSVh6bp6Cn5DS856o2H1NZ&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.userId |
The filter value(s) for the userId field. |
items.name |
The filter value(s) for the name field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 387
{
"items" : [ {
"authorizedIpRanges" : [ ],
"created" : 1731411603753,
"id" : "act_3mgSVh6bp6Cn5DS856o2H1NZ",
"name" : "I. M. Boring",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"tokenValue" : "****************",
"updated" : 1731411603753,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the access token. |
items[].tenantId |
String | The identifier of the tenant the access token belongs to. |
items[].userId |
String | The identifier of the user the access token belongs to. |
items[].name |
String | The name of the access token. |
items[].authorizedIpRanges |
Array | The IP addresses range authorized for the access token. |
items[].tokenValue |
String | The access token value. The actual value is only returned on creation. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Bookmarks
Create bookmark
Create a user bookmark.
HTTP request
POST /api/users/usr_4aqKyeFGVZTMqH7FfFdVRD1C/bookmarks HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 162
{
"name" : "Penny Wise",
"searchOperation" : "searchUsers",
"searchQuery" : "text=quinn.mckenzie1510@my-company.com&items.id=usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Path parameters:
/api/users/{userId}/bookmarks
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
name |
String | The name of the bookmark. |
searchOperation |
String | The search operation of the bookmark. |
searchQuery |
String | The search query of the bookmark. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_N8HWfv9qNvnLd77LRBiawfLW
ETag: "GexLtvuDSHYEfad8zRbwicG7"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 355
{
"created" : 1731411982521,
"id" : "bom_5HxyX55rGFFgePrX3oYo22vV",
"name" : "Penny Wise",
"searchOperation" : "searchUsers",
"searchQuery" : "text=quinn.mckenzie1510%40my-company.com&items.id=usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411982521,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the bookmark. |
tenantId |
String | The identifier of the tenant the bookmark belongs to. |
userId |
String | The identifier of the user the bookmark belongs to. |
name |
String | The name of the bookmark. |
searchOperation |
String | The search operation of the bookmark. |
searchQuery |
String | The search query of the bookmark. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve bookmark
Retrieve an existing bookmark.
HTTP request
GET /api/bookmarks/bom_DWzLDoy8g2NMXRcA77UGtDcY HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/bookmarks/{bookmarkId}
Parameter | Description |
---|---|
bookmarkId |
The identifier of the bookmark. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "GR7At7RLSHXWXsfDCyNHYyPz"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 314
{
"created" : 1731411983472,
"id" : "bom_DWzLDoy8g2NMXRcA77UGtDcY",
"name" : "Ann Chovie",
"searchOperation" : "searchUsers",
"searchQuery" : "items.id=usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411983472,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the bookmark. |
tenantId |
String | The identifier of the tenant the bookmark belongs to. |
userId |
String | The identifier of the user the bookmark belongs to. |
name |
String | The name of the bookmark. |
searchOperation |
String | The search operation of the bookmark. |
searchQuery |
String | The search query of the bookmark. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
BookmarkNotFound | The specified bookmark can not be found. |
Delete bookmark
Delete an existing bookmark.
HTTP request
DELETE /api/bookmarks/bom_E5Aaz9dXPk9PjL4X7ENHu7Dx HTTP/1.1
Authorization: Bearer act_JmxRiynqPeSzpSaw82W9Z2iv.NFN8RmGXmT6Zv7xnDAX6Kd1sy7AtyGvDNbz7jE5mfxmgP4RiNZx8TPMNZGKDJuHh
Path parameters:
/api/bookmarks/{bookmarkId}
Parameter | Description |
---|---|
bookmarkId |
The identifier of the bookmark. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_KE4QPPeqtD3hjV9esgvoxZN4
ETag: "CykQkRuztWnWjxEJsifYstnw"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 317
{
"created" : 1731411984677,
"id" : "bom_E5Aaz9dXPk9PjL4X7ENHu7Dx",
"name" : "Al K. Seltzer",
"searchOperation" : "searchUsers",
"searchQuery" : "items.id=usr_K37An6rqPVputc2UDAhfLUwW",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411984677,
"userId" : "usr_K37An6rqPVputc2UDAhfLUwW"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the bookmark. |
tenantId |
String | The identifier of the tenant the bookmark belongs to. |
userId |
String | The identifier of the user the bookmark belongs to. |
name |
String | The name of the bookmark. |
searchOperation |
String | The search operation of the bookmark. |
searchQuery |
String | The search query of the bookmark. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
BookmarkNotFound | The specified bookmark can not be found. |
Search bookmarks
Search in all bookmarks.
HTTP request
GET /api/bookmarks?text=Pepe%20Roni&items.id=bom_DWzLDoy8g2NMXRcA77UGtDcY&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.userId |
The filter value(s) for the userId field. |
items.name |
The filter value(s) for the name field. |
items.searchOperation |
The filter value(s) for the searchOperation field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 413
{
"items" : [ {
"created" : 1731411985842,
"id" : "bom_DWzLDoy8g2NMXRcA77UGtDcY",
"name" : "Pepe Roni",
"searchOperation" : "searchUsers",
"searchQuery" : "items.id=usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411985842,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the bookmark. |
items[].tenantId |
String | The identifier of the tenant the bookmark belongs to. |
items[].userId |
String | The identifier of the user the bookmark belongs to. |
items[].name |
String | The name of the bookmark. |
items[].searchOperation |
String | The search operation of the bookmark. |
items[].searchQuery |
String | The search query of the bookmark. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Consent pages
Create consent page
Create a new consent page.
HTTP request
POST /api/tenants/ten_DyvBSLey9Fnh65AGLLGoDB8D/consentPages HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 946
{
"isDisabled" : false,
"name" : "Argent",
"stepType" : "signature",
"authenticateUser" : true,
"clientId" : "clt01",
"emUrl" : "https://evidence-manager.lex-persona.com/",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"sharedPassphrase" : "Rz5V6SUmGtN6R1TgKU9YEUNR",
"signingMode" : "server",
"verifyEmail" : true,
"verifyPhoneNumber" : true,
"strictCertificateControl" : false,
"isCountryRequired" : true,
"allowOrganization" : true,
"keystoreTypes" : [ "PKCS11", "OS" ],
"logo" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"hideMobileQrCode" : true,
"hideDownloads" : false
}
Path parameters:
/api/tenants/{tenantId}/consentPages
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
isDisabled |
Boolean | Whether or not the consent page is disabled. |
name |
String | The name of the consent page. |
stepType |
String | The type of steps the consent page can be used with, either signature or approval . |
authenticateUser |
Boolean | Whether or not to authenticate the user with the identity provider before accessing the documents. |
clientId |
String optional | The client ID of the consent page. |
emUrl |
String optional | The URL of the Evidence Manager that serves the consent page. |
tsaUrl |
String optional | The RFC 3161 compliant timestamp server to use during signature. |
sharedPassphrase |
String optional | The shared passphrase for this consent page. |
signingMode |
String optional | The signing mode for this consent page. Possible values: server , local . |
verifyEmail |
Boolean optional | Whether or not to verify the user’s email adress using a one-time password before signing. |
verifyPhoneNumber |
Boolean optional | Whether or not to verify the user’s phone number using a one-time password before signing. |
strictCertificateControl |
Boolean optional | Whether or not the certificate used during a local signature should match the user informations. |
isCountryRequired |
Boolean optional | Whether or not the user’s country is required. |
allowOrganization |
Boolean optional | Whether or not signers can sign as a legal representative for an organization. |
keystoreTypes |
Array optional | List of keystore types to be used by Odisia desktop in local signing mode. Possible values: PKCS11 , OS . |
logo |
String optional | The logo image of the portal, as a data URI. |
primaryColor |
String optional | The primary color of the portal. |
secondaryColor |
String optional | The secondary color of the portal. |
hideMobileQrCode |
Boolean optional | Hide Odisia Mobile QR code. |
hideDownloads |
Boolean optional | Hide download buttons. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_Dke7gpPk1DoYNDeiYhfVPT8G
ETag: "HQ8qUQ5tdPASetPaTfc744Jz"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 734
{
"allowOrganization" : true,
"authenticateUser" : true,
"clientId" : "clt01",
"created" : 1731412085155,
"emUrl" : "https://evidence-manager.lex-persona.com/",
"hideDownloads" : false,
"hideMobileQrCode" : true,
"id" : "cop_D2cMyjVGpCKBYxannh4kHjgd",
"isCountryRequired" : true,
"isDisabled" : false,
"logoResourceId" : "res_BjJkSunAnbchb8Cv9MusAxbL",
"name" : "Argent",
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"sharedPassphrase" : "****************",
"signingMode" : "server",
"stepType" : "signature",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"updated" : 1731412085155,
"verifyEmail" : true,
"verifyPhoneNumber" : true
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the consent page. |
tenantId |
String | The identifier of the tenant the consent page belongs to. |
isDisabled |
Boolean | Whether or not the consent page is disabled. |
name |
String | The name of the consent page. |
stepType |
String | The type of steps the consent page can be used with, either signature or approval . |
authenticateUser |
Boolean | Whether or not to authenticate the user with the identity provider before accessing the documents. |
clientId |
String | The client ID of the consent page. |
emUrl |
String | The URL of the Evidence Manager that serves the consent page. |
tsaUrl |
String | The RFC 3161 compliant timestamp server to use during signature. |
sharedPassphrase |
String | The shared passphrase for this consent page. |
signingMode |
String | The signing mode for this consent page. |
verifyEmail |
Boolean | Whether or not to verify the user’s email adress using a one-time password before signing. |
verifyPhoneNumber |
Boolean | Whether or not to verify the user’s phone number using a one-time password before signing. |
strictCertificateControl |
Boolean optional | Whether or not the certificate used during a local signature should match the user informations. |
isCountryRequired |
Boolean | Whether or not the user’s country is required. |
allowOrganization |
Boolean | Whether or not signers can sign as a legal representative for an organization. |
keystoreTypes |
String[] optional | List of keystore types to be used by Odisia desktop in local signing mode. |
logoResourceId |
String optional | The identifier of the logo image resource. |
primaryColor |
String | The primary color of the portal. |
secondaryColor |
String | The secondary color of the portal. |
hideMobileQrCode |
Boolean | Hide Odisia Mobile QR code. |
hideDownloads |
Boolean | Hide download buttons. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidHexColor | The provided color is not in hexadecimal format. |
400 |
InvalidImageFormat | The image format is not supported. |
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve consent page
Retrieve an existing consent page.
HTTP request
GET /api/consentPages/cop_F19TQuinRPc6hpnYKRfH69qC HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/consentPages/{consentPageId}
Parameter | Description |
---|---|
consentPageId |
The identifier of the consent page. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "3R2HQ98qFb9BygzFpP9wftew"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 738
{
"allowOrganization" : true,
"authenticateUser" : false,
"clientId" : "clt01",
"created" : 1731411599385,
"emUrl" : "https://evidence-manager.lex-persona.com/",
"hideDownloads" : false,
"hideMobileQrCode" : true,
"id" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"isCountryRequired" : false,
"isDisabled" : false,
"logoResourceId" : "res_Zg5SQS37z9szjz5MSSRVV55E",
"name" : "Marron",
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"sharedPassphrase" : "****************",
"signingMode" : "server",
"stepType" : "signature",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"updated" : 1731411599385,
"verifyEmail" : false,
"verifyPhoneNumber" : false
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the consent page. |
tenantId |
String | The identifier of the tenant the consent page belongs to. |
isDisabled |
Boolean | Whether or not the consent page is disabled. |
name |
String | The name of the consent page. |
stepType |
String | The type of steps the consent page can be used with, either signature or approval . |
authenticateUser |
Boolean | Whether or not to authenticate the user with the identity provider before accessing the documents. |
clientId |
String | The client ID of the consent page. |
emUrl |
String | The URL of the Evidence Manager that serves the consent page. |
tsaUrl |
String | The RFC 3161 compliant timestamp server to use during signature. |
sharedPassphrase |
String | The shared passphrase for this consent page. |
signingMode |
String | The signing mode for this consent page. |
verifyEmail |
Boolean | Whether or not to verify the user’s email adress using a one-time password before signing. |
verifyPhoneNumber |
Boolean | Whether or not to verify the user’s phone number using a one-time password before signing. |
strictCertificateControl |
Boolean optional | Whether or not the certificate used during a local signature should match the user informations. |
isCountryRequired |
Boolean | Whether or not the user’s country is required. |
allowOrganization |
Boolean | Whether or not signers can sign as a legal representative for an organization. |
keystoreTypes |
String[] optional | List of keystore types to be used by Odisia desktop in local signing mode. |
logoResourceId |
String optional | The identifier of the logo image resource. |
primaryColor |
String | The primary color of the portal. |
secondaryColor |
String | The secondary color of the portal. |
hideMobileQrCode |
Boolean | Hide Odisia Mobile QR code. |
hideDownloads |
Boolean | Hide download buttons. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
ConsentPageNotFound | The specified consent page can not be found. |
Update consent page
Update an existing consent page.
HTTP request
PATCH /api/consentPages/cop_JHn9cLir7jBCdZWpYDJHNz78 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "FUU9ZvMcGyNrcEz6emSxpDQG"
Content-Type: application/json
Content-Length: 918
{
"isDisabled" : false,
"name" : "Prune",
"authenticateUser" : true,
"clientId" : "clt01",
"emUrl" : "https://evidence-manager.lex-persona.com/",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"sharedPassphrase" : "E4EEtdeXnrtoPRntT3ZyyWj1",
"signingMode" : "server",
"verifyEmail" : true,
"verifyPhoneNumber" : true,
"strictCertificateControl" : false,
"isCountryRequired" : true,
"allowOrganization" : true,
"keystoreTypes" : [ "PKCS11", "OS" ],
"logo" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"hideMobileQrCode" : false,
"hideDownloads" : false
}
Path parameters:
/api/consentPages/{consentPageId}
Parameter | Description |
---|---|
consentPageId |
The identifier of the consent page. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
isDisabled |
Boolean optional | Whether or not the consent page is disabled. |
name |
String optional | The name of the consent page. |
authenticateUser |
Boolean optional | Whether or not to authenticate the user with the identity provider before accessing the documents. |
clientId |
String optional | The client ID of the consent page. |
emUrl |
String optional | The URL of the Evidence Manager that serves the consent page. |
tsaUrl |
String optional | The RFC 3161 compliant timestamp server to use during signature. |
sharedPassphrase |
String optional | The shared passphrase for this consent page. |
signingMode |
String optional | The signing mode for this consent page. Possible values: server , local . |
verifyEmail |
Boolean optional | Whether or not to verify the user’s email adress using a one-time password before signing. |
verifyPhoneNumber |
Boolean optional | Whether or not to verify the user’s phone number using a one-time password before signing. |
strictCertificateControl |
Boolean optional | Whether or not the certificate used during a local signature should match the user informations. |
isCountryRequired |
Boolean optional | Whether or not the user’s country is required. |
allowOrganization |
Boolean optional | Whether or not signers can sign as a legal representative for an organization. |
keystoreTypes |
Array optional | List of keystore types to be used by Odisia desktop in local signing mode. Possible values: PKCS11 , OS . |
logo |
String optional | The logo image of the portal, as a data URI. |
primaryColor |
String optional | The primary color of the portal. |
secondaryColor |
String optional | The secondary color of the portal. |
hideMobileQrCode |
Boolean optional | Hide Odisia Mobile QR code. |
hideDownloads |
Boolean optional | Hide download buttons. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_4aCyPH44StY5AtUdBFQ1AujA
ETag: "GduV3nG9bAM25YqZprcNm8oT"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 781
{
"allowOrganization" : true,
"authenticateUser" : true,
"clientId" : "clt01",
"created" : 1731412091586,
"emUrl" : "https://evidence-manager.lex-persona.com/",
"hideDownloads" : false,
"hideMobileQrCode" : false,
"id" : "cop_JHn9cLir7jBCdZWpYDJHNz78",
"isCountryRequired" : true,
"isDisabled" : false,
"jobOperation" : "purgeConsentPageResource",
"logoResourceId" : "res_Fy8jkxnNf5z1dxNdQkokhjFg",
"name" : "Prune",
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"sharedPassphrase" : "****************",
"signingMode" : "server",
"stepType" : "signature",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"updated" : 1731412091660,
"verifyEmail" : true,
"verifyPhoneNumber" : true
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the consent page. |
tenantId |
String | The identifier of the tenant the consent page belongs to. |
isDisabled |
Boolean | Whether or not the consent page is disabled. |
name |
String | The name of the consent page. |
stepType |
String | The type of steps the consent page can be used with, either signature or approval . |
authenticateUser |
Boolean | Whether or not to authenticate the user with the identity provider before accessing the documents. |
clientId |
String | The client ID of the consent page. |
emUrl |
String | The URL of the Evidence Manager that serves the consent page. |
tsaUrl |
String | The RFC 3161 compliant timestamp server to use during signature. |
sharedPassphrase |
String | The shared passphrase for this consent page. |
signingMode |
String | The signing mode for this consent page. |
verifyEmail |
Boolean | Whether or not to verify the user’s email adress using a one-time password before signing. |
verifyPhoneNumber |
Boolean | Whether or not to verify the user’s phone number using a one-time password before signing. |
strictCertificateControl |
Boolean optional | Whether or not the certificate used during a local signature should match the user informations. |
isCountryRequired |
Boolean | Whether or not the user’s country is required. |
allowOrganization |
Boolean | Whether or not signers can sign as a legal representative for an organization. |
keystoreTypes |
String[] optional | List of keystore types to be used by Odisia desktop in local signing mode. |
logoResourceId |
String optional | The identifier of the logo image resource. |
primaryColor |
String | The primary color of the portal. |
secondaryColor |
String | The secondary color of the portal. |
hideMobileQrCode |
Boolean | Hide Odisia Mobile QR code. |
hideDownloads |
Boolean | Hide download buttons. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidHexColor | The provided color is not in hexadecimal format. |
400 |
InvalidImageFormat | The image format is not supported. |
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
ConsentPageNotFound | The specified consent page can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Search consent pages
Search in all consent pages.
HTTP request
GET /api/consentPages?text=Marron&items.id=cop_F19TQuinRPc6hpnYKRfH69qC&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.isDefault |
The filter value(s) for the isDefault field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.name |
The filter value(s) for the name field. |
items.stepType |
The filter value(s) for the stepType field. |
items.clientId |
The filter value(s) for the clientId field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 866
{
"items" : [ {
"allowOrganization" : true,
"authenticateUser" : false,
"clientId" : "clt01",
"created" : 1731411599385,
"emUrl" : "https://evidence-manager.lex-persona.com/",
"hideDownloads" : false,
"hideMobileQrCode" : true,
"id" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"isCountryRequired" : false,
"isDisabled" : false,
"logoResourceId" : "res_Zg5SQS37z9szjz5MSSRVV55E",
"name" : "Marron",
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"sharedPassphrase" : "****************",
"signingMode" : "server",
"stepType" : "signature",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"updated" : 1731411599385,
"verifyEmail" : false,
"verifyPhoneNumber" : false
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the consent page. |
items[].tenantId |
String | The identifier of the tenant the consent page belongs to. |
items[].isDisabled |
Boolean | Whether or not the consent page is disabled. |
items[].name |
String | The name of the consent page. |
items[].stepType |
String | The type of steps the consent page can be used with, either signature or approval . |
items[].authenticateUser |
Boolean | Whether or not to authenticate the user with the identity provider before accessing the documents. |
items[].clientId |
String | The client ID of the consent page. |
items[].emUrl |
String | The URL of the Evidence Manager that serves the consent page. |
items[].tsaUrl |
String | The RFC 3161 compliant timestamp server to use during signature. |
items[].sharedPassphrase |
String | The shared passphrase for this consent page. |
items[].signingMode |
String | The signing mode for this consent page. |
items[].verifyEmail |
Boolean | Whether or not to verify the user’s email adress using a one-time password before signing. |
items[].verifyPhoneNumber |
Boolean | Whether or not to verify the user’s phone number using a one-time password before signing. |
items[].strictCertificateControl |
Boolean optional | Whether or not the certificate used during a local signature should match the user informations. |
items[].isCountryRequired |
Boolean | Whether or not the user’s country is required. |
items[].allowOrganization |
Boolean | Whether or not signers can sign as a legal representative for an organization. |
items[].keystoreTypes |
String[] optional | List of keystore types to be used by Odisia desktop in local signing mode. |
items[].logoResourceId |
String optional | The identifier of the logo image resource. |
items[].primaryColor |
String | The primary color of the portal. |
items[].secondaryColor |
String | The secondary color of the portal. |
items[].hideMobileQrCode |
Boolean | Hide Odisia Mobile QR code. |
items[].hideDownloads |
Boolean | Hide download buttons. |
items[].jobOperation |
String optional | The job operation currently running. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export consent pages
Export a search in all consent pages.
HTTP request
POST /api/consentPages/exports?text=Marron&items.id=cop_F19TQuinRPc6hpnYKRfH69qC&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 190
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json keystoreTypes}}",
"expired" : 1731498488726
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.isDefault |
The filter value(s) for the isDefault field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.name |
The filter value(s) for the name field. |
items.stepType |
The filter value(s) for the stepType field. |
items.clientId |
The filter value(s) for the clientId field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_BLqqq3iyZeid2BYocAjUouZM
ETag: "A3xTDdRwK4mQc8n2pHQcc6qR"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 588
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731412088728,
"expired" : 1731498488726,
"exportOperation" : "createConsentPageExport",
"id" : "exp_6xaKa6VUVeg1nYsjBjK1N1bt",
"itemTemplate" : "{{id}},{{name}},{{json keystoreTypes}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Marron&items.id=cop_F19TQuinRPc6hpnYKRfH69qC&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731412088728,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Contacts
Create contact
Create a user contact.
HTTP request
POST /api/users/usr_4aqKyeFGVZTMqH7FfFdVRD1C/contacts HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 159
{
"email" : "britney.roob4325@my-company.com",
"phoneNumber" : "+33 6 12 34 56 78",
"firstName" : "Emilie",
"lastName" : "Dupuis",
"country" : "FR"
}
Path parameters:
/api/users/{userId}/contacts
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
email |
String | The email address of the contact. |
phoneNumber |
String optional | The international phone number of the contact. |
firstName |
String | The first name of the contact. |
lastName |
String | The last name of the contact. |
country |
String optional | The country of the contact. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_BcHxizAoM1hyCkqehoQx5g75
ETag: "DQkWszPSnWnYg6d61koU5yyG"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 378
{
"country" : "FR",
"created" : 1731412067744,
"email" : "britney.roob4325@my-company.com",
"firstName" : "Emilie",
"id" : "con_D6idAPRqWtRg89EedDiqS5h4",
"lastName" : "Dupuis",
"name" : "Emilie Dupuis",
"phoneNumber" : "+33 6 12 34 56 78",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412067744,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the contact. |
tenantId |
String | The identifier of the tenant the contact belongs to. |
userId |
String | The identifier of the user the contact belongs to. |
email |
String | The email address of the contact. |
phoneNumber |
String | The international phone number of the contact. |
name |
String | The full name of the contact. |
firstName |
String | The first name of the contact. |
lastName |
String | The last name of the contact. |
country |
String | The country of the contact. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidEmailValue | The email parameter has an incorrect value. |
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve contact
Retrieve an existing contact.
HTTP request
GET /api/contacts/con_DvV9NAsdZJf6a6oRU3iNsVBT HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/contacts/{contactId}
Parameter | Description |
---|---|
contactId |
The identifier of the contact. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "FpcX2Z7c9CWKbDkmAwVrMXMZ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 386
{
"country" : "FR",
"created" : 1731412066922,
"email" : "marshall.hettinger1947@my-company.com",
"firstName" : "Clément",
"id" : "con_DvV9NAsdZJf6a6oRU3iNsVBT",
"lastName" : "Lucas",
"name" : "Clément Lucas",
"phoneNumber" : "+33 6 12 34 56 78",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412066922,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the contact. |
tenantId |
String | The identifier of the tenant the contact belongs to. |
userId |
String | The identifier of the user the contact belongs to. |
email |
String | The email address of the contact. |
phoneNumber |
String | The international phone number of the contact. |
name |
String | The full name of the contact. |
firstName |
String | The first name of the contact. |
lastName |
String | The last name of the contact. |
country |
String | The country of the contact. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
ContactNotFound | The specified contact can not be found. |
Update contact
Update an existing contact.
HTTP request
PATCH /api/contacts/con_7Sb5dP4TaVqbWnhUoBuSzn8K HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "7zKLdBZu3DnLVgH3Hffmr3j3"
Content-Type: application/json
Content-Length: 156
{
"email" : "herb.cronin7769@my-company.com",
"phoneNumber" : "+33 6 12 34 56 78",
"firstName" : "Théo",
"lastName" : "Carre",
"country" : "FR"
}
Path parameters:
/api/contacts/{contactId}
Parameter | Description |
---|---|
contactId |
The identifier of the contact. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
email |
String optional | The email address of the contact. |
phoneNumber |
String optional | The international phone number of the contact. |
firstName |
String optional | The first name of the contact. |
lastName |
String optional | The last name of the contact. |
country |
String optional | The country of the contact. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_DHrooVeYXGJsjYskYCZX7zk6
ETag: "5KT3voHjwCkcUigQbiv4ad7k"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 373
{
"country" : "FR",
"created" : 1731412069000,
"email" : "herb.cronin7769@my-company.com",
"firstName" : "Théo",
"id" : "con_7Sb5dP4TaVqbWnhUoBuSzn8K",
"lastName" : "Carre",
"name" : "Théo Carre",
"phoneNumber" : "+33 6 12 34 56 78",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412069026,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the contact. |
tenantId |
String | The identifier of the tenant the contact belongs to. |
userId |
String | The identifier of the user the contact belongs to. |
email |
String | The email address of the contact. |
phoneNumber |
String | The international phone number of the contact. |
name |
String | The full name of the contact. |
firstName |
String | The first name of the contact. |
lastName |
String | The last name of the contact. |
country |
String | The country of the contact. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidEmailValue | The email parameter has an incorrect value. |
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
ContactNotFound | The specified contact can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Delete contact
Delete an existing contact.
HTTP request
DELETE /api/contacts/con_MoyBZsFXQriP4ykPASCatDWv HTTP/1.1
Authorization: Bearer act_QFyWYJ6RY3Efph19R3hZo6Am.2TRXkGvadwesajEuiS8VmvWXbkt2YqWSghtTXhBpq8eQmakVcxhk2rcQaQnRAmSG
Path parameters:
/api/contacts/{contactId}
Parameter | Description |
---|---|
contactId |
The identifier of the contact. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_Kwb4USCgENYEEzE7ZQQYDQbW
ETag: "4qSbgGGn3sHyv5Vc1X7myLYF"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 378
{
"country" : "FR",
"created" : 1731412076219,
"email" : "theodore.walsh7150@my-company.com",
"firstName" : "Hugo",
"id" : "con_MoyBZsFXQriP4ykPASCatDWv",
"lastName" : "Olivier",
"name" : "Hugo Olivier",
"phoneNumber" : "+33 6 12 34 56 78",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412076219,
"userId" : "usr_LGc63t68mtgE5N3nhaXkYGEY"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the contact. |
tenantId |
String | The identifier of the tenant the contact belongs to. |
userId |
String | The identifier of the user the contact belongs to. |
email |
String | The email address of the contact. |
phoneNumber |
String | The international phone number of the contact. |
name |
String | The full name of the contact. |
firstName |
String | The first name of the contact. |
lastName |
String | The last name of the contact. |
country |
String | The country of the contact. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
ContactNotFound | The specified contact can not be found. |
Search contacts
Search in all contacts.
HTTP request
GET /api/contacts?text=jamar.glover6586%40my-company.com&items.id=con_LCTcYuyN48UfXLKUFcLDfjDY&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.userId |
The filter value(s) for the userId field. |
items.name |
The filter value(s) for the name field. |
items.email |
The filter value(s) for the email field. |
items.phoneNumber |
The filter value(s) for the phoneNumber field. |
items.firstName |
The filter value(s) for the firstName field. |
items.lastName |
The filter value(s) for the lastName field. |
items.country |
The filter value(s) for the country field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 488
{
"items" : [ {
"country" : "FR",
"created" : 1731412077255,
"email" : "jamar.glover6586@my-company.com",
"firstName" : "Valentin",
"id" : "con_LCTcYuyN48UfXLKUFcLDfjDY",
"lastName" : "Benoit",
"name" : "Valentin Benoit",
"phoneNumber" : "+33 6 12 34 56 78",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412077255,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the contact. |
items[].tenantId |
String | The identifier of the tenant the contact belongs to. |
items[].userId |
String | The identifier of the user the contact belongs to. |
items[].email |
String | The email address of the contact. |
items[].phoneNumber |
String | The international phone number of the contact. |
items[].name |
String | The full name of the contact. |
items[].firstName |
String | The first name of the contact. |
items[].lastName |
String | The last name of the contact. |
items[].country |
String | The country of the contact. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export contacts
Export a search in all contacts.
HTTP request
POST /api/contacts/exports?text=Cl%C3%A9ment%20Lucas&items.id=con_DvV9NAsdZJf6a6oRU3iNsVBT&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 167
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}}",
"expired" : 1731498479142
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.userId |
The filter value(s) for the userId field. |
items.name |
The filter value(s) for the name field. |
items.email |
The filter value(s) for the email field. |
items.phoneNumber |
The filter value(s) for the phoneNumber field. |
items.firstName |
The filter value(s) for the firstName field. |
items.lastName |
The filter value(s) for the lastName field. |
items.country |
The filter value(s) for the country field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_4ZsDPksrN6sR6WyATdxLtJDt
ETag: "9caFmF1J9iVH3iPdW4SRh4X1"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 573
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731412079144,
"expired" : 1731498479142,
"exportOperation" : "createContactExport",
"id" : "exp_3E75TFFw4emPEf4NE8zsLrgj",
"itemTemplate" : "{{id}},{{name}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Cl%C3%A9ment+Lucas&items.id=con_DvV9NAsdZJf6a6oRU3iNsVBT&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731412079144,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Exports
Retrieve export
Retrieve an existing export.
HTTP request
GET /api/exports/exp_KN9V5aQrvYYo1XdGWUbFJeNi HTTP/1.1
Path parameters:
/api/exports/{exportId}
Parameter | Description |
---|---|
exportId |
The identifier of the export. |
HTTP response
HTTP/1.1 200 OK
ETag: "6nDDd8Fb4L1ejAczK74BJVoP"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 521
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731412046750,
"expired" : 1731498446748,
"exportOperation" : "createUserExport",
"id" : "exp_KN9V5aQrvYYo1XdGWUbFJeNi",
"itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
"jobOperation" : "exportEntities",
"searchQuery" : "",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731412046750,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
404 |
ExportNotFound | The specified export can not be found. |
Download export
Download the data from an existing export.
HTTP request
GET /api/exports/exp_GFF5Xm9c9EQoaFjfxNtjsY7m/data HTTP/1.1
Path parameters:
/api/exports/{exportId}/data
Parameter | Description |
---|---|
exportId |
The identifier of the export. |
HTTP response
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Disposition: attachment; filename="exp_GFF5Xm9c9EQoaFjfxNtjsY7m.csv"
Cache-Control: max-age=31536000
Content-Length: 34540
usr_4aqKyeFGVZTMqH7FfFdVRD1C,Rogelio Breitenberg,"[{""organizationId"":""org_AAC9Z4vf3wuM3NivNpVqGhhe"",""title"":""International Markets Administrateur""}]"
usr_Jq2VrU3hmXeFoWqsPmFu8J9B,Rene Hackett,[]
usr_DzsufdeKvYU3imxQV1332vCi,Erasmo Stiedemann,[]
usr_37vdYcV18Ssgg3FhwzUQhPDb,Cory Ebert,[]
usr_K84jRThXhLPXj7i7v9S3CyVD,Morris Paucek,[]
usr_Jcia2fS2JTA2z4JUgdBaikJK,Holly Barrows,[]
usr_GPeJ59N4NYUd1GCcMfeugjCt,Bobbie McCullough,[]
usr_86kadH3yQ6PvgwW4qh8CSFqL,Leda Goyette,[]
usr_5qDYQLX3eyBi1tisKsg11LET,Lindsay Prohaska,[]
usr_BKmPgNvinX7v84NgMPpLUow7,Timothy Collier,[]
usr_BYFJzFZGJpAae7bSknJ4fqCZ,Rodney Marquardt,[]
usr_M3nG3GXbFYFZWKUBtYJG2oHS,Quinton Williamson,[]
usr_CcoiRKgMGNUaT1axAEggkHRB,Telma Dietrich,[]
usr_GF94gKBUggwTHToD8fJcVQXu,Julio Koelpin,[]
usr_25sb3vmefx1R7kswhNetX94Q,Hyacinth Mitchell,[]
usr_BJxQJKQgFV23HN7tGovdvTm3,Don McGlynn,[]
usr_DTYXsCT99V2psaXqkfYUF8HE,Ethan Homenick,[]
usr_Ek6Z9S3RpmCadhQo7VMFT5g3,Brianne Jacobs,[]
usr_M4xoxqhsy4Nx6Fezn9i2KT6V,Ying Gorczany,[]
usr_EbwddvJEjVadp9ryUcqYWpBD,Celia Kertzmann,[]
usr_HVopD74Lb3wMDtN6C7NmuPH9,Sunny Wyman,[]
usr_EBctmEy5iWWwfWgjqtgPXHH2,Thi Smitham,[]
usr_PUSnFcBSJZxvTAxcqRDZKraj,Shirely Wilderman,[]
usr_2JpgRcBtuAuPHN9eZ1P88DDd,Ignacio Trantow,[]
usr_2ypXpPu7gQu5cGPARbqWrrwq,Mariano Adams,[]
usr_A5Yn6ABdGX2bCdzJGnEyUoDs,Frankie Kertzmann,[]
usr_LsJYXp4Nxf7tXHaQvUejgBme,Kyle Keeling,[]
usr_JM1pgjn5Q15hmBw3qVuSnxxQ,Celinda Brekke,[]
usr_4bipEYpNZC2c8SNDDgjwJRq5,Jonas Schmitt,[]
usr_EYLH6yRKRmN347qCvbMFpksf,Pat Hayes,[]
usr_BDPkfcg79humxAG5HUw8v5K7,Ulrike Rohan,[]
usr_FQomoaCxcG48dmUREKdR3Afb,Dallas Gibson,[]
usr_3pkVhfdCdCnTmqDmLf5NfWac,Adalberto Reynolds,[]
usr_9pY4fT73te7hufhy2YnedKYA,Guadalupe Kunze,[]
usr_7eW11btYaWbUHFAK8VMhtVBf,Raymond Hills,[]
usr_5gsiutbD8s815gow7SoPB1cb,Kurt Prohaska,[]
usr_JHk5Gg2ZqPVvXsjYonq71BYp,Alejandra Prosacco,[]
usr_9zrEHUD7YKrvqobRM6QzWGvR,Abe D'Amore,[]
usr_6d6J3EYSSTcqe1gTyfKFDo46,Roy Cole,[]
usr_Dc8QfrVqaErKEsY88KE8FjLS,Sixta Gleason,[]
usr_FhJKXcxzXCGfc9qYwezHaYhr,Dione Toy,[]
usr_12AjHjiLj3kRgQBcDLMS7oEW,Leonida Wehner,[]
usr_MHpP4JVS3bAgNWcqCPB2JPwt,Nida Bosco,[]
usr_H8WJ3Lh7RrRVA3uUhc9ahKXG,Fern Denesik,[]
usr_6z3MUW6DkRTaZAV885vnfCNC,Vonda Braun,[]
usr_4GQTNLDL1WwhdAsk1Eq7vDnB,Johnathon Haley,[]
usr_FAVCaR9oMj5ucErLasDYMWfq,Allegra Gerhold,[]
usr_9AcgRCwGg2K9GqN2bgSow21p,Huey Kautzer,[]
usr_43FQgbJuTgDmkwPwcfAVySP8,Joseph Dickens,[]
usr_6mAotPiwCp1JB64sEuwrqHwJ,Chang Gleason,[]
usr_FnUFcoJy4rqMkWgnWBhk4P42,Kraig Harvey,[]
usr_JiVXnkqhdZke7HF1LYNaq2df,Eddie Pacocha,[]
usr_JZEHXN9mpxhQ2eDX24wip1cJ,Isobel McKenzie,[]
usr_FFb1Bx9PPk8yDkyPnuuLDQSm,Justin Abbott,[]
usr_62e5oLpb8mKfGNuT9bxzJHEE,Georgine Hartmann,[]
usr_9y1KUMZ9ZkfSnbCBVSWJEERo,Cicely Berge,[]
usr_N3vWq89TLJFKgfu1qLpAr7GX,Nelda Schiller,[]
usr_KhWZcs3zeBsq1ZtBrtmGJ7q1,Adolfo Muller,[]
usr_t8RN14HR22MXwT1uvurDszA8,Von Dickinson,[]
usr_LBXjtQygwRnNSB7VaucxnocB,Rex Witting,[]
usr_K37An6rqPVputc2UDAhfLUwW,Karrie Mante,[]
usr_FSMjrsmbvMDNcEDzv4Fv6YDe,Carmine Hand,[]
usr_3EVyWL64GJSJrPcqxrSEyxEk,Cornell Morar,[]
usr_4nHYJbL5CqxC82CXvd7kub4F,Burt Bogisich,[]
usr_3K5F2U6gFzGYZrz9djfstKPH,Magdalen Green,[]
usr_8iyVxdpDsydQkUxCscVzn42n,Erick Hickle,[]
usr_B9R5vaDB9VDeo8Gaknxoa3dr,Aleisha Lowe,[]
usr_HMSH36YkWfWp52Vk8Ympcnvf,Sharen Bosco,[]
usr_72wWHk5EVxJq1mF6uUVTdwnE,Chrissy Powlowski,[]
usr_JrafntzAvRvhEryMXDtXkeer,Stacy Funk,[]
usr_GqSeBnu5DJPk6zvEuRgBnfeT,Bernetta Dietrich,[]
usr_F2fh3Qeyk5gdrFKMK67oohyh,Tory Monahan,[]
usr_LWMNyPNj1fSRcamq7M4D6dtF,Hope Ernser,[]
usr_LKnUNgZGuU82UPRhzfYQqn4R,Lorenzo Jacobi,[]
usr_Bv1MpW2QAtkZKwDsEEcBYUi8,Kristal Cartwright,[]
usr_MXj9GXX4atbyFc9E9omcfS5x,Chung Murazik,[]
usr_NGCACDg2gNSbXPFqDSbeh8xy,Marco Reilly,[]
usr_EymLkBEER4Tqe6a8LgiiyMNQ,Marlin Dach,[]
usr_H16WqjeUYPyt892jLwTL52bj,Tashia Schmidt,[]
usr_BQ9pSvfHtvWkkhCwNysDLiLV,Mari Becker,[]
usr_Lmoqijp3mUdzC9jt9EHDtTGR,Barney Hane,[]
usr_BgcQJJnzTdgQoYgz8mjN3Jvk,Morgan Grant,[]
usr_15ZD1RtczfGEL5RGeKqu81QA,Clarinda Emmerich,[]
usr_JGGDgSx55zWLjCKpUa5idHyZ,Berneice Wisoky,[]
usr_ANW5tyrqzrz5HqebPQqunmam,Hilde Reynolds,[]
usr_D3QAMrdueKhRD6TSudg9keuR,Danyell Huel,[]
usr_LjpDeYMbyCPirSbdEB2MQysU,Issac O'Keefe,[]
usr_9Hbz5g7aEYQPDYF6CtKqE3Bz,Luanna Smitham,[]
usr_4hFTrxyYv3N98PzbbdtuyPRY,Vicki Schoen,[]
usr_BubpT95i6pQvXCXHDyf5U73L,Thad Dibbert,[]
usr_6ghRrXv8fe3ERvUg6m6vRco3,Francene Ankunding,[]
usr_6gPB7QMZZ4MQQjSjQjYL51LC,Morris Greenfelder,[]
usr_3RbHYNEyZanpXSgEVa26EY9F,Marilee Bayer,[]
usr_3s1vcJ2zkyVthwwtbZMajLXF,Barrie Hyatt,[]
usr_JRnCj2fcRPTbDrJde8Dm4nh3,Alva Dicki,[]
usr_Bsoks3uowVzaoQkp6k9nG7Dw,Treva Williamson,[]
usr_EBZVZGMw2Aj62VxUtNYN6qse,Edwardo Predovic,[]
usr_5iotffiwJY8f4P856DPCfh4Y,Mabel Reichel,[]
usr_HrYrRCBQseQuUCEqhVsB6Tfq,Karyl Bahringer,[]
usr_6L4dqvRDzs6c4bPmJvtkatpX,Santo Kerluke,[]
usr_NYouRwcTbuEttjZHUghP95xt,Ursula Casper,[]
usr_FrecbvZFPAC3xDJBvjMRzNzM,Sebastian Hermiston,[]
usr_PfTddnrwUMWTMjeHF8jPg4YX,Tamera Dickens,[]
usr_EzPgTvcFwfJGvhrvXK3cBebC,Ling Aufderhar,[]
usr_Cuct5sJFFqXCSRuds7B7Fimh,Nisha Waelchi,[]
usr_99vE4cBo4vKyZxmCovwHhPQZ,Drew Sauer,[]
usr_H1doSrMhDZRByvYGmH1HaLta,Neely Ruecker,[]
usr_jWygQV6xbHy2FPa2S5YwCHaV,Scarlett Renner,[]
usr_DzRozisp31X3iN8VLXXjt7eQ,Glenn Gerhold,[]
usr_MxMCSDMXAaANNgcJBfnCAjfu,Romeo Botsford,[]
usr_iLQZnaTXp27zcsbQkZa75qGE,Margene Thiel,[]
usr_KKeWqby6CHpSsMri1tEwZsCM,Gaylene Kovacek,[]
usr_MEaqGbzemfGt3jRhd5goxCFi,Jonell Koch,[]
usr_8cGBJyFiKqpC4HHhMSUKnTMT,Hedwig Bogan,[]
usr_HreQZucDKDR9QH9ahhJspz31,Robbin Powlowski,[]
usr_2fkHYyshraz8Xa7PBbvW4WHP,Penelope Gulgowski,[]
usr_MDmBfrPJB5o8ePV4sitdZRUw,Evangeline Koss,[]
usr_9uSPxW3akn1pgKkg8qN2oP8C,Lacy McLaughlin,[]
usr_P2Uwymp4DJ1gKs6nEbPLt2Qy,Shawana Von,[]
usr_G2YctwYd1nkR48MhhUDF8uBY,Morgan Schroeder,[]
usr_BTKNVfp4D1imA25w3kpYBzyk,Johnathan Deckow,[]
usr_4cXA7egKmG8NsDg13AaQjxV7,Adan Kautzer,[]
usr_FTsgpqqMoQrBtPSKvDczNuQP,Vergie Block,[]
usr_AANEvSqKeKvp2iXuBynak1PD,Tambra Rolfson,[]
usr_QTS4wrXcyYchDLXF2inRWV8F,Bo Kautzer,[]
usr_5EaJWHfBWJkEg3GzSjRxy8S7,Bulah Zulauf,[]
usr_2zoyB4YJAPKrxihzPRDDaE2P,Jed Morar,[]
usr_L44Nx6p14yNtqoohMEA9iqNm,Althea Oberbrunner,[]
usr_Ao6A5MRREimwEcvcUWmDQyT5,Logan Willms,[]
usr_PDJAsXmqTV3rT1A9PZDitWDp,Keisha Gutkowski,[]
usr_5cnadpucMvTa7DsinCnFrRQB,Grisel Leuschke,[]
usr_3en6rmQuwFkP54pWD2mDVbpr,Melani Gerlach,[]
usr_MbH2ENSNCoBerh2yEW7q1NWx,Oscar Ritchie,[]
usr_CV4UcxD3fJX58TLKEg1Wtg8x,Hershel Kunde,[]
usr_ABi5yFvkVUzPKHu4MsixaRoj,Brittani Kihn,[]
usr_MmwJHDip64n7VmDnLxgNvwBS,Rodger Dickens,[]
usr_DfHBx4DZtY19WbHssU3mRZFP,Jade Haag,[]
usr_FToCEWzM4wzahsuKPtGoG9hr,Lakenya Smitham,[]
usr_BUdQiLNVSwu5wkBWaeZzssNy,Michael Mueller,[]
usr_49HWH95NghwVkq3zcdQZ2DK9,Darleen Willms,[]
usr_JoSWeFuZxod1CxJ3hjNgmwYB,Branden Waelchi,[]
usr_DdzXGfyp9qD8kQQrfqf7Tmh2,Lionel Harris,[]
usr_N3br9N5QHsQ9TbHaTcKPWF6j,Wilfred Tremblay,[]
usr_K3fWtqQGqiJDCCzg8d5fN9SA,Kim Ernser,[]
usr_C8qG9ixmrXxpLFgMsN7vFbAE,Simonne Reilly,[]
usr_LBjtcRL2cKjAseBdzoJoxvNN,Sammie Yost,[]
usr_DRUieBhekaAcFecftRcnKuM9,Ada Heathcote,[]
usr_9iowGHipL2nsaW4AHrLToHt1,Emery Abbott,[]
usr_Gh4ECGU8cAdwLCHWzijcXej3,Abram Beahan,[]
usr_PSMr7sgUB65tMhzyaKyPoT5M,Frederic Walter,[]
usr_GFhsPwueoay9os3oDPcVz7hN,King Satterfield,[]
usr_9h6g7kjT8xHPUnizoupHv2XK,Georgiann Macejkovic,[]
usr_AcHEhreqZA491egVqBP7BrkK,Audie Labadie,[]
usr_2YnfQvdRFKFjDxhXkNgLHySj,Aline Zulauf,[]
usr_7vMzfZ7NeXjmSxKku91qavvP,Melany Stiedemann,[]
usr_6i3dmAeJnFsZyDMhjQXJ8PRm,Shantell Becker,[]
usr_Hw3KgtY9A278vRQDoGTqWFX1,Van Collier,[]
usr_GrZhbAewJSYVsT6pehKKRbqR,Cherish Bashirian,[]
usr_CAt9riCNX9RcppChcvFsEJNv,Vincenza Koepp,[]
usr_ASkp3a23GBUEHccMQsGLYsQr,Lisa Nader,[]
usr_3yyoxzRiP1RTJ5g1N3dvoU22,Hassan Veum,[]
usr_KxsUcrdKWGdCGaCVynWNMKv9,Jacki Hahn,[]
usr_NBRm3LEojh3AnpugRjxVqujp,Faye Yundt,[]
usr_PsyfrSHMTwiVHQnsYbBxygZW,Rowena Kuhn,[]
usr_GiZqcYnZpzMV2XGtvE8yMkFr,Timothy Kling,[]
usr_CoAMPV7SCatTt9JKTSm54TF1,Doloris Crona,[]
usr_8MjZbj5JCww6tp9p6CbxiMWL,Duane Mohr,[]
usr_CncxoKdEksgwdWKxdMAomDeN,Myron Kutch,[]
usr_7MYz3UrRLpowjVm5LYAhnDa6,Renato Bahringer,[]
usr_KaXCHzdirDswXDteekAiziN9,Scotty Rau,[]
usr_NBxaQ8Tdc98JpH9uWQ1iRUs7,Benny Batz,[]
usr_G2t4TvnKWEYSiwo6FAX8zap5,Galen Waelchi,[]
usr_HkaJtB4QnVtaCxBQVRb1H8LV,Celena O'Hara,[]
usr_MJN7sdz6GFWHG3dce3uvgYLp,Freeman Mohr,[]
usr_9C8saHY2X6f6xDLt89HWqiok,Elyse Roberts,[]
usr_AfW76xyiFFHRZHjh97C9ejNb,Ada Ernser,[]
usr_LW8SyTs5mBYXrGzSMEnFVnhk,So Orn,[]
usr_M7FXJZVx3KWY4e5j1uqyQTdQ,Bell Ward,[]
usr_7FPdg4t1pjhz19Jjoe9ekDTL,Karma Crona,[]
usr_5AvPQK63UcJw2NYHu6sUC5c2,Xenia Jacobi,[]
usr_AFom3NAPnf1b9Xw1S7oWHEJ6,Jeromy Crona,[]
usr_BQP257ASrxzJ5Y2BVW3QUmxY,Cordell Nienow,[]
usr_6mbPgmr9jHx5oudg84N5z1jj,Brian Nader,[]
usr_BgcPGZvMbAQLS86HKAYZAqHx,Kathleen Heller,[]
usr_JhJ5DUWBR82PHMv7DZUZqkra,Malcom Hegmann,[]
usr_2wwCP8oDJuFa183Uy3dekcJH,Annabell Lakin,[]
usr_5L7ZAepV2sZSLi4quAWYN58T,Silas Keebler,[]
usr_GJSP2GbFP9T3QH34RY1X1gFA,Juliette Mayer,[]
usr_3qq7GdCe96TBMb7Ys7TdEJdU,Cruz Herzog,[]
usr_JvX2Azoy6FMYB1XX5Qj1DJ8T,Enrique White,[]
usr_FJVwZ8Pa4dYvd82Pt4gME3a7,Philip West,[]
usr_KMqQaSZ1vXnGdWY2nqfEk4uR,Napoleon Abernathy,[]
usr_BqqFU19CzvpWqZMMNMaJCy9T,Rosalie Predovic,[]
usr_9hcmrdmBoYQewvAn7mxTWPFV,Agustin Gaylord,[]
usr_G5PW3hTLMUwoqE8h9vqPmRcS,Tomasa Russel,[]
usr_KepBkfy4ioTtJgHUAR1FCCSF,Ignacio Bernhard,[]
usr_2NvaYnbPn3WmADPh9qd6MLKi,Leann Gaylord,[]
usr_2ttpRN4VweQmJzCCUZmKH9D6,Meredith Bode,[]
usr_LU6NkaEU1qaCgn4Se7ezMGr9,Bennett Kohler,[]
usr_3J6B4DN3o7jjyWQWNqmrS97A,Lester Nolan,[]
usr_MYiYjFNFgdavQbUFAhLmkAxn,Marquis Howe,[]
usr_6F9TUoxZrC67qjauyH7yTFmX,Keira Botsford,[]
usr_JU4SodxnkxUwqPXAin3kqf6P,Remedios Hagenes,[]
usr_Gnj1CPXFuvFPRLPhbwJ2b3Yw,Laronda Bahringer,[]
usr_4gh4ARYYdix58RNyMs24mFCX,Sharen Connelly,[]
usr_Nghk2918kZu8PwfwcCrSvzwU,Leslie Anderson,[]
usr_9qRR2oo53Ee8HAhBJzxMKoZ8,Scott Heller,[]
usr_E1NKeDNBAj6D3sNRTkw88iQt,Donnie Mann,[]
usr_8zTnvsEKkwWwtWvzqLFtgofM,Kai Herman,[]
usr_E4qiyLwVCziwaFC3kJHQXae1,Wayne Bernhard,[]
usr_B1x6jxcmxiiNMCvDNemCCqEQ,Leonard Heller,[]
usr_ESbgLb6K2PPHwiK8UWnR1TjL,Woodrow Grant,[]
usr_2RTxp6q9GDkHJ4xsha7HwNyF,Jamel Wisozk,[]
usr_P2iJRgHATjXBduL4xN24E2eE,Monroe McGlynn,[]
usr_F7g7k6iAdnrq8D1U61QGXDtQ,German Bruen,[]
usr_FiMsHyZLgpPHhMjxaHu9y2YM,Blanca Upton,[]
usr_HQkceBf8r7StJUFdpE4P1tuq,Shandi Hills,[]
usr_EGQd8egfJEsF6vSoEEyipPUR,Korey Funk,[]
usr_EgVmrR6i243BwxPwy8LkEkuV,Isreal Feeney,[]
usr_9T3XokF6eq3MpEgcMJMPjc9t,Theodora Stiedemann,[]
usr_KRbGEkM7y1ehiBaNjcFvfw6X,Darryl Hilpert,[]
usr_F2a4bxXn3Paux6KcWsoLMKXZ,Yong Cassin,[]
usr_KzwXYqYQ11fCZ692kLDefyE4,Talisha Goodwin,[]
usr_EB5j8tu5ELMg2hB1sYCxtwjJ,Angelina Beahan,[]
usr_DN5A7aFFZJUhLRUtt9JF7aSW,Antony Hartmann,[]
usr_2AuVid7wXzfPowukNy194Ngg,Sheena Medhurst,[]
usr_GBtGCRpsJFDnwAa3MpwPFqQq,Rueben Powlowski,[]
usr_EMtPZXq8kdpbFRcrEbe2fKkR,Grant Nienow,[]
usr_BAspWGfy2dLb7yURcLtbWeQQ,Hildegard McDermott,[]
usr_29KbSJWeAD2LVMzqcawfdkAz,Michael Corkery,[]
usr_GTupTxJ9gMG7q7jmivUjCy3k,Fletcher Reichel,[]
usr_9CGZWUDjPrWpd8pxzEgbXYwr,Jaimee Padberg,[]
usr_8GFnYjrF85FcWutKQ2729mts,Vincenzo DuBuque,[]
usr_GmJMWXyTczD3uqa3rnYoAGAL,Wen Lindgren,[]
usr_LuzpD2WsXk2TaHE2sPb9oyT3,Kelvin Graham,[]
usr_PP5fsQN5RZdyryeCfbL2mzTP,Cheree VonRueden,[]
usr_EUrxoTZkHLcYZYxrMsKsqQ5X,Damian Smith,[]
usr_B9hsYGvjE9AE8Q2wZP32tdxs,Reuben Weimann,[]
usr_5b78fWYCQ1fhSMALmuZTkwQ6,Soledad Watsica,[]
usr_BC75WkiF8RBQLaxEJDyqF7Tf,Deana Lebsack,[]
usr_P9DGscHw6VUq7b1q63Z5EpiD,Kanisha Christiansen,[]
usr_HcdWU18aT5ApYQ1mTDh9yvUv,Magdalen Boyle,[]
usr_6BdgzBsgepFBLFkVzrz3h9wj,Millie Mills,[]
usr_55vpyftK5ERFk1FxWQg9ifwV,Burt Lakin,[]
usr_Khb8z2jua1QbCkAg4vd1Snfv,Teisha Deckow,[]
usr_88R7WjTBoyGJ6mWRFtdWEhFV,Shawana Ward,[]
usr_Md23NfpQaktLfYipEL3pSHKe,Ed Dach,[]
usr_E55dpafPk8GFEssWfG4fBNBs,Raymon Nienow,[]
usr_8TR6Aw7vmk9UiECkTK81oRYi,Britta Altenwerth,[]
usr_5TKjm9qdnUWePPbzheFyY8QU,Shayla Walsh,[]
usr_Bdvo8esLxHTb7YqMCHBjMMZN,Margot Bauch,[]
usr_BNmFy8EFs2vT2g4nd6RnAvRt,Larry Schinner,[]
usr_6kyLyxPZ4oaHAt9QtdLgr4yo,Lynetta Considine,[]
usr_KZukSpEiutJc9DCZcp35qFZu,Bobette Koelpin,[]
usr_3aucUaEzvtVbEo4cvLGudnEa,Jeromy Treutel,[]
usr_GbnVnvBeNFN9ef3K3abWf1xb,Miss Smitham,[]
usr_4miGdp4Z1mCa5AsiZtWX1cSV,Bell Keebler,[]
usr_2YobrsRYG6cRXpqgtgdVnojj,Mira Kozey,[]
usr_GmcbsnRjQNxfch4gKQFs2AsU,Porfirio Kuphal,[]
usr_13iYWt3NiJQ9cRsvp3K8F1RX,Hermine Boyle,[]
usr_456FtXRw62ZsuMx2uYkbymr7,Reid Mann,[]
usr_ERP8Vxju7TtSuvU8aoRbefVs,Hoyt Towne,[]
usr_45RBsitCHf3EQdSA1rk3P79f,Synthia Lehner,[]
usr_PeAp3HEKZMaPtb4kDPxFDKpR,Rosia Runolfsson,[]
usr_FFpJo5tnU4MWgRQAdhioWDwz,Tracey Smith,[]
usr_7bwSUeGx7MCJtsbXpaJCzjPF,Lawrence Feeney,[]
usr_91eKAPpJFWyLwDmc57kRhUcW,Chere Champlin,[]
usr_CT1FLgY5UfKtxzN9NgGCKEue,Linnea Hagenes,[]
usr_JneS6MCyB38hKShP9HLMkxiJ,Harlan Strosin,[]
usr_NQiM5rfDht7tEqLkc8soKriJ,Chris Crona,[]
usr_8rAGaCmvbDopC3Bqe52VgVpQ,Cedrick Wyman,[]
usr_8W3Qa1FTgZyGu1uNi2hwr25u,Frankie Farrell,[]
usr_HYU2d86ZmkBWemteRStnZerE,Man Zieme,[]
usr_7WmYQ5RfzvZcRbiLTEHEQpGp,Travis Lesch,[]
usr_MbTbaUqsxsFU3qgBgf4wGeeR,Raphael McKenzie,[]
usr_JKW7xVUpAMCV8dqGMHF2U4q4,Tyrone Kuvalis,[]
usr_5u12RgBiXDjtZkHTddNv9b3U,Steven Glover,[]
usr_D96drby92UPzCxhkWEJRdKgt,Emerald Lubowitz,[]
usr_LmSmr9VS56FNqt7w1GFMU1V7,Ernie Hills,[]
usr_32Yq5nNmHnvsWyj4FHMrMSVG,Lasonya Greenfelder,[]
usr_FpNJzA3p5QsLaWC2ERddERFY,Deneen Farrell,[]
usr_B5qGMwPkFo8UCnhekfGdYAfk,Paige O'Reilly,[]
usr_8PHov14MMzUvhzBytTEZXPaS,Nickolas Stark,[]
usr_MW9e8kJ6uK747aG9wEhDrSmE,Carlotta Altenwerth,[]
usr_644BLudXjzdUs6vNjwWp5opN,Maybell Kub,[]
usr_9woyWcYUQ3KCsAqxtdKc4GBU,Kami Wehner,[]
usr_LTdLCxGRRYcyGwQ78oJdLMKz,Lanny Fahey,[]
usr_9yKTXcZAs7rbsTg6W3ww2EHX,Cecila Gibson,[]
usr_LBBvM5xYuFtxYMVtUhsXmVPs,Claude Purdy,[]
usr_WFk2Bo4Sj2DZL9R7RnVoE4Qo,Kimiko West,[]
usr_8triVngcVLXvxwrdgMr2Cmoj,Napoleon Wunsch,[]
usr_Q6gY75UdiRQBxjxZWusfYpUD,Tom Blanda,[]
usr_8RWDnRzAiXvEseXQJPQmT1jC,Nerissa Gutkowski,[]
usr_84sS2NUCUNiZLXJGtLGPXhXQ,Brandi Veum,[]
usr_9KrdUpLGPwoeCyCBNxpxatfB,Pearly West,[]
usr_PD8vyJUR69HrHrfyZSeL5mzA,Michel Balistreri,[]
usr_4wJrs4ECta5seehuhhY9uCCe,Orval Bergnaum,[]
usr_EZntXjR1JdLyBFnLjDAyLhFS,Griselda Boehm,[]
usr_3KunttKEeU7nzpgw6wkGpnRy,Aileen Nitzsche,[]
usr_4BAxSzSdtzAyb6EBntHRZgpR,Lawerence Pfeffer,[]
usr_EhdP1xtZF6PGrdrPqRbDxu88,Ruben Rohan,[]
usr_JwWvdyUoyDRJokDmikoxCCLw,Jared O'Connell,[]
usr_Jud3KMw8sfeLznPmHk3Hcjsx,Brooks Terry,[]
usr_F6k14HkLPLTo1Q59TjXr7guL,Lupe Miller,[]
usr_4kCAGbb2SAsoewW8Rdi2oDh4,Miguel Lubowitz,[]
usr_Na1gQXjhWWobYq4JRV3XaGa3,Deloras Pollich,[]
usr_9P87L7rf3JeEXeiXXbDRCmGm,Anibal Dibbert,[]
usr_8hs74sH5krAum8dmmjG2tqH8,Dante Kassulke,[]
usr_FMk9wmSNvia5nfLMuKRkeyo5,Carl Auer,[]
usr_9nhjYrwMogbQs8jQzuZ82moa,Allen Champlin,[]
usr_4vfYCqcq8qChvN47hCUnCh1D,Vena Ryan,[]
usr_HHbf6yWnnZGWEqvZrXVWXW93,Herbert Cummerata,[]
usr_D11cbuvnRDajLdRuRdSkoyds,Diane Quitzon,[]
usr_AytuntTEwmwgEPCSgwPbk1yv,Dorene Anderson,[]
usr_6GMqySrdn7pBi7AT41GJ5tak,Ahmad Hauck,[]
usr_MKgPs9XfpnJFgfi2JxtkKypA,Laurena Roob,[]
usr_K7f5L2FzdY61S2HcuBmknrXo,Carrol Bayer,[]
usr_4HW1Dz7oUapN2X4LVoNGi6MX,Bart Goldner,[]
usr_F9UUvC6xFptCQCEepWwa3J9k,Paris Leuschke,"[{""organizationId"":""org_AAC9Z4vf3wuM3NivNpVqGhhe"",""title"":""Product Accounts Executif""}]"
usr_FPSg2DLdcUZKs5e5UeGAFntB,Dawn Cummerata,[]
usr_ADNANft8wJuFB75rPe7AT98k,Shantelle Huels,[]
usr_CPKeEKCi3KZrZrNB3UypgnCh,Emery Shields,[]
usr_oJ7QALpbmfYvz4u5e6hN9aZN,Stephan Reichel,[]
usr_3Xh4LmqKKcUxkTJAg5NVEmJb,Joseph Thiel,[]
usr_H13gYpr2T5r3Lqj74QJPtJz3,Lino Kulas,[]
usr_9mdYW56kvx63SPcgfnBBHEkv,Lane McKenzie,[]
usr_48LAeKgqmKPgqFpMDgabQZ2f,Lesli Barrows,[]
usr_2P9RxEoUMRHEauDFgsV5zwuc,Geoffrey Bosco,[]
usr_NKcGXXG97LVAjZ7LzaYiabxR,Reinaldo Swaniawski,[]
usr_9Kr3pq5pweYCUE4n7FYRYaxv,Kiesha Schmidt,[]
usr_PEUjjLsYVKZHK7harUQX3DEj,Cruz Stamm,[]
usr_Hmjwcz1Lj1ye4NUnF1isNVmd,Sau Champlin,[]
usr_NL3js6f6hBdabpA5f3MBDv7x,Herminia Smith,[]
usr_5BjajL9HBRwGNiZmkt93G6L8,Tess Dicki,[]
usr_HwBWs3hmawZ3hhDhMFf8DYed,Zita Spinka,[]
usr_Es5e9GjEaPmTs9Qu38823yXd,Chet Hahn,[]
usr_4Vp9u8fA5zH37QdVMBDaxXH9,Eileen O'Connell,[]
usr_JTiFrKbyGsSQKn77URa8mN2i,Roosevelt Bechtelar,[]
usr_83Z5gvYhLQ1mjWnZvA2zUFDq,Sixta Rice,[]
usr_PSgJUJqXQXJXdtmbL2gKhzkX,Fritz White,[]
usr_N8eHbGycBnDZakhF7Laf7Yq6,Kaylee MacGyver,[]
usr_GP9uvNoMrj8QkxpWvvQqkojS,Rueben Mante,[]
usr_4yEHgwEL8GU7jRwCLogK284u,Clyde Brown,[]
usr_P44y1BisqBh6pWio4dL9USKk,Oda Fay,[]
usr_CphxZmwprKoQpTZhiknfoU5K,Cris Ebert,[]
usr_3uzE8tSt6iKCC4GFa3U4bbJz,Renda Bergstrom,[]
usr_HdL32HWRHsJWRcCpgPbAmj5i,Sam Beier,[]
usr_PSoL5i6UaMLYnrYwAymBFU2T,Michel Kshlerin,[]
usr_GKKRgZpsUSDbympMCmDhGCHW,Fe Becker,[]
usr_8c1SVnGKik1L4PzpZdLrxz5Z,Conchita Ziemann,[]
usr_DRSvypZi9zuCJXwpJfqZwNuA,Colleen Hilpert,[]
usr_4QJzfoPAmvoxshxQvUgRebdA,Sarah Hayes,[]
usr_6riWGCALQpxiQo8NEm2tmqcU,Teri Wuckert,[]
usr_JxZuTFbsxzs9nGArSAd9F4xq,Gerard Dach,[]
usr_NzVEFFbjJAAdbJPUJKpQGA75,Kenneth Mosciski,[]
usr_LWCmX664oXcXMydALEngvNF8,Cordelia Hudson,[]
usr_PjrERiQaPadG8bgptBmTZgpf,Deeann Murray,[]
usr_GCEu49pNcngVdR8SfpLdTU1M,Cory Kutch,[]
usr_JeLA3YxkwJv8HmiTc2KTsCiy,Aubrey Metz,[]
usr_LXuZnGsenJXiDgaJPMUteegf,Billy Hackett,[]
usr_2EFTqWcGAtsZq5hoHBgmFyd8,Harmony Kassulke,[]
usr_5uqkCCUurALktwJJbTxwqi7y,Charlsie Hodkiewicz,[]
usr_PLFwaxzfJoy78t4FWMYW41SW,Carrol Treutel,[]
usr_4MTzvauLA1TXXNmPPtKVK5CK,Hank Runte,[]
usr_22M6NoTwhATKApbFPZsCRL7r,Isaias Yundt,[]
usr_4cuXCxP7bdKE7Rq9Ue9211T7,Elton Bernier,[]
usr_PSGn5v3sBaaMVJs2EUMP6kt7,Mason Emmerich,[]
usr_NaGRbznE9XZBPnA1KfS8fwaQ,Jaime Davis,[]
usr_CeuKpZtnXzHYbfvZB7tAkHf6,Carmon Rohan,[]
usr_4YTWELSS7FPE1dhqCXZZE1pU,Alva Cassin,[]
usr_7jLCmdCUXueHntcGjLEskV1N,Anabel Jacobson,[]
usr_HaM6gecsrkQNxEsvKRHYJuw6,Mckenzie Bogisich,[]
usr_GMkawv2TTuHDaWVhXHRAF3Kr,Gearldine McCullough,[]
usr_G9xBP8BZzBjMehaiXvj4KesV,Many Sauer,[]
usr_QBGbbKEc8c4ee99X4ZyxDnsN,Dirk Price,[]
usr_Dti1u8GsD1jyyVBuZ12Nk8Gy,Tanesha Spinka,[]
usr_as9nHhHHBpbQ4BT2yPKn31ja,Jon MacGyver,[]
usr_JS5JePN8xq7EaP8MEmeGZ3jm,Kizzie Conroy,[]
usr_5UeGnMsbcy4Wdp5nEXuHogqw,Theo Emard,[]
usr_DKQci6Ut9SgmkDaYRymXTfNK,Odilia Grimes,[]
usr_6WKMB4jaerqQSnBgNWvUvsP7,Gilberto Graham,[]
usr_B1D6sL4QHbcmN8RDHJhXYtGa,Carmen White,[]
usr_68X4UHPoxSMU7gPv5pg3jmMp,Rachele Maggio,[]
usr_FZEp3on1CK3sz1Txmz1ggF2U,Eliseo Breitenberg,[]
usr_8JUcArcwyjotcekFdaJN3Uow,Johnie Walter,[]
usr_G4WEPBg9XkuSLiWXtbkzkDGJ,Deloris Robel,[]
usr_7jHK7E8jTLo9FsJNVjV33QB9,Zachery Leffler,[]
usr_G45bio455CXStmQgmTAh2hRe,Arnulfo Hoppe,[]
usr_E5zPFAGC3jzizrqzxQoxFsbq,Kirstin Gleason,[]
usr_PLmfZEBS5ts1J5qoWPR4wPr5,Del Little,[]
usr_2XabNvH4L2caL7o2SMz692QS,Valentin Nader,[]
usr_3J8gQfMGagZLmRZ6Bs3niEnv,Thea Beatty,[]
usr_NRvJ8F4yLhysThftqieuTK5Y,Harris Reilly,[]
usr_LinKfeohkr91zJRU4Mx6s6Lz,Jaime Schoen,[]
usr_6UAufZEbYmzzxrLVyWrogHWU,Dotty Bosco,[]
usr_Ghrh9TQeL3RHwt3nHcB689bN,Angelia Veum,[]
usr_6MLfW6KxTQe1R697DTjYgUHR,Timika Halvorson,[]
usr_29bjH18Sd1mrMq44DNvjkraH,Ruthie Swift,[]
usr_DTtcm2hCg8XHHsR4DbNvg1L3,Loris Howell,[]
usr_GfBL7KqeBjLLRg5QLSpyqnvP,Major Mertz,[]
usr_LeYrVSXuLG1sBs38MXQ464RW,Addie Batz,[]
usr_Hv8xa31c7tNvW4LZH1WiNmgv,Christene Schultz,[]
usr_21qp28Co7bHBqoNrA3iFoBPJ,Korey Graham,[]
usr_NTjdBkrtttdwvndWLKHEHTcQ,Marion Trantow,[]
usr_7KZA8DRDCHrkCCmZrdy9c5pz,Rima Monahan,"[{""organizationId"":""org_AAC9Z4vf3wuM3NivNpVqGhhe"",""title"":""Central Solutions Consultant""}]"
usr_Huyhv3Nek2cnbARXAygVN4Ud,Yaeko Rodriguez,[]
usr_6ZVttnbGU7kx2epjafa8qgW4,Fredricka Kuvalis,[]
usr_HiNzMRPo3z3Uv8AVo5RkF3mW,Wm Pouros,[]
usr_KJDWUx3n7EQQ9wv3cbRUcxCo,Elenore Funk,[]
usr_CARS5rRoyfxPZRMVpbBnWpyv,Neville Cormier,[]
usr_7Qe9EnZeX4AzAgTnPSvwiVAo,Neely Marquardt,[]
usr_5ix2s9BKFUMftWALaLzKUTCi,Kyoko Kub,[]
usr_6J5teY6WwZYtTHJjC36CgUBX,Elicia Cummings,[]
usr_Kn3pC66FAxdgnBZ5gTKSKGTs,Ezra Powlowski,[]
usr_AeQXSrM5nj2PSpMKo8fQ32qb,Arnita Bins,[]
usr_NaCm1VgEjm8Jb2mU8dphD9kv,Ronny Abshire,[]
usr_5YnsgL6SjPbNroMp1voQ82Sv,Marlin Kshlerin,[]
usr_Bc8z26nayF2iapLNkXtiCjJg,Lynell Toy,[]
usr_2nDRxQ67B2GVQtemALgqAG5X,Douglas Bahringer,[]
usr_Gsvi3o3aurMhK66reM4iq4Wq,Ngan Swaniawski,[]
usr_D6jUaA2sZfCyU6NP63rvSyZU,Alejandro Bergnaum,[]
usr_EPQPq8MrDDy9jpBc4wWorRyW,Coleen McGlynn,[]
usr_BdREn8cgYkkkw89PxYZqCDrL,Sau Barton,[]
usr_MfvCncmCJYkMonENG9ETuKAu,Nona Bogisich,[]
usr_5qhrK5ESAVASexV5rrcc1gd6,,[]
usr_JGZMbGpXsu45vJwSBc3GiR3j,Daisey Wunsch,[]
usr_C4YRNzhNZzNAxZ7bHfZxWtk8,,[]
usr_M8N6aCPinVgJr4ii3TAmgkY8,Sung Lesch,[]
usr_FadYvXGsv3vxopz5hFobCjte,Forrest Metz,[]
usr_573idaGjb4QmViid2kQpTweW,,[]
usr_EwA5efmWEVGLv6K5WAw7dMgW,Timothy Goyette,[]
usr_9DsGuSrpdsydnDVLmEEwSMxH,,[]
usr_76bsnnarn61pxX7hr6qoKnUX,Jc Sauer,[]
usr_9p4RfN9bN68QyJkv8qXVAUv1,Lacy Rowe,[]
usr_5uZfsyAffNdtPNPi9E2Lg2M8,Antone Graham,[]
usr_KAZL5X7aWCBT1zzj6ZtCuj8F,Erinn Bernier,[]
usr_LNZTevwP7JuJo6uy9t33HVUX,Tyrone Kunde,[]
usr_9cjLkNAsh2YhQRsbNGZbDehN,Carma Schaefer,[]
usr_9auiVhha8bBD7NZJGLMynEFh,Luther O'Keefe,[]
usr_CCYEBSYjaLorw33JcFk6QazN,Jed Schoen,[]
usr_Ax1RUtFZ4m2tShaQK7pnXVnc,Rolando Crooks,[]
usr_AaUp9pjwaHgGRLjkurA87NLo,Jamey Baumbach,[]
usr_FmQDEKwYphnEmNEVkabJYT51,Broderick Watsica,[]
usr_NyzcTo6YbhQvMe1K1QKwhMKE,Drema Hilpert,[]
usr_6qXSYmfVGW35msZqiGnGxwNc,Ernesto Schulist,[]
usr_PXJPuPX9RUJGpH6dTnjXHqwq,Shery MacGyver,[]
usr_JWfCo6c7UHsw32EYDY9MtpNT,Season Rogahn,[]
usr_4qgvbn9VUwtcCPtrb8w567ME,Barbar Beahan,[]
usr_D2KRn7mSVbxTaKXTEfyrBjtZ,Jesusa O'Conner,[]
usr_NX7QtFkDEAeJMM8wJwDA3Qz2,Elden Konopelski,[]
usr_h7TpS3kxS4PWisk6EMvuv7Dv,Cecil Kulas,[]
usr_GdH1ayJ4FyDZiVgFm1LfhVSQ,Ines Clément,"[{""organizationId"":""org_AAC9Z4vf3wuM3NivNpVqGhhe""}]"
usr_88AWqLiCs34dfJoiP5u36Biq,Théo Muller,[]
usr_D6wHQDxCsr6MJsVQYfZJ7cx3,Juliette Morin,[]
usr_2EusVQoUicjztuqbaqdu6h4W,Quentin Boyer,[]
usr_CYF436raPdqMXwzsDUgJcQ7n,Anaïs Guillot,[]
usr_6Fp9BZPcwwD7ZDkJ3nPZ5r8B,Antoine Dvnis,[]
usr_77j7H2KSqfFVihJ85hVPG2VT,Royal Kozey,[]
usr_7MdJTZXZWirpUdDJyi77DDBD,Zoe Louis,"[{""organizationId"":""org_AAC9Z4vf3wuM3NivNpVqGhhe"",""title"":""Corporate Directives Coordinateur""}]"
usr_Nc5m3hjg5KEWTQ8ovMorMXD4,Ardelle Mayert,[]
usr_8L2p2czuFkrxMb9P87x3NLb6,Rayan Collet,"[{""organizationId"":""org_AAC9Z4vf3wuM3NivNpVqGhhe""}]"
usr_9cUnpXrXWVzJsP7swntFMuKg,Eleni Monahan,[]
usr_CD6wifNgnhcr76uJ6SYv9sHG,Charlesetta Dicki,[]
usr_D3WpQdH2fCCAjKxnU4YhreaH,Olympia Littel,[]
usr_6aMfP2ifpN3v66srLAWNDYJB,Lisa Rodriguez,[]
usr_4vxyePa6Jh1yBdJWVra1iHYy,Pierre Gauthier,"[{""organizationId"":""org_AAC9Z4vf3wuM3NivNpVqGhhe"",""title"":""Global Metrics Manager""}]"
usr_9XGNaS1Eb6VXac8jRTaJsPf4,Otto Wisozk,[]
usr_8cyA6JbUFZJK8rogHAM812ez,Mabelle Ziemann,[]
usr_JnX2Zak1W8H31RPSQTgqzXFR,Numbers Jerde,[]
usr_MpdrgH3PxpR6RhSmUMibqfZH,Claud Marquardt,[]
usr_2McWUb6buhStGU9fxTgHNv7t,Santos Effertz,[]
usr_ESauX316PZ9Md3MP9w8uEuUF,Margorie Kerluke,[]
usr_4w3U1X2A5ktWn6gnzf2Z6scR,Boyd Will,[]
usr_J8Vu8uKhUgqJqFFzbRCz6vtA,Kenisha Shanahan,[]
usr_Lgz1q8EezCZMWDpWHEeguhcf,Benita Sawayn,[]
usr_ynewn2ko5LvsKYPcdgswGmFS,Tianna Cruickshank,[]
usr_EZ2wvzdtiTVGtkhFfxGnjcuP,Jorge Mueller,[]
usr_7Kr99sAGEWCT42jpb1rTmYpN,Allan Bednar,[]
usr_8ZNY2U5XS6Z5DBawqRNkSa3J,Barton Hoeger,[]
usr_HyMZfh9obz4sgCTU6Ec4wqsp,Jaquelyn Krajcik,[]
usr_N5c1W75ERrYxZBLJgJxzD8Am,Armand Wisoky,[]
usr_HhYdnX2eEZd74mkZDyZMzMiD,Walton Reichert,[]
usr_AatkC9WLerGZL2UX4LCgi53b,Renay Howell,[]
usr_MqvFmZb3zg1oRgGnHd9jEoJs,Ahmed Cole,[]
usr_AewJX8fzFoJZA4C6A2G48Zka,Hugh Maggio,[]
usr_5M5CdSWSHThEjKaT7L9MrQyJ,Kurt Funk,[]
usr_Ls1s9qVUtRuYxVhvUMezJWMu,Jamel Waelchi,[]
usr_6Nth3REcLwG19zyeHT2AKJ47,Saundra O'Reilly,[]
usr_6vTZJ8mCif5ixAitoMJgebBP,Nick Friesen,[]
usr_2UGYLwJrsqoVSskoKvjHPnM6,Stephane Harber,[]
usr_6eyRYCcgikCTPzEpY1FKWrve,Arielle Rath,[]
usr_K3rhgoCNpdhH3aDup9Rg6iuD,Damian Wisozk,[]
usr_2iUeQmJcJqtU92q4TQwYhX2h,Chrystal Abshire,[]
usr_3mieCFw5b4DnvH1JhpNWcZ66,Jose Labadie,[]
usr_EmXNcVUcXm5qPV7Nv5dAVPsf,Palmer Purdy,[]
usr_LKRc6VuqCjWJJ2GhWtjTEHpr,Reena Jast,[]
usr_cDMeKMxaDreFPAch7eyWoAUZ,Shakia Skiles,[]
usr_Fi6QFBmgYNQ9YFSXLQbyhS4t,Rossie Schamberger,[]
usr_DuXw9jPGaR3BR6KgEphK4EwK,Raul Schultz,[]
usr_ELqtnvkabvtJc1wX7psJuRDx,Burt Bartoletti,[]
usr_Jijz1SjitKhfGd3nVdVC19hD,Paulina Kuhlman,[]
usr_6XgFAQEUueNvkm3GU425bMq5,Fletcher Leannon,[]
usr_5AYJNLFLkRtjBtYZc5wy7k2B,Michale Bradtke,[]
usr_EXCoqmPMFYW8kFdkXRsYXZY9,Michal Smith,[]
usr_7ZdmfzscNMedGs2sGfheDWJq,Violet Hilpert,[]
usr_Cc1amTPQW2kVSWKa4q3PH8me,Richie Koepp,[]
usr_LjajkcTwVjAY3xhjmubphZbD,Ryan Kohler,[]
usr_6ohT5FBoMndd49cTA1tpCfxD,Terrance Kuhic,[]
usr_FLkf5QYPNk5iPMmYQvxnPVH6,Leah Ritchie,[]
usr_HmLDfQ46XWRMzFLVKu2KL9BV,Roscoe Barton,[]
usr_HBufMAbh5SEb1LZfp4ZBo9hm,Rudolf Klocko,[]
usr_MWkaw1RmvXniLDMGJ5xQXwMT,Gay Mertz,[]
usr_s6L45zdnwDfXGuUEXUJop9Kt,Mozell Watsica,[]
usr_HCTFDagmCe4L1UEMR9iQSvTs,Augustine Yost,[]
usr_P8tEdrBDLwm92qN6fGX86cy3,Jeromy Feeney,[]
usr_kjUetrxe8XWJKoENPBXac1Xu,Patrina Jerde,[]
usr_2VLyuZNWuWVMPjsAJBWtG97s,Mose Green,[]
usr_6e2GP7EQipGTL3m8TPrvM59P,Machelle Quitzon,[]
usr_FB21ixAkB6p7Ktu1R7embiEr,Malik Rau,[]
usr_3yTxyuhcPqwXJ53sNKA6gTbw,Lina Smith,[]
usr_C5XMX1oY9euG33vsyZDcnbrv,Verdie Roberts,[]
usr_Mk9QdKmGqwYgKjF6EiTEkVsv,Vito Windler,[]
usr_K5rYZqPcR1okS84SseArNK1r,Loan Schulist,[]
usr_B1pv94UXd8quhKvN8nHWgnds,Darrell Ortiz,[]
usr_AG5KveTZBzxh2yGMoYuhhp3k,Louann Little,[]
usr_7hCjnCkQkhSjupDraqUawQxK,Angelo Rau,[]
usr_L6vrwhD5crmbtWom7Y1CxX1b,Werner Beier,[]
usr_CG9nSdNZBrD6g4vo2f8TRG7v,Julian Nicolas,[]
usr_4vurmUrvF2bi27JU7xRQt8XS,Earl Glover,[]
usr_DVqkxR2KoqzHbqDUSdA2Ykkt,Roscoe Ernser,[]
usr_7MCvuvhcfbxs1RfpGMQP6Wsu,Chas Reichert,[]
usr_E8EeWAQNQtWBn69YxcP33gkx,Alison Simonis,[]
usr_BW5AtH385ys86F19P2skVHw6,Janessa Lindgren,[]
usr_KRSdEJFnEfuTL54GJNJcdD3M,Anabel Durgan,[]
usr_Nj3M5GzqSXQDHaK2xXsmAaCz,Tonie Hodkiewicz,[]
usr_3EMNpGJSLz6oKdex89SBWZo8,Ismael Raynor,[]
usr_NfGMKepFStBzos49zcZtMhbM,Heike Anderson,[]
usr_CieUVvsYxgAxjNpDQjdK8eov,Stefan Goldner,[]
usr_ARx3i6vuAwtrzHE59W3b3LBu,Mitzi Rau,[]
usr_6APW8uyhYamjez8jFMDGQbSc,Mayme Douglas,[]
usr_3ofiGemnzAdV8wz14FsHqKif,Kent Rodriguez,[]
usr_3QpcrYv7p2R2KHwdYQmW17Tb,Mariann Hamill,[]
usr_QFnoosCTaFtdhJ2n3T8VN8eb,Sanford Berge,[]
usr_Da13WEZBMj44TDWAg87u7ca1,Taylor Green,[]
usr_A4heCFVBhpRk2ZsVCSFwt1ka,Clair Franecki,[]
usr_BDWYQQK33jZCgTyWCL7pJ5hf,Yolonda Borer,[]
usr_GU2GiKdKbQ923oewsZxN7z3p,Javier Ortiz,[]
usr_JXkE7JDzebzDto1Cvq88Ek1c,Jacquelyne Olson,[]
usr_JrAxekY2SE1FhvBb9mfUkkrV,Nicky Rath,[]
usr_FqzBAMCfbaQ5jsrEBLKDbn15,Orville O'Hara,[]
usr_2kvNMfdjxKbSuwT3NKLQNjaj,Janetta Olson,[]
usr_5s64rrUPFrLp8R6dwmV7Lkdv,Lorelei Lesch,[]
usr_DYw2dH5peXdiuqSkGF1JNLb6,Consuelo Jacobs,[]
usr_M7Gjz11kHysjy2eaqM7Mbq5V,Claudio Lueilwitz,[]
usr_C91s23zmdtdbXFkSt9zc4TSa,Carisa Oberbrunner,[]
usr_LNf3SUPB7UjwmxDKYUfVLvek,Mason Flatley,[]
usr_7ih9Yewfq1CRL527TofBVT62,Ignacio Vandervort,[]
usr_DoFKE9qwZzWTFzZ2LxWCq4pG,Rubin O'Hara,[]
usr_BiXFsyAadn7gNyYSbPEvjefN,Kim Bosco,[]
usr_45nbrZZMo9s2SSoA8TssuJ96,Cheryll Hermiston,[]
usr_FeWg3b8dhZ4avz98bW2dauQT,Zita Cummerata,[]
usr_3nS5Xz3MxciqmTqyR6rS9Sa5,Jesusa Stamm,[]
usr_5f4czJBxEiES82PRW4RuLAED,Felton Connelly,[]
usr_9giQXQAP1ezUmpLPi5Q4PT6a,Ruben Rempel,[]
usr_53PVFbDdc6kBr1BehznhbKkF,Rudy Adams,[]
usr_4En7WHNYnAZTQu3DMqRLgETf,Wilhemina Gleason,[]
usr_BXttVtYPKrphN47zDMASwWgj,Reyes Bergnaum,[]
usr_AyCQTDoQou4u3HiWTT5GWM82,Quinn Harber,[]
usr_K6MwhmWCvfwLA1FGqctPxfK4,Noel Bogisich,[]
usr_xy7uB9xNT9ZchcTUQfW5bgG5,Lyman Zieme,[]
usr_q3XsZgAoRND2wxeHcbtoBSyP,Esta Veum,[]
usr_NNXv8MEwhmtZDTFMx7nDm9f7,Tommy King,[]
usr_DdypZ52nQwMXfLBuWfDCnAg6,Zachariah Beatty,[]
usr_7bPenxzoFV1LrRLGTJL9NJcU,Octavio Funk,[]
usr_8J3NZsBD49N4R5XjRAGuCwRT,Herschel Hilll,[]
usr_MiV37nQKX4pv7ip3u8nyHqPo,Mike Padberg,[]
usr_CwgFCYHoUdRziuFTK8w9qjUF,Shenita Marquardt,[]
usr_LVCmd3bQbfnZ7JiHtML5Tdmp,Johnathon Witting,[]
usr_CX47vHicVBZG17112KCwV6QW,Jeramy Kautzer,[]
usr_Hh6wHVfoPQ4PpkoMUt9vYk3z,Carolina Dietrich,[]
usr_9dDFcr7n9tE9syneyXcxizbN,Jessia Gaylord,[]
usr_9Cu11MbSk5TgbgiEwNrZSYW5,Mathilda Turcotte,[]
usr_GMVgyXemKLrKJAKcgD5VamXi,Adrian Heidenreich,[]
usr_KPim3akt1utMST8r5JFWtjQc,Lashaun Johnston,[]
usr_9A8P49bU6D1VvAbt2bk7J86s,Verlie Brekke,[]
usr_5L1kPueqWvNFxqWfD33YFBrL,Raymon Sanford,[]
usr_GW3TXL4bsBkqjr9UP1uXBCMN,Warren Glover,[]
usr_7Wau8BnUmpgYV8zBYfX5FD3u,Renea Deckow,[]
usr_GyKwNif4shQC83oQGG15j1PK,Ernesto Green,[]
usr_KnhBgu532m3Joa7FfkRceFYK,Neta Gutmann,[]
usr_Dy4odnVfTX79miCTnqcNEZHn,Marcelino Kunze,[]
usr_27uspahNQawVAXA41mXEuXuz,Kenneth Wiegand,[]
usr_PsTYThm9v4sLRvCZTEWZ1YFf,Mayra Dach,[]
usr_EZnMR21rVqGSSJTzH4sdQ2Sz,Jerlene McGlynn,[]
usr_47qcpipYyBhf1o22UztAr2ME,John Rath,[]
usr_P6HuMy453QqBnHqVSW21f3Wb,Kalyn Crooks,[]
usr_CBVfGUGFmsFq6AjtpvQHjG4S,Arnette Braun,[]
usr_13o5SJzGpXAcgwXLqEYc1MkW,Elinore Boyer,[]
usr_mKabCmoxqgTZAYuzR1EUd2wr,Johnny Botsford,[]
usr_7TmtP5Sn66zkJru8ZfrGTnLh,Margene Thiel,[]
usr_LWFRDAGZoWryBA5CMFqqSnsz,Mohammad Koepp,[]
usr_K2169ZPyCXQScBNictnEpFRh,Wan Beier,[]
usr_PGYZfVRnViDmohqo5yED3PHi,Cole Conroy,[]
usr_D39eXM76k1Q7fZVn5Ato8vx4,Wilhemina Reichert,[]
usr_49G3Ea7MRAgXhCRZwpCG9g28,Rigoberto Luettgen,[]
usr_NFDGuK1aNtAJmqca7ngsSXjU,Jeffery Bogan,[]
usr_72nZkKEtBee2Y6Q4hvYbZT1H,Sindy Littel,[]
usr_L8GbyeFYSESztRRwrnw6SBeo,Rozanne Kilback,[]
usr_5QfACtKkjQxgfRSV1Jh3gbDu,Leandro Pfannerstill,[]
usr_AzwmKhPbptUXezMQTShqT389,Sang Metz,[]
usr_N6bJ2J6XkVyhM8A158H3ZQiq,Alline Schamberger,[]
usr_H2nKARZQhUNRWpJCgkkxm9hj,Un Tremblay,[]
usr_2PDmsGMJgSoasUqnyDWwtPYQ,Betsy Schmidt,[]
usr_LM7DU2RC1XbVW1uQgb6krY35,Normand Beier,[]
usr_25TA2ZgvSZuKU9VQXqTVR3N6,Reynaldo Schuster,[]
usr_BLwYahFuyf9db7s2LPw63rav,Tommy Stokes,[]
usr_3Td5vhgBJmvccGTBi5Ver27n,Arnetta Strosin,[]
usr_L4Hg7CKrN4oDHbkAFHwafsng,Neville Little,[]
usr_PT7MiSB4SCbcTH5ganmXe8kB,Seth Berge,[]
usr_FDF56rjKAFY1SRsuP5UxjZNd,Daron Gerlach,[]
usr_FFf3dtcgu7qAQENAXiPdgCEm,Porsha Thiel,[]
usr_DNkPKdHvFyC1LKcDGxcvsgTV,Cary Koelpin,[]
usr_6rQGWZPGRJ8dqjuq71MHkFzW,Arturo Hodkiewicz,[]
usr_NaaWMPPthgHTJD5Xu4uuswLg,Odette Nolan,[]
usr_KhttEHdjzJJDdy3ES2i2MsMK,Treasa Harris,[]
usr_A8HebWsTMGUEfLL3nyvV2eKh,Jonah Zieme,[]
usr_M2jcKRqfPun5fpnUYL62HeAU,Jorge Hansen,[]
usr_4goDHiWWsg2v2QY3Zgv98NfJ,Pat Casper,[]
usr_8v5Q5saVqEkqDbzVsvUm2hNH,Salena Dickens,[]
usr_ERxm53FPeTVyhdYQeDh3aWBX,Laci Collins,[]
usr_GykMDAQodNzkCpi97H6jZjrQ,Jewell Schaefer,[]
usr_JxtK8hx2Mjg4RLwNHSyYfC5U,Leeanne Buckridge,[]
usr_PDEkLmsWSgrVff9YoTub7GqS,Tova McLaughlin,[]
usr_JqCYrK7APpKskYLb4y6ggeiY,Claude Prohaska,[]
usr_HWN8NGzcPmfkxeBQzmtku9P8,Samuel Crooks,[]
usr_AyUrShspRDu2KetvThxWLnwp,Marna Bednar,[]
usr_tuKMnzHV1EjkT2LDpZRcXodx,Michale Corwin,[]
usr_FJrniTgiwYHYLbt9HDwWuAqW,Tova Dibbert,[]
usr_ARgrZgkxLbYjpxYGeFBUMfoi,Wes Pagac,[]
usr_Cq7JcPRTkVGVvfWiHiakeEUj,Erin Wolf,[]
usr_9mDg2PeJd2VEg54hVruP7KfD,Randell Hettinger,[]
usr_PdPsy1JbatC8YM3FuSALWSdz,Royce Carter,[]
usr_FGZV9fDSxGixGhDBvq2kvp3Y,Greta Grady,[]
usr_KNaTEA96VTn5hfm9id1unL3Z,Robbin Hyatt,[]
usr_97frrKuPRJhx31wpchNTCGQq,Alona Kuhlman,[]
usr_4G8zCJtgYzDtHEhtUcZnSX7L,Marinda Conroy,[]
usr_6K13qvyJJoAN8mrXfYgSoELS,Fernando Herman,[]
usr_FgVcY84YXmtTGBBFL7vu6tLd,Lane Stracke,[]
usr_EjvcpGw2Lep2BG6VJNarnwBc,Lizzie Purdy,[]
usr_Hd6p6WQtQFer8fS2MPZVXfyY,Senaida Heller,[]
usr_8wTTeyKKfbvMLGXxbpTqPodm,Rufus Schowalter,[]
usr_5qSb1zMcdtFxHACFGtcizbNM,Susie Olson,[]
usr_5KyYMrQ9s7W1pRqza8ME3u6Y,Bev Durgan,[]
usr_6ntQGr8q1AoBDtY24xXWbmNt,Gayle Barton,[]
usr_7Fi5iCksfPK54z3G7jimST2B,Keith Denesik,[]
usr_CeyVHeifaqvdN2Lu125bLYC2,Selene Schaden,[]
usr_MpZdgXDxLwihpV5RNKHYu2yn,Marisela Purdy,[]
usr_4AtbQteieSeVWpXtTriLQqjE,Rashida Marquardt,[]
usr_EucNjurUe7QvrXNRvTHkGrkM,Nannette Schiller,[]
usr_Bx7MP6ZeEiK6w6BAPS7M4CS7,Heike Ullrich,[]
usr_7fCRdpmdbeWTE4KFUhwGZocq,Monty Haag,[]
usr_Fo3ucSNtyBv4MrpjkoQfk2un,Giovanna Champlin,[]
usr_CnzkTkkJWMPbZd2RQwcQCuDQ,Arletta Greenfelder,[]
usr_JSKkWPRPunPQ7h4ihf4L5tKH,Caitlyn Wilderman,[]
usr_4ztDBcLAqQKmUfciFoSNA2q2,Barton Wolf,[]
usr_AnrePWXuiZGhU6Bwo81So5bK,Giovanni Stanton,[]
usr_NRcVeBAcwseoZPMeU17a6SUP,Efrain Witting,[]
usr_79zD2B1MBazqmko5rhJzdZaQ,Carmina Doyle,[]
usr_JsFT5DzCH93GHbanaZS5MYdH,Pasty Deckow,[]
usr_HRfMWa9of6T8UgCfsXCwUmZU,Grady Torphy,[]
usr_9MJtpqH3cA1UfQHsmdojyg5D,Cristopher Vandervort,[]
usr_EEoVdwycPtJdQm7kzpaqBx4n,Jed Heller,[]
usr_ADxR3ZN3AUEXTAYKA2hm3gxg,Faustina Boehm,[]
usr_6fbQGN2LvUfRJMb5fPuGdXLY,Gail Fadel,[]
usr_LaJzyYFTChoR9AMSoYhBJp3v,Carmelo Ebert,[]
usr_MLNUsi4wUoNEUWN6jxueNKVt,Josh Herman,[]
usr_Q87YYmWUcvAtndWQ2LYyyA37,Alva Batz,[]
usr_DyJpE5NNmAWMqu5NPwEnHQoK,Alline Braun,[]
usr_65B27ZwqsCQbG6oDNJ5WNuy1,Theo Huels,[]
usr_ijTVXC9R5Mm9MQg9PR8fz253,Nga Kertzmann,[]
usr_PdxBGbSCuwAogJXHNDL1gTeL,Sonya Kovacek,[]
usr_KvruJmUUp3tB5mCLrXWzWzqQ,Louie Stroman,[]
usr_3dBhRAtcYi6PLMD2F8FxgB7M,Malik Zulauf,[]
usr_DgDpNsikmdkkgEhkftLFS4ey,Edgardo Deckow,[]
usr_BhXhJ3kfyFUsU6kEJHuB1sXX,Caleb Boyer,[]
usr_AHf5faYAMaG8DKc33X4AD3y6,Lachelle Deckow,[]
usr_9FHqZdFcPENXsB3yac2xGBRe,Cherry Wisozk,[]
usr_7Qh9uEmkMgBYe7vPpPg7Bwvv,Treena Smith,[]
usr_Q1iDqRnbsGuRXsQJ4UGarRjZ,Jasper Ziemann,[]
usr_5ck6qTb89Q4Q2tWmGpc626sE,Chang Schaden,[]
usr_5Vq7RhhSQFpXwtAfeHa8uae2,Zackary Koss,[]
usr_CGhHdvhF47k3KqY1StLTGQTM,Phoebe Lueilwitz,[]
usr_Pq9icy6at5EA6imEtbjTDxEf,Leopoldo Barton,[]
usr_3xnESneFprUM3ioqfKNAWgU9,Ollie McCullough,[]
usr_G4UbQs2DERvvzwVUMr4msUdQ,Jamel McGlynn,[]
usr_BuTgyPoQ2wYnU9oqJtg5tRze,Jenniffer Lebsack,[]
usr_HNUfvchi4BL8bCFJ6bELQZub,Kristian Bode,[]
usr_MRNqMqRhJKunnCmzGsfYtB9n,Dion Christiansen,[]
usr_MCnaeWcHHCd7aLoK4fdsRqvt,Junie Predovic,[]
usr_KxMLV2TBggZ2ZHwg53gHvGpW,Tamekia Emard,[]
usr_L44BGKVVXpMmbvRWfHM6qgKM,Willis Bruen,[]
usr_4ASm38tRuMXK1CK14JaupD3v,Theda Tremblay,[]
usr_PufYT7kFZzmaMtxLZMy7GJqi,Lonnie Kerluke,[]
usr_ASU9GsbN7QQdcUcC6VmEBCGG,Marketta Gerhold,[]
usr_32KRknFF8mHp6VebxvGpAxy5,Carina Kris,[]
usr_GZpL6BvSnZNpMY7trxXSWigP,Timmy Jast,[]
usr_CUFwCyQh7srbTVmqs5MuyPhD,Bernarda Anderson,[]
usr_Q7Uai9D6UhcADVAdspzogAmJ,Eddie Greenfelder,[]
usr_QBRj7qVE7FSWkKvfLiGHhwB2,Dorene Green,[]
usr_75TMV5tn5gFHRQ2EVkYcE2A4,Otha Bechtelar,[]
usr_Az7w57dZZNEP9EJvoVNu18cE,Sueann Morar,[]
usr_A4dRcD7DNx1KPCAVPpJxkZqU,Ima Harber,[]
usr_HiJsuWkCgUMh4En3JPTNFvi8,Johnathan Beier,[]
usr_HRrQNJrEp7xNFvQAPjiRgFT4,Marylouise Dietrich,[]
usr_F8stsZub8WS3DXtCmfosK8Dt,Lacey Schmeler,[]
usr_5BH1cTwgfU8UpWpmu8ToDpy5,Cherly Olson,[]
usr_DVDNyain5vWvjMvF6zrBBszq,Evonne Abbott,[]
usr_NDXz1LxU6qoVEjRSX4YtGYd6,Adell Bosco,[]
usr_KCoHuoKWZYPu3vGbw9jKBzXX,Mara Emard,[]
usr_EpRand8vJXcnB3FJD8YSbCtD,Velvet Glover,[]
usr_BiMJ8JFJLBuwssaFrMkCsAAu,Marquis Batz,[]
usr_M3miypAE6DrWqiDXxTnhCPsz,Noble Veum,[]
usr_2yurokm7pqp4CizoPBQwAhwv,Sherman Toy,[]
usr_GVMN7oVRhC2gFiVb6j5K6ZoJ,Samuel Runolfsson,[]
usr_L2kWeyqxFK7zfUBbEG2w5fRG,Sammy Wilkinson,[]
usr_CFYCYZ1P5cfitGbwdyMexEbV,Ara Legros,[]
usr_EEvAyvCUWqDazSeT2eJLix9A,Marvella Mosciski,[]
usr_4PzKGKk9cN9N1SCJfAg77Bu3,Claretha Rowe,[]
usr_G4Fyxr1r1xttc2SNDKfWguNn,Wilhemina Koch,"[{""organizationId"":""org_AAC9Z4vf3wuM3NivNpVqGhhe"",""title"":""Central Markets Agent""}]"
usr_6g87VArm9XDs7XZQGdkRUyNz,Arlie Hansen,"[{""organizationId"":""org_AAC9Z4vf3wuM3NivNpVqGhhe"",""title"":""Regional Intranet Architecte""}]"
Errors:
Status | Code | Message |
---|---|---|
403 |
InvalidExportStatus | The status of the export does not allow this operation. |
404 |
ExportNotFound | The specified export can not be found. |
Delete export
Delete an existing export.
HTTP request
DELETE /api/exports/exp_BDcHurEMQgzWLB2DJiohoGMs HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "4evwKq6TL5E9hJKeVdtvXwTX"
Path parameters:
/api/exports/{exportId}
Parameter | Description |
---|---|
exportId |
The identifier of the export. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_9WXbaSqDd8YDhmsGQvhC8Kjh
ETag: "2hMQ9gAPmK2pFgJGgEzF3D32"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 524
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731412054534,
"expired" : 1731498454532,
"exportOperation" : "createUserExport",
"id" : "exp_BDcHurEMQgzWLB2DJiohoGMs",
"itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
"jobOperation" : "purgeExport",
"searchQuery" : "",
"size" : 34495,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 729,
"updated" : 1731412055312,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
ExportNotFound | The specified export can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Search exports
Search in all exports.
HTTP request
GET /api/exports?text=exp_BD88wB6w6yxnugpFZkMW5woQ&items.id=exp_BD88wB6w6yxnugpFZkMW5woQ&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.userId |
The filter value(s) for the userId field. |
items.adminUser |
The filter value(s) for the adminUser field. |
items.exportOperation |
The filter value(s) for the exportOperation field. |
items.totalItems |
The filter value(s) for the totalItems field. |
items.size |
The filter value(s) for the size field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
items.expired |
The filter value(s) for the expired field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 637
{
"items" : [ {
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731412064822,
"expired" : 1731498464820,
"exportOperation" : "createUserExport",
"id" : "exp_BD88wB6w6yxnugpFZkMW5woQ",
"itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
"jobOperation" : "exportEntities",
"searchQuery" : "",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731412064822,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the export. |
items[].tenantId |
String | The identifier of the tenant the export belongs to. |
items[].userId |
String optional | The identifier of the user who created the export. |
items[].exportOperation |
String | The name of the export operation. |
items[].searchQuery |
String | The search query for the exported items. |
items[].totalItems |
Number | The total number of exported items. |
items[].size |
Number | The size of the export. |
items[].jobOperation |
String optional | The job operation currently running. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
items[].contentType |
String optional | The content type of the export. |
items[].beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
items[].afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
items[].betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
items[].itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
items[].expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export exports
Export a search in all exports.
HTTP request
POST /api/exports/exports?text=exp_FnPCBZBwF8Rtvf1TrdDcABVS&items.id=exp_FnPCBZBwF8Rtvf1TrdDcABVS&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 167
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}}",
"expired" : 1731498446640
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.userId |
The filter value(s) for the userId field. |
items.adminUser |
The filter value(s) for the adminUser field. |
items.exportOperation |
The filter value(s) for the exportOperation field. |
items.totalItems |
The filter value(s) for the totalItems field. |
items.size |
The filter value(s) for the size field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
items.expired |
The filter value(s) for the expired field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_NqfbBxJUEfdDcHKEbjntqHh4
ETag: "5fUFY8UpHqV4Hvd1Lrhhy53r"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 582
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731412046642,
"expired" : 1731498446640,
"exportOperation" : "createExportExport",
"id" : "exp_Pabqz3uNZLLDEVUjbdd5jYAM",
"itemTemplate" : "{{id}},{{name}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=exp_FnPCBZBwF8Rtvf1TrdDcABVS&items.id=exp_FnPCBZBwF8Rtvf1TrdDcABVS&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731412046642,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Groups
Create group
Create a new group.
HTTP request
POST /api/tenants/ten_DyvBSLey9Fnh65AGLLGoDB8D/groups HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 1089
{
"name" : "Cross-platform actuating success",
"description" : "9086 Rue Pastourelle, 65554 Besançon",
"isDisabled" : false,
"hideWorkflowRecipients" : false,
"userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer" ],
"templateSelectionMode" : "list",
"allowedTemplates" : [ "wtm_47YJw1DTdkUqorF1XxH4957F" ],
"layoutSelectionMode" : "listOrNull",
"allowedLayouts" : [ "lay_AkfQEgf5bHiSxAkgqRa924P1" ],
"createUserAuthorizedGroups" : [ ],
"updateUserAuthorizedGroups" : [ ],
"deleteUserAuthorizedGroups" : [ ],
"viewUserAuthorizedGroups" : [ ],
"createWorkflowAuthorizedGroups" : [ ],
"updateWorkflowAuthorizedGroups" : [ ],
"deleteWorkflowAuthorizedGroups" : [ ],
"viewWorkflowAuthorizedGroups" : [ ]
}
Path parameters:
/api/tenants/{tenantId}/groups
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
name |
String | The name of the group. |
description |
String optional | The description of the group. |
isDisabled |
Boolean optional | Whether or not the group is disabled. |
hideWorkflowRecipients |
Boolean optional | Whether or not other recipients of a workflow are visible to the recipients in this group. |
userRoles |
Array optional | The list of roles the users in this group are given. |
templateSelectionMode |
String optional | Governs how the workflow creators in this group are allowed or forced to use templates. Possible values: list , listOrNull , any or anyOrNull . |
allowedTemplates |
Array optional | The list of templates allowed to be used by the users in this group. |
layoutSelectionMode |
String optional | Governs how the workflow creators in this group are allowed or forced to use layouts. Possible values: list , listOrNull , any or anyOrNull . |
allowedLayouts |
Array optional | The list of workflow layouts allowed to be used by the users in this group. |
createUserAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to create/transfer users in this group. self can be used as an alias for the current group. |
updateUserAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to update users in this group. self can be used as an alias for the current group. |
deleteUserAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to anonymize users in this group. self can be used as an alias for the current group. |
viewUserAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to retrieve, search and export users in this group. self can be used as an alias for the current group. |
createWorkflowAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to create/transfer workflows in this group. self can be used as an alias for the current group. |
updateWorkflowAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to update workflows in this group. self can be used as an alias for the current group. |
deleteWorkflowAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to delete workflows in this group. self can be used as an alias for the current group. |
viewWorkflowAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to retrieve, search and export workflows in this group. self can be used as an alias for the current group. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_GsRxgBy489y4NAt9uDbfAymf
ETag: "3WzKYDiqKcyu2Dw7sJqfRbfM"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1258
{
"allowedLayouts" : [ "lay_AkfQEgf5bHiSxAkgqRa924P1" ],
"allowedTemplates" : [ "wtm_47YJw1DTdkUqorF1XxH4957F" ],
"createUserAuthorizedGroups" : [ ],
"createWorkflowAuthorizedGroups" : [ ],
"created" : 1731411784922,
"deleteUserAuthorizedGroups" : [ ],
"deleteWorkflowAuthorizedGroups" : [ ],
"description" : "9086 Rue Pastourelle, 65554 Besançon",
"hideWorkflowRecipients" : false,
"id" : "grp_EQ8LkuNc8yJ4QnG1UGbNwdiw",
"isDefault" : false,
"isDisabled" : false,
"layoutSelectionMode" : "listOrNull",
"name" : "Cross-platform actuating success",
"templateSelectionMode" : "list",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updateUserAuthorizedGroups" : [ ],
"updateWorkflowAuthorizedGroups" : [ ],
"updated" : 1731411784922,
"userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer" ],
"viewUserAuthorizedGroups" : [ ],
"viewWorkflowAuthorizedGroups" : [ ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the group. |
tenantId |
String | The identifier of the tenant the group belongs to. |
isDefault |
Boolean | Whether or not the group is the default group for the tenant. |
name |
String | The name of the group. |
description |
String optional | The description of the group. |
isDisabled |
Boolean | Whether or not the group is disabled. |
hideWorkflowRecipients |
Boolean | Whether or not other recipients of a workflow are visible to the recipients in this group. |
userRoles |
Array | The list of roles the users in this group are given. |
templateSelectionMode |
String | Governs how the workflow creators in this group are allowed or forced to use templates. Possible values: list , listOrNull , any or anyOrNull . |
allowedTemplates |
Array | The list of templates allowed to be used by the users in this group. |
layoutSelectionMode |
String | Governs how the workflow creators in this group are allowed or forced to use layouts. Possible values: list , listOrNull , any or anyOrNull . |
allowedLayouts |
Array | The list of workflow layouts allowed to be used by the users in this group. |
createUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to create/transfer users in this group. |
updateUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to update users in this group. |
deleteUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to anonymize users in this group. |
viewUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to retrieve, search and export users in this group. |
createWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to create/transfer workflows in this group. |
updateWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to update workflows in this group. |
deleteWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to delete workflows in this group. |
viewWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to retrieve, search and export workflows in this group. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
GroupNameAlreadyExists | A group with the specified name already exists. |
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowLayoutNotFound | The specified workflow layout can not be found. |
404 |
WorkflowTemplateNotFound | The specified workflow template can not be found. |
Retrieve group
Retrieve an existing group.
HTTP request
GET /api/groups/grp_9A74eXoqQ6r8SmGHjaXUhmAc HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/groups/{groupId}
Parameter | Description |
---|---|
groupId |
The identifier of the group. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "7nDLMtp4EmpLbNJB8x52adPq"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1717
{
"allowedLayouts" : [ ],
"allowedTemplates" : [ ],
"createUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"createWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"created" : 1731411600965,
"deleteUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"deleteWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"description" : "9 étage, 7 Quai de Caumartin, 56434 Orléans",
"hideWorkflowRecipients" : false,
"id" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"isDefault" : false,
"isDisabled" : false,
"layoutSelectionMode" : "anyOrNull",
"name" : "User-friendly regional superstructure",
"templateSelectionMode" : "anyOrNull",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updateUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"updateWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"updated" : 1731411600965,
"userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer" ],
"viewUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the group. |
tenantId |
String | The identifier of the tenant the group belongs to. |
isDefault |
Boolean | Whether or not the group is the default group for the tenant. |
name |
String | The name of the group. |
description |
String optional | The description of the group. |
isDisabled |
Boolean | Whether or not the group is disabled. |
hideWorkflowRecipients |
Boolean | Whether or not other recipients of a workflow are visible to the recipients in this group. |
userRoles |
Array | The list of roles the users in this group are given. |
templateSelectionMode |
String | Governs how the workflow creators in this group are allowed or forced to use templates. Possible values: list , listOrNull , any or anyOrNull . |
allowedTemplates |
Array | The list of templates allowed to be used by the users in this group. |
layoutSelectionMode |
String | Governs how the workflow creators in this group are allowed or forced to use layouts. Possible values: list , listOrNull , any or anyOrNull . |
allowedLayouts |
Array | The list of workflow layouts allowed to be used by the users in this group. |
createUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to create/transfer users in this group. |
updateUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to update users in this group. |
deleteUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to anonymize users in this group. |
viewUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to retrieve, search and export users in this group. |
createWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to create/transfer workflows in this group. |
updateWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to update workflows in this group. |
deleteWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to delete workflows in this group. |
viewWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to retrieve, search and export workflows in this group. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
GroupNotFound | The specified group can not be found. |
Update group
Update an existing group.
HTTP request
PATCH /api/groups/grp_L1toNdR7dxrj9RCAbVTexpsK HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "FQRQgHckNtE8Ra2czX2jqAJo"
Content-Type: application/json
Content-Length: 1098
{
"name" : "Object-based logistical installation",
"description" : "1 Passage de Montmorency, 20839 Paris",
"isDisabled" : false,
"hideWorkflowRecipients" : false,
"userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer" ],
"templateSelectionMode" : "listOrNull",
"allowedTemplates" : [ "wtm_9WXm736PkbbfYDNzvrE4rd9K" ],
"layoutSelectionMode" : "anyOrNull",
"allowedLayouts" : [ "lay_Jfhoixjej3geYx6oZJr7XBYW" ],
"createUserAuthorizedGroups" : [ ],
"updateUserAuthorizedGroups" : [ ],
"deleteUserAuthorizedGroups" : [ ],
"viewUserAuthorizedGroups" : [ ],
"createWorkflowAuthorizedGroups" : [ ],
"updateWorkflowAuthorizedGroups" : [ ],
"deleteWorkflowAuthorizedGroups" : [ ],
"viewWorkflowAuthorizedGroups" : [ ]
}
Path parameters:
/api/groups/{groupId}
Parameter | Description |
---|---|
groupId |
The identifier of the group. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
name |
String optional | The name of the group. |
description |
String optional | The description of the group. |
isDisabled |
Boolean optional | Whether or not the group is disabled. |
hideWorkflowRecipients |
Boolean optional | Whether or not other recipients of a workflow are visible to the recipients in this group. |
userRoles |
Array optional | The list of roles the users in this group are given. |
templateSelectionMode |
String optional | Governs how the workflow creators in this group are allowed or forced to use templates. Possible values: list , listOrNull , any or anyOrNull . |
allowedTemplates |
Array optional | The list of templates allowed to be used by the users in this group. |
layoutSelectionMode |
String optional | Governs how the workflow creators in this group are allowed or forced to use layouts. Possible values: list , listOrNull , any or anyOrNull . |
allowedLayouts |
Array optional | The list of workflow layouts allowed to be used by the users in this group. |
createUserAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to create/transfer users in this group. self can be used as an alias for the current group. |
updateUserAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to update users in this group. self can be used as an alias for the current group. |
deleteUserAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to anonymize users in this group. self can be used as an alias for the current group. |
viewUserAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to retrieve, search and export users in this group. self can be used as an alias for the current group. |
createWorkflowAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to create/transfer workflows in this group. self can be used as an alias for the current group. |
updateWorkflowAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to update workflows in this group. self can be used as an alias for the current group. |
deleteWorkflowAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to delete workflows in this group. self can be used as an alias for the current group. |
viewWorkflowAuthorizedGroups |
Array optional | The list of group IDs whose members are allowed to retrieve, search and export workflows in this group. self can be used as an alias for the current group. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_3qpw3sCJrSD7mmd5of8P1XCn
ETag: "BuDJBmTHUuvNeh5rBRry8YeH"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1295
{
"allowedLayouts" : [ ],
"allowedTemplates" : [ "wtm_9WXm736PkbbfYDNzvrE4rd9K" ],
"createUserAuthorizedGroups" : [ ],
"createWorkflowAuthorizedGroups" : [ ],
"created" : 1731411788370,
"deleteUserAuthorizedGroups" : [ ],
"deleteWorkflowAuthorizedGroups" : [ ],
"description" : "1 Passage de Montmorency, 20839 Paris",
"hideWorkflowRecipients" : false,
"id" : "grp_L1toNdR7dxrj9RCAbVTexpsK",
"isDefault" : false,
"isDisabled" : false,
"jobOperation" : "refreshWorkflowsViewAuthorizedGroups",
"layoutSelectionMode" : "anyOrNull",
"name" : "Object-based logistical installation",
"templateSelectionMode" : "listOrNull",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updateUserAuthorizedGroups" : [ ],
"updateWorkflowAuthorizedGroups" : [ ],
"updated" : 1731411788396,
"userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer" ],
"viewUserAuthorizedGroups" : [ ],
"viewWorkflowAuthorizedGroups" : [ ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the group. |
tenantId |
String | The identifier of the tenant the group belongs to. |
isDefault |
Boolean | Whether or not the group is the default group for the tenant. |
name |
String | The name of the group. |
description |
String optional | The description of the group. |
isDisabled |
Boolean | Whether or not the group is disabled. |
hideWorkflowRecipients |
Boolean | Whether or not other recipients of a workflow are visible to the recipients in this group. |
userRoles |
Array | The list of roles the users in this group are given. |
templateSelectionMode |
String | Governs how the workflow creators in this group are allowed or forced to use templates. Possible values: list , listOrNull , any or anyOrNull . |
allowedTemplates |
Array | The list of templates allowed to be used by the users in this group. |
layoutSelectionMode |
String | Governs how the workflow creators in this group are allowed or forced to use layouts. Possible values: list , listOrNull , any or anyOrNull . |
allowedLayouts |
Array | The list of workflow layouts allowed to be used by the users in this group. |
createUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to create/transfer users in this group. |
updateUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to update users in this group. |
deleteUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to anonymize users in this group. |
viewUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to retrieve, search and export users in this group. |
createWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to create/transfer workflows in this group. |
updateWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to update workflows in this group. |
deleteWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to delete workflows in this group. |
viewWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to retrieve, search and export workflows in this group. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
GroupNameAlreadyExists | A group with the specified name already exists. |
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
GroupNotFound | The specified group can not be found. |
404 |
WorkflowLayoutNotFound | The specified workflow layout can not be found. |
404 |
WorkflowTemplateNotFound | The specified workflow template can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Delete group
Delete an existing group.
HTTP request
DELETE /api/groups/grp_ChuDQxW6SGoziySGMByBQvH2 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "CymipFUgtP428oCdeoUwm4aR"
Path parameters:
/api/groups/{groupId}
Parameter | Description |
---|---|
groupId |
The identifier of the group. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_K6Z9dBTT9HMm8rUSBznjwg42
ETag: "5Yb7zd5yoUyC91P92H5QP1uJ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1757
{
"allowedLayouts" : [ ],
"allowedTemplates" : [ ],
"createUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_ChuDQxW6SGoziySGMByBQvH2" ],
"createWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_ChuDQxW6SGoziySGMByBQvH2" ],
"created" : 1731411796707,
"deleteUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_ChuDQxW6SGoziySGMByBQvH2" ],
"deleteWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_ChuDQxW6SGoziySGMByBQvH2" ],
"description" : "4 étage, 7442 Passage du Dahomey, 32649 Noisy-le-Grand",
"hideWorkflowRecipients" : false,
"id" : "grp_ChuDQxW6SGoziySGMByBQvH2",
"isDefault" : false,
"isDisabled" : false,
"jobOperation" : "purgeGroup",
"layoutSelectionMode" : "anyOrNull",
"name" : "Function-based cohesive monitoring",
"templateSelectionMode" : "anyOrNull",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updateUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_ChuDQxW6SGoziySGMByBQvH2" ],
"updateWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_ChuDQxW6SGoziySGMByBQvH2" ],
"updated" : 1731411796757,
"userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer" ],
"viewUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_ChuDQxW6SGoziySGMByBQvH2" ],
"viewWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_ChuDQxW6SGoziySGMByBQvH2" ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the group. |
tenantId |
String | The identifier of the tenant the group belongs to. |
isDefault |
Boolean | Whether or not the group is the default group for the tenant. |
name |
String | The name of the group. |
description |
String optional | The description of the group. |
isDisabled |
Boolean | Whether or not the group is disabled. |
hideWorkflowRecipients |
Boolean | Whether or not other recipients of a workflow are visible to the recipients in this group. |
userRoles |
Array | The list of roles the users in this group are given. |
templateSelectionMode |
String | Governs how the workflow creators in this group are allowed or forced to use templates. Possible values: list , listOrNull , any or anyOrNull . |
allowedTemplates |
Array | The list of templates allowed to be used by the users in this group. |
layoutSelectionMode |
String | Governs how the workflow creators in this group are allowed or forced to use layouts. Possible values: list , listOrNull , any or anyOrNull . |
allowedLayouts |
Array | The list of workflow layouts allowed to be used by the users in this group. |
createUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to create/transfer users in this group. |
updateUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to update users in this group. |
deleteUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to anonymize users in this group. |
viewUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to retrieve, search and export users in this group. |
createWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to create/transfer workflows in this group. |
updateWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to update workflows in this group. |
deleteWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to delete workflows in this group. |
viewWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to retrieve, search and export workflows in this group. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
DefaultGroupNotAllowed | The requested operation can not be performed with the default group. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
GroupNotFound | The specified group can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Search groups
Search in all groups.
HTTP request
GET /api/groups?text=User-friendly%20regional%20superstructure&items.id=grp_9A74eXoqQ6r8SmGHjaXUhmAc&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.isDefault |
The filter value(s) for the isDefault field. |
items.name |
The filter value(s) for the name field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.userRoles |
The filter value(s) for the userRoles field. |
items.viewUserAuthorizedGroups |
The filter value(s) for the viewUserAuthorizedGroups field. |
items.createUserAuthorizedGroups |
The filter value(s) for the createUserAuthorizedGroups field. |
items.updateUserAuthorizedGroups |
The filter value(s) for the updateUserAuthorizedGroups field. |
items.deleteUserAuthorizedGroups |
The filter value(s) for the deleteUserAuthorizedGroups field. |
items.viewWorkflowAuthorizedGroups |
The filter value(s) for the viewWorkflowAuthorizedGroups field. |
items.createWorkflowAuthorizedGroups |
The filter value(s) for the createWorkflowAuthorizedGroups field. |
items.updateWorkflowAuthorizedGroups |
The filter value(s) for the updateWorkflowAuthorizedGroups field. |
items.deleteWorkflowAuthorizedGroups |
The filter value(s) for the deleteWorkflowAuthorizedGroups field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1845
{
"items" : [ {
"allowedLayouts" : [ ],
"allowedTemplates" : [ ],
"createUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"createWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"created" : 1731411600965,
"deleteUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"deleteWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"description" : "9 étage, 7 Quai de Caumartin, 56434 Orléans",
"hideWorkflowRecipients" : false,
"id" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"isDefault" : false,
"isDisabled" : false,
"layoutSelectionMode" : "anyOrNull",
"name" : "User-friendly regional superstructure",
"templateSelectionMode" : "anyOrNull",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updateUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"updateWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"updated" : 1731411600965,
"userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer" ],
"viewUserAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewWorkflowAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ]
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the group. |
items[].tenantId |
String | The identifier of the tenant the group belongs to. |
items[].isDefault |
Boolean | Whether or not the group is the default group for the tenant. |
items[].name |
String | The name of the group. |
items[].description |
String optional | The description of the group. |
items[].isDisabled |
Boolean | Whether or not the group is disabled. |
items[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of a workflow are visible to the recipients in this group. |
items[].userRoles |
Array | The list of roles the users in this group are given. |
items[].templateSelectionMode |
String | Governs how the workflow creators in this group are allowed or forced to use templates. Possible values: list , listOrNull , any or anyOrNull . |
items[].allowedTemplates |
Array | The list of templates allowed to be used by the users in this group. |
items[].layoutSelectionMode |
String | Governs how the workflow creators in this group are allowed or forced to use layouts. Possible values: list , listOrNull , any or anyOrNull . |
items[].allowedLayouts |
Array | The list of workflow layouts allowed to be used by the users in this group. |
items[].createUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to create/transfer users in this group. |
items[].updateUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to update users in this group. |
items[].deleteUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to anonymize users in this group. |
items[].viewUserAuthorizedGroups |
Array | The list of group IDs whose members are allowed to retrieve, search and export users in this group. |
items[].createWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to create/transfer workflows in this group. |
items[].updateWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to update workflows in this group. |
items[].deleteWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to delete workflows in this group. |
items[].viewWorkflowAuthorizedGroups |
Array | The list of group IDs whose members are allowed to retrieve, search and export workflows in this group. |
items[].jobOperation |
String optional | The job operation currently running. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export groups
Export a search in all groups.
HTTP request
POST /api/groups/exports?text=User-friendly%20regional%20superstructure&items.id=grp_9A74eXoqQ6r8SmGHjaXUhmAc&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 186
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json userRoles}}",
"expired" : 1731498181273
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.isDefault |
The filter value(s) for the isDefault field. |
items.name |
The filter value(s) for the name field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.userRoles |
The filter value(s) for the userRoles field. |
items.viewUserAuthorizedGroups |
The filter value(s) for the viewUserAuthorizedGroups field. |
items.createUserAuthorizedGroups |
The filter value(s) for the createUserAuthorizedGroups field. |
items.updateUserAuthorizedGroups |
The filter value(s) for the updateUserAuthorizedGroups field. |
items.deleteUserAuthorizedGroups |
The filter value(s) for the deleteUserAuthorizedGroups field. |
items.viewWorkflowAuthorizedGroups |
The filter value(s) for the viewWorkflowAuthorizedGroups field. |
items.createWorkflowAuthorizedGroups |
The filter value(s) for the createWorkflowAuthorizedGroups field. |
items.updateWorkflowAuthorizedGroups |
The filter value(s) for the updateWorkflowAuthorizedGroups field. |
items.deleteWorkflowAuthorizedGroups |
The filter value(s) for the deleteWorkflowAuthorizedGroups field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_3fMb4fRjhF3ks8GihKNpNW8y
ETag: "CNpX8Weq7fhAAhuWs4SD7RDd"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 609
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731411781275,
"expired" : 1731498181273,
"exportOperation" : "createGroupExport",
"id" : "exp_PB74hE4BViTQojrFKCcsG3Bv",
"itemTemplate" : "{{id}},{{name}},{{json userRoles}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=User-friendly+regional+superstructure&items.id=grp_9A74eXoqQ6r8SmGHjaXUhmAc&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731411781275,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Logs
Search logs
Search in all the logs.
HTTP request
GET /api/logs?text=log_JRapBhriEsrjzQpzjL8Cn535&items.id=log_JRapBhriEsrjzQpzjL8Cn535&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.entityId |
The filter value(s) for the entityId field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.groupId |
The filter value(s) for the groupId field. |
items.userId |
The filter value(s) for the userId field. |
items.adminUser |
The filter value(s) for the adminUser field. |
items.operation |
The filter value(s) for the operation field. |
items.duration |
The filter value(s) for the duration field. |
items.errorCode |
The filter value(s) for the errorCode field. |
items.appVersion |
The filter value(s) for the appVersion field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1215
{
"items" : [ {
"appVersion" : "sgs-wm-webapp:1.13.4",
"created" : 1731412140394,
"duration" : 1,
"entityId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"errorCode" : "ConditionalUpdateFailed",
"errorDetail" : "com.lexpersona.sgs.webapp.errors.HttpError: 412 PRECONDITION_FAILED \"A condition failed in the update request.\"\n\tat com.lexpersona.sgs.wm.services.common.EntityService.update(EntityService.kt:120)\n\tat com.lexpersona.sgs.wm.services.common.EntityService$update$1.invokeSuspend(EntityService.kt)",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "log_JRapBhriEsrjzQpzjL8Cn535",
"operation" : "updateUser",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412140394,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"variables" : {
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"httpRequest" : "PATCH /api/users/usr_4aqKyeFGVZTMqH7FfFdVRD1C\nX-Forwarded-For: 127.0.0.1\nWebTestClient-Request-Id: 9421\nAuthorization: ***loginToken***\nIf-Match: \"4KGKPGwkVcrdrrpBvtJGLyZr\"\nContent-Type: application/json\nContent-Length: 3\n\n{ }",
"userIp" : "127.0.0.1"
}
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the log. |
items[].tenantId |
String optional | The identifier of the tenant the log belongs to. |
items[].groupId |
String optional | The identifier of the group of the user who created the log. |
items[].userId |
String optional | The identifier of the user who created the log. |
items[].operation |
String | The name of the performed operation. |
items[].entityId |
String optional | The identifier of the entity the performed operation was for. |
items[].variables |
Object | The logged variables. |
items[].duration |
Number | The duration of the performed operation, in ms. |
items[].errorCode |
String optional | The error code in case of a failed operation. |
items[].errorDetail |
String optional | The error detail in case of a failed operation. |
items[].appVersion |
String | The version of the Workflow Manager that performed the operation. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export logs
Export a search in all the logs.
HTTP request
POST /api/logs/exports?text=log_M19p3udGgkfwx4BpTQEi8ePz&items.id=log_M19p3udGgkfwx4BpTQEi8ePz&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 191
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{operation}},{{json variables}}",
"expired" : 1731498539237
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.entityId |
The filter value(s) for the entityId field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.groupId |
The filter value(s) for the groupId field. |
items.userId |
The filter value(s) for the userId field. |
items.adminUser |
The filter value(s) for the adminUser field. |
items.operation |
The filter value(s) for the operation field. |
items.duration |
The filter value(s) for the duration field. |
items.errorCode |
The filter value(s) for the errorCode field. |
items.appVersion |
The filter value(s) for the appVersion field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_AjbQktUPcUhFN7EdjTQMDHCT
ETag: "7GcstCmdnRsM5mW6EMrVrjLy"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 603
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731412139239,
"expired" : 1731498539237,
"exportOperation" : "createLogExport",
"id" : "exp_2DpC6goP5Y8o4TdAdsfxZXed",
"itemTemplate" : "{{id}},{{operation}},{{json variables}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=log_M19p3udGgkfwx4BpTQEi8ePz&items.id=log_M19p3udGgkfwx4BpTQEi8ePz&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731412139239,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Metadata
Retrieve metadata mapping
Retrieve the metadata mapping for a tenant.
HTTP request
GET /api/tenants/ten_8ChR8HCQr7P9NQ7DLMe2k9xh/dataMapping HTTP/1.1
Authorization: Bearer act_2ezD47t7fwfRdz4tThCCfSw3.6cnmXwbVKvqnXKeJF5ZFpGZDEuRtTb6dfvn5i3A7HuwHtQPYwc7tpoNAG9aVnY4Z
Path parameters:
/api/tenants/{tenantId}/dataMapping
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "DbvA7p4NBufKJENyatRKoBrC"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1349
{
"data1" : {
"description" : "The name of the safe storage.",
"name" : "Safe name",
"type" : "text"
},
"data2" : {
"description" : "A code with 4 to 8 digits.",
"name" : "Code",
"pattern" : "^\\d{4,8}$",
"type" : "text"
},
"data3" : {
"description" : "A multiline comment.",
"name" : "Comment",
"type" : "textarea"
},
"data4" : {
"description" : "Whether or not it is confirmed.",
"name" : "Confirmed",
"type" : "checkbox"
},
"data5" : {
"description" : "Région de l'agence",
"name" : "Région",
"options" : [ {
"value" : "Île-de-France"
}, {
"value" : "Normandie"
}, {
"value" : "Bretagne"
} ],
"type" : "select"
},
"data6" : {
"description" : "Département de l'agence",
"name" : "Département",
"options" : [ {
"parentValue" : "Île-de-France",
"value" : "Paris"
}, {
"parentValue" : "Île-de-France",
"value" : "Hauts-De-Seine"
}, {
"parentValue" : "Île-de-France",
"value" : "Yvelines"
}, {
"parentValue" : "Normandie",
"value" : "Manche"
}, {
"parentValue" : "Normandie",
"value" : "Seine-Maritime"
}, {
"parentValue" : "Bretagne",
"value" : "Finistère"
} ],
"parent" : "data5",
"type" : "select"
}
}
Fields:
Path | Type | Description |
---|---|---|
data1 |
Object optional | The mapping for the data1 slot. |
data2 |
Object optional | The mapping for the data2 slot. |
data3 |
Object optional | The mapping for the data3 slot. |
data4 |
Object optional | The mapping for the data4 slot. |
data5 |
Object optional | The mapping for the data5 slot. |
data6 |
Object optional | The mapping for the data6 slot. |
data7 |
Object optional | The mapping for the data7 slot. |
data8 |
Object optional | The mapping for the data8 slot. |
data9 |
Object optional | The mapping for the data9 slot. |
data10 |
Object optional | The mapping for the data10 slot. |
data11 |
Object optional | The mapping for the data11 slot. |
data12 |
Object optional | The mapping for the data12 slot. |
data13 |
Object optional | The mapping for the data13 slot. |
data14 |
Object optional | The mapping for the data14 slot. |
data15 |
Object optional | The mapping for the data15 slot. |
data16 |
Object optional | The mapping for the data16 slot. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Update metadata mapping
Update the metadata mapping for a tenant.
HTTP request
PUT /api/tenants/ten_AsvAKxFcCJ4N69xVnH7oUpJM/dataMapping HTTP/1.1
Authorization: Bearer act_7GBQXFok2FX5s97hRQ4ZUj3B.58ny8R5LhM41BQc5v1VSGqG9z3FdbYeeCpQCgH9yGz7rmf1HopGhkUScdBkraJid
Content-Type: application/json
Content-Length: 1349
{
"data1" : {
"name" : "Safe name",
"description" : "The name of the safe storage.",
"type" : "text"
},
"data2" : {
"name" : "Code",
"description" : "A code with 4 to 8 digits.",
"type" : "text",
"pattern" : "^\\d{4,8}$"
},
"data3" : {
"name" : "Comment",
"description" : "A multiline comment.",
"type" : "textarea"
},
"data4" : {
"name" : "Confirmed",
"description" : "Whether or not it is confirmed.",
"type" : "checkbox"
},
"data5" : {
"name" : "Région",
"description" : "Région de l'agence",
"type" : "select",
"options" : [ {
"value" : "Île-de-France"
}, {
"value" : "Normandie"
}, {
"value" : "Bretagne"
} ]
},
"data6" : {
"name" : "Département",
"description" : "Département de l'agence",
"parent" : "data5",
"type" : "select",
"options" : [ {
"parentValue" : "Île-de-France",
"value" : "Paris"
}, {
"parentValue" : "Île-de-France",
"value" : "Hauts-De-Seine"
}, {
"parentValue" : "Île-de-France",
"value" : "Yvelines"
}, {
"parentValue" : "Normandie",
"value" : "Manche"
}, {
"parentValue" : "Normandie",
"value" : "Seine-Maritime"
}, {
"parentValue" : "Bretagne",
"value" : "Finistère"
} ]
}
}
Path parameters:
/api/tenants/{tenantId}/dataMapping
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
data1 |
Object optional | The mapping for the data1 slot. |
data2 |
Object optional | The mapping for the data2 slot. |
data3 |
Object optional | The mapping for the data3 slot. |
data4 |
Object optional | The mapping for the data4 slot. |
data5 |
Object optional | The mapping for the data5 slot. |
data6 |
Object optional | The mapping for the data6 slot. |
data7 |
Object optional | The mapping for the data7 slot. |
data8 |
Object optional | The mapping for the data8 slot. |
data9 |
Object optional | The mapping for the data9 slot. |
data10 |
Object optional | The mapping for the data10 slot. |
data11 |
Object optional | The mapping for the data11 slot. |
data12 |
Object optional | The mapping for the data12 slot. |
data13 |
Object optional | The mapping for the data13 slot. |
data14 |
Object optional | The mapping for the data14 slot. |
data15 |
Object optional | The mapping for the data15 slot. |
data16 |
Object optional | The mapping for the data16 slot. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_7zDRgM9VK44VDu3HmqiEfsv9
ETag: "DbvA7p4NBufKJENyatRKoBrC"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1349
{
"data1" : {
"description" : "The name of the safe storage.",
"name" : "Safe name",
"type" : "text"
},
"data2" : {
"description" : "A code with 4 to 8 digits.",
"name" : "Code",
"pattern" : "^\\d{4,8}$",
"type" : "text"
},
"data3" : {
"description" : "A multiline comment.",
"name" : "Comment",
"type" : "textarea"
},
"data4" : {
"description" : "Whether or not it is confirmed.",
"name" : "Confirmed",
"type" : "checkbox"
},
"data5" : {
"description" : "Région de l'agence",
"name" : "Région",
"options" : [ {
"value" : "Île-de-France"
}, {
"value" : "Normandie"
}, {
"value" : "Bretagne"
} ],
"type" : "select"
},
"data6" : {
"description" : "Département de l'agence",
"name" : "Département",
"options" : [ {
"parentValue" : "Île-de-France",
"value" : "Paris"
}, {
"parentValue" : "Île-de-France",
"value" : "Hauts-De-Seine"
}, {
"parentValue" : "Île-de-France",
"value" : "Yvelines"
}, {
"parentValue" : "Normandie",
"value" : "Manche"
}, {
"parentValue" : "Normandie",
"value" : "Seine-Maritime"
}, {
"parentValue" : "Bretagne",
"value" : "Finistère"
} ],
"parent" : "data5",
"type" : "select"
}
}
Fields:
Path | Type | Description |
---|---|---|
data1 |
Object optional | The mapping for the data1 slot. |
data2 |
Object optional | The mapping for the data2 slot. |
data3 |
Object optional | The mapping for the data3 slot. |
data4 |
Object optional | The mapping for the data4 slot. |
data5 |
Object optional | The mapping for the data5 slot. |
data6 |
Object optional | The mapping for the data6 slot. |
data7 |
Object optional | The mapping for the data7 slot. |
data8 |
Object optional | The mapping for the data8 slot. |
data9 |
Object optional | The mapping for the data9 slot. |
data10 |
Object optional | The mapping for the data10 slot. |
data11 |
Object optional | The mapping for the data11 slot. |
data12 |
Object optional | The mapping for the data12 slot. |
data13 |
Object optional | The mapping for the data13 slot. |
data14 |
Object optional | The mapping for the data14 slot. |
data15 |
Object optional | The mapping for the data15 slot. |
data16 |
Object optional | The mapping for the data16 slot. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Notifications
Retrieve notification
Retrieve an existing notification.
HTTP request
GET /api/notifications/not_DBs5UbXy8wkfVvFBfQHPNkJA HTTP/1.1
Authorization: Bearer act_HSDNs5TsHdBMhVVAxEwpsAB1.5oWe4yvTziquS5RnAV6VaSGTd3cbdM5vPaPCHxbThtuegmP3maim3DcWx8UM6M6r
Path parameters:
/api/notifications/{notificationId}
Parameter | Description |
---|---|
notificationId |
The identifier of the notification. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "FHhAsSDksKLM7rhZeA7vKEnn"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 899
{
"created" : 1731412026488,
"creator" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"creatorName" : "Rogelio Breitenberg",
"creatorPictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"eventType" : "recipientInvite",
"id" : "not_DBs5UbXy8wkfVvFBfQHPNkJA",
"isUnread" : true,
"linkUrl" : "https://klein.name/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0FiN3BkOXVjUVk0VGh0cVp1Z...",
"preferredLocale" : "fr",
"stepType" : "signature",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412026524,
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn",
"workflowId" : "wfl_QHK7XKoWvCetmghdSkgU86JE",
"workflowName" : "Rustic Rubber Coat"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the notification. |
tenantId |
String | The identifier of the tenant the notification belongs to. |
userId |
String optional | The identifier of the user the notification belongs to. |
email |
String optional | The email of the recipient the notification is about. |
preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
creator |
String optional | The identifier of the user who created the notification. |
creatorName |
String optional | The name of the user who created the notification. |
creatorPictureResourceId |
String optional | The picture resource identifier of the user who created the notification. |
workflowId |
String optional | The identifier of the workflow the notification is about. |
stepId |
String optional | The identifier of the workflow step the notification is about, if relevant. |
workflowName |
String optional | The name of the workflow the notification is about. |
stepType |
String optional | The type of step the notification is about, either signature or approval . |
eventType |
String | The type of event the notification is about. |
linkUrl |
String optional | The URL of the page linked with the notification. |
isUnread |
Boolean | Whether or not the notification has been read. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
NotificationNotFound | The specified notification can not be found. |
Update notification
Update an existing notification.
HTTP request
PATCH /api/notifications/not_9uVdpcuKzycZYCu5hXd1o92A HTTP/1.1
Authorization: Bearer act_HSDNs5TsHdBMhVVAxEwpsAB1.5oWe4yvTziquS5RnAV6VaSGTd3cbdM5vPaPCHxbThtuegmP3maim3DcWx8UM6M6r
Content-Type: application/json
Content-Length: 24
{
"isUnread" : false
}
Path parameters:
/api/notifications/{notificationId}
Parameter | Description |
---|---|
notificationId |
The identifier of the notification. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
isUnread |
Boolean | Whether or not the notification has been read. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_KnhFPrZYPLNfYscku4rZKJAA
ETag: "85xd98uUKmuV17VEfbMfKizT"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 899
{
"created" : 1731412037585,
"creator" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"creatorName" : "Rogelio Breitenberg",
"creatorPictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"eventType" : "recipientInvite",
"id" : "not_9uVdpcuKzycZYCu5hXd1o92A",
"isUnread" : false,
"linkUrl" : "https://klein.name/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwXzhYV2k0dm51ejhyVk0yejVmV...",
"preferredLocale" : "fr",
"stepType" : "signature",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412037669,
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn",
"workflowId" : "wfl_D8AP47LNCSJRe8J6Hphq2iFn",
"workflowName" : "Durable Silk Coat"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the notification. |
tenantId |
String | The identifier of the tenant the notification belongs to. |
userId |
String optional | The identifier of the user the notification belongs to. |
email |
String optional | The email of the recipient the notification is about. |
preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
creator |
String optional | The identifier of the user who created the notification. |
creatorName |
String optional | The name of the user who created the notification. |
creatorPictureResourceId |
String optional | The picture resource identifier of the user who created the notification. |
workflowId |
String optional | The identifier of the workflow the notification is about. |
stepId |
String optional | The identifier of the workflow step the notification is about, if relevant. |
workflowName |
String optional | The name of the workflow the notification is about. |
stepType |
String optional | The type of step the notification is about, either signature or approval . |
eventType |
String | The type of event the notification is about. |
linkUrl |
String optional | The URL of the page linked with the notification. |
isUnread |
Boolean | Whether or not the notification has been read. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
NotificationNotFound | The specified notification can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Search notifications
Search in all the notifications.
HTTP request
GET /api/notifications?text=wfl_MaBbhGj9UPqQsxxrX5V1Jm9G&items.id=not_7XNjDRUAL5s9NwMPwmZP927o&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_HSDNs5TsHdBMhVVAxEwpsAB1.5oWe4yvTziquS5RnAV6VaSGTd3cbdM5vPaPCHxbThtuegmP3maim3DcWx8UM6M6r
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.userId |
The filter value(s) for the userId field. |
items.email |
The filter value(s) for the email field. |
items.creator |
The filter value(s) for the creator field. |
items.workflowId |
The filter value(s) for the workflowId field. |
items.eventType |
The filter value(s) for the eventType field. |
items.isUnread |
The filter value(s) for the isUnread field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1019
{
"items" : [ {
"created" : 1731411911254,
"creator" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"creatorName" : "Rogelio Breitenberg",
"creatorPictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"eventType" : "recipientInvite",
"id" : "not_7XNjDRUAL5s9NwMPwmZP927o",
"isUnread" : true,
"linkUrl" : "https://klein.name/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0QyTjczMmY4YzREZDlicVh6Y...",
"preferredLocale" : "fr",
"stepType" : "signature",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411911293,
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn",
"workflowId" : "wfl_MaBbhGj9UPqQsxxrX5V1Jm9G",
"workflowName" : "Heavy Duty Iron Keyboard"
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the notification. |
items[].tenantId |
String | The identifier of the tenant the notification belongs to. |
items[].userId |
String optional | The identifier of the user the notification belongs to. |
items[].email |
String optional | The email of the recipient the notification is about. |
items[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
items[].creator |
String optional | The identifier of the user who created the notification. |
items[].creatorName |
String optional | The name of the user who created the notification. |
items[].creatorPictureResourceId |
String optional | The picture resource identifier of the user who created the notification. |
items[].workflowId |
String optional | The identifier of the workflow the notification is about. |
items[].stepId |
String optional | The identifier of the workflow step the notification is about, if relevant. |
items[].workflowName |
String optional | The name of the workflow the notification is about. |
items[].stepType |
String optional | The type of step the notification is about, either signature or approval . |
items[].eventType |
String | The type of event the notification is about. |
items[].linkUrl |
String optional | The URL of the page linked with the notification. |
items[].isUnread |
Boolean | Whether or not the notification has been read. |
items[].jobOperation |
String optional | The job operation currently running. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Read notifications
Read all the notifications.
HTTP request
PATCH /api/unreadNotifications?text=wfl_5URHjTpEcbBiSfLBdtYdQ6ip&items.id=not_JCjfVM7P4Cva4aExNnWhTuPu HTTP/1.1
Authorization: Bearer act_HSDNs5TsHdBMhVVAxEwpsAB1.5oWe4yvTziquS5RnAV6VaSGTd3cbdM5vPaPCHxbThtuegmP3maim3DcWx8UM6M6r
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.userId |
The filter value(s) for the userId field. |
items.email |
The filter value(s) for the email field. |
items.creator |
The filter value(s) for the creator field. |
items.workflowId |
The filter value(s) for the workflowId field. |
items.eventType |
The filter value(s) for the eventType field. |
items.isUnread |
The filter value(s) for the isUnread field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
HTTP response
HTTP/1.1 200 OK
Content-Type: text/plain;charset=UTF-8
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Organizations
Create organization
Create an organization.
HTTP request
POST /api/tenants/ten_DyvBSLey9Fnh65AGLLGoDB8D/organizations HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 142
{
"name" : "Fontaine EURL",
"organizationIdentifier" : "FR9550940453",
"additionalInfo" : "9046 Passage Laffitte, 65790 Saint-Nazaire"
}
Path parameters:
/api/tenants/{tenantId}/organizations
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
name |
String | The name of the organization. |
organizationIdentifier |
String | Natural person identifier (starting with VAT or NTR ) as defined in ETSI EN 319 412-1. For example: NTRFR-480622257 . |
additionalInfo |
String optional | Additional information about the organization. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_3jNWschs6HZAHg1nvP4ysMEU
ETag: "JBqAzcuj2J5HHwS3as3ntWpA"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 288
{
"additionalInfo" : "9046 Passage Laffitte, 65790 Saint-Nazaire",
"created" : 1731411776275,
"id" : "org_MZWh4VZAs3iodgVMznYqn1Jj",
"name" : "Fontaine EURL",
"organizationIdentifier" : "FR9550940453",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411776275
}
Fields:
Path | Type | Description |
---|---|---|
tenantId |
String | The identifier of the tenant the organization belongs to. |
id |
String | The identifier of the organization. |
name |
String | The name of the organization. |
organizationIdentifier |
String | Natural person identifier (starting with VAT or NTR ) as defined in ETSI EN 319 412-1. For example: NTRFR-480622257 . |
additionalInfo |
String optional | Additional information about the organization. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
400 |
OrganizationIdentifierExists | An organization with the specified identifier already exists. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve organization
Retrieve an existing organization.
HTTP request
GET /api/organizations/org_AAC9Z4vf3wuM3NivNpVqGhhe HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/organizations/{organizationId}
Parameter | Description |
---|---|
organizationId |
The identifier of the organization. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "BJ7RHLeMdjrhyfxVSF1QrB9n"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 289
{
"additionalInfo" : "6 étage, 1956 Rue de Tilsitt, 46507 Metz",
"created" : 1731411600497,
"id" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"name" : "Collet et Marie",
"organizationIdentifier" : "FR5777129543",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411600497
}
Fields:
Path | Type | Description |
---|---|---|
tenantId |
String | The identifier of the tenant the organization belongs to. |
id |
String | The identifier of the organization. |
name |
String | The name of the organization. |
organizationIdentifier |
String | Natural person identifier (starting with VAT or NTR ) as defined in ETSI EN 319 412-1. For example: NTRFR-480622257 . |
additionalInfo |
String optional | Additional information about the organization. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
OrganizationNotFound | The specified organization can not be found. |
Update organization
Update an existing organization.
HTTP request
PATCH /api/organizations/org_Bx5n1tBFVJkpHtVi9NawMwZq HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "5SDPexo3sjuNA9uAy6btrx4c"
Content-Type: application/json
Content-Length: 154
{
"name" : "Duval et Dubois",
"organizationIdentifier" : "FR6742010350",
"additionalInfo" : "Apt. 870, 6 Boulevard Pastourelle, 91413 Dunkerque14"
}
Path parameters:
/api/organizations/{organizationId}
Parameter | Description |
---|---|
organizationId |
The identifier of the organization. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
name |
String optional | The name of the organization. |
organizationIdentifier |
String optional | Natural person identifier (starting with VAT or NTR ) as defined in ETSI EN 319 412-1. For example: NTRFR-480622257 . |
additionalInfo |
String optional | Additional information about the organization. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_955Huiy2a1Kh87NHwt5ittJ6
ETag: "FLUZjsuX8xrdjkzpV3b82pYT"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 300
{
"additionalInfo" : "Apt. 870, 6 Boulevard Pastourelle, 91413 Dunkerque14",
"created" : 1731411767743,
"id" : "org_Bx5n1tBFVJkpHtVi9NawMwZq",
"name" : "Duval et Dubois",
"organizationIdentifier" : "FR6742010350",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411767765
}
Fields:
Path | Type | Description |
---|---|---|
tenantId |
String | The identifier of the tenant the organization belongs to. |
id |
String | The identifier of the organization. |
name |
String | The name of the organization. |
organizationIdentifier |
String | Natural person identifier (starting with VAT or NTR ) as defined in ETSI EN 319 412-1. For example: NTRFR-480622257 . |
additionalInfo |
String optional | Additional information about the organization. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
400 |
OrganizationIdentifierExists | An organization with the specified identifier already exists. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
OrganizationNotFound | The specified organization can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Delete organization
Delete an existing organization.
HTTP request
DELETE /api/organizations/org_A7mqZi2a8FF1avLruNVXKg2w HTTP/1.1
Authorization: Bearer act_BG3pERGqk8pvWg5QXxVM5U6Z.44kyxU8ZRwVT2Ks757QWup8K9tjnZDyGFW3n5RBq5f8y2frDjrtyFFp7VBgdZWab
If-Match: "GHt3jvrKeFGLxUaWZgCY1qv3"
Path parameters:
/api/organizations/{organizationId}
Parameter | Description |
---|---|
organizationId |
The identifier of the organization. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_3oWjGtBUArC45cM8WrjjFje3
ETag: "7gTAkkUnPzE6Piuu51DoQdqs"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 325
{
"additionalInfo" : "245 Avenue Laffitte, 87759 Orléans",
"created" : 1731411778456,
"id" : "org_A7mqZi2a8FF1avLruNVXKg2w",
"jobOperation" : "purgeOrganization",
"name" : "Perrin et Gautier",
"organizationIdentifier" : "FR3763660614",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411778482
}
Fields:
Path | Type | Description |
---|---|---|
tenantId |
String | The identifier of the tenant the organization belongs to. |
id |
String | The identifier of the organization. |
name |
String | The name of the organization. |
organizationIdentifier |
String | Natural person identifier (starting with VAT or NTR ) as defined in ETSI EN 319 412-1. For example: NTRFR-480622257 . |
additionalInfo |
String optional | Additional information about the organization. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
OrganizationNotFound | The specified organization can not be found. |
Search organizations
Search in all organizations.
HTTP request
GET /api/organizations?text=Philippe%20et%20Giraud&items.id=org_unaYdtNB1ScnuhirQcrj937U&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.name |
The filter value(s) for the name field. |
items.organizationIdentifier |
The filter value(s) for the organizationIdentifier field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 416
{
"items" : [ {
"additionalInfo" : "8 étage, 146 Quai du Faubourg-Saint-Denis, 21785 Neuilly-sur-Seine",
"created" : 1731411777319,
"id" : "org_unaYdtNB1ScnuhirQcrj937U",
"name" : "Philippe et Giraud",
"organizationIdentifier" : "FR5670605885",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411777319
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].tenantId |
String | The identifier of the tenant the organization belongs to. |
items[].id |
String | The identifier of the organization. |
items[].name |
String | The name of the organization. |
items[].organizationIdentifier |
String | Natural person identifier (starting with VAT or NTR ) as defined in ETSI EN 319 412-1. For example: NTRFR-480622257 . |
items[].additionalInfo |
String optional | Additional information about the organization. |
items[].jobOperation |
String optional | The job operation currently running. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export organizations
Export a search in all organizations.
HTTP request
POST /api/organizations/exports?text=Collet%20et%20Marie&items.id=org_AAC9Z4vf3wuM3NivNpVqGhhe&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 167
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}}",
"expired" : 1731498175542
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.name |
The filter value(s) for the name field. |
items.organizationIdentifier |
The filter value(s) for the organizationIdentifier field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_BPqyuarfQSpARCZZhE92Kigp
ETag: "AYmFwgu7fqaHcM4smxwYjJvV"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 575
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731411775544,
"expired" : 1731498175542,
"exportOperation" : "createOrganizationExport",
"id" : "exp_8gwBzfs4uwzRus3WXfqsrJWL",
"itemTemplate" : "{{id}},{{name}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Collet+et+Marie&items.id=org_AAC9Z4vf3wuM3NivNpVqGhhe&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731411775544,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Settings
Retrieve default settings
Retrieve the default settings for all tenants.
HTTP request
GET /api/defaultSettings HTTP/1.1
HTTP response
HTTP/1.1 200 OK
ETag: "4X4bxVft6f28VXRrFiKafKJm"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 306545
{
"anonymizedUsersInStepEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> A step contains anonymized recipients only </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>A step in the following workflow contains anonymised recipients only which will prevent the workflow from finishing : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence. <br> See you soon. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow contains only anonymized recipients"
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> Une étape contient uniquement des destinataires anonymisés </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Une étape du parapheur suivant contient uniquement des destinataires anonymisés ce qui empêchera le parapheur de se terminer : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance. <br> À bientôt. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un parapheur ne contient que des destinataires anonymisés"
}
},
"approbationFinishedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has just approved\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just approved the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has just approved."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de valider."
}
},
"approbationInviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n New approbation request\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just sent you an\n approbation request for the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to approve these document(s), click on the above button\n or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link that is valid for {{durationToDays duration=step.validityPeriod singular='day' plural='days' zero='less than 24 hours'}} which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "New approbation request from e-Parapheur."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de validation\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à valider le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de valider ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de validation sur e-Parapheur."
}
},
"approbationRefusedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has refused to approve\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has refused to approve the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has refused to approve."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de valider."
}
},
"approbationUninviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Your approbation is no longer needed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>Your approbation is no longer needed in the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Your approbation is no longer needed."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre validation n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre validation n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre validation n'est plus requise."
}
},
"coManagerAddedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n The role of comanager has been assigned to you on a workflow\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hello,</p>\n <p>You have been designated as co-manager of the following workflow :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>To view this workflow, please click on the button above or copy the following address and paste it into the address bar of your browser :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "The role of comanager has been assigned to you on a workflow"
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été attribué sur un parapheur\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
}
},
"coManagerRemovedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n The role of co-manager has been removed from you on a workflow.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hello,</p>\n <p>You are no longer co-manager of the following workflow :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "The role of co-manager has been removed from you on a workflow"
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
}
},
"commentCreatedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A comment was just left\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just left a comment in the\n following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A comment was just left."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"commentCreatedSecuredEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A comment was just left\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just left a comment in the\n following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A comment was just left."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"preferredLocales" : [ "fr" ],
"signatureFinishedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has just signed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just signed the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has just signed."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de signer."
}
},
"signatureInviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n New signature request\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just sent you a\n signature request for the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to sign these document(s), click on the above button\n or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link that is valid for {{durationToDays duration=step.validityPeriod singular='day' plural='days' zero='less than 24 hours'}} which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "New signature request from Lex Persona."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de signature\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à signer le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de signer ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de signature sur e-Parapheur."
}
},
"signatureRefusedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has refused to sign\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has refused to sign the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>The reason why the signer refused to sign is:\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has refused to sign."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>La raison pour laquelle le signataire a refusé de signer est :\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de signer."
}
},
"signatureUninviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Your signature is no longer needed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>Your signature is no longer needed in the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Your signature is no longer needed."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre signature n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre signature n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre signature n'est plus requise."
}
},
"workflowFinishedDownloadLinkEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just finished\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just finished:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Download the signed document(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to download the signed document(s), click on the above\n button or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just finished."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Télécharger le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de télécharger le(s) document(s) signé(s), veuillez cliquer\n sur le bouton ci-dessus ou copier l'adresse suivante et la coller\n dans la barre d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowFinishedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just finished\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just finished:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just finished."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowStartedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just started\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just started:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just started."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être démarré\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être démarré :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être démarré."
}
},
"workflowStoppedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just stopped\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just stopped:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just stopped."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être arrêté\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être arrêté :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être arrêté."
}
}
}
Fields:
Path | Type | Description |
---|---|---|
preferredLocales |
Array | The preferred locales. |
approbationInviteEmail |
Object | The translations for the approbation invite emails. |
approbationUninviteEmail |
Object | The translations for the approbation uninvite emails. |
approbationRefusedEmail |
Object | The translations for the approbation refusal notification emails. |
approbationFinishedEmail |
Object | The translations for the approbation finished notification emails. |
signatureInviteEmail |
Object | The translations for the signature invite emails. |
signatureUninviteEmail |
Object | The translations for the signature uninvite emails. |
signatureRefusedEmail |
Object | The translations for the signature refusal notification emails. |
signatureFinishedEmail |
Object | The translations for the signature finished notification emails. |
workflowStartedEmail |
Object | The translations for the workflow started notification emails. |
workflowStoppedEmail |
Object | The translations for the workflow stopped notification emails. |
workflowFinishedEmail |
Object | The translations for the workflow finished notification emails. |
anonymizedUsersInStepEmail |
Object | The translations for the anonymized users in step notification emails. |
workflowFinishedDownloadLinkEmail |
Object | The translations for the signed documents download emails. |
commentCreatedEmail |
Object | The translations for the comment created notification emails. |
commentCreatedSecuredEmail |
Object | The translations for the secured comment created notification emails. |
coManagerAddedEmail |
Object | The translations for the coManager has been added emails. |
coManagerRemovedEmail |
Object | The translations for the coManager has been removed emails. |
Retrieve tenant settings
Retrieve the settings for a tenant.
HTTP request
GET /api/tenants/ten_3xiKF7fZAuPmxFsSvk7Acg9d/settings HTTP/1.1
Authorization: Bearer act_LyssERiD9UaHwXhQQhtNQzza.4EaUxGG8rD22DxLhgWyMgQsm8JEUFwj5QaxLdcw1xaspbZ24oNFrLzL7NFR6infG
Path parameters:
/api/tenants/{tenantId}/settings
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "3hTLzKgyutoczU3Du7X1vq75"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 154010
{
"anonymizedUsersInStepEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> Une étape contient uniquement des destinataires anonymisés </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Une étape du parapheur suivant contient uniquement des destinataires anonymisés ce qui empêchera le parapheur de se terminer : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance. <br> À bientôt. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un parapheur ne contient que des destinataires anonymisés"
}
},
"approbationFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de valider."
}
},
"approbationInviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de validation\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à valider le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de valider ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de validation sur e-Parapheur."
}
},
"approbationRefusedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de valider."
}
},
"approbationUninviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre validation n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre validation n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre validation n'est plus requise."
}
},
"coManagerAddedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été attribué sur un parapheur\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
}
},
"coManagerRemovedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
}
},
"commentCreatedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"commentCreatedSecuredEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"preferredLocales" : [ "fr", "en" ],
"signatureFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de signer."
}
},
"signatureInviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de signature\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à signer le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de signer ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de signature sur e-Parapheur."
}
},
"signatureRefusedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>La raison pour laquelle le signataire a refusé de signer est :\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de signer."
}
},
"signatureUninviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre signature n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre signature n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre signature n'est plus requise."
}
},
"workflowFinishedDownloadLinkEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Télécharger le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de télécharger le(s) document(s) signé(s), veuillez cliquer\n sur le bouton ci-dessus ou copier l'adresse suivante et la coller\n dans la barre d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowStartedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être démarré\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être démarré :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être démarré."
}
},
"workflowStoppedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être arrêté\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être arrêté :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être arrêté."
}
}
}
Fields:
Path | Type | Description |
---|---|---|
preferredLocales |
Array | The preferred locales. |
approbationInviteEmail |
Object | The translations for the approbation invite emails. |
approbationUninviteEmail |
Object | The translations for the approbation uninvite emails. |
approbationRefusedEmail |
Object | The translations for the approbation refusal notification emails. |
approbationFinishedEmail |
Object | The translations for the approbation finished notification emails. |
signatureInviteEmail |
Object | The translations for the signature invite emails. |
signatureUninviteEmail |
Object | The translations for the signature uninvite emails. |
signatureRefusedEmail |
Object | The translations for the signature refusal notification emails. |
signatureFinishedEmail |
Object | The translations for the signature finished notification emails. |
workflowStartedEmail |
Object | The translations for the workflow started notification emails. |
workflowStoppedEmail |
Object | The translations for the workflow stopped notification emails. |
workflowFinishedEmail |
Object | The translations for the workflow finished notification emails. |
anonymizedUsersInStepEmail |
Object | The translations for the anonymized users in step notification emails. |
workflowFinishedDownloadLinkEmail |
Object | The translations for the signed documents download emails. |
commentCreatedEmail |
Object | The translations for the comment created notification emails. |
commentCreatedSecuredEmail |
Object | The translations for the secured comment created notification emails. |
coManagerAddedEmail |
Object | The translations for the coManager has been added emails. |
coManagerRemovedEmail |
Object | The translations for the coManager has been removed emails. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve applied tenant settings
Retrieve the default settings overridden by the tenant settings.
HTTP request
GET /api/tenants/ten_DyvBSLey9Fnh65AGLLGoDB8D/appliedSettings HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/tenants/{tenantId}/appliedSettings
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "4X4bxVft6f28VXRrFiKafKJm"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 306545
{
"anonymizedUsersInStepEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> A step contains anonymized recipients only </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>A step in the following workflow contains anonymised recipients only which will prevent the workflow from finishing : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence. <br> See you soon. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow contains only anonymized recipients"
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> Une étape contient uniquement des destinataires anonymisés </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Une étape du parapheur suivant contient uniquement des destinataires anonymisés ce qui empêchera le parapheur de se terminer : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance. <br> À bientôt. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un parapheur ne contient que des destinataires anonymisés"
}
},
"approbationFinishedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has just approved\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just approved the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has just approved."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de valider."
}
},
"approbationInviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n New approbation request\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just sent you an\n approbation request for the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to approve these document(s), click on the above button\n or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link that is valid for {{durationToDays duration=step.validityPeriod singular='day' plural='days' zero='less than 24 hours'}} which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "New approbation request from e-Parapheur."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de validation\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à valider le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de valider ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de validation sur e-Parapheur."
}
},
"approbationRefusedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has refused to approve\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has refused to approve the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has refused to approve."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de valider."
}
},
"approbationUninviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Your approbation is no longer needed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>Your approbation is no longer needed in the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Your approbation is no longer needed."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre validation n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre validation n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre validation n'est plus requise."
}
},
"coManagerAddedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n The role of comanager has been assigned to you on a workflow\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hello,</p>\n <p>You have been designated as co-manager of the following workflow :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>To view this workflow, please click on the button above or copy the following address and paste it into the address bar of your browser :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "The role of comanager has been assigned to you on a workflow"
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été attribué sur un parapheur\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
}
},
"coManagerRemovedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n The role of co-manager has been removed from you on a workflow.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hello,</p>\n <p>You are no longer co-manager of the following workflow :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "The role of co-manager has been removed from you on a workflow"
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
}
},
"commentCreatedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A comment was just left\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just left a comment in the\n following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A comment was just left."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"commentCreatedSecuredEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A comment was just left\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just left a comment in the\n following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A comment was just left."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"preferredLocales" : [ "fr" ],
"signatureFinishedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has just signed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just signed the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has just signed."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de signer."
}
},
"signatureInviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n New signature request\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just sent you a\n signature request for the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to sign these document(s), click on the above button\n or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link that is valid for {{durationToDays duration=step.validityPeriod singular='day' plural='days' zero='less than 24 hours'}} which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "New signature request from Lex Persona."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de signature\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à signer le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de signer ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de signature sur e-Parapheur."
}
},
"signatureRefusedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has refused to sign\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has refused to sign the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>The reason why the signer refused to sign is:\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has refused to sign."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>La raison pour laquelle le signataire a refusé de signer est :\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de signer."
}
},
"signatureUninviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Your signature is no longer needed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>Your signature is no longer needed in the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Your signature is no longer needed."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre signature n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre signature n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre signature n'est plus requise."
}
},
"workflowFinishedDownloadLinkEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just finished\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just finished:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Download the signed document(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to download the signed document(s), click on the above\n button or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just finished."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Télécharger le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de télécharger le(s) document(s) signé(s), veuillez cliquer\n sur le bouton ci-dessus ou copier l'adresse suivante et la coller\n dans la barre d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowFinishedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just finished\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just finished:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just finished."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowStartedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just started\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just started:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just started."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être démarré\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être démarré :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être démarré."
}
},
"workflowStoppedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just stopped\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just stopped:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just stopped."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être arrêté\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être arrêté :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être arrêté."
}
}
}
Fields:
Path | Type | Description |
---|---|---|
preferredLocales |
Array | The preferred locales. |
approbationInviteEmail |
Object | The translations for the approbation invite emails. |
approbationUninviteEmail |
Object | The translations for the approbation uninvite emails. |
approbationRefusedEmail |
Object | The translations for the approbation refusal notification emails. |
approbationFinishedEmail |
Object | The translations for the approbation finished notification emails. |
signatureInviteEmail |
Object | The translations for the signature invite emails. |
signatureUninviteEmail |
Object | The translations for the signature uninvite emails. |
signatureRefusedEmail |
Object | The translations for the signature refusal notification emails. |
signatureFinishedEmail |
Object | The translations for the signature finished notification emails. |
workflowStartedEmail |
Object | The translations for the workflow started notification emails. |
workflowStoppedEmail |
Object | The translations for the workflow stopped notification emails. |
workflowFinishedEmail |
Object | The translations for the workflow finished notification emails. |
anonymizedUsersInStepEmail |
Object | The translations for the anonymized users in step notification emails. |
workflowFinishedDownloadLinkEmail |
Object | The translations for the signed documents download emails. |
commentCreatedEmail |
Object | The translations for the comment created notification emails. |
commentCreatedSecuredEmail |
Object | The translations for the secured comment created notification emails. |
coManagerAddedEmail |
Object | The translations for the coManager has been added emails. |
coManagerRemovedEmail |
Object | The translations for the coManager has been removed emails. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Update tenant settings
Update the settings for a tenant.
HTTP request
PUT /api/tenants/ten_GorEfduHpP2GwMnxoHyZei7u/settings HTTP/1.1
Authorization: Bearer act_7KNxfpUPZhzErfZ7WFwFT7Rp.3ABwv2ScFt6nsWtPyS4nyXcoY5NXqZhvGvQGbEXHhFd5AxpZU4nM4cQ1yAkKXdQm
Content-Type: application/json
Content-Length: 154010
{
"preferredLocales" : [ "fr", "en" ],
"approbationInviteEmail" : {
"fr" : {
"subject" : "Nouvelle demande de validation sur e-Parapheur.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de validation\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à valider le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de valider ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"approbationUninviteEmail" : {
"fr" : {
"subject" : "Votre validation n'est plus requise.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre validation n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre validation n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"approbationRefusedEmail" : {
"fr" : {
"subject" : "Un destinataire a refusé de valider.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"approbationFinishedEmail" : {
"fr" : {
"subject" : "Un destinataire vient de valider.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureInviteEmail" : {
"fr" : {
"subject" : "Nouvelle demande de signature sur e-Parapheur.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de signature\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à signer le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de signer ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureUninviteEmail" : {
"fr" : {
"subject" : "Votre signature n'est plus requise.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre signature n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre signature n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureRefusedEmail" : {
"fr" : {
"subject" : "Un destinataire a refusé de signer.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>La raison pour laquelle le signataire a refusé de signer est :\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureFinishedEmail" : {
"fr" : {
"subject" : "Un destinataire vient de signer.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"workflowStartedEmail" : {
"fr" : {
"subject" : "Un parapheur vient d'être démarré.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être démarré\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être démarré :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"workflowStoppedEmail" : {
"fr" : {
"subject" : "Un parapheur vient d'être arrêté.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être arrêté\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être arrêté :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"workflowFinishedEmail" : {
"fr" : {
"subject" : "Un parapheur vient de se terminer avec succès.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"anonymizedUsersInStepEmail" : {
"fr" : {
"subject" : "Un parapheur ne contient que des destinataires anonymisés",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> Une étape contient uniquement des destinataires anonymisés </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Une étape du parapheur suivant contient uniquement des destinataires anonymisés ce qui empêchera le parapheur de se terminer : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance. <br> À bientôt. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>"
}
},
"workflowFinishedDownloadLinkEmail" : {
"fr" : {
"subject" : "Un parapheur vient de se terminer avec succès.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Télécharger le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de télécharger le(s) document(s) signé(s), veuillez cliquer\n sur le bouton ci-dessus ou copier l'adresse suivante et la coller\n dans la barre d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"commentCreatedEmail" : {
"fr" : {
"subject" : "Un commentaire vient d'être laissé.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"commentCreatedSecuredEmail" : {
"fr" : {
"subject" : "Un commentaire vient d'être laissé.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"coManagerAddedEmail" : {
"fr" : {
"subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été attribué sur un parapheur\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"coManagerRemovedEmail" : {
"fr" : {
"subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
}
}
Path parameters:
/api/tenants/{tenantId}/settings
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
preferredLocales |
Array | The preferred locales. |
approbationInviteEmail |
Object | The translations for the approbation invite emails. |
approbationUninviteEmail |
Object | The translations for the approbation uninvite emails. |
approbationRefusedEmail |
Object | The translations for the approbation refusal notification emails. |
approbationFinishedEmail |
Object | The translations for the approbation finished notification emails. |
signatureInviteEmail |
Object | The translations for the signature invite emails. |
signatureUninviteEmail |
Object | The translations for the signature uninvite emails. |
signatureRefusedEmail |
Object | The translations for the signature refusal notification emails. |
signatureFinishedEmail |
Object | The translations for the signature finished notification emails. |
workflowStartedEmail |
Object | The translations for the workflow started notification emails. |
workflowStoppedEmail |
Object | The translations for the workflow stopped notification emails. |
workflowFinishedEmail |
Object | The translations for the workflow finished notification emails. |
anonymizedUsersInStepEmail |
Object | The translations for the anonymized users in step notification emails. |
workflowFinishedDownloadLinkEmail |
Object | The translations for the signed documents download emails. |
commentCreatedEmail |
Object | The translations for the comment created notification emails. |
commentCreatedSecuredEmail |
Object | The translations for the secured comment created notification emails. |
coManagerAddedEmail |
Object | The translations for the coManager has been added emails. |
coManagerRemovedEmail |
Object | The translations for the coManager has been removed emails. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_DVULFG71vkwviz8mNftzW9Xj
ETag: "3hTLzKgyutoczU3Du7X1vq75"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 154010
{
"anonymizedUsersInStepEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> Une étape contient uniquement des destinataires anonymisés </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Une étape du parapheur suivant contient uniquement des destinataires anonymisés ce qui empêchera le parapheur de se terminer : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance. <br> À bientôt. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un parapheur ne contient que des destinataires anonymisés"
}
},
"approbationFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de valider."
}
},
"approbationInviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de validation\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à valider le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de valider ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de validation sur e-Parapheur."
}
},
"approbationRefusedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de valider."
}
},
"approbationUninviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre validation n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre validation n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre validation n'est plus requise."
}
},
"coManagerAddedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été attribué sur un parapheur\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
}
},
"coManagerRemovedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
}
},
"commentCreatedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"commentCreatedSecuredEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"preferredLocales" : [ "fr", "en" ],
"signatureFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de signer."
}
},
"signatureInviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de signature\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à signer le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de signer ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de signature sur e-Parapheur."
}
},
"signatureRefusedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>La raison pour laquelle le signataire a refusé de signer est :\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de signer."
}
},
"signatureUninviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre signature n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre signature n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre signature n'est plus requise."
}
},
"workflowFinishedDownloadLinkEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Télécharger le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de télécharger le(s) document(s) signé(s), veuillez cliquer\n sur le bouton ci-dessus ou copier l'adresse suivante et la coller\n dans la barre d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowStartedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être démarré\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être démarré :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être démarré."
}
},
"workflowStoppedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être arrêté\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être arrêté :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être arrêté."
}
}
}
Fields:
Path | Type | Description |
---|---|---|
preferredLocales |
Array | The preferred locales. |
approbationInviteEmail |
Object | The translations for the approbation invite emails. |
approbationUninviteEmail |
Object | The translations for the approbation uninvite emails. |
approbationRefusedEmail |
Object | The translations for the approbation refusal notification emails. |
approbationFinishedEmail |
Object | The translations for the approbation finished notification emails. |
signatureInviteEmail |
Object | The translations for the signature invite emails. |
signatureUninviteEmail |
Object | The translations for the signature uninvite emails. |
signatureRefusedEmail |
Object | The translations for the signature refusal notification emails. |
signatureFinishedEmail |
Object | The translations for the signature finished notification emails. |
workflowStartedEmail |
Object | The translations for the workflow started notification emails. |
workflowStoppedEmail |
Object | The translations for the workflow stopped notification emails. |
workflowFinishedEmail |
Object | The translations for the workflow finished notification emails. |
anonymizedUsersInStepEmail |
Object | The translations for the anonymized users in step notification emails. |
workflowFinishedDownloadLinkEmail |
Object | The translations for the signed documents download emails. |
commentCreatedEmail |
Object | The translations for the comment created notification emails. |
commentCreatedSecuredEmail |
Object | The translations for the secured comment created notification emails. |
coManagerAddedEmail |
Object | The translations for the coManager has been added emails. |
coManagerRemovedEmail |
Object | The translations for the coManager has been removed emails. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidEmailTemplate | An email template could not be parsed. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve user settings
Retrieve the settings for a user.
HTTP request
GET /api/users/usr_JSr6vHVNDVDq2rnoECmRbrNf/settings HTTP/1.1
Authorization: Bearer act_M8XaDXcVHEfF7XaQp6WxzL7x.3atHoHoj92xGmVVt7kMVxkuVm8uymencvxxupZJWKeyHGknsNTZSgsGGU7ZXXMw3
Path parameters:
/api/users/{userId}/settings
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "3hTLzKgyutoczU3Du7X1vq75"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 154010
{
"anonymizedUsersInStepEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> Une étape contient uniquement des destinataires anonymisés </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Une étape du parapheur suivant contient uniquement des destinataires anonymisés ce qui empêchera le parapheur de se terminer : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance. <br> À bientôt. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un parapheur ne contient que des destinataires anonymisés"
}
},
"approbationFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de valider."
}
},
"approbationInviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de validation\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à valider le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de valider ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de validation sur e-Parapheur."
}
},
"approbationRefusedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de valider."
}
},
"approbationUninviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre validation n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre validation n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre validation n'est plus requise."
}
},
"coManagerAddedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été attribué sur un parapheur\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
}
},
"coManagerRemovedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
}
},
"commentCreatedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"commentCreatedSecuredEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"preferredLocales" : [ "fr", "en" ],
"signatureFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de signer."
}
},
"signatureInviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de signature\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à signer le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de signer ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de signature sur e-Parapheur."
}
},
"signatureRefusedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>La raison pour laquelle le signataire a refusé de signer est :\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de signer."
}
},
"signatureUninviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre signature n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre signature n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre signature n'est plus requise."
}
},
"workflowFinishedDownloadLinkEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Télécharger le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de télécharger le(s) document(s) signé(s), veuillez cliquer\n sur le bouton ci-dessus ou copier l'adresse suivante et la coller\n dans la barre d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowStartedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être démarré\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être démarré :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être démarré."
}
},
"workflowStoppedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être arrêté\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être arrêté :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être arrêté."
}
}
}
Fields:
Path | Type | Description |
---|---|---|
preferredLocales |
Array | The preferred locales. |
approbationInviteEmail |
Object | The translations for the approbation invite emails. |
approbationUninviteEmail |
Object | The translations for the approbation uninvite emails. |
approbationRefusedEmail |
Object | The translations for the approbation refusal notification emails. |
approbationFinishedEmail |
Object | The translations for the approbation finished notification emails. |
signatureInviteEmail |
Object | The translations for the signature invite emails. |
signatureUninviteEmail |
Object | The translations for the signature uninvite emails. |
signatureRefusedEmail |
Object | The translations for the signature refusal notification emails. |
signatureFinishedEmail |
Object | The translations for the signature finished notification emails. |
workflowStartedEmail |
Object | The translations for the workflow started notification emails. |
workflowStoppedEmail |
Object | The translations for the workflow stopped notification emails. |
workflowFinishedEmail |
Object | The translations for the workflow finished notification emails. |
anonymizedUsersInStepEmail |
Object | The translations for the anonymized users in step notification emails. |
workflowFinishedDownloadLinkEmail |
Object | The translations for the signed documents download emails. |
commentCreatedEmail |
Object | The translations for the comment created notification emails. |
commentCreatedSecuredEmail |
Object | The translations for the secured comment created notification emails. |
coManagerAddedEmail |
Object | The translations for the coManager has been added emails. |
coManagerRemovedEmail |
Object | The translations for the coManager has been removed emails. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve applied user settings
Retrieve the tenant settings overridden by the user settings.
HTTP request
GET /api/users/usr_4aqKyeFGVZTMqH7FfFdVRD1C/appliedSettings HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/users/{userId}/appliedSettings
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "4X4bxVft6f28VXRrFiKafKJm"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 306545
{
"anonymizedUsersInStepEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> A step contains anonymized recipients only </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>A step in the following workflow contains anonymised recipients only which will prevent the workflow from finishing : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence. <br> See you soon. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow contains only anonymized recipients"
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> Une étape contient uniquement des destinataires anonymisés </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Une étape du parapheur suivant contient uniquement des destinataires anonymisés ce qui empêchera le parapheur de se terminer : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance. <br> À bientôt. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un parapheur ne contient que des destinataires anonymisés"
}
},
"approbationFinishedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has just approved\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just approved the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has just approved."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de valider."
}
},
"approbationInviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n New approbation request\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just sent you an\n approbation request for the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to approve these document(s), click on the above button\n or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link that is valid for {{durationToDays duration=step.validityPeriod singular='day' plural='days' zero='less than 24 hours'}} which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "New approbation request from e-Parapheur."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de validation\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à valider le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de valider ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de validation sur e-Parapheur."
}
},
"approbationRefusedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has refused to approve\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has refused to approve the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has refused to approve."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de valider."
}
},
"approbationUninviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Your approbation is no longer needed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>Your approbation is no longer needed in the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Your approbation is no longer needed."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre validation n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre validation n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre validation n'est plus requise."
}
},
"coManagerAddedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n The role of comanager has been assigned to you on a workflow\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hello,</p>\n <p>You have been designated as co-manager of the following workflow :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>To view this workflow, please click on the button above or copy the following address and paste it into the address bar of your browser :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "The role of comanager has been assigned to you on a workflow"
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été attribué sur un parapheur\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
}
},
"coManagerRemovedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n The role of co-manager has been removed from you on a workflow.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hello,</p>\n <p>You are no longer co-manager of the following workflow :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "The role of co-manager has been removed from you on a workflow"
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
}
},
"commentCreatedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A comment was just left\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just left a comment in the\n following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A comment was just left."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"commentCreatedSecuredEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A comment was just left\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just left a comment in the\n following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A comment was just left."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"preferredLocales" : [ "fr" ],
"signatureFinishedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has just signed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just signed the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has just signed."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de signer."
}
},
"signatureInviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n New signature request\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just sent you a\n signature request for the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to sign these document(s), click on the above button\n or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link that is valid for {{durationToDays duration=step.validityPeriod singular='day' plural='days' zero='less than 24 hours'}} which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "New signature request from Lex Persona."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de signature\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à signer le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de signer ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de signature sur e-Parapheur."
}
},
"signatureRefusedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has refused to sign\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has refused to sign the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>The reason why the signer refused to sign is:\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A recipient has refused to sign."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>La raison pour laquelle le signataire a refusé de signer est :\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de signer."
}
},
"signatureUninviteEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Your signature is no longer needed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>Your signature is no longer needed in the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Your signature is no longer needed."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre signature n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre signature n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre signature n'est plus requise."
}
},
"workflowFinishedDownloadLinkEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just finished\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just finished:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Download the signed document(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to download the signed document(s), click on the above\n button or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just finished."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Télécharger le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de télécharger le(s) document(s) signé(s), veuillez cliquer\n sur le bouton ci-dessus ou copier l'adresse suivante et la coller\n dans la barre d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowFinishedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just finished\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just finished:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just finished."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowStartedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just started\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just started:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just started."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être démarré\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être démarré :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être démarré."
}
},
"workflowStoppedEmail" : {
"en" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just stopped\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just stopped:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "A workflow was just stopped."
},
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être arrêté\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être arrêté :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être arrêté."
}
}
}
Fields:
Path | Type | Description |
---|---|---|
preferredLocales |
Array | The preferred locales. |
approbationInviteEmail |
Object | The translations for the approbation invite emails. |
approbationUninviteEmail |
Object | The translations for the approbation uninvite emails. |
approbationRefusedEmail |
Object | The translations for the approbation refusal notification emails. |
approbationFinishedEmail |
Object | The translations for the approbation finished notification emails. |
signatureInviteEmail |
Object | The translations for the signature invite emails. |
signatureUninviteEmail |
Object | The translations for the signature uninvite emails. |
signatureRefusedEmail |
Object | The translations for the signature refusal notification emails. |
signatureFinishedEmail |
Object | The translations for the signature finished notification emails. |
workflowStartedEmail |
Object | The translations for the workflow started notification emails. |
workflowStoppedEmail |
Object | The translations for the workflow stopped notification emails. |
workflowFinishedEmail |
Object | The translations for the workflow finished notification emails. |
anonymizedUsersInStepEmail |
Object | The translations for the anonymized users in step notification emails. |
workflowFinishedDownloadLinkEmail |
Object | The translations for the signed documents download emails. |
commentCreatedEmail |
Object | The translations for the comment created notification emails. |
commentCreatedSecuredEmail |
Object | The translations for the secured comment created notification emails. |
coManagerAddedEmail |
Object | The translations for the coManager has been added emails. |
coManagerRemovedEmail |
Object | The translations for the coManager has been removed emails. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Update user settings
Update the settings for a user.
HTTP request
PUT /api/users/usr_5JqK6XPssUUsEaazCt57y52m/settings HTTP/1.1
Authorization: Bearer act_5yhgwLNp63uShWpiiyxYFvkD.ef4ZKC91kUoUd9S3RWQVLBokqDRS93uzhYZi4KGcYnTGt9PQ9TdpUiEhbHxZupLd
Content-Type: application/json
Content-Length: 154010
{
"preferredLocales" : [ "fr", "en" ],
"approbationInviteEmail" : {
"fr" : {
"subject" : "Nouvelle demande de validation sur e-Parapheur.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de validation\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à valider le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de valider ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"approbationUninviteEmail" : {
"fr" : {
"subject" : "Votre validation n'est plus requise.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre validation n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre validation n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"approbationRefusedEmail" : {
"fr" : {
"subject" : "Un destinataire a refusé de valider.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"approbationFinishedEmail" : {
"fr" : {
"subject" : "Un destinataire vient de valider.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureInviteEmail" : {
"fr" : {
"subject" : "Nouvelle demande de signature sur e-Parapheur.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de signature\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à signer le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de signer ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureUninviteEmail" : {
"fr" : {
"subject" : "Votre signature n'est plus requise.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre signature n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre signature n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureRefusedEmail" : {
"fr" : {
"subject" : "Un destinataire a refusé de signer.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>La raison pour laquelle le signataire a refusé de signer est :\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureFinishedEmail" : {
"fr" : {
"subject" : "Un destinataire vient de signer.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"workflowStartedEmail" : {
"fr" : {
"subject" : "Un parapheur vient d'être démarré.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être démarré\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être démarré :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"workflowStoppedEmail" : {
"fr" : {
"subject" : "Un parapheur vient d'être arrêté.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être arrêté\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être arrêté :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"workflowFinishedEmail" : {
"fr" : {
"subject" : "Un parapheur vient de se terminer avec succès.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"anonymizedUsersInStepEmail" : {
"fr" : {
"subject" : "Un parapheur ne contient que des destinataires anonymisés",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> Une étape contient uniquement des destinataires anonymisés </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Une étape du parapheur suivant contient uniquement des destinataires anonymisés ce qui empêchera le parapheur de se terminer : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance. <br> À bientôt. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>"
}
},
"workflowFinishedDownloadLinkEmail" : {
"fr" : {
"subject" : "Un parapheur vient de se terminer avec succès.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Télécharger le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de télécharger le(s) document(s) signé(s), veuillez cliquer\n sur le bouton ci-dessus ou copier l'adresse suivante et la coller\n dans la barre d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"commentCreatedEmail" : {
"fr" : {
"subject" : "Un commentaire vient d'être laissé.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"commentCreatedSecuredEmail" : {
"fr" : {
"subject" : "Un commentaire vient d'être laissé.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"coManagerAddedEmail" : {
"fr" : {
"subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été attribué sur un parapheur\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"coManagerRemovedEmail" : {
"fr" : {
"subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
}
}
Path parameters:
/api/users/{userId}/settings
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
preferredLocales |
Array | The preferred locales. |
approbationInviteEmail |
Object | The translations for the approbation invite emails. |
approbationUninviteEmail |
Object | The translations for the approbation uninvite emails. |
approbationRefusedEmail |
Object | The translations for the approbation refusal notification emails. |
approbationFinishedEmail |
Object | The translations for the approbation finished notification emails. |
signatureInviteEmail |
Object | The translations for the signature invite emails. |
signatureUninviteEmail |
Object | The translations for the signature uninvite emails. |
signatureRefusedEmail |
Object | The translations for the signature refusal notification emails. |
signatureFinishedEmail |
Object | The translations for the signature finished notification emails. |
workflowStartedEmail |
Object | The translations for the workflow started notification emails. |
workflowStoppedEmail |
Object | The translations for the workflow stopped notification emails. |
workflowFinishedEmail |
Object | The translations for the workflow finished notification emails. |
anonymizedUsersInStepEmail |
Object | The translations for the anonymized users in step notification emails. |
workflowFinishedDownloadLinkEmail |
Object | The translations for the signed documents download emails. |
commentCreatedEmail |
Object | The translations for the comment created notification emails. |
commentCreatedSecuredEmail |
Object | The translations for the secured comment created notification emails. |
coManagerAddedEmail |
Object | The translations for the coManager has been added emails. |
coManagerRemovedEmail |
Object | The translations for the coManager has been removed emails. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_A6jmY8wmKoQzNCAAyVhtowXy
ETag: "3hTLzKgyutoczU3Du7X1vq75"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 154010
{
"anonymizedUsersInStepEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> Une étape contient uniquement des destinataires anonymisés </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Une étape du parapheur suivant contient uniquement des destinataires anonymisés ce qui empêchera le parapheur de se terminer : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance. <br> À bientôt. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un parapheur ne contient que des destinataires anonymisés"
}
},
"approbationFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de valider."
}
},
"approbationInviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de validation\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à valider le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de valider ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de validation sur e-Parapheur."
}
},
"approbationRefusedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de valider."
}
},
"approbationUninviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre validation n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre validation n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre validation n'est plus requise."
}
},
"coManagerAddedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été attribué sur un parapheur\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
}
},
"coManagerRemovedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
}
},
"commentCreatedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"commentCreatedSecuredEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un commentaire vient d'être laissé."
}
},
"preferredLocales" : [ "fr", "en" ],
"signatureFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire vient de signer."
}
},
"signatureInviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de signature\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à signer le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de signer ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Nouvelle demande de signature sur e-Parapheur."
}
},
"signatureRefusedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>La raison pour laquelle le signataire a refusé de signer est :\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un destinataire a refusé de signer."
}
},
"signatureUninviteEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre signature n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre signature n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Votre signature n'est plus requise."
}
},
"workflowFinishedDownloadLinkEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Télécharger le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de télécharger le(s) document(s) signé(s), veuillez cliquer\n sur le bouton ci-dessus ou copier l'adresse suivante et la coller\n dans la barre d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowFinishedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient de se terminer avec succès."
}
},
"workflowStartedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être démarré\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être démarré :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être démarré."
}
},
"workflowStoppedEmail" : {
"fr" : {
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être arrêté\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être arrêté :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "Un parapheur vient d'être arrêté."
}
}
}
Fields:
Path | Type | Description |
---|---|---|
preferredLocales |
Array | The preferred locales. |
approbationInviteEmail |
Object | The translations for the approbation invite emails. |
approbationUninviteEmail |
Object | The translations for the approbation uninvite emails. |
approbationRefusedEmail |
Object | The translations for the approbation refusal notification emails. |
approbationFinishedEmail |
Object | The translations for the approbation finished notification emails. |
signatureInviteEmail |
Object | The translations for the signature invite emails. |
signatureUninviteEmail |
Object | The translations for the signature uninvite emails. |
signatureRefusedEmail |
Object | The translations for the signature refusal notification emails. |
signatureFinishedEmail |
Object | The translations for the signature finished notification emails. |
workflowStartedEmail |
Object | The translations for the workflow started notification emails. |
workflowStoppedEmail |
Object | The translations for the workflow stopped notification emails. |
workflowFinishedEmail |
Object | The translations for the workflow finished notification emails. |
anonymizedUsersInStepEmail |
Object | The translations for the anonymized users in step notification emails. |
workflowFinishedDownloadLinkEmail |
Object | The translations for the signed documents download emails. |
commentCreatedEmail |
Object | The translations for the comment created notification emails. |
commentCreatedSecuredEmail |
Object | The translations for the secured comment created notification emails. |
coManagerAddedEmail |
Object | The translations for the coManager has been added emails. |
coManagerRemovedEmail |
Object | The translations for the coManager has been removed emails. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidEmailTemplate | An email template could not be parsed. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve workflow settings
Retrieve the settings for a workflow.
HTTP request
GET /api/workflows/wfl_G1s2wdaRNFCtmrjZSEqRm3x1/settings HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/workflows/{workflowId}/settings
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 306512
{
"approbationInviteEmail" : {
"en" : {
"subject" : "New approbation request from e-Parapheur.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n New approbation request\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just sent you an\n approbation request for the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to approve these document(s), click on the above button\n or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link that is valid for {{durationToDays duration=step.validityPeriod singular='day' plural='days' zero='less than 24 hours'}} which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Nouvelle demande de validation sur e-Parapheur.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de validation\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à valider le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de valider ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"approbationUninviteEmail" : {
"en" : {
"subject" : "Your approbation is no longer needed.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Your approbation is no longer needed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>Your approbation is no longer needed in the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Votre validation n'est plus requise.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre validation n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre validation n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"approbationRefusedEmail" : {
"en" : {
"subject" : "A recipient has refused to approve.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has refused to approve\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has refused to approve the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Un destinataire a refusé de valider.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"approbationFinishedEmail" : {
"en" : {
"subject" : "A recipient has just approved.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has just approved\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just approved the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Un destinataire vient de valider.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de valider\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de valider le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureInviteEmail" : {
"en" : {
"subject" : "New signature request from Lex Persona.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n New signature request\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just sent you a\n signature request for the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to sign these document(s), click on the above button\n or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link that is valid for {{durationToDays duration=step.validityPeriod singular='day' plural='days' zero='less than 24 hours'}} which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Nouvelle demande de signature sur e-Parapheur.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Nouvelle demande de signature\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vous invite à signer le(s)\n document(s) du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le(s) document(s)\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de signer ce(s) document(s), veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel valide pendant {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}} que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureUninviteEmail" : {
"en" : {
"subject" : "Your signature is no longer needed.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Your signature is no longer needed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>Your signature is no longer needed in the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Votre signature n'est plus requise.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Votre signature n'est plus requise\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Votre signature n'est plus requise sur le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureRefusedEmail" : {
"en" : {
"subject" : "A recipient has refused to sign.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has refused to sign\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has refused to sign the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>The reason why the signer refused to sign is:\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Un destinataire a refusé de signer.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire a refusé de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} a refusé de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n {{#if log.reason}}\n <p>La raison pour laquelle le signataire a refusé de signer est :\n <strong>{{log.reason}}</strong></p>\n {{/if}}\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"signatureFinishedEmail" : {
"en" : {
"subject" : "A recipient has just signed.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A recipient has just signed\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just signed the\n document(s) of the following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Un destinataire vient de signer.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un destinataire vient de signer\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de signer le(s) document(s)\n du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"workflowStartedEmail" : {
"en" : {
"subject" : "A workflow was just started.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just started\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just started:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Un parapheur vient d'être démarré.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être démarré\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être démarré :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"workflowStoppedEmail" : {
"en" : {
"subject" : "A workflow was just stopped.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just stopped\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just stopped:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Un parapheur vient d'être arrêté.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient d'être arrêté\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient d'être arrêté :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"workflowFinishedEmail" : {
"en" : {
"subject" : "A workflow was just finished.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just finished\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just finished:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Un parapheur vient de se terminer avec succès.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.userId}}\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"anonymizedUsersInStepEmail" : {
"en" : {
"subject" : "A workflow contains only anonymized recipients",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> A step contains anonymized recipients only </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>A step in the following workflow contains anonymised recipients only which will prevent the workflow from finishing : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence. <br> See you soon. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>"
},
"fr" : {
"subject" : "Un parapheur ne contient que des destinataires anonymisés",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\" style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\" align=\"center\">\n <img border=\"0\" src=\"https://www.lex-persona.com/email-logo.png\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\" style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\"> Une étape contient uniquement des destinataires anonymisés </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\" style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Une étape du parapheur suivant contient uniquement des destinataires anonymisés ce qui empêchera le parapheur de se terminer : <strong>{{notification.workflowName}}</strong>. </p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\" style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance. <br> À bientôt. <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>"
}
},
"workflowFinishedDownloadLinkEmail" : {
"en" : {
"subject" : "A workflow was just finished.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A workflow was just finished\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>The following workflow was just finished:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Download the signed document(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to download the signed document(s), click on the above\n button or copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Un parapheur vient de se terminer avec succès.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un parapheur vient de se terminer avec succès\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Le parapheur suivant vient de se terminer avec succès :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Télécharger le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de télécharger le(s) document(s) signé(s), veuillez cliquer\n sur le bouton ci-dessus ou copier l'adresse suivante et la coller\n dans la barre d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"commentCreatedEmail" : {
"en" : {
"subject" : "A comment was just left.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A comment was just left\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just left a comment in the\n following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Un commentaire vient d'être laissé.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"commentCreatedSecuredEmail" : {
"en" : {
"subject" : "A comment was just left.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n A comment was just left\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hi,</p>\n <p>{{notification.creatorName}} has just left a comment in the\n following workflow:\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n In order to review this workflow, click on the above button or\n copy the following address and past it into\n the address bar of your web browser:\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>CAUTION: </strong>\n This email contains a personal secured link which you should not share with other persons.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Un commentaire vient d'être laissé.",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Un commentaire vient d'être laissé\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n\n <!-- Fifth Row : page Footer-->\n <tr>\n <td valign=\"middle\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <span\n style=\"font-family:Roboto-Regular,Helvetica,Arial,sans-serif;font-size:11px;padding-top:12px;text-align:center\">\n <br>\n <strong>ATTENTION : </strong>\n Cet email contient un lien sécurisé personnel que vous ne devez en aucun cas partager avec d'autres personnes.\n </span>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"coManagerAddedEmail" : {
"en" : {
"subject" : "The role of comanager has been assigned to you on a workflow",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n The role of comanager has been assigned to you on a workflow\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hello,</p>\n <p>You have been designated as co-manager of the following workflow :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Review the workflow\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>To view this workflow, please click on the button above or copy the following address and paste it into the address bar of your browser :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été attribué sur un parapheur\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{#if notification.linkUrl}}\n <tr>\n <td width=\"1\"></td>\n <td align=\"center\">\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n align=\"center\">\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n Visualiser le parapheur\n →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
},
"coManagerRemovedEmail" : {
"en" : {
"subject" : "The role of co-manager has been removed from you on a workflow",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n The role of co-manager has been removed from you on a workflow.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Hello,</p>\n <p>You are no longer co-manager of the following workflow :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> We thank you for your confidence.\n <br> See you soon.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
},
"fr" : {
"subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur",
"content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n style=\"background-color:#f4f5f6\">\n <tbody>\n <tr>\n <td align=\"center\">\n <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n <tbody>\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <!-- first Row with logo-->\n <tr>\n <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n align=\"center\">\n <img border=\"0\"\n src=\"https://www.lex-persona.com/email-logo.png\"\n style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n </td>\n </tr>\n <!-- Second Row -->\n <tr>\n <td align=\"center\"\n style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n </td>\n </tr>\n <!-- Third Row Body-->\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr style=\"padding: 12px 0px 0px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <p>Bonjour,</p>\n <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n <strong>{{notification.workflowName}}</strong>.</p>\n <br>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n</body>\n</html>\n"
}
}
}
Fields:
Path | Type | Description |
---|---|---|
approbationInviteEmail |
Object | The translations for the approbation invite emails. |
approbationUninviteEmail |
Object | The translations for the approbation uninvite emails. |
approbationRefusedEmail |
Object | The translations for the approbation refusal notification emails. |
approbationFinishedEmail |
Object | The translations for the approbation finished notification emails. |
signatureInviteEmail |
Object | The translations for the signature invite emails. |
signatureUninviteEmail |
Object | The translations for the signature uninvite emails. |
signatureRefusedEmail |
Object | The translations for the signature refusal notification emails. |
signatureFinishedEmail |
Object | The translations for the signature finished notification emails. |
workflowStartedEmail |
Object | The translations for the workflow started notification emails. |
workflowStoppedEmail |
Object | The translations for the workflow stopped notification emails. |
workflowFinishedEmail |
Object | The translations for the workflow finished notification emails. |
anonymizedUsersInStepEmail |
Object | The translations for the anonymized users in step notification emails. |
workflowFinishedDownloadLinkEmail |
Object | The translations for the signed documents download emails. |
commentCreatedEmail |
Object | The translations for the comment created notification emails. |
commentCreatedSecuredEmail |
Object | The translations for the secured comment created notification emails. |
coManagerAddedEmail |
Object | The translations for the coManager has been added emails. |
coManagerRemovedEmail |
Object | The translations for the coManager has been removed emails. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Signature profiles
Create signature profile
Create a new signature profile.
HTTP request
POST /api/tenants/ten_DyvBSLey9Fnh65AGLLGoDB8D/signatureProfiles HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 859
{
"isDefault" : true,
"isDisabled" : false,
"name" : "Horror",
"documentType" : "pdf",
"signatureType" : "pades",
"forceScrollDocument" : true,
"pdfVisibleSignatureMode" : "allowed",
"pdfSignatureImageText" : "Signé électroniquement par {{signerName}}\nLe {{date format='dd/MM/yyyy à HH:mm'}}{{#if signerOrganizationTitle}}\nFonction : {{signerOrganizationTitle}}{{/if}}{{#if signerOrganization}}\nSociété : {{signerOrganization}}{{/if}}",
"pdfSignatureImageTextColor" : "#000000",
"pdfSignatureImageTextSize" : 8.0,
"pdfSignatureImageTextFont" : "Arial",
"pdfSignatureImageWidth" : 200.0,
"pdfSignatureImageHeight" : 100.0,
"signaturePolicyId" : "1.2.3.4",
"signaturePolicyDigestAlgorithmKey" : "SHA256",
"signaturePolicyDigestValueBase64" : "123456789abcdef==",
"signaturePolicyUri" : "http://www.pdf.lex/policy.pdf"
}
Path parameters:
/api/tenants/{tenantId}/signatureProfiles
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
isDefault |
Boolean | Whether or not the signature profile is the default signature profile for the tenant. |
isDisabled |
Boolean optional | Whether or not the signature profile is disabled. |
name |
String | The name of the signature profile. |
documentType |
String | The type of document for which the signature profile applies. |
signatureType |
String | The type of signature applied by this signature profile. Possible values: pades , xades , xadesDetached , xadesDetachedManifest , cades , cadesDetached , helios . |
forceScrollDocument |
Boolean | Whether or not the signer/approver will be forced to read the document. |
pdfVisibleSignatureMode |
String optional | The mode of visible signature for the signature profile. |
pdfSignatureImageText |
String optional | The text to be included in the signature image, in case of a PDF visible signature. The template must necessarily contain the variable {{signerName}} . It may also include optional variables like {{date}} ,{{signerOrganization}} , {{signerOrganizationTitle}} or references to metadata like {{data1}} , {{data1}} , etc. The signature date can be formatted using Java’s SimpleDateFormat, for example: {{date format='dd-MM-YYYY'}} . |
pdfSignatureImageTextColor |
String optional | The color of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageTextSize |
Number optional | The size of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageTextFont |
String optional | The font family of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageWidth |
Number optional | The width of the signature image, in case of a PDF visible signature. |
pdfSignatureImageHeight |
Number optional | The height of the signature image, in case of a PDF visible signature. |
signaturePolicyId |
String optional | The OID of the signature policy. Without specified value, the OID of the default signature policy will be applied. |
signaturePolicyDigestAlgorithmKey |
String optional | The hash algorithm to be used to calculate the fingerprint of the signature policy. Without specified value, the default signature policy hash algorithm will be applied. Possible values: NOSHA , SHA1 , SHA256 , SHA384 , SHA512 . |
signaturePolicyDigestValueBase64 |
String optional | The fingerprint corresponding to the signature policy. Without specified value, the hash of the default signature policy will be applied. |
signaturePolicyUri |
String optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_K5wRnRPAGR2bnywUwLPFZ4c4
ETag: "94CY77JBBXwRV8UmN9bAcnF3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1005
{
"created" : 1731412149192,
"documentType" : "pdf",
"forceScrollDocument" : true,
"id" : "sip_4MHtxcUCFMLnnZzE3tVBZ5su",
"isDefault" : true,
"isDisabled" : false,
"name" : "Horror",
"pdfSignatureImageHeight" : 100.0,
"pdfSignatureImageText" : "Signé électroniquement par {{signerName}}\nLe {{date format='dd/MM/yyyy à HH:mm'}}{{#if signerOrganizationTitle}}\nFonction : {{signerOrganizationTitle}}{{/if}}{{#if signerOrganization}}\nSociété : {{signerOrganization}}{{/if}}",
"pdfSignatureImageTextColor" : "#000000",
"pdfSignatureImageTextFont" : "Arial",
"pdfSignatureImageTextSize" : 8.0,
"pdfSignatureImageWidth" : 200.0,
"pdfVisibleSignatureMode" : "allowed",
"signaturePolicyDigestAlgorithmKey" : "SHA256",
"signaturePolicyDigestValueBase64" : "123456789abcdef==",
"signaturePolicyId" : "1.2.3.4",
"signaturePolicyUri" : "http://www.pdf.lex/policy.pdf",
"signatureType" : "pades",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412149192
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the signature profile. |
tenantId |
String | The identifier of the tenant the signature profile belongs to. |
isDefault |
Boolean | Whether or not the signature profile is the default signature profile for the tenant. |
isDisabled |
Boolean | Whether or not the signature profile is disabled. |
name |
String | The name of the signature profile. |
documentType |
String | The type of document for which the signature profile applies. |
signatureType |
String | The type of signature applied by this signature profile. Possible values: pades , xades , xadesDetached , xadesDetachedManifest , cades , cadesDetached , helios . |
forceScrollDocument |
Boolean | Whether or not the signer/approver will be forced to read the document. |
pdfVisibleSignatureMode |
String | The mode of visible signature for the signature profile. |
pdfSignatureImageText |
String optional | The text to be included in the signature image, in case of a PDF visible signature. The template must necessarily contain the variable {{signerName}} . It may also include optional variables like {{date}} ,{{signerOrganization}} , {{signerOrganizationTitle}} or references to metadata like {{data1}} , {{data1}} , etc. The signature date can be formatted using Java’s SimpleDateFormat, for example: {{date format='dd-MM-YYYY'}} . |
pdfSignatureImageTextColor |
String optional | The color of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageTextSize |
Number optional | The size of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageTextFont |
String optional | The font family of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageWidth |
Number optional | The width of the signature image, in case of a PDF visible signature. |
pdfSignatureImageHeight |
Number optional | The height of the signature image, in case of a PDF visible signature. |
signaturePolicyId |
String optional | The OID of the signature policy. Without specified value, the OID of the default signature policy will be applied. |
signaturePolicyDigestAlgorithmKey |
String optional | The hash algorithm to be used to calculate the fingerprint of the signature policy. Without specified value, the default signature policy hash algorithm will be applied. Possible values: NOSHA , SHA1 , SHA256 , SHA384 , SHA512 . |
signaturePolicyDigestValueBase64 |
String optional | The fingerprint corresponding to the signature policy. Without specified value, the hash of the default signature policy will be applied. |
signaturePolicyUri |
String optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidHexColor | The provided color is not in hexadecimal format. |
400 |
InvalidPdfSignatureImageText | pdfSignatureImageText must include the {{signerName}} variable. |
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve signature profile
Retrieve an existing signature profile.
HTTP request
GET /api/signatureProfiles/sip_J6KoexJFFRnnm5uta2WqWP2U HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/signatureProfiles/{signatureProfileId}
Parameter | Description |
---|---|
signatureProfileId |
The identifier of the signature profile. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "AWBqbsM8qC7sYdn622MH3mQy"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1102
{
"created" : 1731411599963,
"documentType" : "pdf",
"forceScrollDocument" : true,
"id" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"isDefault" : false,
"isDisabled" : false,
"name" : "Tall tale",
"pdfSignatureImageHeight" : 100.0,
"pdfSignatureImageText" : "Signé électroniquement par {{signerName}}\nLe {{date format='dd/MM/yyyy à HH:mm'}}{{#if signerOrganizationTitle}}\nFonction : {{signerOrganizationTitle}}{{/if}}{{#if signerOrganization}}\nSociété : {{signerOrganization}}{{/if}}",
"pdfSignatureImageTextColor" : "#000000",
"pdfSignatureImageTextFont" : "Arial",
"pdfSignatureImageTextSize" : 12.0,
"pdfSignatureImageWidth" : 200.0,
"pdfVisibleSignatureMode" : "allowed",
"signaturePolicyDigestAlgorithmKey" : "SHA256",
"signaturePolicyDigestValueBase64" : "lLKFDAaR8NxNtrf1cIlmULQgp1GS+7igKN8p7pqy3G0=",
"signaturePolicyId" : "1.2.250.1.115.200.300.4",
"signaturePolicyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"signatureType" : "pades",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411599963
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the signature profile. |
tenantId |
String | The identifier of the tenant the signature profile belongs to. |
isDefault |
Boolean | Whether or not the signature profile is the default signature profile for the tenant. |
isDisabled |
Boolean | Whether or not the signature profile is disabled. |
name |
String | The name of the signature profile. |
documentType |
String | The type of document for which the signature profile applies. |
signatureType |
String | The type of signature applied by this signature profile. Possible values: pades , xades , xadesDetached , xadesDetachedManifest , cades , cadesDetached , helios . |
forceScrollDocument |
Boolean | Whether or not the signer/approver will be forced to read the document. |
pdfVisibleSignatureMode |
String | The mode of visible signature for the signature profile. |
pdfSignatureImageText |
String optional | The text to be included in the signature image, in case of a PDF visible signature. The template must necessarily contain the variable {{signerName}} . It may also include optional variables like {{date}} ,{{signerOrganization}} , {{signerOrganizationTitle}} or references to metadata like {{data1}} , {{data1}} , etc. The signature date can be formatted using Java’s SimpleDateFormat, for example: {{date format='dd-MM-YYYY'}} . |
pdfSignatureImageTextColor |
String optional | The color of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageTextSize |
Number optional | The size of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageTextFont |
String optional | The font family of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageWidth |
Number optional | The width of the signature image, in case of a PDF visible signature. |
pdfSignatureImageHeight |
Number optional | The height of the signature image, in case of a PDF visible signature. |
signaturePolicyId |
String optional | The OID of the signature policy. Without specified value, the OID of the default signature policy will be applied. |
signaturePolicyDigestAlgorithmKey |
String optional | The hash algorithm to be used to calculate the fingerprint of the signature policy. Without specified value, the default signature policy hash algorithm will be applied. Possible values: NOSHA , SHA1 , SHA256 , SHA384 , SHA512 . |
signaturePolicyDigestValueBase64 |
String optional | The fingerprint corresponding to the signature policy. Without specified value, the hash of the default signature policy will be applied. |
signaturePolicyUri |
String optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
Update signature profile
Update an existing signature profile.
HTTP request
PATCH /api/signatureProfiles/sip_2wWTwCRcMzMewa1oViLZU1MW HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "GrBZhvFuQz9ZxKH1ECfpj46o"
Content-Type: application/json
Content-Length: 832
{
"isDefault" : true,
"isDisabled" : false,
"name" : "Fable",
"signatureType" : "pades",
"forceScrollDocument" : true,
"pdfVisibleSignatureMode" : "allowed",
"pdfSignatureImageText" : "Signé électroniquement par {{signerName}}\nLe {{date format='dd/MM/yyyy à HH:mm'}}{{#if signerOrganizationTitle}}\nFonction : {{signerOrganizationTitle}}{{/if}}{{#if signerOrganization}}\nSociété : {{signerOrganization}}{{/if}}",
"pdfSignatureImageTextColor" : "#000000",
"pdfSignatureImageTextSize" : 8.0,
"pdfSignatureImageTextFont" : "Arial",
"pdfSignatureImageWidth" : 200.0,
"pdfSignatureImageHeight" : 100.0,
"signaturePolicyId" : "1.2.3.4",
"signaturePolicyDigestAlgorithmKey" : "SHA256",
"signaturePolicyDigestValueBase64" : "123456789abcdef==",
"signaturePolicyUri" : "http://www.pdf.lex/policy.pdf"
}
Path parameters:
/api/signatureProfiles/{signatureProfileId}
Parameter | Description |
---|---|
signatureProfileId |
The identifier of the signature profile. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
isDefault |
Boolean optional | Whether or not the signature profile is a default signature profile. |
isDisabled |
Boolean optional | Whether or not the signature profile is disabled. |
name |
String optional | The name of the signature profile. |
signatureType |
String optional | The type of signature applied by this signature profile. Possible values: pades , xades , xadesDetached , xadesDetachedManifest , cades , cadesDetached , helios . |
forceScrollDocument |
Boolean optional | Whether or not the signer/approver will be forced to read the document. |
pdfVisibleSignatureMode |
String optional | The mode of visible signature for the signature profile. |
pdfSignatureImageText |
String optional | The text to be included in the signature image, in case of a PDF visible signature. The template must necessarily contain the variable {{signerName}} . It may also include optional variables like {{date}} ,{{signerOrganization}} , {{signerOrganizationTitle}} or references to metadata like {{data1}} , {{data1}} , etc. The signature date can be formatted using Java’s SimpleDateFormat, for example: {{date format='dd-MM-YYYY'}} . |
pdfSignatureImageTextColor |
String optional | The color of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageTextSize |
Number optional | The size of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageTextFont |
String optional | The font family of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageWidth |
Number optional | The width of the signature image, in case of a PDF visible signature. |
pdfSignatureImageHeight |
Number optional | The height of the signature image, in case of a PDF visible signature. |
signaturePolicyId |
String optional | The OID of the signature policy. Without specified value, the OID of the default signature policy will be applied. |
signaturePolicyDigestAlgorithmKey |
String optional | The hash algorithm to be used to calculate the fingerprint of the signature policy. Without specified value, the default signature policy hash algorithm will be applied. Possible values: NOSHA , SHA1 , SHA256 , SHA384 , SHA512 . |
signaturePolicyDigestValueBase64 |
String optional | The fingerprint corresponding to the signature policy. Without specified value, the hash of the default signature policy will be applied. |
signaturePolicyUri |
String optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_BYFMTURWwiaprgQVbU7ZAfiF
ETag: "Dv2rmAtNLDSmzuaTiFpZEpxr"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1004
{
"created" : 1731412142382,
"documentType" : "pdf",
"forceScrollDocument" : true,
"id" : "sip_2wWTwCRcMzMewa1oViLZU1MW",
"isDefault" : true,
"isDisabled" : false,
"name" : "Fable",
"pdfSignatureImageHeight" : 100.0,
"pdfSignatureImageText" : "Signé électroniquement par {{signerName}}\nLe {{date format='dd/MM/yyyy à HH:mm'}}{{#if signerOrganizationTitle}}\nFonction : {{signerOrganizationTitle}}{{/if}}{{#if signerOrganization}}\nSociété : {{signerOrganization}}{{/if}}",
"pdfSignatureImageTextColor" : "#000000",
"pdfSignatureImageTextFont" : "Arial",
"pdfSignatureImageTextSize" : 8.0,
"pdfSignatureImageWidth" : 200.0,
"pdfVisibleSignatureMode" : "allowed",
"signaturePolicyDigestAlgorithmKey" : "SHA256",
"signaturePolicyDigestValueBase64" : "123456789abcdef==",
"signaturePolicyId" : "1.2.3.4",
"signaturePolicyUri" : "http://www.pdf.lex/policy.pdf",
"signatureType" : "pades",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412142402
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the signature profile. |
tenantId |
String | The identifier of the tenant the signature profile belongs to. |
isDefault |
Boolean | Whether or not the signature profile is the default signature profile for the tenant. |
isDisabled |
Boolean | Whether or not the signature profile is disabled. |
name |
String | The name of the signature profile. |
documentType |
String | The type of document for which the signature profile applies. |
signatureType |
String | The type of signature applied by this signature profile. Possible values: pades , xades , xadesDetached , xadesDetachedManifest , cades , cadesDetached , helios . |
forceScrollDocument |
Boolean | Whether or not the signer/approver will be forced to read the document. |
pdfVisibleSignatureMode |
String | The mode of visible signature for the signature profile. |
pdfSignatureImageText |
String optional | The text to be included in the signature image, in case of a PDF visible signature. The template must necessarily contain the variable {{signerName}} . It may also include optional variables like {{date}} ,{{signerOrganization}} , {{signerOrganizationTitle}} or references to metadata like {{data1}} , {{data1}} , etc. The signature date can be formatted using Java’s SimpleDateFormat, for example: {{date format='dd-MM-YYYY'}} . |
pdfSignatureImageTextColor |
String optional | The color of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageTextSize |
Number optional | The size of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageTextFont |
String optional | The font family of the text to be included in the signature image, in case of a PDF visible signature. |
pdfSignatureImageWidth |
Number optional | The width of the signature image, in case of a PDF visible signature. |
pdfSignatureImageHeight |
Number optional | The height of the signature image, in case of a PDF visible signature. |
signaturePolicyId |
String optional | The OID of the signature policy. Without specified value, the OID of the default signature policy will be applied. |
signaturePolicyDigestAlgorithmKey |
String optional | The hash algorithm to be used to calculate the fingerprint of the signature policy. Without specified value, the default signature policy hash algorithm will be applied. Possible values: NOSHA , SHA1 , SHA256 , SHA384 , SHA512 . |
signaturePolicyDigestValueBase64 |
String optional | The fingerprint corresponding to the signature policy. Without specified value, the hash of the default signature policy will be applied. |
signaturePolicyUri |
String optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidHexColor | The provided color is not in hexadecimal format. |
400 |
InvalidPdfSignatureImageText | pdfSignatureImageText must include the {{signerName}} variable. |
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Search signature profiles
Search in all signature profiles.
HTTP request
GET /api/signatureProfiles?text=Tall%20tale&items.id=sip_J6KoexJFFRnnm5uta2WqWP2U&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.isDefault |
The filter value(s) for the isDefault field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.name |
The filter value(s) for the name field. |
items.documentType |
The filter value(s) for the documentType field. |
items.signatureType |
The filter value(s) for the signatureType field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1228
{
"items" : [ {
"created" : 1731411599963,
"documentType" : "pdf",
"forceScrollDocument" : true,
"id" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"isDefault" : false,
"isDisabled" : false,
"name" : "Tall tale",
"pdfSignatureImageHeight" : 100.0,
"pdfSignatureImageText" : "Signé électroniquement par {{signerName}}\nLe {{date format='dd/MM/yyyy à HH:mm'}}{{#if signerOrganizationTitle}}\nFonction : {{signerOrganizationTitle}}{{/if}}{{#if signerOrganization}}\nSociété : {{signerOrganization}}{{/if}}",
"pdfSignatureImageTextColor" : "#000000",
"pdfSignatureImageTextFont" : "Arial",
"pdfSignatureImageTextSize" : 12.0,
"pdfSignatureImageWidth" : 200.0,
"pdfVisibleSignatureMode" : "allowed",
"signaturePolicyDigestAlgorithmKey" : "SHA256",
"signaturePolicyDigestValueBase64" : "lLKFDAaR8NxNtrf1cIlmULQgp1GS+7igKN8p7pqy3G0=",
"signaturePolicyId" : "1.2.250.1.115.200.300.4",
"signaturePolicyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"signatureType" : "pades",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411599963
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the signature profile. |
items[].tenantId |
String | The identifier of the tenant the signature profile belongs to. |
items[].isDefault |
Boolean | Whether or not the signature profile is the default signature profile for the tenant. |
items[].isDisabled |
Boolean | Whether or not the signature profile is disabled. |
items[].name |
String | The name of the signature profile. |
items[].documentType |
String | The type of document for which the signature profile applies. |
items[].signatureType |
String | The type of signature applied by this signature profile. Possible values: pades , xades , xadesDetached , xadesDetachedManifest , cades , cadesDetached , helios . |
items[].forceScrollDocument |
Boolean | Whether or not the signer/approver will be forced to read the document. |
items[].pdfVisibleSignatureMode |
String | The mode of visible signature for the signature profile. |
items[].pdfSignatureImageText |
String optional | The text to be included in the signature image, in case of a PDF visible signature. The template must necessarily contain the variable {{signerName}} . It may also include optional variables like {{date}} ,{{signerOrganization}} , {{signerOrganizationTitle}} or references to metadata like {{data1}} , {{data1}} , etc. The signature date can be formatted using Java’s SimpleDateFormat, for example: {{date format='dd-MM-YYYY'}} . |
items[].pdfSignatureImageTextColor |
String optional | The color of the text to be included in the signature image, in case of a PDF visible signature. |
items[].pdfSignatureImageTextSize |
Number optional | The size of the text to be included in the signature image, in case of a PDF visible signature. |
items[].pdfSignatureImageTextFont |
String optional | The font family of the text to be included in the signature image, in case of a PDF visible signature. |
items[].pdfSignatureImageWidth |
Number optional | The width of the signature image, in case of a PDF visible signature. |
items[].pdfSignatureImageHeight |
Number optional | The height of the signature image, in case of a PDF visible signature. |
items[].signaturePolicyId |
String optional | The OID of the signature policy. Without specified value, the OID of the default signature policy will be applied. |
items[].signaturePolicyDigestAlgorithmKey |
String optional | The hash algorithm to be used to calculate the fingerprint of the signature policy. Without specified value, the default signature policy hash algorithm will be applied. Possible values: NOSHA , SHA1 , SHA256 , SHA384 , SHA512 . |
items[].signaturePolicyDigestValueBase64 |
String optional | The fingerprint corresponding to the signature policy. Without specified value, the hash of the default signature policy will be applied. |
items[].signaturePolicyUri |
String optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export signature profiles
Export a search in all signature profiles.
HTTP request
POST /api/signatureProfiles/exports?text=Tall%20tale&items.id=sip_J6KoexJFFRnnm5uta2WqWP2U&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 167
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}}",
"expired" : 1731498550794
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.isDefault |
The filter value(s) for the isDefault field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.name |
The filter value(s) for the name field. |
items.documentType |
The filter value(s) for the documentType field. |
items.signatureType |
The filter value(s) for the signatureType field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_Nmfxc5HMbrYYa1MCuTyrF6qM
ETag: "H8jKB5Few5sdC2Wnnd8CBK6W"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 573
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731412150795,
"expired" : 1731498550794,
"exportOperation" : "createSignatureProfileExport",
"id" : "exp_6ECxkjzfYMYnNQimwoao6Ukk",
"itemTemplate" : "{{id}},{{name}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Tall+tale&items.id=sip_J6KoexJFFRnnm5uta2WqWP2U&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731412150795,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Tenants
Create tenant
Create a new tenant. Admin only.
HTTP request
POST /admin/api/tenants HTTP/1.1
Authorization: Basic YWRtaW46QXMxTG9NQnpnSFZQcFBGVkc3OHA3YUV4
Content-Type: application/json
Content-Length: 1293
{
"domainName" : "koelpin.biz",
"idpType" : "google",
"idpBaseUrl" : "https://accounts.google.com/",
"idpScope" : "openid email profile",
"idpClientId" : "9051",
"idpClientSecret" : "Dj1PHhQmsDmoaThM2An4hmDK",
"logo" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"darkColor" : "#104670",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"loginTokenTtl" : 3600000,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"maxAttachments" : 10,
"downloadLinkTokenValidityDays" : 90,
"defaultCountry" : "FR",
"allowCommentsInSteps" : false,
"allowWatchers" : true,
"defaultAllowComments" : false,
"forceFlattenPdf" : false,
"createUserOnLogin" : true,
"createUserOnLoginGroupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"certificateEvidenceLanguage" : "en",
"attachmentExtensions" : [ "pdf", "word" ],
"lockDocumentsAfterFirstValidation" : false,
"allowConsolidation" : true
}
Headers:
Name | Description |
---|---|
Authorization |
Valid admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
domainName |
String | The domain name of the tenant. |
idpType |
String | Identity provider type. |
idpBaseUrl |
String | Base URL for OpenID Connect based identity provider. |
idpScope |
String | Scope for OpenID Connect based identity provider. |
idpClientId |
String | Client ID for OpenID Connect based identity provider. |
idpClientSecret |
String | Client secret for OpenID Connect based identity provider. |
organizationName |
String optional | The organization name of the tenant. |
logo |
String optional | The logo image of the portal, as a data URI. |
primaryColor |
String optional | The primary color of the portal. |
secondaryColor |
String optional | The secondary color of the portal. |
darkColor |
String optional | The dark color of the portal. |
smtpSenderName |
String optional | The sender name for notification emails. |
defaultCountry |
String optional | The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR . |
technicalContactUrl |
String optional | The technical contact URL to be used in the portal. |
loginTokenTtl |
Number optional | The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes. |
maxDocumentSize |
Number optional | The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes. |
maxDocuments |
Number optional | The portal maximum authorized documents to sign. Note that the default value is 200. |
maxAttachments |
Number optional | The portal maximum authorized attachments. Note that the default value is 10. |
downloadLinkTokenValidityDays |
Number optional | Download link token expiration period in days. Note that the default value is 3650. |
defaultAllowComments |
Boolean optional | The default allow comments value in steps. |
forceFlattenPdf |
Boolean optional | Whether the existing signature fields are flattened on PDF uploads. |
allowCommentsInSteps |
Boolean optional | Whether or not the comments authorization are managed by the workflow manager. |
allowWatchers |
Boolean optional | Whether or not the watchers authorization are managed by the workflow manager. |
createUserOnLogin |
Boolean optional | Whether or not users are automatically created on first login. |
createUserOnLoginGroupId |
String optional | Selected Group ID when option to created user on first login selected. |
certificateEvidenceLanguage |
String optional | The language of the certificate of evidence. |
attachmentExtensions |
Array optional | The allowed file extensions for workflows attachments. |
lockDocumentsAfterFirstValidation |
Boolean optional | Whether documents should be locked after the first validation. |
allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_2YBBcUHc4DHgCqjqAGYWxQFq
ETag: "AZKCMyy8HYLFfa98TtbHHmtS"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1281
{
"allowCommentsInSteps" : false,
"allowConsolidation" : true,
"allowWatchers" : true,
"allowedTenantStatus" : [ "active", "inactive", "trial" ],
"attachmentExtensions" : [ "pdf", "word" ],
"certificateEvidenceLanguage" : "en",
"consentVersion" : "V2",
"createUserOnLogin" : true,
"createUserOnLoginGroupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"created" : 1731412122473,
"darkColor" : "#104670",
"defaultAllowComments" : false,
"defaultCountry" : "FR",
"defaultGroupId" : "grp_FLAgG8ykyC9mBmDWVZToAnhF",
"domainName" : "koelpin.biz",
"downloadLinkTokenValidityDays" : 90,
"forceFlattenPdf" : false,
"id" : "ten_NaTmDGH332WB8dhcXqrp8qjd",
"idpBaseUrl" : "https://accounts.google.com/",
"idpClientId" : "9051",
"idpClientSecret" : "****************",
"idpScope" : "openid email profile",
"idpType" : "google",
"lockDocumentsAfterFirstValidation" : false,
"loginTokenTtl" : 3600000,
"logoResourceId" : "res_9qExKp8uv2xYptwEqYwnkV8o",
"maxAttachments" : 10,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"tenantStatus" : "trial",
"updated" : 1731412122473
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the tenant. |
defaultGroupId |
String | The identifier of the default group in the tenant. |
domainName |
String | The domain name of the tenant. |
organizationName |
String optional | The organization name of the tenant. |
tenantStatus |
TenantStatus optional | The status of the tenant. |
idpType |
String | Identity provider type. |
idpBaseUrl |
String | Base URL for OpenID Connect based identity provider. |
idpScope |
String | Scope for OpenID Connect based identity provider. |
idpClientId |
String | Client ID for OpenID Connect based identity provider. |
idpClientSecret |
String | Client secret for OpenID Connect based identity provider. |
logoResourceId |
String optional | The identifier of the logo image resource. |
primaryColor |
String | The primary color of the portal. |
secondaryColor |
String | The secondary color of the portal. |
darkColor |
String | The dark color of the portal. |
smtpSenderName |
String | The sender name for notification emails. |
defaultCountry |
String | The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR . |
technicalContactUrl |
String | The technical contact URL to be used in the portal. |
loginTokenTtl |
Number | The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes. |
maxDocumentSize |
Number | The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes. |
maxDocuments |
Number | The portal maximum authorized documents to sign. Note that the default value is 200. |
maxAttachments |
Number | The portal maximum authorized attachments. Note that the default value is 10. |
downloadLinkTokenValidityDays |
Number | Download link token expiration period in days. Note that the default value is 3650. |
defaultAllowComments |
Boolean | The default allow comments value in steps. |
forceFlattenPdf |
Boolean | Whether the existing signature fields are flattened on PDF uploads. |
allowCommentsInSteps |
Boolean | Whether or not the comments authorization are managed by the workflow manager. |
allowWatchers |
Boolean | Whether or not the watchers authorization are managed by the workflow manager. |
createUserOnLogin |
Boolean | Whether or not users are automatically created on first login. |
createUserOnLoginGroupId |
kotlin.jvm.internal.StringCompanionObject@273f0f93 optional | Selected Group ID when option to created user on first login selected. |
allowedTenantStatus |
Array | The statuses to which the tenant is authorized to switch. |
attachmentExtensions |
Array | The allowed file extensions for workflows attachments. |
lockDocumentsAfterFirstValidation |
Boolean | Whether documents should be locked after the first validation. |
certificateEvidenceLanguage |
String | The language of the certificate of evidence. |
allowConsolidation |
Boolean | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidHexColor | The provided color is not in hexadecimal format. |
400 |
InvalidImageFormat | The image format is not supported. |
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
InvalidAdminCredentials | The admin credentials are incorrect. |
Retrieve tenant
Retrieve an existing tenant.
HTTP request
GET /api/tenants/ten_DyvBSLey9Fnh65AGLLGoDB8D HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/tenants/{tenantId}
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "4N1vBzUvSWvsvZgwJKk7ygK4"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1202
{
"allowCommentsInSteps" : true,
"allowConsolidation" : true,
"allowWatchers" : true,
"allowedTenantStatus" : [ "active", "inactive", "trial" ],
"attachmentExtensions" : [ ],
"certificateEvidenceLanguage" : "en",
"consentVersion" : "V2",
"createUserOnLogin" : true,
"created" : 1731411598984,
"darkColor" : "#104670",
"defaultAllowComments" : true,
"defaultCountry" : "FR",
"defaultGroupId" : "grp_4RHF5UX2QBgWH4ueN9tQzM6V",
"domainName" : "klein.name",
"downloadLinkTokenValidityDays" : 3650,
"forceFlattenPdf" : true,
"id" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"idpBaseUrl" : "https://accounts.google.com/",
"idpClientId" : "9051",
"idpClientSecret" : "****************",
"idpScope" : "openid email profile",
"idpType" : "google",
"lockDocumentsAfterFirstValidation" : false,
"loginTokenTtl" : 3600000,
"logoResourceId" : "res_PtePJQx7wXXea5eNhCqqiidd",
"maxAttachments" : 10,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"tenantStatus" : "trial",
"updated" : 1731411598984
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the tenant. |
defaultGroupId |
String | The identifier of the default group in the tenant. |
domainName |
String | The domain name of the tenant. |
organizationName |
String optional | The organization name of the tenant. |
tenantStatus |
TenantStatus optional | The status of the tenant. |
idpType |
String | Identity provider type. |
idpBaseUrl |
String | Base URL for OpenID Connect based identity provider. |
idpScope |
String | Scope for OpenID Connect based identity provider. |
idpClientId |
String | Client ID for OpenID Connect based identity provider. |
idpClientSecret |
String | Client secret for OpenID Connect based identity provider. |
logoResourceId |
String optional | The identifier of the logo image resource. |
primaryColor |
String | The primary color of the portal. |
secondaryColor |
String | The secondary color of the portal. |
darkColor |
String | The dark color of the portal. |
smtpSenderName |
String | The sender name for notification emails. |
defaultCountry |
String | The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR . |
technicalContactUrl |
String | The technical contact URL to be used in the portal. |
loginTokenTtl |
Number | The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes. |
maxDocumentSize |
Number | The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes. |
maxDocuments |
Number | The portal maximum authorized documents to sign. Note that the default value is 200. |
maxAttachments |
Number | The portal maximum authorized attachments. Note that the default value is 10. |
downloadLinkTokenValidityDays |
Number | Download link token expiration period in days. Note that the default value is 3650. |
defaultAllowComments |
Boolean | The default allow comments value in steps. |
forceFlattenPdf |
Boolean | Whether the existing signature fields are flattened on PDF uploads. |
allowCommentsInSteps |
Boolean | Whether or not the comments authorization are managed by the workflow manager. |
allowWatchers |
Boolean | Whether or not the watchers authorization are managed by the workflow manager. |
createUserOnLogin |
Boolean | Whether or not users are automatically created on first login. |
createUserOnLoginGroupId |
kotlin.jvm.internal.StringCompanionObject@273f0f93 optional | Selected Group ID when option to created user on first login selected. |
allowedTenantStatus |
Array | The statuses to which the tenant is authorized to switch. |
attachmentExtensions |
Array | The allowed file extensions for workflows attachments. |
lockDocumentsAfterFirstValidation |
Boolean | Whether documents should be locked after the first validation. |
certificateEvidenceLanguage |
String | The language of the certificate of evidence. |
allowConsolidation |
Boolean | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Update tenant
Update an existing tenant.
HTTP request
PATCH /api/tenants/ten_8FGsBMHaBmWg8FrkfZ7pTixm HTTP/1.1
Authorization: Bearer act_9w2zTdJ6GAcJnEdpdvu9p1ok.4db2ajwZzVC1XoZBMbgNM2sJevw3PVn2cBGZozAZGZrAEayWTs6Bobinoyjdkky1
If-Match: "4ud3pdBjXXJ3sJrCgo3ZWgPQ"
Content-Type: application/json
Content-Length: 1330
{
"domainName" : "wehner.biz",
"organizationName" : "Roger SCOP",
"idpType" : "google",
"idpBaseUrl" : "https://accounts.google.com/",
"idpScope" : "openid email profile",
"idpClientId" : "9051",
"idpClientSecret" : "Dj1PHhQmsDmoaThM2An4hmDK",
"logo" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"darkColor" : "#104670",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"loginTokenTtl" : 3600000,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"maxAttachments" : 10,
"downloadLinkTokenValidityDays" : 90,
"defaultCountry" : "FR",
"allowCommentsInSteps" : false,
"allowWatchers" : false,
"defaultAllowComments" : false,
"forceFlattenPdf" : false,
"createUserOnLogin" : true,
"createUserOnLoginGroupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"certificateEvidenceLanguage" : "fr",
"attachmentExtensions" : [ "pdf", "word" ],
"lockDocumentsAfterFirstValidation" : false,
"allowConsolidation" : true
}
Path parameters:
/api/tenants/{tenantId}
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
domainName |
String optional | The domain name of the tenant. |
organizationName |
String optional | The organization name of the tenant. |
tenantStatus |
TenantStatus optional | The status of the tenant. |
idpType |
String optional | Identity provider type. |
idpBaseUrl |
String optional | Base URL for OpenID Connect based identity provider. |
idpScope |
String optional | Scope for OpenID Connect based identity provider. |
idpClientId |
String optional | Client ID for OpenID Connect based identity provider. |
idpClientSecret |
String optional | Client secret for OpenID Connect based identity provider. |
logo |
String optional | The logo image of the portal, as a data URI. |
primaryColor |
String optional | The primary color of the portal. |
secondaryColor |
String optional | The secondary color of the portal. |
darkColor |
String optional | The dark color of the portal. |
smtpSenderName |
String optional | The sender name for notification emails. |
defaultCountry |
String optional | The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR . |
technicalContactUrl |
String optional | The technical contact URL to be used in the portal. |
loginTokenTtl |
Number optional | The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes. |
maxDocumentSize |
Number optional | The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes. |
maxDocuments |
Number optional | The portal maximum authorized documents to sign. Note that the default value is 200. |
maxAttachments |
Number optional | The portal maximum authorized attachments. Note that the default value is 10. |
downloadLinkTokenValidityDays |
Number optional | Download link token expiration period in days. Note that the default value is 3650. |
defaultAllowComments |
Boolean optional | The default allow comments value in steps. |
forceFlattenPdf |
Boolean optional | Whether the existing signature fields are flattened on PDF uploads. |
allowCommentsInSteps |
Boolean optional | Whether or not the comments authorization are managed by the workflow manager. |
allowWatchers |
Boolean optional | Whether or not the watchers authorization are managed by the workflow manager. |
createUserOnLogin |
Boolean optional | Whether or not users are automatically created on first login. |
createUserOnLoginGroupId |
String optional | Selected Group ID when option to created user on first login selected. |
certificateEvidenceLanguage |
String optional | The language of the certificate of evidence. |
attachmentExtensions |
Array optional | The allowed file extensions for workflows attachments. |
lockDocumentsAfterFirstValidation |
Boolean optional | Whether documents should be locked after the first validation. |
allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_6oyHgQiWNyLfCAdLt8tHasTo
ETag: "C9Dozj6cAYZMgfmGMB8GTdBA"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1360
{
"allowCommentsInSteps" : false,
"allowConsolidation" : true,
"allowWatchers" : false,
"allowedTenantStatus" : [ "active", "inactive", "trial" ],
"attachmentExtensions" : [ "pdf", "word" ],
"certificateEvidenceLanguage" : "fr",
"consentVersion" : "V2",
"createUserOnLogin" : true,
"createUserOnLoginGroupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"created" : 1731412123401,
"darkColor" : "#104670",
"defaultAllowComments" : false,
"defaultCountry" : "FR",
"defaultGroupId" : "grp_L2NRQQb9J4x4QCMBYAGUdTGm",
"domainName" : "wehner.biz",
"downloadLinkTokenValidityDays" : 90,
"forceFlattenPdf" : false,
"id" : "ten_8FGsBMHaBmWg8FrkfZ7pTixm",
"idpBaseUrl" : "https://accounts.google.com/",
"idpClientId" : "9051",
"idpClientSecret" : "****************",
"idpScope" : "openid email profile",
"idpType" : "google",
"jobOperation" : "purgeTenantResource",
"lockDocumentsAfterFirstValidation" : false,
"loginTokenTtl" : 3600000,
"logoResourceId" : "res_J4UWxJTYGqWsE46fvFt7hiZK",
"maxAttachments" : 10,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"organizationName" : "Roger SCOP",
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"tenantStatus" : "trial",
"updated" : 1731412123520
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the tenant. |
defaultGroupId |
String | The identifier of the default group in the tenant. |
domainName |
String | The domain name of the tenant. |
organizationName |
String optional | The organization name of the tenant. |
tenantStatus |
TenantStatus optional | The status of the tenant. |
idpType |
String | Identity provider type. |
idpBaseUrl |
String | Base URL for OpenID Connect based identity provider. |
idpScope |
String | Scope for OpenID Connect based identity provider. |
idpClientId |
String | Client ID for OpenID Connect based identity provider. |
idpClientSecret |
String | Client secret for OpenID Connect based identity provider. |
logoResourceId |
String optional | The identifier of the logo image resource. |
primaryColor |
String | The primary color of the portal. |
secondaryColor |
String | The secondary color of the portal. |
darkColor |
String | The dark color of the portal. |
smtpSenderName |
String | The sender name for notification emails. |
defaultCountry |
String | The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR . |
technicalContactUrl |
String | The technical contact URL to be used in the portal. |
loginTokenTtl |
Number | The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes. |
maxDocumentSize |
Number | The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes. |
maxDocuments |
Number | The portal maximum authorized documents to sign. Note that the default value is 200. |
maxAttachments |
Number | The portal maximum authorized attachments. Note that the default value is 10. |
downloadLinkTokenValidityDays |
Number | Download link token expiration period in days. Note that the default value is 3650. |
defaultAllowComments |
Boolean | The default allow comments value in steps. |
forceFlattenPdf |
Boolean | Whether the existing signature fields are flattened on PDF uploads. |
allowCommentsInSteps |
Boolean | Whether or not the comments authorization are managed by the workflow manager. |
allowWatchers |
Boolean | Whether or not the watchers authorization are managed by the workflow manager. |
createUserOnLogin |
Boolean | Whether or not users are automatically created on first login. |
createUserOnLoginGroupId |
kotlin.jvm.internal.StringCompanionObject@273f0f93 optional | Selected Group ID when option to created user on first login selected. |
allowedTenantStatus |
Array | The statuses to which the tenant is authorized to switch. |
attachmentExtensions |
Array | The allowed file extensions for workflows attachments. |
lockDocumentsAfterFirstValidation |
Boolean | Whether documents should be locked after the first validation. |
certificateEvidenceLanguage |
String | The language of the certificate of evidence. |
allowConsolidation |
Boolean | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidHexColor | The provided color is not in hexadecimal format. |
400 |
InvalidImageFormat | The image format is not supported. |
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Delete tenant
Delete an existing tenant. Admin only.
HTTP request
DELETE /admin/api/tenants/ten_5RLxmAjSAvU2w11oaw8nV4F7 HTTP/1.1
Authorization: Basic YWRtaW46QXMxTG9NQnpnSFZQcFBGVkc3OHA3YUV4
If-Match: "7WjpaihNhtVUzyWKsmvgAx51"
Path parameters:
/admin/api/tenants/{tenantId}
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
Valid admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_AbKifB9s6zDqi4QRo82UormQ
ETag: "FJssPiwsyrXeJpgDfTQWYzCu"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1237
{
"allowCommentsInSteps" : true,
"allowConsolidation" : true,
"allowWatchers" : true,
"allowedTenantStatus" : [ "active", "inactive", "trial" ],
"attachmentExtensions" : [ ],
"certificateEvidenceLanguage" : "en",
"consentVersion" : "V2",
"createUserOnLogin" : true,
"created" : 1731412130212,
"darkColor" : "#104670",
"defaultAllowComments" : true,
"defaultCountry" : "FR",
"defaultGroupId" : "grp_66KvwCkpC3Je6VrM2eSKR5bC",
"domainName" : "smitham.net",
"downloadLinkTokenValidityDays" : 3650,
"forceFlattenPdf" : true,
"id" : "ten_5RLxmAjSAvU2w11oaw8nV4F7",
"idpBaseUrl" : "https://accounts.google.com/",
"idpClientId" : "9051",
"idpClientSecret" : "****************",
"idpScope" : "openid email profile",
"idpType" : "google",
"jobOperation" : "purgeTenant",
"lockDocumentsAfterFirstValidation" : false,
"loginTokenTtl" : 3600000,
"logoResourceId" : "res_8bD9jBBUGzc6YBoeJb6D9B7D",
"maxAttachments" : 10,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"tenantStatus" : "trial",
"updated" : 1731412130257
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the tenant. |
defaultGroupId |
String | The identifier of the default group in the tenant. |
domainName |
String | The domain name of the tenant. |
organizationName |
String optional | The organization name of the tenant. |
tenantStatus |
TenantStatus optional | The status of the tenant. |
idpType |
String | Identity provider type. |
idpBaseUrl |
String | Base URL for OpenID Connect based identity provider. |
idpScope |
String | Scope for OpenID Connect based identity provider. |
idpClientId |
String | Client ID for OpenID Connect based identity provider. |
idpClientSecret |
String | Client secret for OpenID Connect based identity provider. |
logoResourceId |
String optional | The identifier of the logo image resource. |
primaryColor |
String | The primary color of the portal. |
secondaryColor |
String | The secondary color of the portal. |
darkColor |
String | The dark color of the portal. |
smtpSenderName |
String | The sender name for notification emails. |
defaultCountry |
String | The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR . |
technicalContactUrl |
String | The technical contact URL to be used in the portal. |
loginTokenTtl |
Number | The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes. |
maxDocumentSize |
Number | The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes. |
maxDocuments |
Number | The portal maximum authorized documents to sign. Note that the default value is 200. |
maxAttachments |
Number | The portal maximum authorized attachments. Note that the default value is 10. |
downloadLinkTokenValidityDays |
Number | Download link token expiration period in days. Note that the default value is 3650. |
defaultAllowComments |
Boolean | The default allow comments value in steps. |
forceFlattenPdf |
Boolean | Whether the existing signature fields are flattened on PDF uploads. |
allowCommentsInSteps |
Boolean | Whether or not the comments authorization are managed by the workflow manager. |
allowWatchers |
Boolean | Whether or not the watchers authorization are managed by the workflow manager. |
createUserOnLogin |
Boolean | Whether or not users are automatically created on first login. |
createUserOnLoginGroupId |
kotlin.jvm.internal.StringCompanionObject@273f0f93 optional | Selected Group ID when option to created user on first login selected. |
allowedTenantStatus |
Array | The statuses to which the tenant is authorized to switch. |
attachmentExtensions |
Array | The allowed file extensions for workflows attachments. |
lockDocumentsAfterFirstValidation |
Boolean | Whether documents should be locked after the first validation. |
certificateEvidenceLanguage |
String | The language of the certificate of evidence. |
allowConsolidation |
Boolean | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
InvalidAdminCredentials | The admin credentials are incorrect. |
404 |
TenantNotFound | The specified tenant can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Search tenants
Search in all the tenants. Admin only.
HTTP request
GET /admin/api/tenants?text=klein.name&items.id=ten_DyvBSLey9Fnh65AGLLGoDB8D&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Basic YWRtaW46QXMxTG9NQnpnSFZQcFBGVkc3OHA3YUV4
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.domainName |
The filter value(s) for the domainName field. |
items.tenantStatus |
The filter value(s) for the tenantStatus field. |
items.organizationName |
The filter value(s) for the organizationName field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
Valid admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1354
{
"items" : [ {
"allowCommentsInSteps" : true,
"allowConsolidation" : true,
"allowWatchers" : true,
"allowedTenantStatus" : [ "active", "inactive", "trial" ],
"attachmentExtensions" : [ ],
"certificateEvidenceLanguage" : "en",
"consentVersion" : "V2",
"createUserOnLogin" : true,
"created" : 1731411598984,
"darkColor" : "#104670",
"defaultAllowComments" : true,
"defaultCountry" : "FR",
"defaultGroupId" : "grp_4RHF5UX2QBgWH4ueN9tQzM6V",
"domainName" : "klein.name",
"downloadLinkTokenValidityDays" : 3650,
"forceFlattenPdf" : true,
"id" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"idpBaseUrl" : "https://accounts.google.com/",
"idpClientId" : "9051",
"idpClientSecret" : "****************",
"idpScope" : "openid email profile",
"idpType" : "google",
"lockDocumentsAfterFirstValidation" : false,
"loginTokenTtl" : 3600000,
"logoResourceId" : "res_PtePJQx7wXXea5eNhCqqiidd",
"maxAttachments" : 10,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"tenantStatus" : "trial",
"updated" : 1731411598984
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the tenant. |
items[].defaultGroupId |
String | The identifier of the default group in the tenant. |
items[].domainName |
String | The domain name of the tenant. |
items[].organizationName |
String optional | The organization name of the tenant. |
items[].tenantStatus |
TenantStatus optional | The status of the tenant. |
items[].idpType |
String | Identity provider type. |
items[].idpBaseUrl |
String | Base URL for OpenID Connect based identity provider. |
items[].idpScope |
String | Scope for OpenID Connect based identity provider. |
items[].idpClientId |
String | Client ID for OpenID Connect based identity provider. |
items[].idpClientSecret |
String | Client secret for OpenID Connect based identity provider. |
items[].logoResourceId |
String optional | The identifier of the logo image resource. |
items[].primaryColor |
String | The primary color of the portal. |
items[].secondaryColor |
String | The secondary color of the portal. |
items[].darkColor |
String | The dark color of the portal. |
items[].smtpSenderName |
String | The sender name for notification emails. |
items[].defaultCountry |
String | The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR . |
items[].technicalContactUrl |
String | The technical contact URL to be used in the portal. |
items[].loginTokenTtl |
Number | The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes. |
items[].maxDocumentSize |
Number | The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes. |
items[].maxDocuments |
Number | The portal maximum authorized documents to sign. Note that the default value is 200. |
items[].maxAttachments |
Number | The portal maximum authorized attachments. Note that the default value is 10. |
items[].downloadLinkTokenValidityDays |
Number | Download link token expiration period in days. Note that the default value is 3650. |
items[].defaultAllowComments |
Boolean | The default allow comments value in steps. |
items[].forceFlattenPdf |
Boolean | Whether the existing signature fields are flattened on PDF uploads. |
items[].allowCommentsInSteps |
Boolean | Whether or not the comments authorization are managed by the workflow manager. |
items[].allowWatchers |
Boolean | Whether or not the watchers authorization are managed by the workflow manager. |
items[].createUserOnLogin |
Boolean | Whether or not users are automatically created on first login. |
items[].createUserOnLoginGroupId |
kotlin.jvm.internal.StringCompanionObject@273f0f93 optional | Selected Group ID when option to created user on first login selected. |
items[].allowedTenantStatus |
Array | The statuses to which the tenant is authorized to switch. |
items[].attachmentExtensions |
Array | The allowed file extensions for workflows attachments. |
items[].lockDocumentsAfterFirstValidation |
Boolean | Whether documents should be locked after the first validation. |
items[].certificateEvidenceLanguage |
String | The language of the certificate of evidence. |
items[].allowConsolidation |
Boolean | Indicates whether workflow consolidation is enabled or not. |
items[].jobOperation |
String optional | The job operation currently running. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
InvalidAdminCredentials | The admin credentials are incorrect. |
Export tenants
Export a search in all the tenants. Admin only.
HTTP request
POST /admin/api/tenants/exports?text=klein.name&items.id=ten_DyvBSLey9Fnh65AGLLGoDB8D&sortBy=items.id HTTP/1.1
Authorization: Basic YWRtaW46QXMxTG9NQnpnSFZQcFBGVkc3OHA3YUV4
Content-Type: application/json
Content-Length: 167
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}}",
"expired" : 1731498530020
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.domainName |
The filter value(s) for the domainName field. |
items.tenantStatus |
The filter value(s) for the tenantStatus field. |
items.organizationName |
The filter value(s) for the organizationName field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
Valid admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_248WyPpkBQJ4GNNQ7ZEGLEiu
ETag: "Gkgs68R4p8SZYSPLJmFdmJRa"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 497
{
"adminUser" : "admin",
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731412130021,
"expired" : 1731498530020,
"exportOperation" : "createTenantExport",
"id" : "exp_BzYiSf4wcJMVWn1oxBSfmUfy",
"itemTemplate" : "{{id}},{{name}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=klein.name&items.id=ten_DyvBSLey9Fnh65AGLLGoDB8D&sortBy=items.id",
"size" : 0,
"totalItems" : 0,
"updated" : 1731412130021
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
adminUser |
String optional | The admin user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
InvalidAdminCredentials | The admin credentials are incorrect. |
Users
Create user
Create a user.
HTTP request
POST /api/tenants/ten_DyvBSLey9Fnh65AGLLGoDB8D/users HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 745
{
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"isDisabled" : false,
"email" : "marlon.douglas3429@my-company.com",
"picture" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
"phoneNumber" : "+33 6 12 34 56 78",
"firstName" : "Pierre",
"lastName" : "Gauthier",
"country" : "FR",
"organizationTitles" : [ {
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"title" : "Global Metrics Manager"
} ],
"subject" : "79f1856a-aba4-43f6-9251-35a8da864183"
}
Path parameters:
/api/tenants/{tenantId}/users
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
groupId |
String | The identifier of the group the user belongs to. |
isDisabled |
Boolean optional | Whether or not the user is disabled. |
email |
String | The email address of the user. |
picture |
String optional | The picture of the user, as a URL or a data URI. |
phoneNumber |
String optional | The international phone number of the user. |
firstName |
String | The first name of the user. |
lastName |
String | The last name of the user. |
country |
String optional | The country of the user. |
subject |
String optional | The identifier of the user in the identity provider external database. |
organizationTitles |
Array optional | The organization titles of the user. |
organizationTitles[].organizationId |
String | The identifier of the organization. |
organizationTitles[].title |
String optional | The title of the user |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_6nLBGxLg66YRhxTmLSFJToEU
ETag: "F4fBb9UcTfb5C4jg6ozeEttw"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 842
{
"approveAllowed" : true,
"comanageAllowed" : true,
"country" : "FR",
"created" : 1731411752538,
"email" : "marlon.douglas3429@my-company.com",
"firstName" : "Pierre",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "usr_4vxyePa6Jh1yBdJWVra1iHYy",
"isDisabled" : false,
"lastLogin" : 0,
"lastName" : "Gauthier",
"name" : "Pierre Gauthier",
"organizationTitles" : [ {
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"title" : "Global Metrics Manager"
} ],
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_TProwSTgmX7GAaHSZ17NM4JA",
"signAllowed" : true,
"subject" : "79f1856a-aba4-43f6-9251-35a8da864183",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411752538,
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the user. |
tenantId |
String | The identifier of the tenant the user belongs to. |
groupId |
String | The identifier of the group the user belongs to. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this user. |
isDisabled |
Boolean | Whether or not the user is disabled. |
lastLogin |
Number | The date of the last login token creation for the user. |
email |
String | The email address of the user. |
pictureResourceId |
String optional | The identifier of the user picture resource. |
phoneNumber |
String | The international phone number of the user. |
name |
String | The full name of the user. |
firstName |
String | The first name of the user. |
lastName |
String | The last name of the user. |
country |
String | The country of the user. |
subject |
String optional | The identifier of the user in the identity provider external database. |
signAllowed |
Boolean | Whether or not the user is allowed to sign workflows. |
approveAllowed |
Boolean | Whether or not the user is allowed to approve workflows. |
comanageAllowed |
Boolean | Whether or not the user is allowed to co-manage workflows. |
organizationTitles |
Array | The organization titles of the user. |
organizationTitles[].organizationId |
String optional | The identifier of the organization. |
organizationTitles[].title |
String optional | The title of the user |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidEmailValue | The email parameter has an incorrect value. |
400 |
InvalidImageFormat | The image format is not supported. |
400 |
InvalidRequestField | A request field has an incorrect value. |
400 |
UserEmailAlreadyExists | A user with the specified email already exists. |
400 |
UserSubjectAlreadyExists | A user with the specified subject already exists. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
GroupDisabled | The specified group is disabled. |
403 |
ImageNotAccessible | The image URL is not accessible. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
GroupNotFound | The specified group can not be found. |
404 |
OrganizationNotFound | The specified organization can not be found. |
Retrieve user
Retrieve an existing user.
HTTP request
GET /api/users/usr_4aqKyeFGVZTMqH7FfFdVRD1C HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/users/{userId}
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "417AJHB3KHb1g11NY4bzSjGx"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 876
{
"approveAllowed" : true,
"comanageAllowed" : true,
"country" : "FR",
"created" : 1731411601033,
"email" : "quinn.mckenzie1510@my-company.com",
"firstName" : "Rogelio",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"isDisabled" : false,
"lastLogin" : 1731411601162,
"lastName" : "Breitenberg",
"name" : "Rogelio Breitenberg",
"organizationTitles" : [ {
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"title" : "International Markets Administrateur"
} ],
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"signAllowed" : true,
"subject" : "50e91d76-de82-45fa-a940-0bd57da66e8b",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411601163,
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the user. |
tenantId |
String | The identifier of the tenant the user belongs to. |
groupId |
String | The identifier of the group the user belongs to. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this user. |
isDisabled |
Boolean | Whether or not the user is disabled. |
lastLogin |
Number | The date of the last login token creation for the user. |
email |
String | The email address of the user. |
pictureResourceId |
String optional | The identifier of the user picture resource. |
phoneNumber |
String | The international phone number of the user. |
name |
String | The full name of the user. |
firstName |
String | The first name of the user. |
lastName |
String | The last name of the user. |
country |
String | The country of the user. |
subject |
String optional | The identifier of the user in the identity provider external database. |
signAllowed |
Boolean | Whether or not the user is allowed to sign workflows. |
approveAllowed |
Boolean | Whether or not the user is allowed to approve workflows. |
comanageAllowed |
Boolean | Whether or not the user is allowed to co-manage workflows. |
organizationTitles |
Array | The organization titles of the user. |
organizationTitles[].organizationId |
String optional | The identifier of the organization. |
organizationTitles[].title |
String optional | The title of the user |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
UserNotFound | The specified user can not be found. |
Retrieve me
Retrieve the currently authenticated user.
HTTP request
GET /api/users/me HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "417AJHB3KHb1g11NY4bzSjGx"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 876
{
"approveAllowed" : true,
"comanageAllowed" : true,
"country" : "FR",
"created" : 1731411601033,
"email" : "quinn.mckenzie1510@my-company.com",
"firstName" : "Rogelio",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"isDisabled" : false,
"lastLogin" : 1731411601162,
"lastName" : "Breitenberg",
"name" : "Rogelio Breitenberg",
"organizationTitles" : [ {
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"title" : "International Markets Administrateur"
} ],
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"signAllowed" : true,
"subject" : "50e91d76-de82-45fa-a940-0bd57da66e8b",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411601163,
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the user. |
tenantId |
String | The identifier of the tenant the user belongs to. |
groupId |
String | The identifier of the group the user belongs to. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this user. |
isDisabled |
Boolean | Whether or not the user is disabled. |
lastLogin |
Number | The date of the last login token creation for the user. |
email |
String | The email address of the user. |
pictureResourceId |
String optional | The identifier of the user picture resource. |
phoneNumber |
String | The international phone number of the user. |
name |
String | The full name of the user. |
firstName |
String | The first name of the user. |
lastName |
String | The last name of the user. |
country |
String | The country of the user. |
subject |
String optional | The identifier of the user in the identity provider external database. |
signAllowed |
Boolean | Whether or not the user is allowed to sign workflows. |
approveAllowed |
Boolean | Whether or not the user is allowed to approve workflows. |
comanageAllowed |
Boolean | Whether or not the user is allowed to co-manage workflows. |
organizationTitles |
Array | The organization titles of the user. |
organizationTitles[].organizationId |
String optional | The identifier of the organization. |
organizationTitles[].title |
String optional | The title of the user |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Update user
Update an existing user.
HTTP request
PATCH /api/users/usr_7MdJTZXZWirpUdDJyi77DDBD HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "EPhzuJaZmML9QsZtnmCo9y35"
Content-Type: application/json
Content-Length: 754
{
"groupId" : "grp_4RHF5UX2QBgWH4ueN9tQzM6V",
"isDisabled" : false,
"email" : "carrie.oberbrunner7726@my-company.com",
"picture" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
"phoneNumber" : "+33 6 12 34 56 78",
"firstName" : "Zoe",
"lastName" : "Louis",
"country" : "FR",
"organizationTitles" : [ {
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"title" : "Corporate Directives Coordinateur"
} ],
"subject" : "01014df7-1ddf-43b6-977d-52eff991fcad"
}
Path parameters:
/api/users/{userId}
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
groupId |
String | The identifier of the group the user belongs to. |
isDisabled |
Boolean optional | Whether or not the user is disabled. |
email |
String optional | The email address of the user. |
picture |
String optional | The picture of the user, as a URL or a data URI. |
phoneNumber |
String optional | The international phone number of the user. |
firstName |
String optional | The first name of the user. |
lastName |
String optional | The last name of the user. |
country |
String optional | The country of the user. |
subject |
String optional | The identifier of the user in the identity provider external database. |
organizationTitles |
Array optional | The organization titles of the user. |
organizationTitles[].organizationId |
String | The identifier of the organization. |
organizationTitles[].title |
String optional | The title of the user |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_EMtEHdBQJweBtHuQvy94zcex
ETag: "EUCbNRDp2fxpbEvrNXkMxkVM"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 820
{
"approveAllowed" : true,
"comanageAllowed" : true,
"country" : "FR",
"created" : 1731411754514,
"email" : "carrie.oberbrunner7726@my-company.com",
"firstName" : "Zoe",
"groupId" : "grp_4RHF5UX2QBgWH4ueN9tQzM6V",
"id" : "usr_7MdJTZXZWirpUdDJyi77DDBD",
"isDisabled" : false,
"jobOperation" : "refreshUserInfo",
"lastLogin" : 0,
"lastName" : "Louis",
"name" : "Zoe Louis",
"organizationTitles" : [ {
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"title" : "Corporate Directives Coordinateur"
} ],
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_BAFzoR6P6DYXdq1t7c355Kty",
"signAllowed" : true,
"subject" : "01014df7-1ddf-43b6-977d-52eff991fcad",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411754548,
"viewAuthorizedGroups" : [ ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the user. |
tenantId |
String | The identifier of the tenant the user belongs to. |
groupId |
String | The identifier of the group the user belongs to. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this user. |
isDisabled |
Boolean | Whether or not the user is disabled. |
lastLogin |
Number | The date of the last login token creation for the user. |
email |
String | The email address of the user. |
pictureResourceId |
String optional | The identifier of the user picture resource. |
phoneNumber |
String | The international phone number of the user. |
name |
String | The full name of the user. |
firstName |
String | The first name of the user. |
lastName |
String | The last name of the user. |
country |
String | The country of the user. |
subject |
String optional | The identifier of the user in the identity provider external database. |
signAllowed |
Boolean | Whether or not the user is allowed to sign workflows. |
approveAllowed |
Boolean | Whether or not the user is allowed to approve workflows. |
comanageAllowed |
Boolean | Whether or not the user is allowed to co-manage workflows. |
organizationTitles |
Array | The organization titles of the user. |
organizationTitles[].organizationId |
String optional | The identifier of the organization. |
organizationTitles[].title |
String optional | The title of the user |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidEmailValue | The email parameter has an incorrect value. |
400 |
InvalidImageFormat | The image format is not supported. |
400 |
InvalidRequestField | A request field has an incorrect value. |
400 |
UserEmailAlreadyExists | A user with the specified email already exists. |
400 |
UserSubjectAlreadyExists | A user with the specified subject already exists. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
GroupDisabled | The specified group is disabled. |
403 |
ImageNotAccessible | The image URL is not accessible. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
MissingIdentityName | A name is missing in the identity claims. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
GroupNotFound | The specified group can not be found. |
404 |
OrganizationNotFound | The specified organization can not be found. |
404 |
UserNotFound | The specified user can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Create user login token
Create a login token for a user.
HTTP request
POST /api/users/usr_4aqKyeFGVZTMqH7FfFdVRD1C/loginTokens HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/x-www-form-urlencoded
Path parameters:
/api/users/{userId}/loginTokens
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_Ed6n39kzWQf49mxeF1XZSp8e
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 370
{
"created" : 1731411804360,
"expired" : 1731415404360,
"scope" : "portalUser",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"tokenValue" : "eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MzE0MTU0MDQsInVzZXJJZCI6InVzcl80YXFLeWVGR1ZaVE1xSDdGZkZkVlJEMUMiLCJzY29wZSI6InBvcnRhbFV...",
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
tenantId |
String | The tenant identifier of the login token. |
userId |
String | The user identifier of the login token. |
scope |
String | The scope of the login token, either portalUser or workflowRecipient . |
tokenValue |
String | The login token value. |
created |
Number | The creation date of the login token. |
expired |
Number | The expiration date of the login token. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Revoke user login tokens
Revoke all the login tokens for a user.
HTTP request
DELETE /api/users/usr_E8EeWAQNQtWBn69YxcP33gkx/loginTokens HTTP/1.1
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJhZG1pblVzZXIiOiJhZG1pbiIsImV4cCI6MTczMTQxNTMwNCwidXNlcklkIjoidXNyX0U4RWVXQVFOUXRXQm42OVl4Y1AzM2d...
Path parameters:
/api/users/{userId}/loginTokens
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_KTBRGqVxJREzpEWJN2fecEm2
Cache-Control: no-cache
Errors:
Status | Code | Message |
---|---|---|
401 |
InvalidTokenSignature | The token signature is invalid. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Anonymize user
Anonymize an existing user.
HTTP request
DELETE /api/users/usr_573idaGjb4QmViid2kQpTweW HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "FCnKF1MwtmCd8h5eHEzGM1Xo"
Path parameters:
/api/users/{userId}
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_Jk9wLEsTD3ESmqhP3nVy8RAr
ETag: "GcxmaCjYk4ShkymmR6DW7pbi"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 566
{
"approveAllowed" : true,
"comanageAllowed" : true,
"country" : "",
"created" : 1731411744481,
"email" : "usr_573idaGjb4QmViid2kQpTweW@anonymized",
"firstName" : "",
"groupId" : "grp_4RHF5UX2QBgWH4ueN9tQzM6V",
"id" : "usr_573idaGjb4QmViid2kQpTweW",
"isDisabled" : true,
"jobOperation" : "purgeUserResource",
"lastLogin" : 0,
"lastName" : "",
"name" : "",
"organizationTitles" : [ ],
"phoneNumber" : "",
"signAllowed" : true,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411744520,
"viewAuthorizedGroups" : [ ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the user. |
tenantId |
String | The identifier of the tenant the user belongs to. |
groupId |
String | The identifier of the group the user belongs to. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this user. |
isDisabled |
Boolean | Whether or not the user is disabled. |
lastLogin |
Number | The date of the last login token creation for the user. |
email |
String | The email address of the user. |
pictureResourceId |
String optional | The identifier of the user picture resource. |
phoneNumber |
String | The international phone number of the user. |
name |
String | The full name of the user. |
firstName |
String | The first name of the user. |
lastName |
String | The last name of the user. |
country |
String | The country of the user. |
subject |
String optional | The identifier of the user in the identity provider external database. |
signAllowed |
Boolean | Whether or not the user is allowed to sign workflows. |
approveAllowed |
Boolean | Whether or not the user is allowed to approve workflows. |
comanageAllowed |
Boolean | Whether or not the user is allowed to co-manage workflows. |
organizationTitles |
Array | The organization titles of the user. |
organizationTitles[].organizationId |
String optional | The identifier of the organization. |
organizationTitles[].title |
String optional | The title of the user |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
UserNotFound | The specified user can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Search users
Search in all users.
HTTP request
GET /api/users?text=Rogelio%20Breitenberg&items.id=usr_4aqKyeFGVZTMqH7FfFdVRD1C&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.groupId |
The filter value(s) for the groupId field. |
items.viewAuthorizedGroups |
The filter value(s) for the viewAuthorizedGroups field. |
items.lastLogin |
The filter value(s) for the lastLogin field. |
items.subject |
The filter value(s) for the subject field. |
items.name |
The filter value(s) for the name field. |
items.email |
The filter value(s) for the email field. |
items.firstName |
The filter value(s) for the firstName field. |
items.lastName |
The filter value(s) for the lastName field. |
items.country |
The filter value(s) for the country field. |
items.signAllowed |
The filter value(s) for the signAllowed field. |
items.approveAllowed |
The filter value(s) for the approveAllowed field. |
items.organizationTitles.organizationId |
The filter value(s) for the organizationTitles.organizationId field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.comanageAllowed |
The filter value(s) for the comanageAllowed field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1006
{
"items" : [ {
"approveAllowed" : true,
"comanageAllowed" : true,
"country" : "FR",
"created" : 1731411601033,
"email" : "quinn.mckenzie1510@my-company.com",
"firstName" : "Rogelio",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"isDisabled" : false,
"lastLogin" : 1731411601162,
"lastName" : "Breitenberg",
"name" : "Rogelio Breitenberg",
"organizationTitles" : [ {
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"title" : "International Markets Administrateur"
} ],
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"signAllowed" : true,
"subject" : "50e91d76-de82-45fa-a940-0bd57da66e8b",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411601163,
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ]
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the user. |
items[].tenantId |
String | The identifier of the tenant the user belongs to. |
items[].groupId |
String | The identifier of the group the user belongs to. |
items[].viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this user. |
items[].isDisabled |
Boolean | Whether or not the user is disabled. |
items[].lastLogin |
Number | The date of the last login token creation for the user. |
items[].email |
String | The email address of the user. |
items[].pictureResourceId |
String optional | The identifier of the user picture resource. |
items[].phoneNumber |
String | The international phone number of the user. |
items[].name |
String | The full name of the user. |
items[].firstName |
String | The first name of the user. |
items[].lastName |
String | The last name of the user. |
items[].country |
String | The country of the user. |
items[].subject |
String optional | The identifier of the user in the identity provider external database. |
items[].signAllowed |
Boolean | Whether or not the user is allowed to sign workflows. |
items[].approveAllowed |
Boolean | Whether or not the user is allowed to approve workflows. |
items[].comanageAllowed |
Boolean | Whether or not the user is allowed to co-manage workflows. |
items[].organizationTitles |
Array | The organization titles of the user. |
items[].organizationTitles[].organizationId |
String optional | The identifier of the organization. |
items[].organizationTitles[].title |
String optional | The title of the user |
items[].jobOperation |
String optional | The job operation currently running. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export users
Export a search in all users.
HTTP request
POST /api/users/exports?text=Rogelio%20Breitenberg&items.id=usr_4aqKyeFGVZTMqH7FfFdVRD1C&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 195
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
"expired" : 1731498142382
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.groupId |
The filter value(s) for the groupId field. |
items.viewAuthorizedGroups |
The filter value(s) for the viewAuthorizedGroups field. |
items.lastLogin |
The filter value(s) for the lastLogin field. |
items.subject |
The filter value(s) for the subject field. |
items.name |
The filter value(s) for the name field. |
items.email |
The filter value(s) for the email field. |
items.firstName |
The filter value(s) for the firstName field. |
items.lastName |
The filter value(s) for the lastName field. |
items.country |
The filter value(s) for the country field. |
items.signAllowed |
The filter value(s) for the signAllowed field. |
items.approveAllowed |
The filter value(s) for the approveAllowed field. |
items.organizationTitles.organizationId |
The filter value(s) for the organizationTitles.organizationId field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.comanageAllowed |
The filter value(s) for the comanageAllowed field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_5b4VDNodQwgwwo6KUXYmQurm
ETag: "6L967F64uYT2r3EZrmMtzmBH"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 599
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731411742385,
"expired" : 1731498142382,
"exportOperation" : "createUserExport",
"id" : "exp_G2fNZizSanYejjAoU331JFWJ",
"itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Rogelio+Breitenberg&items.id=usr_4aqKyeFGVZTMqH7FfFdVRD1C&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731411742385,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Webhooks
Create user webhook
Create a webhook to receive events about workflows of a specific user.
HTTP request
POST /api/users/usr_4aqKyeFGVZTMqH7FfFdVRD1C/webhooks HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 251
{
"endpointUrl" : "https://my-company.com/Hbud2qnDB7AVMfu9aNm6wA39",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "coManagerRemoved", "coManagerAdded", "workflowFinished" ]
}
Path parameters:
/api/users/{userId}/webhooks
Parameter | Description |
---|---|
userId |
The identifier of the user. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
endpointUrl |
String | The URL of the webhook endpoint. |
notifiedEvents |
Array | The type of events the webhook will be notified about. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_MBPiD2a5afYSBqHsJ7PDR3vm
ETag: "G4vLFtEXnCwd2QpkUxdWpvXH"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 442
{
"created" : 1731411620893,
"endpointUrl" : "https://my-company.com/Hbud2qnDB7AVMfu9aNm6wA39",
"id" : "wbh_FgBaENsQZXDXch4AbTiRu2K7",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411620893,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the webhook. |
tenantId |
String | The identifier of the tenant the webhook belongs to. |
userId |
String optional | The identifier of the user the webhook belongs to, in case of a user webhook. |
endpointUrl |
String | The URL of the webhook endpoint. |
notifiedEvents |
Array | The type of events the webhook will be notified about. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Create global webhook
Create a webhook to receive events about all workflows in the tenant.
HTTP request
POST /api/tenants/ten_DyvBSLey9Fnh65AGLLGoDB8D/webhooks HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 251
{
"endpointUrl" : "https://my-company.com/NZbKMSgV55Krt7dUf3Z5FpMS",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "coManagerRemoved", "coManagerAdded", "workflowFinished" ]
}
Path parameters:
/api/tenants/{tenantId}/webhooks
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
endpointUrl |
String | The URL of the webhook endpoint. |
notifiedEvents |
Array | The type of events the webhook will be notified about. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_8L8TqRBhY5bY5AnXyq7WrQkE
ETag: "FEohb5B6FPy3wdimyi2icHNy"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 397
{
"created" : 1731411619717,
"endpointUrl" : "https://my-company.com/NZbKMSgV55Krt7dUf3Z5FpMS",
"id" : "wbh_Hry7XiAskcZfuKHR794DugWc",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411619717
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the webhook. |
tenantId |
String | The identifier of the tenant the webhook belongs to. |
userId |
String optional | The identifier of the user the webhook belongs to, in case of a user webhook. |
endpointUrl |
String | The URL of the webhook endpoint. |
notifiedEvents |
Array | The type of events the webhook will be notified about. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve webhook
Retrieve an existing webhook.
HTTP request
GET /api/webhooks/wbh_BGnAB32GxdJC6HrFczfhzjEM HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/webhooks/{webhookId}
Parameter | Description |
---|---|
webhookId |
The identifier of the webhook. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "8vykr21cozj3SshoPW5LEhAn"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 442
{
"created" : 1731411601278,
"endpointUrl" : "https://my-company.com/PykErDxXCxWQy81bUGdics8o",
"id" : "wbh_BGnAB32GxdJC6HrFczfhzjEM",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411615590,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the webhook. |
tenantId |
String | The identifier of the tenant the webhook belongs to. |
userId |
String optional | The identifier of the user the webhook belongs to, in case of a user webhook. |
endpointUrl |
String | The URL of the webhook endpoint. |
notifiedEvents |
Array | The type of events the webhook will be notified about. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WebhookNotFound | The specified webhook can not be found. |
Update webhook
Update an existing webhook.
HTTP request
PATCH /api/webhooks/wbh_BGnAB32GxdJC6HrFczfhzjEM HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "7MovfL34RJtUC3jeEaXSY94H"
Content-Type: application/json
Content-Length: 251
{
"endpointUrl" : "https://my-company.com/AtKQU7ZsM1zcacPv3yRkxoPK",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "coManagerRemoved", "coManagerAdded", "workflowFinished" ]
}
Path parameters:
/api/webhooks/{webhookId}
Parameter | Description |
---|---|
webhookId |
The identifier of the webhook. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
endpointUrl |
String optional | The URL of the webhook endpoint. |
notifiedEvents |
Array optional | The type of events the webhook will be notified about. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_GVTxyuCmZyxGPk77TYaEW2PW
ETag: "7ZtZC7nPvjdPnzh6j3vk3rA3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 442
{
"created" : 1731411601278,
"endpointUrl" : "https://my-company.com/AtKQU7ZsM1zcacPv3yRkxoPK",
"id" : "wbh_BGnAB32GxdJC6HrFczfhzjEM",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411612524,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the webhook. |
tenantId |
String | The identifier of the tenant the webhook belongs to. |
userId |
String optional | The identifier of the user the webhook belongs to, in case of a user webhook. |
endpointUrl |
String | The URL of the webhook endpoint. |
notifiedEvents |
Array | The type of events the webhook will be notified about. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WebhookNotFound | The specified webhook can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Delete webhook
Delete an existing webhook.
HTTP request
DELETE /api/webhooks/wbh_L3PkEnTcuoMnAjhdmgJ7gKjq HTTP/1.1
Authorization: Bearer act_NrxL8ANbpA78PbybjXULWF6L.2cUwFgXApzBdc4YH6NgSy6iTb6FwBnNjch5K1vCmoJc4vCiJLDVorj1zzfjDEk5S
Path parameters:
/api/webhooks/{webhookId}
Parameter | Description |
---|---|
webhookId |
The identifier of the webhook. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_6cHQm8J2V1b2jeXFDCV7aX5D
ETag: "55oVUJUgf35CBkmVa5gTfdX4"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 442
{
"created" : 1731411608103,
"endpointUrl" : "https://my-company.com/9Uw9o318NmfhXWntUosyY89W",
"id" : "wbh_L3PkEnTcuoMnAjhdmgJ7gKjq",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411608103,
"userId" : "usr_GVMN7oVRhC2gFiVb6j5K6ZoJ"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the webhook. |
tenantId |
String | The identifier of the tenant the webhook belongs to. |
userId |
String optional | The identifier of the user the webhook belongs to, in case of a user webhook. |
endpointUrl |
String | The URL of the webhook endpoint. |
notifiedEvents |
Array | The type of events the webhook will be notified about. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WebhookNotFound | The specified webhook can not be found. |
Search webhooks
Search in all the webhooks.
HTTP request
GET /api/webhooks?text=https%3A%2F%2Fmy-company.com%2F4Jm4814ibT2yXBxA8Cf2Mm6N&items.id=wbh_BGnAB32GxdJC6HrFczfhzjEM&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.userId |
The filter value(s) for the userId field. |
items.endpointUrl |
The filter value(s) for the endpointUrl field. |
items.notifiedEvents |
The filter value(s) for the notifiedEvents field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 540
{
"items" : [ {
"created" : 1731411601278,
"endpointUrl" : "https://my-company.com/4Jm4814ibT2yXBxA8Cf2Mm6N",
"id" : "wbh_BGnAB32GxdJC6HrFczfhzjEM",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411601278,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the webhook. |
items[].tenantId |
String | The identifier of the tenant the webhook belongs to. |
items[].userId |
String optional | The identifier of the user the webhook belongs to, in case of a user webhook. |
items[].endpointUrl |
String | The URL of the webhook endpoint. |
items[].notifiedEvents |
Array | The type of events the webhook will be notified about. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Webhook events
Retrieve webhook event
Retrieve an existing webhook event.
HTTP request
GET /api/webhookEvents/wbe_CFy8VsFUjV5jvYh2HFzf5xmo HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/webhookEvents/{webhookEventId}
Parameter | Description |
---|---|
webhookEventId |
The identifier of the webhook event. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "AJSP6ubru9YCx1RnzaF3tHkw"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 325
{
"created" : 1731411602730,
"eventType" : "workflowStarted",
"id" : "wbe_CFy8VsFUjV5jvYh2HFzf5xmo",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411649176,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"webhookId" : "wbh_BGnAB32GxdJC6HrFczfhzjEM",
"workflowId" : "wfl_MaBbhGj9UPqQsxxrX5V1Jm9G"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the webhook event. |
tenantId |
String | The identifier of the tenant the webhook event belongs to. |
userId |
String optional | The identifier of the user the webhook event belongs to, in case of a user webhook. |
webhookId |
String | The identifier of the webhook the webhook event belongs to. |
workflowId |
String optional | The identifier of the workflow the webhook event is about. |
stepId |
String optional | The identifier of the workflow step the webhook event is about, if relevant. |
eventType |
String | The type of webhook event. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WebhookEventNotFound | The specified webhook event can not be found. |
Search webhook events
Search in all the webhook events.
HTTP request
GET /api/webhookEvents?text=wbh_BGnAB32GxdJC6HrFczfhzjEM&items.id=wbe_CFy8VsFUjV5jvYh2HFzf5xmo&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.userId |
The filter value(s) for the userId field. |
items.endpointUrl |
The filter value(s) for the endpointUrl field. |
items.notifiedEvents |
The filter value(s) for the notifiedEvents field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 425
{
"items" : [ {
"created" : 1731411602730,
"eventType" : "workflowStarted",
"id" : "wbe_CFy8VsFUjV5jvYh2HFzf5xmo",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411649176,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"webhookId" : "wbh_BGnAB32GxdJC6HrFczfhzjEM",
"workflowId" : "wfl_MaBbhGj9UPqQsxxrX5V1Jm9G"
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the webhook event. |
items[].tenantId |
String | The identifier of the tenant the webhook event belongs to. |
items[].userId |
String optional | The identifier of the user the webhook event belongs to, in case of a user webhook. |
items[].webhookId |
String | The identifier of the webhook the webhook event belongs to. |
items[].workflowId |
String optional | The identifier of the workflow the webhook event is about. |
items[].stepId |
String optional | The identifier of the workflow step the webhook event is about, if relevant. |
items[].eventType |
String | The type of webhook event. |
items[].jobOperation |
String optional | The job operation currently running. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Workflows
Create workflow
Create a workflow.
HTTP request
POST /api/users/usr_4aqKyeFGVZTMqH7FfFdVRD1C/workflows HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 1477
{
"name" : "Sleek Aluminum Bag",
"description" : "Apt. 417, 22 Impasse du Chat-qui-Pêche, 42756 Lorient",
"steps" : [ {
"stepType" : "signature",
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"email" : "clement.hand267@my-company.com",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn",
"phoneNumber" : "+33 6 12 34 56 78",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"country" : "FR",
"preferredLocale" : "fr",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe"
} ],
"requiredRecipients" : 1,
"validityPeriod" : 8553600000,
"invitePeriod" : 86400000,
"maxInvites" : 5,
"sendDownloadLink" : true,
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : true
} ],
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"watchers" : [ {
"userId" : "usr_5TKjm9qdnUWePPbzheFyY8QU",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"email" : "justin.thiel2513@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
} ],
"allowConsolidation" : true
}
Path parameters:
/api/users/{userId}/workflows
Parameter | Description |
---|---|
userId |
The identifier of the user the workflow belongs to. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
name |
String | The name of the workflow. |
description |
String optional | The description of the workflow. |
steps |
Array optional | The steps of the workflow. |
steps[].stepType |
String optional | The type of the step, either signature or approval . |
steps[].recipients |
Array optional | The list of recipients who are requested to sign or approve the documents. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String optional | The first name of the recipient. |
steps[].recipients[].lastName |
String optional | The last name of the recipient. |
steps[].recipients[].country |
String optional | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].requiredRecipients |
Number optional | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number optional | The period during which the step is valid. Minimum is 86400000. Maximum is 8553600000. |
steps[].invitePeriod |
Number optional | The period after which invites are resent. Minimum is 86400000. Maximum is 2592000000. |
steps[].maxInvites |
Number optional | The maximum number of invites to send to the recipients. Minimum is 0. Maximum is 99. |
steps[].sendDownloadLink |
Boolean optional | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].allowComments |
Boolean optional | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean optional | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean optional | Whether or not other recipients of the workflow are visible to the recipients in this step. |
notifiedEvents |
Array optional | The type of events the owner will receive notifications about. |
watchers |
Array optional | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array optional | The type of events the watcher will receive notifications about. |
templateId |
String optional | The identifier of the workflow template. |
allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_LLm4usLeTe7NrsWsa4QRcUqS
ETag: "BeqtLHxGsK7kELiDsfJKujmQ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2404
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1731411915418,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "Apt. 417, 22 Impasse du Chat-qui-Pêche, 42756 Lorient",
"email" : "quinn.mckenzie1510@my-company.com",
"firstName" : "Rogelio",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "wfl_7pZRktRX5nHZnGwfzxLjwDRz",
"lastName" : "Breitenberg",
"logs" : [ ],
"name" : "Sleek Aluminum Bag",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : true,
"id" : "stp_CjPiMEEvMTsQUd4YTaCAtcxG",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"country" : "FR",
"email" : "clement.hand267@my-company.com",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"preferredLocale" : "fr",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000
} ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411915418,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_5TKjm9qdnUWePPbzheFyY8QU" ],
"watchers" : [ {
"email" : "justin.thiel2513@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_5TKjm9qdnUWePPbzheFyY8QU"
} ],
"workflowStatus" : "draft"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the workflow. |
tenantId |
String | The identifier of the tenant the workflow belongs to. |
groupId |
String | The identifier of the group the workflow belongs to. |
userId |
String | The identifier of the user the workflow belongs to. |
email |
String | The email address of the user the workflow belongs to. |
pictureResourceId |
String | The picture resource identifier of the user the workflow belongs to. |
firstName |
String | The first name of the user the workflow belongs to. |
lastName |
String | The last name of the user the workflow belongs to. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this workflow. |
viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view this workflow. |
name |
String | The name of the workflow. |
description |
String optional | The description of the workflow. |
data1 |
String optional | The value for the data1 metadata field. |
data2 |
String optional | The value for the data2 metadata field. |
data3 |
String optional | The value for the data3 metadata field. |
data4 |
String optional | The value for the data4 metadata field. |
data5 |
String optional | The value for the data5 metadata field. |
data6 |
String optional | The value for the data6 metadata field. |
data7 |
String optional | The value for the data7 metadata field. |
data8 |
String optional | The value for the data8 metadata field. |
data9 |
String optional | The value for the data9 metadata field. |
data10 |
String optional | The value for the data10 metadata field. |
data11 |
String optional | The value for the data11 metadata field. |
data12 |
String optional | The value for the data12 metadata field. |
data13 |
String optional | The value for the data13 metadata field. |
data14 |
String optional | The value for the data14 metadata field. |
data15 |
String optional | The value for the data15 metadata field. |
data16 |
String optional | The value for the data16 metadata field. |
logs |
Array | The logs of the workflow. |
steps |
Array | The steps of the workflow. |
steps[].id |
String | The identifier of the step. |
steps[].stepType |
String | The type of the step, either signature or approval . |
steps[].recipients |
Array | The list of recipients who are requested to sign or approve the documents. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].pictureResourceId |
String optional | The identifier of the user picture resource, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String | The first name of the recipient. |
steps[].recipients[].lastName |
String | The last name of the recipient. |
steps[].recipients[].country |
String | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].requiredRecipients |
Number | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number | The period during which the step is valid. |
steps[].invitePeriod |
Number | The period after which invites are resent. |
steps[].maxInvites |
Number | The maximum number of invites to send to the recipients. |
steps[].sendDownloadLink |
Boolean | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].isStarted |
Boolean | Whether or not the step is started. |
steps[].isFinished |
Boolean | Whether or not the step is started. |
steps[].allowComments |
Boolean | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of the workflow are visible to the recipients in this step. |
steps[].logs |
Array | The logs of the step. |
currentRecipientEmails |
Array | The list of recipient emails currently invited to sign or approve. |
currentRecipientUsers |
Array | The list of recipient users currently invited to sign or approve. |
notifiedEvents |
Array | The type of events the owner will receive notifications about. |
watchers |
Array | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
watchers |
Array | The list of users allowed to see the workflow and notified about the workflow events. |
workflowStatus |
String | The status of the workflow. |
started |
Number optional | The date the workflow was started for the first time. |
progress |
Number | The progress of the workflow. |
templateId |
String optional | The identifier of the workflow template. |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
coManagerNotifiedEvents |
Array optional | The type of events the comanager will receive notifications about. |
allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
IncorrectStepOrder | The steps order defined in the template is incorrect. |
400 |
InvalidRequestField | A request field has an incorrect value. |
400 |
MandatoryStepMissing | A step required in the template is missing. |
400 |
MaxRecipientsReached | The maximum number of recipients has been reached. |
400 |
MaxWatchersReached | The maximum number of watchers has been reached. |
400 |
NoLayoutInWorkflow | A workflow layout must be specified. |
400 |
NoTemplateInWorkflow | A workflow template must be specified. |
400 |
RecipientInfoMissing | A recipient in the request is missing identity information. |
400 |
RecipientPhoneNumberRequired | The specified consent page requires a recipient phone number. |
400 |
RecipientUserRequired | The specified consent page requires a recipient user ID. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
ConsentPageDisabled | The specified consent page is disabled. |
403 |
ConsentPageNotAllowed | The specified consent page is not allowed by the template. |
403 |
GroupNotAllowed | The specified group is not allowed by the template. |
403 |
LayoutNotAllowed | The specified layout is not allowed by the template. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
OrganizationNotAllowed | The selected organization is not allowed to this recipient. |
403 |
RecipientNotAllowed | The specified recipient is not allowed to sign or validate documents. |
403 |
TemplateNotAllowed | The selected template is not allowed. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserDisabled | The specified user is disabled. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
ConsentPageNotFound | The specified consent page can not be found. |
404 |
UserNotFound | The specified user can not be found. |
Retrieve workflow
Retrieve an existing workflow.
HTTP request
GET /api/workflows/wfl_3C9uJZAnjVC46REGJCC9C8U9 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/workflows/{workflowId}
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "3DNteuRrUYscxBCxC3rL3epv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2529
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1731411627703,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "1 étage, 5 Rue de Solférino, 00973 Avignon",
"email" : "quinn.mckenzie1510@my-company.com",
"firstName" : "Rogelio",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "wfl_3C9uJZAnjVC46REGJCC9C8U9",
"lastName" : "Breitenberg",
"logs" : [ {
"commentId" : "com_54TXpKjjpEvctgzHiJAqGQ6C",
"created" : 1731411627935,
"operation" : "notifyCommentCreated"
} ],
"name" : "Lightweight Concrete Watch",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_7aq62HeBvW5xH1oR4eHT1NJf",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"country" : "FR",
"email" : "clement.hand267@my-company.com",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"preferredLocale" : "fr",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000
} ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411628255,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_HRrQNJrEp7xNFvQAPjiRgFT4" ],
"watchers" : [ {
"email" : "juli.boyle6749@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_HRrQNJrEp7xNFvQAPjiRgFT4"
} ],
"workflowStatus" : "draft"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the workflow. |
tenantId |
String | The identifier of the tenant the workflow belongs to. |
groupId |
String | The identifier of the group the workflow belongs to. |
userId |
String | The identifier of the user the workflow belongs to. |
email |
String | The email address of the user the workflow belongs to. |
pictureResourceId |
String | The picture resource identifier of the user the workflow belongs to. |
firstName |
String | The first name of the user the workflow belongs to. |
lastName |
String | The last name of the user the workflow belongs to. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this workflow. |
viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view this workflow. |
name |
String | The name of the workflow. |
description |
String optional | The description of the workflow. |
data1 |
String optional | The value for the data1 metadata field. |
data2 |
String optional | The value for the data2 metadata field. |
data3 |
String optional | The value for the data3 metadata field. |
data4 |
String optional | The value for the data4 metadata field. |
data5 |
String optional | The value for the data5 metadata field. |
data6 |
String optional | The value for the data6 metadata field. |
data7 |
String optional | The value for the data7 metadata field. |
data8 |
String optional | The value for the data8 metadata field. |
data9 |
String optional | The value for the data9 metadata field. |
data10 |
String optional | The value for the data10 metadata field. |
data11 |
String optional | The value for the data11 metadata field. |
data12 |
String optional | The value for the data12 metadata field. |
data13 |
String optional | The value for the data13 metadata field. |
data14 |
String optional | The value for the data14 metadata field. |
data15 |
String optional | The value for the data15 metadata field. |
data16 |
String optional | The value for the data16 metadata field. |
logs |
Array | The logs of the workflow. |
steps |
Array | The steps of the workflow. |
steps[].id |
String | The identifier of the step. |
steps[].stepType |
String | The type of the step, either signature or approval . |
steps[].recipients |
Array | The list of recipients who are requested to sign or approve the documents. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].pictureResourceId |
String optional | The identifier of the user picture resource, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String | The first name of the recipient. |
steps[].recipients[].lastName |
String | The last name of the recipient. |
steps[].recipients[].country |
String | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].requiredRecipients |
Number | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number | The period during which the step is valid. |
steps[].invitePeriod |
Number | The period after which invites are resent. |
steps[].maxInvites |
Number | The maximum number of invites to send to the recipients. |
steps[].sendDownloadLink |
Boolean | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].isStarted |
Boolean | Whether or not the step is started. |
steps[].isFinished |
Boolean | Whether or not the step is started. |
steps[].allowComments |
Boolean | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of the workflow are visible to the recipients in this step. |
steps[].logs |
Array | The logs of the step. |
currentRecipientEmails |
Array | The list of recipient emails currently invited to sign or approve. |
currentRecipientUsers |
Array | The list of recipient users currently invited to sign or approve. |
notifiedEvents |
Array | The type of events the owner will receive notifications about. |
watchers |
Array | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
watchers |
Array | The list of users allowed to see the workflow and notified about the workflow events. |
workflowStatus |
String | The status of the workflow. |
started |
Number optional | The date the workflow was started for the first time. |
progress |
Number | The progress of the workflow. |
templateId |
String optional | The identifier of the workflow template. |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
coManagerNotifiedEvents |
Array optional | The type of events the comanager will receive notifications about. |
allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Update workflow
Update an existing workflow.
HTTP request
PATCH /api/workflows/wfl_MFgQqPxVg7rEVeGsGhyzMQRk HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "AAcvTinie3avCCz6aurgUmqf"
Content-Type: application/json
Content-Length: 1573
{
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"name" : "Enormous Silk Bottle",
"description" : "Apt. 384, 670 Rue Pierre Charron, 48323 Noisy-le-Grand",
"steps" : [ {
"id" : "stp_54SZE14BEmWJMYAdwfqkgVR1",
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"email" : "clement.hand267@my-company.com",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn",
"phoneNumber" : "+33 6 12 34 56 78",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"country" : "FR",
"preferredLocale" : "fr",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe"
} ],
"requiredRecipients" : 1,
"validityPeriod" : 8553600000,
"invitePeriod" : 86400000,
"maxInvites" : 5,
"sendDownloadLink" : true,
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : true
} ],
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"allowedCoManagerUsers" : [ ],
"watchers" : [ {
"userId" : "usr_JhJ5DUWBR82PHMv7DZUZqkra",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"email" : "cristina.lakin5749@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
} ],
"workflowStatus" : "stopped"
}
Path parameters:
/api/workflows/{workflowId}
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
userId |
String optional | The identifier of the user the workflow belongs to. |
name |
String optional | The name of the workflow. |
description |
String optional | The description of the workflow. |
workflowStatus |
String optional | The status of the workflow. |
steps |
Array optional | The steps of the workflow. |
steps[].id |
String optional | The identifier if the step. |
steps[].recipients |
Array optional | The list of recipients who are requested to sign or approve the documents. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String optional | The first name of the recipient. |
steps[].recipients[].lastName |
String optional | The last name of the recipient. |
steps[].recipients[].country |
String optional | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].requiredRecipients |
Number optional | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number optional | The period during which the step is valid. Minimum is 86400000. Maximum is 8553600000. |
steps[].invitePeriod |
Number optional | The period after which invites are resent. Minimum is 86400000. Maximum is 2592000000. |
steps[].maxInvites |
Number optional | The maximum number of invites to send to the recipients. Minimum is 0. Maximum is 99. |
steps[].sendDownloadLink |
Boolean optional | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].allowComments |
Boolean optional | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean optional | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean optional | Whether or not other recipients of the workflow are visible to the recipients in this step. |
notifiedEvents |
Array optional | The type of events the owner will receive notifications about. |
watchers |
Array optional | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array optional | The type of events the watcher will receive notifications about. |
templateId |
String optional | The identifier of the workflow template. |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_M15JEC9oByk2CrreKfdwR9Jc
ETag: "AedLBtPr4gf78BHXgqChNGvD"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2467
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1731411924159,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "Apt. 384, 670 Rue Pierre Charron, 48323 Noisy-le-Grand",
"email" : "quinn.mckenzie1510@my-company.com",
"firstName" : "Rogelio",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "wfl_MFgQqPxVg7rEVeGsGhyzMQRk",
"jobOperation" : "refreshWorkflowViewAuthorizedUsers",
"lastName" : "Breitenberg",
"logs" : [ ],
"name" : "Enormous Silk Bottle",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : true,
"id" : "stp_54SZE14BEmWJMYAdwfqkgVR1",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"country" : "FR",
"email" : "clement.hand267@my-company.com",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"preferredLocale" : "fr",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000
} ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411924216,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_JhJ5DUWBR82PHMv7DZUZqkra" ],
"watchers" : [ {
"email" : "cristina.lakin5749@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_JhJ5DUWBR82PHMv7DZUZqkra"
} ],
"workflowStatus" : "stopped"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the workflow. |
tenantId |
String | The identifier of the tenant the workflow belongs to. |
groupId |
String | The identifier of the group the workflow belongs to. |
userId |
String | The identifier of the user the workflow belongs to. |
email |
String | The email address of the user the workflow belongs to. |
pictureResourceId |
String | The picture resource identifier of the user the workflow belongs to. |
firstName |
String | The first name of the user the workflow belongs to. |
lastName |
String | The last name of the user the workflow belongs to. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this workflow. |
viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view this workflow. |
name |
String | The name of the workflow. |
description |
String optional | The description of the workflow. |
data1 |
String optional | The value for the data1 metadata field. |
data2 |
String optional | The value for the data2 metadata field. |
data3 |
String optional | The value for the data3 metadata field. |
data4 |
String optional | The value for the data4 metadata field. |
data5 |
String optional | The value for the data5 metadata field. |
data6 |
String optional | The value for the data6 metadata field. |
data7 |
String optional | The value for the data7 metadata field. |
data8 |
String optional | The value for the data8 metadata field. |
data9 |
String optional | The value for the data9 metadata field. |
data10 |
String optional | The value for the data10 metadata field. |
data11 |
String optional | The value for the data11 metadata field. |
data12 |
String optional | The value for the data12 metadata field. |
data13 |
String optional | The value for the data13 metadata field. |
data14 |
String optional | The value for the data14 metadata field. |
data15 |
String optional | The value for the data15 metadata field. |
data16 |
String optional | The value for the data16 metadata field. |
logs |
Array | The logs of the workflow. |
steps |
Array | The steps of the workflow. |
steps[].id |
String | The identifier of the step. |
steps[].stepType |
String | The type of the step, either signature or approval . |
steps[].recipients |
Array | The list of recipients who are requested to sign or approve the documents. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].pictureResourceId |
String optional | The identifier of the user picture resource, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String | The first name of the recipient. |
steps[].recipients[].lastName |
String | The last name of the recipient. |
steps[].recipients[].country |
String | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].requiredRecipients |
Number | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number | The period during which the step is valid. |
steps[].invitePeriod |
Number | The period after which invites are resent. |
steps[].maxInvites |
Number | The maximum number of invites to send to the recipients. |
steps[].sendDownloadLink |
Boolean | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].isStarted |
Boolean | Whether or not the step is started. |
steps[].isFinished |
Boolean | Whether or not the step is started. |
steps[].allowComments |
Boolean | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of the workflow are visible to the recipients in this step. |
steps[].logs |
Array | The logs of the step. |
currentRecipientEmails |
Array | The list of recipient emails currently invited to sign or approve. |
currentRecipientUsers |
Array | The list of recipient users currently invited to sign or approve. |
notifiedEvents |
Array | The type of events the owner will receive notifications about. |
watchers |
Array | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
watchers |
Array | The list of users allowed to see the workflow and notified about the workflow events. |
workflowStatus |
String | The status of the workflow. |
started |
Number optional | The date the workflow was started for the first time. |
progress |
Number | The progress of the workflow. |
templateId |
String optional | The identifier of the workflow template. |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
coManagerNotifiedEvents |
Array optional | The type of events the comanager will receive notifications about. |
allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
IncorrectStepOrder | The steps order defined in the template is incorrect. |
400 |
InvalidRequestField | A request field has an incorrect value. |
400 |
MaxRecipientsReached | The maximum number of recipients has been reached. |
400 |
MaxWatchersReached | The maximum number of watchers has been reached. |
400 |
NoRecipientInStep | Recipients are missing from workflow step. |
400 |
RecipientInfoMissing | A recipient in the request is missing identity information. |
400 |
RecipientPhoneNumberRequired | The specified consent page requires a recipient phone number. |
403 |
ApprovalNotAllowed | The specified recipient user is not allowed to approve workflows. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
ConsentPageDisabled | The specified consent page is disabled. |
403 |
ConsentPageNotAllowed | The specified consent page is not allowed by the template. |
403 |
GroupNotAllowed | The specified group is not allowed by the template. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
NoDocumentToSignInWorkflow | There is no document to sign in the specified workflow. |
403 |
NoStepInWorkflow | There is no step in the specified workflow. |
403 |
OrganizationNotAllowed | The selected organization is not allowed to this recipient. |
403 |
RecipientNotAllowed | The specified recipient is not allowed to sign or validate documents. |
403 |
SignatureNotAllowed | The specified recipient user is not allowed to sign workflows. |
403 |
StepBlocked | The current step is blocked. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserDisabled | The specified user is disabled. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
ConsentPageNotFound | The specified consent page can not be found. |
404 |
UserNotFound | The specified user can not be found. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Duplicate workflow
Duplicate an existing workflow.
HTTP request
POST /api/workflows/wfl_MvFmDifa3cc9KSnwezsJmT9K/copy HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 1424
{
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"name" : "new Workflow",
"description" : "1145 Quai des Saussaies, 47048 Saint-Étienne",
"steps" : [ {
"id" : "stp_LxxV96FMXu5DTz27aZCsdxyn",
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"email" : "clement.hand267@my-company.com",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn",
"phoneNumber" : "+33 6 12 34 56 78",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"country" : "FR",
"preferredLocale" : "fr",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe"
} ],
"requiredRecipients" : 1,
"validityPeriod" : 8553600000,
"invitePeriod" : 86400000,
"maxInvites" : 5,
"sendDownloadLink" : true
} ],
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"watchers" : [ {
"userId" : "usr_9P87L7rf3JeEXeiXXbDRCmGm",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"email" : "shakia.wolf7530@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
} ],
"workflowStatus" : "stopped"
}
Path parameters:
/api/workflows/{workflowId}/copy
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow to copy. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
userId |
String optional | The identifier of the user the workflow belongs to. |
name |
String optional | The name of the workflow. |
description |
String optional | The description of the workflow. |
workflowStatus |
String optional | The status of the workflow. |
steps |
Array optional | The steps of the workflow. |
steps[].id |
String optional | The identifier if the step. |
steps[].recipients |
Array optional | The list of recipients who are requested to sign or approve the documents. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String optional | The first name of the recipient. |
steps[].recipients[].lastName |
String optional | The last name of the recipient. |
steps[].recipients[].country |
String optional | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].requiredRecipients |
Number optional | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number optional | The period during which the step is valid. Minimum is 86400000. Maximum is 8553600000. |
steps[].invitePeriod |
Number optional | The period after which invites are resent. Minimum is 86400000. Maximum is 2592000000. |
steps[].maxInvites |
Number optional | The maximum number of invites to send to the recipients. Minimum is 0. Maximum is 99. |
steps[].sendDownloadLink |
Boolean optional | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
notifiedEvents |
Array optional | The type of events the owner will receive notifications about. |
watchers |
Array optional | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array optional | The type of events the watcher will receive notifications about. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_4LUpsNV36Qo3dDZ99U1hYi7S
ETag: "HvqktvnLCJtPJHRzA2J75nJw"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2391
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1731411865371,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "1145 Quai des Saussaies, 47048 Saint-Étienne",
"email" : "quinn.mckenzie1510@my-company.com",
"firstName" : "Rogelio",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "wfl_CgXx3rAoPSdSaRUvmKWLTxpf",
"lastName" : "Breitenberg",
"logs" : [ ],
"name" : "new Workflow",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_LxxV96FMXu5DTz27aZCsdxyn",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"country" : "FR",
"email" : "clement.hand267@my-company.com",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"preferredLocale" : "fr",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000
} ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411865371,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_9P87L7rf3JeEXeiXXbDRCmGm" ],
"watchers" : [ {
"email" : "shakia.wolf7530@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_9P87L7rf3JeEXeiXXbDRCmGm"
} ],
"workflowStatus" : "stopped"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the workflow. |
tenantId |
String | The identifier of the tenant the workflow belongs to. |
groupId |
String | The identifier of the group the workflow belongs to. |
userId |
String | The identifier of the user the workflow belongs to. |
email |
String | The email address of the user the workflow belongs to. |
pictureResourceId |
String | The picture resource identifier of the user the workflow belongs to. |
firstName |
String | The first name of the user the workflow belongs to. |
lastName |
String | The last name of the user the workflow belongs to. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this workflow. |
viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view this workflow. |
name |
String | The name of the workflow. |
description |
String optional | The description of the workflow. |
data1 |
String optional | The value for the data1 metadata field. |
data2 |
String optional | The value for the data2 metadata field. |
data3 |
String optional | The value for the data3 metadata field. |
data4 |
String optional | The value for the data4 metadata field. |
data5 |
String optional | The value for the data5 metadata field. |
data6 |
String optional | The value for the data6 metadata field. |
data7 |
String optional | The value for the data7 metadata field. |
data8 |
String optional | The value for the data8 metadata field. |
data9 |
String optional | The value for the data9 metadata field. |
data10 |
String optional | The value for the data10 metadata field. |
data11 |
String optional | The value for the data11 metadata field. |
data12 |
String optional | The value for the data12 metadata field. |
data13 |
String optional | The value for the data13 metadata field. |
data14 |
String optional | The value for the data14 metadata field. |
data15 |
String optional | The value for the data15 metadata field. |
data16 |
String optional | The value for the data16 metadata field. |
logs |
Array | The logs of the workflow. |
steps |
Array | The steps of the workflow. |
steps[].id |
String | The identifier of the step. |
steps[].stepType |
String | The type of the step, either signature or approval . |
steps[].recipients |
Array | The list of recipients who are requested to sign or approve the documents. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].pictureResourceId |
String optional | The identifier of the user picture resource, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String | The first name of the recipient. |
steps[].recipients[].lastName |
String | The last name of the recipient. |
steps[].recipients[].country |
String | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].requiredRecipients |
Number | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number | The period during which the step is valid. |
steps[].invitePeriod |
Number | The period after which invites are resent. |
steps[].maxInvites |
Number | The maximum number of invites to send to the recipients. |
steps[].sendDownloadLink |
Boolean | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].isStarted |
Boolean | Whether or not the step is started. |
steps[].isFinished |
Boolean | Whether or not the step is started. |
steps[].allowComments |
Boolean | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of the workflow are visible to the recipients in this step. |
steps[].logs |
Array | The logs of the step. |
currentRecipientEmails |
Array | The list of recipient emails currently invited to sign or approve. |
currentRecipientUsers |
Array | The list of recipient users currently invited to sign or approve. |
notifiedEvents |
Array | The type of events the owner will receive notifications about. |
watchers |
Array | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
watchers |
Array | The list of users allowed to see the workflow and notified about the workflow events. |
workflowStatus |
String | The status of the workflow. |
started |
Number optional | The date the workflow was started for the first time. |
progress |
Number | The progress of the workflow. |
templateId |
String optional | The identifier of the workflow template. |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
coManagerNotifiedEvents |
Array optional | The type of events the comanager will receive notifications about. |
allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
400 |
RecipientInfoMissing | A recipient in the request is missing identity information. |
400 |
RecipientPhoneNumberRequired | The specified consent page requires a recipient phone number. |
403 |
ApprovalNotAllowed | The specified recipient user is not allowed to approve workflows. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
ConsentPageDisabled | The specified consent page is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
OrganizationNotAllowed | The selected organization is not allowed to this recipient. |
403 |
SignatureNotAllowed | The specified recipient user is not allowed to sign workflows. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
ConsentPageNotFound | The specified consent page can not be found. |
404 |
UserNotFound | The specified user can not be found. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Create workflow invite
Create an invite for a signer or an approver of an existing workflow.
HTTP request
POST /api/workflows/wfl_MaBbhGj9UPqQsxxrX5V1Jm9G/invite HTTP/1.1
Authorization: Bearer act_HSDNs5TsHdBMhVVAxEwpsAB1.5oWe4yvTziquS5RnAV6VaSGTd3cbdM5vPaPCHxbThtuegmP3maim3DcWx8UM6M6r
Content-Type: application/json
Content-Length: 57
{
"recipientEmail" : "clement.hand267@my-company.com"
}
Path parameters:
/api/workflows/{workflowId}/invite
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
recipientEmail |
String | The email of the workflow recipient. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_1ZfWNmucrii9mJvDNFCRsu94
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 358
{
"inviteUrl" : "https://klein.name/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0QyTjczMmY4YzREZDlicVh6Y..."
}
Fields:
Path | Type | Description |
---|---|---|
inviteUrl |
String | The invite URL. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
InvalidWorkflowStatus | The status of the workflow does not allow this operation. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
RecipientNotFound | The specified recipient can not be found. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Send workflow invite
Send an invite for a signer or an approver of an existing workflow.
HTTP request
POST /api/workflows/wfl_2NeV5ffujw3Zdn4Z7f3dHRDY/sendInvite HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 57
{
"recipientEmail" : "clement.hand267@my-company.com"
}
Path parameters:
/api/workflows/{workflowId}/sendInvite
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
recipientEmail |
String | The email of the workflow recipient. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_AUnXDFyve3396aJG9uUhoqhg
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 358
{
"inviteUrl" : "https://klein.name/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0Q2UVlDcUFyVU1vNFNjNnAyW..."
}
Fields:
Path | Type | Description |
---|---|---|
inviteUrl |
String | The invite URL. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InviteAlreadySent | An invite has just been sent. Please try again in a few minutes. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
InvalidWorkflowStatus | The status of the workflow does not allow this operation. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
RecipientNotFound | The specified recipient can not be found. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Refuse workflow invite
Refuse an invite by a signer or an approver of an existing workflow.
HTTP request
POST /api/workflows/wfl_NPSWk7NLEC3Vs4TwDXQWVuu5/refuse HTTP/1.1
Authorization: Bearer act_HSDNs5TsHdBMhVVAxEwpsAB1.5oWe4yvTziquS5RnAV6VaSGTd3cbdM5vPaPCHxbThtuegmP3maim3DcWx8UM6M6r
Content-Type: application/json
Content-Length: 30
{
"reason" : "I disagree."
}
Path parameters:
/api/workflows/{workflowId}/refuse
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
reason |
String optional | The reason for the refusal. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_NvoHzgqZdtibqEDR9MkYERc7
ETag: "DVULJJcv6dZSauDxXbuB8Z5F"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 3149
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1731411859543,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "3 étage, 7 Boulevard de la Ferronnerie, 75336 Villeneuve-d'Ascq",
"email" : "quinn.mckenzie1510@my-company.com",
"firstName" : "Rogelio",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "wfl_NPSWk7NLEC3Vs4TwDXQWVuu5",
"jobOperation" : "processWorkflow",
"lastName" : "Breitenberg",
"logs" : [ ],
"name" : "Rustic Silk Bottle",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"progress" : 0,
"started" : 1731411859618,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_5Yzt2Lu6ZFB9KorKfdV4hxRZ",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : true,
"logs" : [ {
"created" : 1731411859618,
"operation" : "start"
}, {
"created" : 1731411859618,
"operation" : "notifyWorkflowStarted"
}, {
"created" : 1731411860005,
"operation" : "invite",
"recipientEmail" : "clement.hand267@my-company.com",
"recipientUserId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
}, {
"created" : 1731411860151,
"operation" : "refuse",
"reason" : "I disagree.",
"recipientEmail" : "clement.hand267@my-company.com",
"recipientUserId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
}, {
"created" : 1731411860151,
"operation" : "stop"
} ],
"maxInvites" : 5,
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"country" : "FR",
"email" : "clement.hand267@my-company.com",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"preferredLocale" : "fr",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000
} ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411860151,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_ADNANft8wJuFB75rPe7AT98k", "usr_G4Fyxr1r1xttc2SNDKfWguNn" ],
"watchers" : [ {
"email" : "rolland.erdman4894@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_ADNANft8wJuFB75rPe7AT98k"
} ],
"workflowStatus" : "stopped"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the workflow. |
tenantId |
String | The identifier of the tenant the workflow belongs to. |
groupId |
String | The identifier of the group the workflow belongs to. |
userId |
String | The identifier of the user the workflow belongs to. |
email |
String | The email address of the user the workflow belongs to. |
pictureResourceId |
String | The picture resource identifier of the user the workflow belongs to. |
firstName |
String | The first name of the user the workflow belongs to. |
lastName |
String | The last name of the user the workflow belongs to. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this workflow. |
viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view this workflow. |
name |
String | The name of the workflow. |
description |
String optional | The description of the workflow. |
data1 |
String optional | The value for the data1 metadata field. |
data2 |
String optional | The value for the data2 metadata field. |
data3 |
String optional | The value for the data3 metadata field. |
data4 |
String optional | The value for the data4 metadata field. |
data5 |
String optional | The value for the data5 metadata field. |
data6 |
String optional | The value for the data6 metadata field. |
data7 |
String optional | The value for the data7 metadata field. |
data8 |
String optional | The value for the data8 metadata field. |
data9 |
String optional | The value for the data9 metadata field. |
data10 |
String optional | The value for the data10 metadata field. |
data11 |
String optional | The value for the data11 metadata field. |
data12 |
String optional | The value for the data12 metadata field. |
data13 |
String optional | The value for the data13 metadata field. |
data14 |
String optional | The value for the data14 metadata field. |
data15 |
String optional | The value for the data15 metadata field. |
data16 |
String optional | The value for the data16 metadata field. |
logs |
Array | The logs of the workflow. |
steps |
Array | The steps of the workflow. |
steps[].id |
String | The identifier of the step. |
steps[].stepType |
String | The type of the step, either signature or approval . |
steps[].recipients |
Array | The list of recipients who are requested to sign or approve the documents. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].pictureResourceId |
String optional | The identifier of the user picture resource, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String | The first name of the recipient. |
steps[].recipients[].lastName |
String | The last name of the recipient. |
steps[].recipients[].country |
String | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].requiredRecipients |
Number | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number | The period during which the step is valid. |
steps[].invitePeriod |
Number | The period after which invites are resent. |
steps[].maxInvites |
Number | The maximum number of invites to send to the recipients. |
steps[].sendDownloadLink |
Boolean | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].isStarted |
Boolean | Whether or not the step is started. |
steps[].isFinished |
Boolean | Whether or not the step is started. |
steps[].allowComments |
Boolean | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of the workflow are visible to the recipients in this step. |
steps[].logs |
Array | The logs of the step. |
currentRecipientEmails |
Array | The list of recipient emails currently invited to sign or approve. |
currentRecipientUsers |
Array | The list of recipient users currently invited to sign or approve. |
notifiedEvents |
Array | The type of events the owner will receive notifications about. |
watchers |
Array | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
watchers |
Array | The list of users allowed to see the workflow and notified about the workflow events. |
workflowStatus |
String | The status of the workflow. |
started |
Number optional | The date the workflow was started for the first time. |
progress |
Number | The progress of the workflow. |
templateId |
String optional | The identifier of the workflow template. |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
coManagerNotifiedEvents |
Array optional | The type of events the comanager will receive notifications about. |
allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Delete workflow
Delete an existing workflow.
HTTP request
DELETE /api/workflows/wfl_DpPQWgM5GD2BWWN1Cd6UVdca HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "6zwUNwKVWBbKu5TEkpdsdjvs"
Path parameters:
/api/workflows/{workflowId}
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_KKkkjtnjAYgLPFT9GgiqcEHQ
ETag: "9QbrV4fga9y9JNYpCUt9gnzQ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2445
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1731411891100,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "0 étage, 564 Rue de la Bûcherie, 33086 Saint-Nazaire",
"email" : "quinn.mckenzie1510@my-company.com",
"firstName" : "Rogelio",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "wfl_DpPQWgM5GD2BWWN1Cd6UVdca",
"jobOperation" : "purgeWorkflow",
"lastName" : "Breitenberg",
"logs" : [ ],
"name" : "Enormous Steel Shoes",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_ER8GFgLUkuV4pDY5zCHfSi4b",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"country" : "FR",
"email" : "clement.hand267@my-company.com",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"preferredLocale" : "fr",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000
} ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411891130,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_LmSmr9VS56FNqt7w1GFMU1V7" ],
"watchers" : [ {
"email" : "chi.mclaughlin2424@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_LmSmr9VS56FNqt7w1GFMU1V7"
} ],
"workflowStatus" : "draft"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the workflow. |
tenantId |
String | The identifier of the tenant the workflow belongs to. |
groupId |
String | The identifier of the group the workflow belongs to. |
userId |
String | The identifier of the user the workflow belongs to. |
email |
String | The email address of the user the workflow belongs to. |
pictureResourceId |
String | The picture resource identifier of the user the workflow belongs to. |
firstName |
String | The first name of the user the workflow belongs to. |
lastName |
String | The last name of the user the workflow belongs to. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this workflow. |
viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view this workflow. |
name |
String | The name of the workflow. |
description |
String optional | The description of the workflow. |
data1 |
String optional | The value for the data1 metadata field. |
data2 |
String optional | The value for the data2 metadata field. |
data3 |
String optional | The value for the data3 metadata field. |
data4 |
String optional | The value for the data4 metadata field. |
data5 |
String optional | The value for the data5 metadata field. |
data6 |
String optional | The value for the data6 metadata field. |
data7 |
String optional | The value for the data7 metadata field. |
data8 |
String optional | The value for the data8 metadata field. |
data9 |
String optional | The value for the data9 metadata field. |
data10 |
String optional | The value for the data10 metadata field. |
data11 |
String optional | The value for the data11 metadata field. |
data12 |
String optional | The value for the data12 metadata field. |
data13 |
String optional | The value for the data13 metadata field. |
data14 |
String optional | The value for the data14 metadata field. |
data15 |
String optional | The value for the data15 metadata field. |
data16 |
String optional | The value for the data16 metadata field. |
logs |
Array | The logs of the workflow. |
steps |
Array | The steps of the workflow. |
steps[].id |
String | The identifier of the step. |
steps[].stepType |
String | The type of the step, either signature or approval . |
steps[].recipients |
Array | The list of recipients who are requested to sign or approve the documents. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].pictureResourceId |
String optional | The identifier of the user picture resource, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String | The first name of the recipient. |
steps[].recipients[].lastName |
String | The last name of the recipient. |
steps[].recipients[].country |
String | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].requiredRecipients |
Number | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number | The period during which the step is valid. |
steps[].invitePeriod |
Number | The period after which invites are resent. |
steps[].maxInvites |
Number | The maximum number of invites to send to the recipients. |
steps[].sendDownloadLink |
Boolean | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].isStarted |
Boolean | Whether or not the step is started. |
steps[].isFinished |
Boolean | Whether or not the step is started. |
steps[].allowComments |
Boolean | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of the workflow are visible to the recipients in this step. |
steps[].logs |
Array | The logs of the step. |
currentRecipientEmails |
Array | The list of recipient emails currently invited to sign or approve. |
currentRecipientUsers |
Array | The list of recipient users currently invited to sign or approve. |
notifiedEvents |
Array | The type of events the owner will receive notifications about. |
watchers |
Array | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
watchers |
Array | The list of users allowed to see the workflow and notified about the workflow events. |
workflowStatus |
String | The status of the workflow. |
started |
Number optional | The date the workflow was started for the first time. |
progress |
Number | The progress of the workflow. |
templateId |
String optional | The identifier of the workflow template. |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
coManagerNotifiedEvents |
Array optional | The type of events the comanager will receive notifications about. |
allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Search workflows
Search in all the workflows.
HTTP request
GET /api/workflows?text=Lightweight%20Concrete%20Watch&items.id=wfl_3C9uJZAnjVC46REGJCC9C8U9&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.layoutId |
The filter value(s) for the layoutId field. |
items.templateId |
The filter value(s) for the templateId field. |
items.groupId |
The filter value(s) for the groupId field. |
items.userId |
The filter value(s) for the userId field. |
items.email |
The filter value(s) for the email field. |
items.firstName |
The filter value(s) for the firstName field. |
items.lastName |
The filter value(s) for the lastName field. |
items.userHash |
The filter value(s) for the userHash field. |
items.name |
The filter value(s) for the name field. |
items.data1 |
The filter value(s) for the data1 field. |
items.data2 |
The filter value(s) for the data2 field. |
items.data3 |
The filter value(s) for the data3 field. |
items.data4 |
The filter value(s) for the data4 field. |
items.data5 |
The filter value(s) for the data5 field. |
items.data6 |
The filter value(s) for the data6 field. |
items.data7 |
The filter value(s) for the data7 field. |
items.data8 |
The filter value(s) for the data8 field. |
items.data9 |
The filter value(s) for the data9 field. |
items.data10 |
The filter value(s) for the data10 field. |
items.data11 |
The filter value(s) for the data11 field. |
items.data12 |
The filter value(s) for the data12 field. |
items.data13 |
The filter value(s) for the data13 field. |
items.data14 |
The filter value(s) for the data14 field. |
items.data15 |
The filter value(s) for the data15 field. |
items.data16 |
The filter value(s) for the data16 field. |
items.viewAuthorizedGroups |
The filter value(s) for the viewAuthorizedGroups field. |
items.viewAuthorizedUsers |
The filter value(s) for the viewAuthorizedUsers field. |
items.currentRecipientEmails |
The filter value(s) for the currentRecipientEmails field. |
items.currentRecipientUsers |
The filter value(s) for the currentRecipientUsers field. |
items.recipients.email |
The filter value(s) for the recipients.email field. |
items.recipients.userId |
The filter value(s) for the recipients.userId field. |
items.recipients.subject |
The filter value(s) for the recipients.subject field. |
items.recipients.firstName |
The filter value(s) for the recipients.firstName field. |
items.recipients.lastName |
The filter value(s) for the recipients.lastName field. |
items.recipients.country |
The filter value(s) for the recipients.country field. |
items.recipients.organizationId |
The filter value(s) for the recipients.organizationId field. |
items.workflowStatus |
The filter value(s) for the workflowStatus field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.nextClean |
The filter value(s) for the nextClean field. |
items.nextProcess |
The filter value(s) for the nextProcess field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
items.started |
The filter value(s) for the started field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 2735
{
"items" : [ {
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1731411627703,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "1 étage, 5 Rue de Solférino, 00973 Avignon",
"email" : "quinn.mckenzie1510@my-company.com",
"firstName" : "Rogelio",
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "wfl_3C9uJZAnjVC46REGJCC9C8U9",
"lastName" : "Breitenberg",
"logs" : [ {
"commentId" : "com_54TXpKjjpEvctgzHiJAqGQ6C",
"created" : 1731411627935,
"operation" : "notifyCommentCreated"
} ],
"name" : "Lightweight Concrete Watch",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_7aq62HeBvW5xH1oR4eHT1NJf",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"country" : "FR",
"email" : "clement.hand267@my-company.com",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"preferredLocale" : "fr",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000
} ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411628255,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_HRrQNJrEp7xNFvQAPjiRgFT4" ],
"watchers" : [ {
"email" : "juli.boyle6749@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_HRrQNJrEp7xNFvQAPjiRgFT4"
} ],
"workflowStatus" : "draft"
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the workflow. |
items[].tenantId |
String | The identifier of the tenant the workflow belongs to. |
items[].groupId |
String | The identifier of the group the workflow belongs to. |
items[].userId |
String | The identifier of the user the workflow belongs to. |
items[].email |
String | The email address of the user the workflow belongs to. |
items[].pictureResourceId |
String | The picture resource identifier of the user the workflow belongs to. |
items[].firstName |
String | The first name of the user the workflow belongs to. |
items[].lastName |
String | The last name of the user the workflow belongs to. |
items[].viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view this workflow. |
items[].viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view this workflow. |
items[].name |
String | The name of the workflow. |
items[].description |
String optional | The description of the workflow. |
items[].data1 |
String optional | The value for the data1 metadata field. |
items[].data2 |
String optional | The value for the data2 metadata field. |
items[].data3 |
String optional | The value for the data3 metadata field. |
items[].data4 |
String optional | The value for the data4 metadata field. |
items[].data5 |
String optional | The value for the data5 metadata field. |
items[].data6 |
String optional | The value for the data6 metadata field. |
items[].data7 |
String optional | The value for the data7 metadata field. |
items[].data8 |
String optional | The value for the data8 metadata field. |
items[].data9 |
String optional | The value for the data9 metadata field. |
items[].data10 |
String optional | The value for the data10 metadata field. |
items[].data11 |
String optional | The value for the data11 metadata field. |
items[].data12 |
String optional | The value for the data12 metadata field. |
items[].data13 |
String optional | The value for the data13 metadata field. |
items[].data14 |
String optional | The value for the data14 metadata field. |
items[].data15 |
String optional | The value for the data15 metadata field. |
items[].data16 |
String optional | The value for the data16 metadata field. |
items[].logs |
Array | The logs of the workflow. |
items[].steps |
Array | The steps of the workflow. |
items[].steps[].id |
String | The identifier of the step. |
items[].steps[].stepType |
String | The type of the step, either signature or approval . |
items[].steps[].recipients |
Array | The list of recipients who are requested to sign or approve the documents. |
items[].steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
items[].steps[].recipients[].email |
String | The email address of the recipient. |
items[].steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
items[].steps[].recipients[].pictureResourceId |
String optional | The identifier of the user picture resource, in case the recipient is a user. |
items[].steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
items[].steps[].recipients[].firstName |
String | The first name of the recipient. |
items[].steps[].recipients[].lastName |
String | The last name of the recipient. |
items[].steps[].recipients[].country |
String | The country of the user. |
items[].steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
items[].steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
items[].steps[].requiredRecipients |
Number | The number of recipients that are required to sign or approve the documents for the step to finish. |
items[].steps[].validityPeriod |
Number | The period during which the step is valid. |
items[].steps[].invitePeriod |
Number | The period after which invites are resent. |
items[].steps[].maxInvites |
Number | The maximum number of invites to send to the recipients. |
items[].steps[].sendDownloadLink |
Boolean | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
items[].steps[].isStarted |
Boolean | Whether or not the step is started. |
items[].steps[].isFinished |
Boolean | Whether or not the step is started. |
items[].steps[].allowComments |
Boolean | Whether or not the recipients of the step are authorized to view and create comments. |
items[].steps[].hideAttachments |
Boolean | Whether or not the attachments are displayed to the recipients of the step. |
items[].steps[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of the workflow are visible to the recipients in this step. |
items[].steps[].logs |
Array | The logs of the step. |
items[].currentRecipientEmails |
Array | The list of recipient emails currently invited to sign or approve. |
items[].currentRecipientUsers |
Array | The list of recipient users currently invited to sign or approve. |
items[].notifiedEvents |
Array | The type of events the owner will receive notifications about. |
items[].watchers |
Array | The list of watchers of the workflow. |
items[].watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
items[].watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
items[].watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
items[].watchers |
Array | The list of users allowed to see the workflow and notified about the workflow events. |
items[].workflowStatus |
String | The status of the workflow. |
items[].started |
Number optional | The date the workflow was started for the first time. |
items[].progress |
Number | The progress of the workflow. |
items[].templateId |
String optional | The identifier of the workflow template. |
items[].allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
items[].coManagerNotifiedEvents |
Array optional | The type of events the comanager will receive notifications about. |
items[].allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
items[].jobOperation |
String optional | The job operation currently running. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export workflows
Export a search in all the workflows.
HTTP request
POST /api/workflows/exports?text=Lightweight%20Concrete%20Watch&items.id=wfl_3C9uJZAnjVC46REGJCC9C8U9&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 182
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json steps}}",
"expired" : 1731498350917
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.layoutId |
The filter value(s) for the layoutId field. |
items.templateId |
The filter value(s) for the templateId field. |
items.groupId |
The filter value(s) for the groupId field. |
items.userId |
The filter value(s) for the userId field. |
items.email |
The filter value(s) for the email field. |
items.firstName |
The filter value(s) for the firstName field. |
items.lastName |
The filter value(s) for the lastName field. |
items.userHash |
The filter value(s) for the userHash field. |
items.name |
The filter value(s) for the name field. |
items.data1 |
The filter value(s) for the data1 field. |
items.data2 |
The filter value(s) for the data2 field. |
items.data3 |
The filter value(s) for the data3 field. |
items.data4 |
The filter value(s) for the data4 field. |
items.data5 |
The filter value(s) for the data5 field. |
items.data6 |
The filter value(s) for the data6 field. |
items.data7 |
The filter value(s) for the data7 field. |
items.data8 |
The filter value(s) for the data8 field. |
items.data9 |
The filter value(s) for the data9 field. |
items.data10 |
The filter value(s) for the data10 field. |
items.data11 |
The filter value(s) for the data11 field. |
items.data12 |
The filter value(s) for the data12 field. |
items.data13 |
The filter value(s) for the data13 field. |
items.data14 |
The filter value(s) for the data14 field. |
items.data15 |
The filter value(s) for the data15 field. |
items.data16 |
The filter value(s) for the data16 field. |
items.viewAuthorizedGroups |
The filter value(s) for the viewAuthorizedGroups field. |
items.viewAuthorizedUsers |
The filter value(s) for the viewAuthorizedUsers field. |
items.currentRecipientEmails |
The filter value(s) for the currentRecipientEmails field. |
items.currentRecipientUsers |
The filter value(s) for the currentRecipientUsers field. |
items.recipients.email |
The filter value(s) for the recipients.email field. |
items.recipients.userId |
The filter value(s) for the recipients.userId field. |
items.recipients.subject |
The filter value(s) for the recipients.subject field. |
items.recipients.firstName |
The filter value(s) for the recipients.firstName field. |
items.recipients.lastName |
The filter value(s) for the recipients.lastName field. |
items.recipients.country |
The filter value(s) for the recipients.country field. |
items.recipients.organizationId |
The filter value(s) for the recipients.organizationId field. |
items.workflowStatus |
The filter value(s) for the workflowStatus field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.nextClean |
The filter value(s) for the nextClean field. |
items.nextProcess |
The filter value(s) for the nextProcess field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
items.started |
The filter value(s) for the started field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_9vg4djTow7o3jBPzN4eYTWLe
ETag: "BZeB2qVkJgV8QKrT1MJ3vnLJ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 597
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731411950919,
"expired" : 1731498350917,
"exportOperation" : "createWorkflowExport",
"id" : "exp_6NPE5S8hY7ECzXi5QQqeWiBU",
"itemTemplate" : "{{id}},{{name}},{{json steps}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Lightweight+Concrete+Watch&items.id=wfl_3C9uJZAnjVC46REGJCC9C8U9&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731411950919,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Download evidence certificate
Download the evidence certificate of the workflow
HTTP request
GET /api/workflows/wfl_3C9uJZAnjVC46REGJCC9C8U9/downloadEvidenceCertificate HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/workflows/{workflowId}/downloadEvidenceCertificate
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
HTTP response
HTTP/1.1 200 OK
Content-Type: application/pdf
Content-Disposition: attachment; filename="Provisional_Certificate_of_evidence_wfl_3C9uJZAnjVC46REGJCC9C8U9.pdf"
Cache-Control: no-store
Content-Length: 9683
%PDF-1.4
%����
1 0 obj
<<
/Creator (Apache FOP Version SVN)
/Producer (Apache FOP Version SVN)
/CreationDate (D:20241112114547Z)
>
...
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Download evidence files
Download evidence files of finished workflows
HTTP request
GET /api/workflows/wfl_FNY7ipCmwW1uxoSBBNfj9Y9m/downloadEvidences HTTP/1.1
Authorization: Bearer act_KRaA2hsTfyqZWzbNfcQXbGik.52dVqUcb54ntCx3KC2Y1b9RZtBqcy5uf8h4HBG9VBGs2ukM6Kuisv24taBqydKJt
Path parameters:
/api/workflows/{workflowId}/downloadEvidences
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow the comments belong to. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Content-Type: application/zip
Content-Disposition: attachment; filename="evidences.zip"
Content-Length: 988
PK���a�V������������K���assets/d29fbd8ab0dbc96bca2c92f1e0016b5b32c65816afe991387e0cbc7dcad8abdd.css��n�L�(��·��:e���j�q�]�
...
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
NoEvidenceInWorkflow | The specified workflow does not contain any evidence file. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Workflow comments
Create workflow comment
Create a workflow comment.
HTTP request
POST /api/workflows/wfl_3C9uJZAnjVC46REGJCC9C8U9/comments HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 120
{
"parentId" : "com_54TXpKjjpEvctgzHiJAqGQ6C",
"content" : "Dolore nobis debitis unde minus.",
"isPublic" : true
}
Path parameters:
/api/workflows/{workflowId}/comments
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow the comment belongs to. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
parentId |
String optional | The identifier of the comment this comment is responding to. |
content |
String | The content of the comment. |
isPublic |
Boolean | Whether the comment is visible to all people who can see the workflow or only to people who manage it. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_6KdgiW5hkc9PgEpBvNnkAyzB
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 522
{
"content" : "Dolore nobis debitis unde minus.",
"created" : 1731411971095,
"email" : "quinn.mckenzie1510@my-company.com",
"firstName" : "Rogelio",
"id" : "com_LaxP159qgp9fPiLUfm7u3Pw2",
"isPublic" : true,
"lastName" : "Breitenberg",
"parentId" : "com_54TXpKjjpEvctgzHiJAqGQ6C",
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411971095,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"workflowId" : "wfl_3C9uJZAnjVC46REGJCC9C8U9"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the comment. |
tenantId |
String | The identifier of the tenant the comment belongs to. |
workflowId |
String | The identifier of the workflow the comment belongs to. |
parentId |
String optional | The identifier of the comment this comment is responding to. |
userId |
String optional | The identifier of the user who created the comment. |
email |
String | The email of the user or the recipient who created the comment. |
pictureResourceId |
String optional | The picture resource identifier of the user who created the comment. |
firstName |
String optional | The first name of the user or the recipient who created the comment. |
lastName |
String optional | The last name of the user or the recipient who created the comment. |
content |
String | The content of the comment. |
isPublic |
Boolean | Whether the comment is visible to all people who can see the workflow or only to people who manage it. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
CommentNotFound | The specified comment can not be found. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Retrieve workflow comments
Retrieve the comments of a workflow.
HTTP request
GET /api/workflows/wfl_PdZtFw6gBzY96bzEjypBVewo/comments HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/workflows/{workflowId}/comments
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow the comments belong to. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1013
[ {
"id" : "com_6RqEX1FFFm5hXC8KobsKKQBH",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"workflowId" : "wfl_PdZtFw6gBzY96bzEjypBVewo",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn",
"email" : "clement.hand267@my-company.com",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"content" : "Sit quas ea ex.",
"isPublic" : true,
"created" : 1731411960572,
"updated" : 1731411960572
}, {
"id" : "com_2ekEFeXGFDgfcYVpTRmwP4Ci",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"workflowId" : "wfl_PdZtFw6gBzY96bzEjypBVewo",
"parentId" : "com_6RqEX1FFFm5hXC8KobsKKQBH",
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"email" : "quinn.mckenzie1510@my-company.com",
"pictureResourceId" : "res_AXXVdnnC36PfWSjzhVFNPC2f",
"firstName" : "Rogelio",
"lastName" : "Breitenberg",
"content" : "Dolorum facilis repellat consequatur sunt reprehenderit recusandae.",
"isPublic" : true,
"created" : 1731411960854,
"updated" : 1731411960854
} ]
Fields:
Path | Type | Description |
---|---|---|
[].id |
String | The identifier of the comment. |
[].tenantId |
String | The identifier of the tenant the comment belongs to. |
[].workflowId |
String | The identifier of the workflow the comment belongs to. |
[].parentId |
String optional | The identifier of the comment this comment is responding to. |
[].userId |
String optional | The identifier of the user who created the comment. |
[].email |
String | The email of the user or the recipient who created the comment. |
[].pictureResourceId |
String optional | The picture resource identifier of the user who created the comment. |
[].firstName |
String optional | The first name of the user or the recipient who created the comment. |
[].lastName |
String optional | The last name of the user or the recipient who created the comment. |
[].content |
String | The content of the comment. |
[].isPublic |
Boolean | Whether the comment is visible to all people who can see the workflow or only to people who manage it. |
[].created |
Number | The creation date of the entity. |
[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Workflow documents
Create blob
Create a workflow blob.
HTTP request
POST /api/workflows/wfl_ESbJM7haAVUqUHq9cdFvvXbD/blobs HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/pdf
Content-Length: 12341
%PDF-1.3
%���������
4 0 obj
<< /Length 5 0 R /Filter /FlateDecode >>
stream
xUϱ�0����G�kk9X5�č��D@0����Nb:��^�庢�
��X��c
...
Path parameters:
/api/workflows/{workflowId}/blobs
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 198
{
"hash" : "obcUcumzUOJsClVDv/jHTNefKTRlTJULnZx4dfOrx+I=",
"id" : "blb_4mk872jUxQ3W7RCzoZsye9fD",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"workflowId" : "wfl_ESbJM7haAVUqUHq9cdFvvXbD"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the blob. |
tenantId |
String | The identifier of the tenant. |
workflowId |
String | The identifier of the workflow. |
hash |
String | The cryptographic hash of the blob. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Create parts
Create workflow parts.
HTTP request
POST /api/workflows/wfl_4Hx4hdWtQBpWm5vGFf2SZseV/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_J6KoexJFFRnnm5uta2WqWP2U&unzip=false&pdf2pdfa=auto HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Disposition: attachment; filename="document.pdf"
Content-Type: application/pdf
Content-Length: 12341
%PDF-1.3
%���������
4 0 obj
<< /Length 5 0 R /Filter /FlateDecode >>
stream
xUϱ�0����G�kk9X5�č��D@0����Nb:��^�庢�
��X��c
...
Path parameters:
/api/workflows/{workflowId}/parts
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Query parameters:
Parameter | Description |
---|---|
unzip |
Whether or not zip archives should be unzipped. |
pdf2pdfa |
Whether or not convert pdf files to PDF/A. Possible values: disabled , forced , auto . If not specified, the default is auto . |
createDocuments |
Whether or not documents should be created. |
ignoreAttachments |
Whether or not attachments should be ignored. |
signatureProfileId |
The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, attempts to find suitable signature profiles will be made. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_AikLRijjdcbDHHARFSoUdc6j
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1559
{
"documents" : [ {
"created" : 1731411627586,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "KLnhGQIXz7SvQYolkX+Gq34Foi1E77/1I7qfZkOX2C4=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "doc_QJmuqwU9gDP4m91JMNWRsY2u",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "KLnhGQIXz7SvQYolkX+Gq34Foi1E77/1I7qfZkOX2C4=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411627586,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_F8stsZub8WS3DXtCmfosK8Dt" ],
"workflowId" : "wfl_4Hx4hdWtQBpWm5vGFf2SZseV",
"workflowName" : "Small Silk Bottle"
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "KLnhGQIXz7SvQYolkX+Gq34Foi1E77/1I7qfZkOX2C4=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ]
}
Fields:
Path | Type | Description |
---|---|---|
parts |
Array | The created parts. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
ignoredAttachments |
Number | The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true . |
documents |
Array optional | The created documents, if requested. |
documents[].id |
String | The identifier of the document. |
documents[].tenantId |
String | The identifier of the tenant the document belongs to. |
documents[].groupId |
String | The identifier of the group the document belongs to. |
documents[].userId |
String | The identifier of the user the document belongs to. |
documents[].workflowId |
String | The identifier of the workflow the document belongs to. |
documents[].workflowName |
String | The name of the workflow the document belongs to. |
documents[].signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
documents[].viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view the workflow the document belongs to. |
documents[].viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view the workflow the document belongs to. |
documents[].parts |
Array | The created parts. |
documents[].parts[].filename |
String | The filename of the part. |
documents[].parts[].contentType |
String | The content type of the part. |
documents[].parts[].size |
Number | The size of the part. |
documents[].parts[].hash |
String | The cryptographic hash of the part. |
documents[].parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
documents[].displayedParts |
Array | The parts of the document to be displayed for final user. |
documents[].displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
documents[].displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
documents[].displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
documents[].displayedParts[].size |
Number | The size of the part to be displayed for final user. |
documents[].displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
documents[].pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
documents[].created |
Number | The creation date of the entity. |
documents[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidPdf | The uploaded PDF is invalid. |
400 |
InvalidXml | The uploaded XML is invalid. |
400 |
InvalidZip | The uploaded ZIP can not be unzipped. |
400 |
MaxDocumentSizeExceeded | Maximum document size exceeded. |
400 |
PasswordProtectedPdf | The uploaded PDF is password protected. |
400 |
TemplateMaxAttachmentsReached | The template maximum number of attachments has been reached. |
400 |
TemplateMaxDocumentsReached | The template maximum number of documents to sign has been reached. |
400 |
TenantMaxAttachmentsReached | The maximum number of attachments has been reached. |
400 |
TenantMaxDocumentsReached | The maximum number of documents to sign has been reached. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
InvalidWorkflowStatus | The status of the workflow does not allow this operation. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
SignatureProfileDisabled | The specified signature profile is disabled. |
403 |
SignatureProfileNotAllowed | The specified signature profile is not allowed for this document. |
403 |
TemplateAttachmentsNotAllowed | The attachments are not allowed by the template. |
403 |
TenantAttachmentsNotAllowed | The attachments are not allowed by the tenant. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Create parts from multipart
Create workflow parts from a multipart request.
HTTP request
POST /api/workflows/wfl_Csy7nXTqZULn6yXVzT3MCmaP/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_J6KoexJFFRnnm5uta2WqWP2U&unzip=false&pdf2pdfa=auto HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: multipart/form-data;boundary=4so7iTUkFkMpVg42Itu6L7MpHINXP50ae; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Length: 12549
--4so7iTUkFkMpVg42Itu6L7MpHINXP50ae
Content-Type: application/pdf
Content-Disposition: form-data; name="document"; filename="document.pdf"
Content-Length: 12341
%PDF-1.3
%���������
4 0 obj
<< /Length 5 0 R /Filter /FlateDecode >>
stream
xUϱ�0����G�kk9X5�č��D@0����Nb:��^�庢�
��X��c
...
--4so7iTUkFkMpVg42Itu6L7MpHINXP50ae--
Path parameters:
/api/workflows/{workflowId}/parts
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Query parameters:
Parameter | Description |
---|---|
unzip |
Whether or not zip archives should be unzipped. |
pdf2pdfa |
Whether or not convert pdf files to PDF/A. Possible values: disabled , forced , auto . If not specified, the default is auto . |
createDocuments |
Whether or not documents should be created. |
ignoreAttachments |
Whether or not attachments should be ignored. |
signatureProfileId |
The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, attempts to find suitable signature profiles will be made. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_6B8An3dH51xir1C5zd5kZTky
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1561
{
"documents" : [ {
"created" : 1731411650447,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "cpH384zmb0OquHgYEp3SF4QZJyt/hT4Ehme+0ywTvis=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "doc_NEW3TpyjutVaFGaL1Wte9Nj8",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "cpH384zmb0OquHgYEp3SF4QZJyt/hT4Ehme+0ywTvis=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411650447,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_7Fi5iCksfPK54z3G7jimST2B" ],
"workflowId" : "wfl_Csy7nXTqZULn6yXVzT3MCmaP",
"workflowName" : "Sleek Granite Shoes"
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "cpH384zmb0OquHgYEp3SF4QZJyt/hT4Ehme+0ywTvis=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ]
}
Fields:
Path | Type | Description |
---|---|---|
parts |
Array | The created parts. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
ignoredAttachments |
Number | The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true . |
documents |
Array optional | The created documents, if requested. |
documents[].id |
String | The identifier of the document. |
documents[].tenantId |
String | The identifier of the tenant the document belongs to. |
documents[].groupId |
String | The identifier of the group the document belongs to. |
documents[].userId |
String | The identifier of the user the document belongs to. |
documents[].workflowId |
String | The identifier of the workflow the document belongs to. |
documents[].workflowName |
String | The name of the workflow the document belongs to. |
documents[].signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
documents[].viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view the workflow the document belongs to. |
documents[].viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view the workflow the document belongs to. |
documents[].parts |
Array | The created parts. |
documents[].parts[].filename |
String | The filename of the part. |
documents[].parts[].contentType |
String | The content type of the part. |
documents[].parts[].size |
Number | The size of the part. |
documents[].parts[].hash |
String | The cryptographic hash of the part. |
documents[].parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
documents[].displayedParts |
Array | The parts of the document to be displayed for final user. |
documents[].displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
documents[].displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
documents[].displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
documents[].displayedParts[].size |
Number | The size of the part to be displayed for final user. |
documents[].displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
documents[].pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
documents[].created |
Number | The creation date of the entity. |
documents[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidPdf | The uploaded PDF is invalid. |
400 |
InvalidXml | The uploaded XML is invalid. |
400 |
InvalidZip | The uploaded ZIP can not be unzipped. |
400 |
MaxDocumentSizeExceeded | Maximum document size exceeded. |
400 |
PasswordProtectedPdf | The uploaded PDF is password protected. |
400 |
TemplateMaxAttachmentsReached | The template maximum number of attachments has been reached. |
400 |
TemplateMaxDocumentsReached | The template maximum number of documents to sign has been reached. |
400 |
TenantMaxAttachmentsReached | The maximum number of attachments has been reached. |
400 |
TenantMaxDocumentsReached | The maximum number of documents to sign has been reached. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
InvalidWorkflowStatus | The status of the workflow does not allow this operation. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
SignatureProfileDisabled | The specified signature profile is disabled. |
403 |
SignatureProfileNotAllowed | The specified signature profile is not allowed for this document. |
403 |
TemplateAttachmentsNotAllowed | The attachments are not allowed by the template. |
403 |
TenantAttachmentsNotAllowed | The attachments are not allowed by the tenant. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Create parts from blobs
Create workflow parts from blobs.
HTTP request
POST /api/workflows/wfl_KDww46xYjeWDbAHVj5ZZuogh/blobs/parts?createDocuments=true&ignoreAttachments=false&unzip=false&signatureProfileId=sip_J6KoexJFFRnnm5uta2WqWP2U&pdf2pdfa=force HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 210
{
"parts" : [ {
"filename" : "document.pdf",
"contentType" : "application/pdf",
"blobs" : [ "blb_HzVLdaAMptp29hUrKBeMzsmr", "blb_D5aTaiNmvXDccDLjSFKQ4uV3", "blb_BthcV76ZivbFz4BxkpZ9oCPq" ]
} ]
}
Path parameters:
/api/workflows/{workflowId}/blobs/parts
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Query parameters:
Parameter | Description |
---|---|
unzip |
Whether or not zip archives should be unzipped. |
pdf2pdfa |
Whether or not convert pdf files to PDF/A. Possible values: disabled , forced , auto . If not specified, the default is auto . |
createDocuments |
Whether or not documents should be created. |
ignoreAttachments |
Whether or not attachments should be ignored. |
signatureProfileId |
The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, an attempt to find suitable signature profiles will be made. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
parts |
Array | The parts to create. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].blobs |
Array | The sequence of blobs used to build the part. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_F2EWz9yZb5dQsDT72w1XXFSk
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1567
{
"documents" : [ {
"created" : 1731411642992,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "JHUcNaAwAN5bL0AZhA5s272hIvuXRvUS7s+g8jbDrvE=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "doc_PPcnVGuHbWzDd5h38h6yaJtL",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "JHUcNaAwAN5bL0AZhA5s272hIvuXRvUS7s+g8jbDrvE=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411642992,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_PdxBGbSCuwAogJXHNDL1gTeL" ],
"workflowId" : "wfl_KDww46xYjeWDbAHVj5ZZuogh",
"workflowName" : "Synergistic Granite Shoes"
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "JHUcNaAwAN5bL0AZhA5s272hIvuXRvUS7s+g8jbDrvE=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ]
}
Fields:
Path | Type | Description |
---|---|---|
parts |
Array | The created parts. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
ignoredAttachments |
Number | The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true . |
documents |
Array optional | The created documents, if requested. |
documents[].id |
String | The identifier of the document. |
documents[].tenantId |
String | The identifier of the tenant the document belongs to. |
documents[].groupId |
String | The identifier of the group the document belongs to. |
documents[].userId |
String | The identifier of the user the document belongs to. |
documents[].workflowId |
String | The identifier of the workflow the document belongs to. |
documents[].workflowName |
String | The name of the workflow the document belongs to. |
documents[].signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
documents[].viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view the workflow the document belongs to. |
documents[].viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view the workflow the document belongs to. |
documents[].parts |
Array | The created parts. |
documents[].parts[].filename |
String | The filename of the part. |
documents[].parts[].contentType |
String | The content type of the part. |
documents[].parts[].size |
Number | The size of the part. |
documents[].parts[].hash |
String | The cryptographic hash of the part. |
documents[].parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
documents[].displayedParts |
Array | The parts of the document to be displayed for final user. |
documents[].displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
documents[].displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
documents[].displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
documents[].displayedParts[].size |
Number | The size of the part to be displayed for final user. |
documents[].displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
documents[].pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
documents[].created |
Number | The creation date of the entity. |
documents[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidOfficeDocument | Office document could not be converted to pdf |
400 |
InvalidPdf | The uploaded PDF is invalid. |
400 |
InvalidXml | The uploaded XML is invalid. |
400 |
InvalidZip | The uploaded ZIP can not be unzipped. |
400 |
MaxDocumentSizeExceeded | Maximum document size exceeded. |
400 |
MaxDocumentSizeExceededByBlob | Maximum document size exceeded by blobs. |
400 |
PasswordProtectedPdf | The uploaded PDF is password protected. |
400 |
TemplateMaxAttachmentsReached | The template maximum number of attachments has been reached. |
400 |
TemplateMaxDocumentsReached | The template maximum number of documents to sign has been reached. |
400 |
TenantMaxAttachmentsReached | The maximum number of attachments has been reached. |
400 |
TenantMaxDocumentsReached | The maximum number of documents to sign has been reached. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
InvalidWorkflowStatus | The status of the workflow does not allow this operation. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
SignatureProfileDisabled | The specified signature profile is disabled. |
403 |
SignatureProfileNotAllowed | The specified signature profile is not allowed for this document. |
403 |
TemplateAttachmentsNotAllowed | The attachments are not allowed by the template. |
403 |
TenantAttachmentsNotAllowed | The attachments are not allowed by the tenant. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
404 |
WorkflowBlobNotFound | The specified workflow blob can not be found. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Delete pending blobs
Delete pending blobs attached to the workflow.
HTTP request
DELETE /api/workflows/wfl_DSgUFinBJ9ufnoCDALj1qY8P/blobs HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/workflows/{workflowId}/blobs
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_9XiL9Wb9DUYXHsEefW87i4KB
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 121
{
"deletedBlobs" : [ "blb_HJnzgj7JwR9fNLoKU2TCTtaZ", "blb_GaYfJaD7iqowZ7ie1sjV5hev", "blb_HRSCmXa2SL9Ji14KNm6ny9Ah" ]
}
Fields:
Path | Type | Description |
---|---|---|
deletedBlobs |
Array | The sequence of pending blobs deleted from workflow. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Create document
Create a workflow document from parts.
HTTP request
POST /api/workflows/wfl_7tgHuneG8bfRDni4nK1no848/documents HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 508
{
"parts" : [ {
"filename" : "Document",
"contentType" : "application/pdf",
"size" : 18540,
"hash" : "2ptwsnKjf8hWjllSOYe6cmw2TrfJs/yMbd6TvuVrj9k=",
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"isOriginal" : true
} ],
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"pdfSignatureFields" : [ {
"imagePage" : -1,
"imageX" : 390.0,
"imageY" : 710.0,
"imageWidth" : 150.0,
"imageHeight" : 80.0
} ]
}
Path parameters:
/api/workflows/{workflowId}/documents
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
parts |
Array | The parts of the document. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
signatureProfileId |
String optional | The signature profile to be used to sign the document. If empty, the document will be an attachment. If not provided, an attempt to find a suitable signature profile will be made. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_4T2gkPATUjj33wVwpyHxBd5o
ETag: "E9SuUypLgNeFQUPZQTVbq8GF"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1300
{
"created" : 1731411657688,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "2ptwsnKjf8hWjllSOYe6cmw2TrfJs/yMbd6TvuVrj9k=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "doc_9819PifCfyHrnZoxXozt8KEK",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "2ptwsnKjf8hWjllSOYe6cmw2TrfJs/yMbd6TvuVrj9k=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"pdfSignatureFields" : [ {
"imageHeight" : 80.0,
"imagePage" : -1,
"imageWidth" : 150.0,
"imageX" : 390.0,
"imageY" : 710.0
} ],
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411657688,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_HWN8NGzcPmfkxeBQzmtku9P8" ],
"workflowId" : "wfl_7tgHuneG8bfRDni4nK1no848",
"workflowName" : "Small Cotton Computer"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the document. |
tenantId |
String | The identifier of the tenant the document belongs to. |
groupId |
String | The identifier of the group the document belongs to. |
userId |
String | The identifier of the user the document belongs to. |
workflowId |
String | The identifier of the workflow the document belongs to. |
workflowName |
String | The name of the workflow the document belongs to. |
data1 |
String optional | The value for the data1 metadata field. |
data2 |
String optional | The value for the data2 metadata field. |
data3 |
String optional | The value for the data3 metadata field. |
data4 |
String optional | The value for the data4 metadata field. |
data5 |
String optional | The value for the data5 metadata field. |
data6 |
String optional | The value for the data6 metadata field. |
data7 |
String optional | The value for the data7 metadata field. |
data8 |
String optional | The value for the data8 metadata field. |
data9 |
String optional | The value for the data9 metadata field. |
data10 |
String optional | The value for the data10 metadata field. |
data11 |
String optional | The value for the data11 metadata field. |
data12 |
String optional | The value for the data12 metadata field. |
data13 |
String optional | The value for the data13 metadata field. |
data14 |
String optional | The value for the data14 metadata field. |
data15 |
String optional | The value for the data15 metadata field. |
data16 |
String optional | The value for the data16 metadata field. |
signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position (in pixel) of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position (in pixel) of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view the workflow the document belongs to. |
viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view the workflow the document belongs to. |
parts |
Array | The parts of the document. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
displayedParts |
Array | The parts of the document to be displayed for final user. |
displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
displayedParts[].size |
Number | The size of the part to be displayed for final user. |
displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidPdfSignatureField | Parameters of a PDF signature field are incorrect. |
400 |
MaxDocumentSizeExceeded | Maximum document size exceeded. |
400 |
PdfSignatureFieldsOverlap | Some signature fields are overlapping. |
400 |
TemplateMaxAttachmentsReached | The template maximum number of attachments has been reached. |
400 |
TemplateMaxDocumentsReached | The template maximum number of documents to sign has been reached. |
400 |
TenantMaxAttachmentsReached | The maximum number of attachments has been reached. |
400 |
TenantMaxDocumentsReached | The maximum number of documents to sign has been reached. |
400 |
TooManyParts | The document contains multiple parts whereas only one is allowed. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
InvalidWorkflowStatus | The status of the workflow does not allow this operation. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
SignatureProfileNotAllowed | The specified signature profile is not allowed for this document. |
403 |
TemplateAttachmentsNotAllowed | The attachments are not allowed by the template. |
403 |
TenantAttachmentsNotAllowed | The attachments are not allowed by the tenant. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
404 |
WorkflowPartNotFound | The specified workflow part can not be found. |
Retrieve document
Retrieve an existing workflow document.
HTTP request
GET /api/documents/doc_DrHXR4psKBBn22dDwW5bxf2B HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/documents/{documentId}
Parameter | Description |
---|---|
documentId |
The identifier of the document. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "EfjEQJoFEHu5Gk3suvk2JyhE"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1305
{
"created" : 1731411627800,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "qknBUSmoXxseP6iZhpMZDkPQTcaISTYYUjXhDala0FE=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "doc_DrHXR4psKBBn22dDwW5bxf2B",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "qknBUSmoXxseP6iZhpMZDkPQTcaISTYYUjXhDala0FE=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"pdfSignatureFields" : [ {
"imageHeight" : 80.0,
"imagePage" : -1,
"imageWidth" : 150.0,
"imageX" : 390.0,
"imageY" : 710.0
} ],
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411627863,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_HRrQNJrEp7xNFvQAPjiRgFT4" ],
"workflowId" : "wfl_3C9uJZAnjVC46REGJCC9C8U9",
"workflowName" : "Lightweight Concrete Watch"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the document. |
tenantId |
String | The identifier of the tenant the document belongs to. |
groupId |
String | The identifier of the group the document belongs to. |
userId |
String | The identifier of the user the document belongs to. |
workflowId |
String | The identifier of the workflow the document belongs to. |
workflowName |
String | The name of the workflow the document belongs to. |
data1 |
String optional | The value for the data1 metadata field. |
data2 |
String optional | The value for the data2 metadata field. |
data3 |
String optional | The value for the data3 metadata field. |
data4 |
String optional | The value for the data4 metadata field. |
data5 |
String optional | The value for the data5 metadata field. |
data6 |
String optional | The value for the data6 metadata field. |
data7 |
String optional | The value for the data7 metadata field. |
data8 |
String optional | The value for the data8 metadata field. |
data9 |
String optional | The value for the data9 metadata field. |
data10 |
String optional | The value for the data10 metadata field. |
data11 |
String optional | The value for the data11 metadata field. |
data12 |
String optional | The value for the data12 metadata field. |
data13 |
String optional | The value for the data13 metadata field. |
data14 |
String optional | The value for the data14 metadata field. |
data15 |
String optional | The value for the data15 metadata field. |
data16 |
String optional | The value for the data16 metadata field. |
signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position (in pixel) of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position (in pixel) of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view the workflow the document belongs to. |
viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view the workflow the document belongs to. |
parts |
Array | The parts of the document. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
displayedParts |
Array | The parts of the document to be displayed for final user. |
displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
displayedParts[].size |
Number | The size of the part to be displayed for final user. |
displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowDocumentNotFound | The specified workflow document can not be found. |
Update document
Update an existing workflow document.
HTTP request
PATCH /api/documents/doc_ALNc3LYzykaxBM2tFvSoHPRx HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "2AqTRguJNvmHEd9WdGDPtk6Z"
Content-Type: application/json
Content-Length: 212
{
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"pdfSignatureFields" : [ {
"imagePage" : -1,
"imageX" : 390.0,
"imageY" : 710.0,
"imageWidth" : 150.0,
"imageHeight" : 80.0
} ]
}
Path parameters:
/api/documents/{documentId}
Parameter | Description |
---|---|
documentId |
The identifier of the document. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
signatureProfileId |
String optional | The signature profile to be used to sign the document. If empty, the document will be an attachment. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_Cn7td5boMK5Zgrer2vJpk4oc
ETag: "2mgMwn7buUedLuoKcDkMPMBE"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1305
{
"created" : 1731411689948,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "sBhnJhgJDD/O/ZR0ACQJ4uvtTxO9v7NzkT2kxXkKm7w=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "doc_ALNc3LYzykaxBM2tFvSoHPRx",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "sBhnJhgJDD/O/ZR0ACQJ4uvtTxO9v7NzkT2kxXkKm7w=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"pdfSignatureFields" : [ {
"imageHeight" : 80.0,
"imagePage" : -1,
"imageWidth" : 150.0,
"imageX" : 390.0,
"imageY" : 710.0
} ],
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411689979,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_HRrQNJrEp7xNFvQAPjiRgFT4" ],
"workflowId" : "wfl_3C9uJZAnjVC46REGJCC9C8U9",
"workflowName" : "Lightweight Concrete Watch"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the document. |
tenantId |
String | The identifier of the tenant the document belongs to. |
groupId |
String | The identifier of the group the document belongs to. |
userId |
String | The identifier of the user the document belongs to. |
workflowId |
String | The identifier of the workflow the document belongs to. |
workflowName |
String | The name of the workflow the document belongs to. |
data1 |
String optional | The value for the data1 metadata field. |
data2 |
String optional | The value for the data2 metadata field. |
data3 |
String optional | The value for the data3 metadata field. |
data4 |
String optional | The value for the data4 metadata field. |
data5 |
String optional | The value for the data5 metadata field. |
data6 |
String optional | The value for the data6 metadata field. |
data7 |
String optional | The value for the data7 metadata field. |
data8 |
String optional | The value for the data8 metadata field. |
data9 |
String optional | The value for the data9 metadata field. |
data10 |
String optional | The value for the data10 metadata field. |
data11 |
String optional | The value for the data11 metadata field. |
data12 |
String optional | The value for the data12 metadata field. |
data13 |
String optional | The value for the data13 metadata field. |
data14 |
String optional | The value for the data14 metadata field. |
data15 |
String optional | The value for the data15 metadata field. |
data16 |
String optional | The value for the data16 metadata field. |
signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position (in pixel) of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position (in pixel) of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view the workflow the document belongs to. |
viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view the workflow the document belongs to. |
parts |
Array | The parts of the document. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
displayedParts |
Array | The parts of the document to be displayed for final user. |
displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
displayedParts[].size |
Number | The size of the part to be displayed for final user. |
displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidPdfSignatureField | Parameters of a PDF signature field are incorrect. |
400 |
PdfSignatureFieldsOverlap | Some signature fields are overlapping. |
400 |
TemplateMaxAttachmentsReached | The template maximum number of attachments has been reached. |
400 |
TemplateMaxDocumentsReached | The template maximum number of documents to sign has been reached. |
400 |
TenantMaxAttachmentsReached | The maximum number of attachments has been reached. |
400 |
TenantMaxDocumentsReached | The maximum number of documents to sign has been reached. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
SignatureProfileDisabled | The specified signature profile is disabled. |
403 |
SignatureProfileNotAllowed | The specified signature profile is not allowed for this document. |
403 |
TemplateAttachmentsNotAllowed | The attachments are not allowed by the template. |
403 |
TenantAttachmentsNotAllowed | The attachments are not allowed by the tenant. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
404 |
WorkflowDocumentNotFound | The specified workflow document can not be found. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Delete document
Delete an existing workflow document.
HTTP request
DELETE /api/documents/doc_32YajYETQWLRHxkzuBkqjej9 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "GyCAASVcLo8MVNad7FLMMBNv"
Path parameters:
/api/documents/{documentId}
Parameter | Description |
---|---|
documentId |
The identifier of the document. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_PGCDmC3cHrfRQHJ1zjdhatcJ
ETag: "GyCAASVcLo8MVNad7FLMMBNv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1305
{
"created" : 1731411668013,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "axgwLFiD5+tFy+N60x0O3ZzcXnzIivuzIcUUvZvB7gs=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "doc_32YajYETQWLRHxkzuBkqjej9",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "axgwLFiD5+tFy+N60x0O3ZzcXnzIivuzIcUUvZvB7gs=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"pdfSignatureFields" : [ {
"imageHeight" : 80.0,
"imagePage" : -1,
"imageWidth" : 150.0,
"imageX" : 390.0,
"imageY" : 710.0
} ],
"signatureProfileId" : "sip_88cjQmi7ojmG47Pu72HVDcWN",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411668040,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_HRrQNJrEp7xNFvQAPjiRgFT4" ],
"workflowId" : "wfl_3C9uJZAnjVC46REGJCC9C8U9",
"workflowName" : "Lightweight Concrete Watch"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the document. |
tenantId |
String | The identifier of the tenant the document belongs to. |
groupId |
String | The identifier of the group the document belongs to. |
userId |
String | The identifier of the user the document belongs to. |
workflowId |
String | The identifier of the workflow the document belongs to. |
workflowName |
String | The name of the workflow the document belongs to. |
data1 |
String optional | The value for the data1 metadata field. |
data2 |
String optional | The value for the data2 metadata field. |
data3 |
String optional | The value for the data3 metadata field. |
data4 |
String optional | The value for the data4 metadata field. |
data5 |
String optional | The value for the data5 metadata field. |
data6 |
String optional | The value for the data6 metadata field. |
data7 |
String optional | The value for the data7 metadata field. |
data8 |
String optional | The value for the data8 metadata field. |
data9 |
String optional | The value for the data9 metadata field. |
data10 |
String optional | The value for the data10 metadata field. |
data11 |
String optional | The value for the data11 metadata field. |
data12 |
String optional | The value for the data12 metadata field. |
data13 |
String optional | The value for the data13 metadata field. |
data14 |
String optional | The value for the data14 metadata field. |
data15 |
String optional | The value for the data15 metadata field. |
data16 |
String optional | The value for the data16 metadata field. |
signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position (in pixel) of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position (in pixel) of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view the workflow the document belongs to. |
viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view the workflow the document belongs to. |
parts |
Array | The parts of the document. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
displayedParts |
Array | The parts of the document to be displayed for final user. |
displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
displayedParts[].size |
Number | The size of the part to be displayed for final user. |
displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
DocumentNotRemovable | The document can not be removed. |
403 |
InvalidWorkflowStatus | The status of the workflow does not allow this operation. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowDocumentNotFound | The specified workflow document can not be found. |
Download part
Download a document part.
HTTP request
GET /api/documents/doc_DrHXR4psKBBn22dDwW5bxf2B/parts/aa49c15129a85f1b1e3fa8998693190e43d04dc6884936185235e10da95ad051 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/documents/{documentId}/parts/{partHash}
Parameter | Description |
---|---|
documentId |
The identifier of the document. |
partHash |
The hex encoded hash of the part to download. |
HTTP response
HTTP/1.1 200 OK
Content-Type: application/pdf
Content-Disposition: attachment; filename="Document"
Cache-Control: max-age=31536000
Content-Length: 18540
%PDF-1.3
%����
1 0 obj
<</Subtype/XML/Type/Metadata/Length 3497>>stream
<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmp
...
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowDocumentNotFound | The specified workflow document can not be found. |
404 |
WorkflowPartNotFound | The specified workflow part can not be found. |
Download workflow documents
Download all the document parts of a workflow. The result is zipped if multiple parts are returned.
HTTP request
GET /api/workflows/wfl_3C9uJZAnjVC46REGJCC9C8U9/downloadDocuments HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/workflows/{workflowId}/downloadDocuments
Parameter | Description |
---|---|
workflowId |
The identifier of the workflow. |
HTTP response
HTTP/1.1 200 OK
Content-Type: application/pdf
Content-Disposition: attachment; filename="Document"
Content-Length: 18540
%PDF-1.3
%����
1 0 obj
<</Subtype/XML/Type/Metadata/Length 3497>>stream
<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmp
...
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
NoDocumentInWorkflow | There is no document in the specified workflow. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowNotFound | The specified workflow can not be found. |
Search documents
Search in all the workflow documents.
HTTP request
GET /api/documents/?text=Document&items.id=doc_DrHXR4psKBBn22dDwW5bxf2B&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.layoutId |
The filter value(s) for the layoutId field. |
items.groupId |
The filter value(s) for the groupId field. |
items.userId |
The filter value(s) for the userId field. |
items.workflowId |
The filter value(s) for the workflowId field. |
items.workflowHash |
The filter value(s) for the workflowHash field. |
items.workflowName |
The filter value(s) for the workflowName field. |
items.data1 |
The filter value(s) for the data1 field. |
items.data2 |
The filter value(s) for the data2 field. |
items.data3 |
The filter value(s) for the data3 field. |
items.data4 |
The filter value(s) for the data4 field. |
items.data5 |
The filter value(s) for the data5 field. |
items.data6 |
The filter value(s) for the data6 field. |
items.data7 |
The filter value(s) for the data7 field. |
items.data8 |
The filter value(s) for the data8 field. |
items.data9 |
The filter value(s) for the data9 field. |
items.data10 |
The filter value(s) for the data10 field. |
items.data11 |
The filter value(s) for the data11 field. |
items.data12 |
The filter value(s) for the data12 field. |
items.data13 |
The filter value(s) for the data13 field. |
items.data14 |
The filter value(s) for the data14 field. |
items.data15 |
The filter value(s) for the data15 field. |
items.data16 |
The filter value(s) for the data16 field. |
items.signatureProfileId |
The filter value(s) for the signatureProfileId field. |
items.viewAuthorizedGroups |
The filter value(s) for the viewAuthorizedGroups field. |
items.viewAuthorizedUsers |
The filter value(s) for the viewAuthorizedUsers field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1457
{
"items" : [ {
"created" : 1731411627800,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "qknBUSmoXxseP6iZhpMZDkPQTcaISTYYUjXhDala0FE=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"groupId" : "grp_9A74eXoqQ6r8SmGHjaXUhmAc",
"id" : "doc_DrHXR4psKBBn22dDwW5bxf2B",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "qknBUSmoXxseP6iZhpMZDkPQTcaISTYYUjXhDala0FE=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"pdfSignatureFields" : [ {
"imageHeight" : 80.0,
"imagePage" : -1,
"imageWidth" : 150.0,
"imageX" : 390.0,
"imageY" : 710.0
} ],
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411627863,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C",
"viewAuthorizedGroups" : [ "grp_4RHF5UX2QBgWH4ueN9tQzM6V", "grp_9A74eXoqQ6r8SmGHjaXUhmAc" ],
"viewAuthorizedUsers" : [ "usr_HRrQNJrEp7xNFvQAPjiRgFT4" ],
"workflowId" : "wfl_3C9uJZAnjVC46REGJCC9C8U9",
"workflowName" : "Lightweight Concrete Watch"
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the document. |
items[].tenantId |
String | The identifier of the tenant the document belongs to. |
items[].groupId |
String | The identifier of the group the document belongs to. |
items[].userId |
String | The identifier of the user the document belongs to. |
items[].workflowId |
String | The identifier of the workflow the document belongs to. |
items[].workflowName |
String | The name of the workflow the document belongs to. |
items[].data1 |
String optional | The value for the data1 metadata field. |
items[].data2 |
String optional | The value for the data2 metadata field. |
items[].data3 |
String optional | The value for the data3 metadata field. |
items[].data4 |
String optional | The value for the data4 metadata field. |
items[].data5 |
String optional | The value for the data5 metadata field. |
items[].data6 |
String optional | The value for the data6 metadata field. |
items[].data7 |
String optional | The value for the data7 metadata field. |
items[].data8 |
String optional | The value for the data8 metadata field. |
items[].data9 |
String optional | The value for the data9 metadata field. |
items[].data10 |
String optional | The value for the data10 metadata field. |
items[].data11 |
String optional | The value for the data11 metadata field. |
items[].data12 |
String optional | The value for the data12 metadata field. |
items[].data13 |
String optional | The value for the data13 metadata field. |
items[].data14 |
String optional | The value for the data14 metadata field. |
items[].data15 |
String optional | The value for the data15 metadata field. |
items[].data16 |
String optional | The value for the data16 metadata field. |
items[].signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
items[].pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
items[].pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
items[].pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
items[].pdfSignatureFields[].imageX |
Number optional | The position (in pixel) of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
items[].pdfSignatureFields[].imageY |
Number optional | The position (in pixel) of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
items[].pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
items[].pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
items[].viewAuthorizedGroups |
Array | The list of group IDs whose members are allowed to view the workflow the document belongs to. |
items[].viewAuthorizedUsers |
Array | The list of user IDs who are allowed to view the workflow the document belongs to. |
items[].parts |
Array | The parts of the document. |
items[].parts[].filename |
String | The filename of the part. |
items[].parts[].contentType |
String | The content type of the part. |
items[].parts[].size |
Number | The size of the part. |
items[].parts[].hash |
String | The cryptographic hash of the part. |
items[].parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
items[].parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
items[].displayedParts |
Array | The parts of the document to be displayed for final user. |
items[].displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
items[].displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
items[].displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
items[].displayedParts[].size |
Number | The size of the part to be displayed for final user. |
items[].displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
items[].displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export documents
Export a search in all the workflow documents.
HTTP request
POST /api/documents/exports?text=Document&items.id=doc_DrHXR4psKBBn22dDwW5bxf2B&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 173
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{json parts}}",
"expired" : 1731498079834
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.layoutId |
The filter value(s) for the layoutId field. |
items.groupId |
The filter value(s) for the groupId field. |
items.userId |
The filter value(s) for the userId field. |
items.workflowId |
The filter value(s) for the workflowId field. |
items.workflowHash |
The filter value(s) for the workflowHash field. |
items.workflowName |
The filter value(s) for the workflowName field. |
items.data1 |
The filter value(s) for the data1 field. |
items.data2 |
The filter value(s) for the data2 field. |
items.data3 |
The filter value(s) for the data3 field. |
items.data4 |
The filter value(s) for the data4 field. |
items.data5 |
The filter value(s) for the data5 field. |
items.data6 |
The filter value(s) for the data6 field. |
items.data7 |
The filter value(s) for the data7 field. |
items.data8 |
The filter value(s) for the data8 field. |
items.data9 |
The filter value(s) for the data9 field. |
items.data10 |
The filter value(s) for the data10 field. |
items.data11 |
The filter value(s) for the data11 field. |
items.data12 |
The filter value(s) for the data12 field. |
items.data13 |
The filter value(s) for the data13 field. |
items.data14 |
The filter value(s) for the data14 field. |
items.data15 |
The filter value(s) for the data15 field. |
items.data16 |
The filter value(s) for the data16 field. |
items.signatureProfileId |
The filter value(s) for the signatureProfileId field. |
items.viewAuthorizedGroups |
The filter value(s) for the viewAuthorizedGroups field. |
items.viewAuthorizedUsers |
The filter value(s) for the viewAuthorizedUsers field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_4b8YcjdWR1Uf4nW7AuKAuBxp
ETag: "ADZmDoAjockb9VNUiu2WGE1t"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 578
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731411679837,
"expired" : 1731498079834,
"exportOperation" : "createWorkflowDocumentExport",
"id" : "exp_88EGTgU66jqmVo8xFr1Z5Vzb",
"itemTemplate" : "{{id}},{{json parts}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Document&items.id=doc_DrHXR4psKBBn22dDwW5bxf2B&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731411679837,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Create document viewer
Create an URL that can be opened in a web browser to visualize an XML or a PDF document.
For PDF documents, if the workflow contains at least one signer recipient, the viewer will let the user place the corresponding signature fields via “drag and drop”.
HTTP request
POST /api/documents/doc_DrHXR4psKBBn22dDwW5bxf2B/viewer HTTP/1.1
Authorization: Bearer act_HSDNs5TsHdBMhVVAxEwpsAB1.5oWe4yvTziquS5RnAV6VaSGTd3cbdM5vPaPCHxbThtuegmP3maim3DcWx8UM6M6r
Content-Type: application/json
Content-Length: 79
{
"redirectUrl" : "https://harber.co/callback",
"expired" : 1731498063661
}
Path parameters:
/api/documents/{documentId}/viewer
Parameter | Description |
---|---|
documentId |
The identifier of the document. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
redirectUrl |
String optional | The URL to redirect to when the viewer is closed. |
expired |
Number optional | The expiration date of the viewer. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_CM5bNJagEPftdx26LG78V3Nv
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 362
{
"expired" : 1731498063661,
"viewerUrl" : "https://klein.name/viewer#token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJ2aWV3ZXIiLCJkb2N1bWVudElkIjoiZG9jX0RySFhSNHBzS0JCbjIyZER3VzVieGYyQiIsInJlZGlyZWN0V..."
}
Fields:
Path | Type | Description |
---|---|---|
viewerUrl |
String | The viewer URL. |
expired |
Number | The expiration date of the viewer. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowDocumentNotFound | The specified workflow document can not be found. |
Workflow layouts
Create layout
Create a new workflow layout.
HTTP request
POST /api/tenants/ten_DyvBSLey9Fnh65AGLLGoDB8D/layouts HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 587
{
"isDisabled" : false,
"name" : "Intelligent Copper Car",
"dataConfigurations" : [ {
"slot" : "data1",
"default" : "Safe #1",
"optional" : true,
"readonly" : false,
"rememberLastValue" : false
}, {
"slot" : "data3",
"optional" : true,
"readonly" : false,
"rememberLastValue" : false
}, {
"slot" : "data5",
"default" : "Île-de-France",
"optional" : false,
"readonly" : false,
"rememberLastValue" : false
}, {
"slot" : "data6",
"optional" : false,
"readonly" : false,
"rememberLastValue" : false
} ]
}
Path parameters:
/api/tenants/{tenantId}/layouts
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
isDisabled |
Boolean optional | Whether or not the layout is disabled. |
name |
String | The name of the layout. |
dataConfigurations |
Array optional | The configuration for each metadata allowed by the layout. |
dataConfigurations[].slot |
String | The slot name of the metadata. |
dataConfigurations[].default |
String optional | The default value for the metadata. |
dataConfigurations[].optional |
Boolean | Whether or not the value for the metadata is optional. |
dataConfigurations[].readonly |
Boolean | Whether or not the value for the metadata is not modifiable. |
dataConfigurations[].rememberLastValue |
Boolean | Whether or not the last value entered by the workflow creator should be remembered. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_HVSVFsP6Q7GQHj1wn4TKPgtg
ETag: "DU2v3vsW7VD1vxzPrZmA82Kq"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 733
{
"created" : 1731411739690,
"dataConfigurations" : [ {
"default" : "Safe #1",
"optional" : true,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data1"
}, {
"optional" : true,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data3"
}, {
"default" : "Île-de-France",
"optional" : false,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data5"
}, {
"optional" : false,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data6"
} ],
"id" : "lay_765GwLPRMMjmY84qETgED23J",
"isDisabled" : false,
"name" : "Intelligent Copper Car",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411739690
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the layout. |
tenantId |
String | The identifier of the tenant the layout belongs to. |
isDisabled |
Boolean | Whether or not the layout is disabled. |
name |
String | The name of the layout. |
dataConfigurations |
Array | The configuration for each metadata allowed by the layout. |
dataConfigurations[].slot |
String | The slot name of the metadata. |
dataConfigurations[].default |
String optional | The default value for the metadata. |
dataConfigurations[].optional |
Boolean | Whether or not the value for the metadata is optional. |
dataConfigurations[].readonly |
Boolean | Whether or not the value for the metadata is not modifiable. |
dataConfigurations[].rememberLastValue |
Boolean | Whether or not the last value entered by the workflow creator should be remembered. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve layout
Retrieve an existing workflow layout.
HTTP request
GET /api/layouts/lay_Jfhoixjej3geYx6oZJr7XBYW HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/layouts/{layoutId}
Parameter | Description |
---|---|
layoutId |
The identifier of the layout. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "GLqTB2XKXeDfK6e8ZsAZog7x"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 732
{
"created" : 1731411607326,
"dataConfigurations" : [ {
"default" : "Safe #1",
"optional" : true,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data1"
}, {
"optional" : true,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data3"
}, {
"default" : "Île-de-France",
"optional" : false,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data5"
}, {
"optional" : false,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data6"
} ],
"id" : "lay_Jfhoixjej3geYx6oZJr7XBYW",
"isDisabled" : false,
"name" : "Awesome Silk Keyboard",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411607326
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the layout. |
tenantId |
String | The identifier of the tenant the layout belongs to. |
isDisabled |
Boolean | Whether or not the layout is disabled. |
name |
String | The name of the layout. |
dataConfigurations |
Array | The configuration for each metadata allowed by the layout. |
dataConfigurations[].slot |
String | The slot name of the metadata. |
dataConfigurations[].default |
String optional | The default value for the metadata. |
dataConfigurations[].optional |
Boolean | Whether or not the value for the metadata is optional. |
dataConfigurations[].readonly |
Boolean | Whether or not the value for the metadata is not modifiable. |
dataConfigurations[].rememberLastValue |
Boolean | Whether or not the last value entered by the workflow creator should be remembered. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowLayoutNotFound | The specified workflow layout can not be found. |
Update layout
Update an existing workflow layout.
HTTP request
PATCH /api/layouts/lay_8ApLKx92CPmNkEDGjkxaiVpw HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "ARQwBnVB6DaXaYLVR1WuR16E"
Content-Type: application/json
Content-Length: 591
{
"isDisabled" : false,
"name" : "Aerodynamic Leather Wallet",
"dataConfigurations" : [ {
"slot" : "data1",
"default" : "Safe #1",
"optional" : true,
"readonly" : false,
"rememberLastValue" : false
}, {
"slot" : "data3",
"optional" : true,
"readonly" : false,
"rememberLastValue" : false
}, {
"slot" : "data5",
"default" : "Île-de-France",
"optional" : false,
"readonly" : false,
"rememberLastValue" : false
}, {
"slot" : "data6",
"optional" : false,
"readonly" : false,
"rememberLastValue" : false
} ]
}
Path parameters:
/api/layouts/{layoutId}
Parameter | Description |
---|---|
layoutId |
The identifier of the layout. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
isDisabled |
Boolean optional | Whether or not the layout is disabled. |
name |
String optional | The name of the layout. |
dataConfigurations |
Array optional | The configuration for each metadata allowed by the layout. |
dataConfigurations[].slot |
String | The slot name of the metadata. |
dataConfigurations[].default |
String optional | The default value for the metadata. |
dataConfigurations[].optional |
Boolean | Whether or not the value for the metadata is optional. |
dataConfigurations[].readonly |
Boolean | Whether or not the value for the metadata is not modifiable. |
dataConfigurations[].rememberLastValue |
Boolean | Whether or not the last value entered by the workflow creator should be remembered. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_2x7wovMveG7WQ6k9xE4Wgy3z
ETag: "J6tswMmiw69xjDX9tPxcnLwJ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 737
{
"created" : 1731411731900,
"dataConfigurations" : [ {
"default" : "Safe #1",
"optional" : true,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data1"
}, {
"optional" : true,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data3"
}, {
"default" : "Île-de-France",
"optional" : false,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data5"
}, {
"optional" : false,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data6"
} ],
"id" : "lay_8ApLKx92CPmNkEDGjkxaiVpw",
"isDisabled" : false,
"name" : "Aerodynamic Leather Wallet",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411731922
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the layout. |
tenantId |
String | The identifier of the tenant the layout belongs to. |
isDisabled |
Boolean | Whether or not the layout is disabled. |
name |
String | The name of the layout. |
dataConfigurations |
Array | The configuration for each metadata allowed by the layout. |
dataConfigurations[].slot |
String | The slot name of the metadata. |
dataConfigurations[].default |
String optional | The default value for the metadata. |
dataConfigurations[].optional |
Boolean | Whether or not the value for the metadata is optional. |
dataConfigurations[].readonly |
Boolean | Whether or not the value for the metadata is not modifiable. |
dataConfigurations[].rememberLastValue |
Boolean | Whether or not the last value entered by the workflow creator should be remembered. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
409 |
EntityLocked | The entity is being updated. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Search workflow layouts
Search in all workflow layouts.
HTTP request
GET /api/layouts?text=Incredible%20Linen%20Shoes&items.id=lay_HaQtwLTseg5oRgSxj2Svyi1D&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.name |
The filter value(s) for the name field. |
items.dataConfigurations.slot |
The filter value(s) for the dataConfigurations.slot field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 875
{
"items" : [ {
"created" : 1731411738965,
"dataConfigurations" : [ {
"default" : "Safe #1",
"optional" : true,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data1"
}, {
"optional" : true,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data3"
}, {
"default" : "Île-de-France",
"optional" : false,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data5"
}, {
"optional" : false,
"readonly" : false,
"rememberLastValue" : false,
"slot" : "data6"
} ],
"id" : "lay_HaQtwLTseg5oRgSxj2Svyi1D",
"isDisabled" : false,
"name" : "Incredible Linen Shoes",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411738965
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the layout. |
items[].tenantId |
String | The identifier of the tenant the layout belongs to. |
items[].isDisabled |
Boolean | Whether or not the layout is disabled. |
items[].name |
String | The name of the layout. |
items[].dataConfigurations |
Array | The configuration for each metadata allowed by the layout. |
items[].dataConfigurations[].slot |
String | The slot name of the metadata. |
items[].dataConfigurations[].default |
String optional | The default value for the metadata. |
items[].dataConfigurations[].optional |
Boolean | Whether or not the value for the metadata is optional. |
items[].dataConfigurations[].readonly |
Boolean | Whether or not the value for the metadata is not modifiable. |
items[].dataConfigurations[].rememberLastValue |
Boolean | Whether or not the last value entered by the workflow creator should be remembered. |
items[].jobOperation |
String optional | The job operation currently running. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export workflow layouts
Export a search in all workflow layouts.
HTTP request
POST /api/layouts/exports?text=Awesome%20Silk%20Keyboard&items.id=lay_Jfhoixjej3geYx6oZJr7XBYW&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 195
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json dataConfigurations}}",
"expired" : 1731498129840
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.name |
The filter value(s) for the name field. |
items.dataConfigurations.slot |
The filter value(s) for the dataConfigurations.slot field. |
items.jobOperation |
The filter value(s) for the jobOperation field. |
items.jobErrorCode |
The filter value(s) for the jobErrorCode field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_CSdGqvuaouaM2CwftsNzoyyd
ETag: "Gew2THWoNwRmkydFTGuvztE5"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 611
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731411729843,
"expired" : 1731498129840,
"exportOperation" : "createWorkflowLayoutExport",
"id" : "exp_A4krBQcJLJmUVXUaMKxGJ4xk",
"itemTemplate" : "{{id}},{{name}},{{json dataConfigurations}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Awesome+Silk+Keyboard&items.id=lay_Jfhoixjej3geYx6oZJr7XBYW&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731411729843,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Workflow templates
Create workflow template
Create a workflow template.
HTTP request
POST /api/tenants/ten_DyvBSLey9Fnh65AGLLGoDB8D/templates HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 2437
{
"isDisabled" : false,
"name" : "Heavy Duty Aluminum Gloves",
"description" : "1140 Passage de l'Abbaye, 23363 Drancy",
"layoutSelectionMode" : "list",
"allowedLayouts" : [ "lay_Pn1QxE9cYMqQC7Ut32f1QR7X" ],
"maxWatchers" : 10,
"steps" : [ {
"stepType" : "signature",
"recipientSelectionMode" : "list",
"maxRecipients" : 10,
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"email" : "clement.hand267@my-company.com",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn",
"phoneNumber" : "+33 6 12 34 56 78",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"country" : "FR",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"preferredLocale" : "fr"
} ],
"allowedGroups" : [ ],
"allowedConsentPages" : [ "cop_H2T7UF16oZYRhiqyL98KJz6T" ],
"requiredRecipients" : 1,
"maxInvites" : 5,
"sendDownloadLink" : true,
"validityPeriod" : 8553600000,
"invitePeriod" : 86400000,
"readonly" : false,
"removable" : true,
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false
} ],
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"notifiedEventsReadonly" : false,
"coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"coManagerNotifiedEventsReadonly" : false,
"watchers" : [ {
"readonly" : false,
"removable" : true,
"userId" : "usr_EMsARErfFL3WgxFoUihsTZGE",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"readonly" : false,
"removable" : true,
"email" : "britany.schroeder1973@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
} ],
"allowedSignatureProfiles" : [ "sip_Cw72RR5zAm4ubfaLRzM2gCmX" ],
"documentSelectionMode" : "any",
"maxDocuments" : 10,
"maxAttachments" : 20,
"coManagerSelectionMode" : "none",
"allowedCoManagerUsers" : [ ],
"coManagerUsersModifiable" : true,
"coManagerCanEditCoManager" : false,
"allowedCoManagerGroups" : [ ],
"allowConsolidation" : true
}
Path parameters:
/api/tenants/{tenantId}/templates
Parameter | Description |
---|---|
tenantId |
The identifier of the tenant the workflow template belongs to. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
name |
String | The name of the workflow template. |
description |
String optional | The description of the workflow template. |
isDisabled |
Boolean | Whether or not the workflow template is disabled. |
layoutSelectionMode |
String optional | Possible values: list , listOrNull , any or anyOrNull . |
allowedLayouts |
Array optional | The list of workflow layouts allowed to be used in the workflow. |
maxWatchers |
Number optional | The maximum number of watchers. |
steps |
Array optional | The steps of the workflow template. |
steps[].stepType |
String optional | The type of the step, either signature or approval . |
steps[].recipientSelectionMode |
String optional | Possible values: list , any or group . |
steps[].allowedGroups |
Array optional | The list of groups of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is group . |
steps[].allowedConsentPages |
Array optional | The list of consent pages allowed to be used in the step. |
steps[].recipients |
Array optional | The list of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is list or any . |
steps[].recipients[].consentPageId |
String optional | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String optional | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String optional | The first name of the recipient. |
steps[].recipients[].lastName |
String optional | The last name of the recipient. |
steps[].recipients[].country |
String optional | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].maxRecipients |
Number optional | The maximum number of recipients in the step. Minimum is 1. Maximum is 99. |
steps[].requiredRecipients |
Number optional | The number of recipients that are required to sign or approve the documents for the step to finish. Minimum is 1. Maximum is maxRecipients . |
steps[].validityPeriod |
Number optional | The period during which the step is valid. Minimum is 86400000. Maximum is 8553600000. |
steps[].invitePeriod |
Number optional | The period after which invites are resent. Minimum is 86400000. Maximum is 2592000000. |
steps[].maxInvites |
Number optional | The maximum number of invites to send to the recipients. Minimum is 0. Maximum is 99. |
steps[].sendDownloadLink |
Boolean optional | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].readonly |
Boolean optional | Whether or not the step is read-only. |
steps[].removable |
Boolean optional | Whether or not the step is removable. |
steps[].allowComments |
Boolean optional | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean optional | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean optional | Whether or not other recipients of the workflow are visible to the recipients in this step. |
notifiedEvents |
Array optional | The type of events the owner will receive notifications about. |
notifiedEventsReadonly |
Boolean optional | Whether or not the notified events are read-only. |
watchers |
Array optional | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
watchers[].readonly |
Boolean optional | Whether or not the watcher is read-only. |
watchers[].removable |
Boolean optional | Whether or not the watcher is removable. |
allowedSignatureProfiles |
Array optional | The list of signature profiles allowed for signing documents. |
documentSelectionMode |
String optional | Possible values: list or any . |
maxDocuments |
Number optional | The maximum number of documents to sign. |
maxAttachments |
Number optional | The maximum number of attachments. |
coManagerSelectionMode |
String optional | Possible values: none , list , any or anyOrNull . |
allowedCoManagerGroups |
Array optional | The list of comanager groups allowed to be assigned as workflow comanagers. |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
coManagerUsersModifiable |
Boolean optional | Whether or not the comanager notified events are modifiable. |
coManagerCanEditCoManager |
Boolean optional | Whether or not the co-manager events are modifiable by a co-manager. |
coManagerNotifiedEvents |
Array optional | The type of events the comanager will receive notifications about. |
coManagerNotifiedEventsReadonly |
Boolean optional | Whether or not the comanager notified events are read-only. |
allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_9PpGwKF3NfjzZ5WjLr3SWBU3
ETag: "4EFrdQJrdKC4aJ8JhEf48oaN"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2654
{
"allowConsolidation" : true,
"allowedCoManagerGroups" : [ ],
"allowedCoManagerUsers" : [ ],
"allowedLayouts" : [ "lay_Pn1QxE9cYMqQC7Ut32f1QR7X" ],
"allowedSignatureProfiles" : [ "sip_Cw72RR5zAm4ubfaLRzM2gCmX" ],
"coManagerCanEditCoManager" : false,
"coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"coManagerNotifiedEventsReadonly" : false,
"coManagerSelectionMode" : "none",
"coManagerUsersModifiable" : true,
"created" : 1731412116371,
"description" : "1140 Passage de l'Abbaye, 23363 Drancy",
"documentSelectionMode" : "any",
"id" : "wtm_AK6Jb4s5nEuyJW88s2SUP2Wb",
"isDisabled" : false,
"layoutSelectionMode" : "list",
"maxAttachments" : 10,
"maxDocuments" : 10,
"maxWatchers" : 10,
"name" : "Heavy Duty Aluminum Gloves",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"notifiedEventsReadonly" : false,
"steps" : [ {
"allowComments" : true,
"allowedConsentPages" : [ ],
"allowedGroups" : [ ],
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_pAP6Z1pZCnwnv5pRyiTWqgzc",
"invitePeriod" : 86400000,
"maxInvites" : 5,
"maxRecipients" : 1,
"readonly" : false,
"recipientSelectionMode" : "list",
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"country" : "FR",
"email" : "clement.hand267@my-company.com",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"preferredLocale" : "fr",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
} ],
"removable" : true,
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000
} ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412116371,
"watchers" : [ {
"email" : "britany.schroeder1973@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"readonly" : false,
"removable" : true
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"readonly" : false,
"removable" : true,
"userId" : "usr_EMsARErfFL3WgxFoUihsTZGE"
} ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the workflow template. |
tenantId |
String | The identifier of the tenant the workflow template belongs to. |
name |
String | The name of the workflow template. |
description |
String optional | The description of the workflow template. |
isDisabled |
Boolean | Whether or not the workflow template is disabled. |
layoutSelectionMode |
String | Possible values: list , listOrNull , any or anyOrNull . |
allowedLayouts |
Array | The list of workflow layouts allowed to be used in the workflow. |
maxWatchers |
Number | The maximum number of watchers. |
steps |
Array | The steps of the workflow template. |
steps[].id |
String | The identifier of the step. |
steps[].stepType |
String | The type of the step, either signature or approval . |
steps[].recipientSelectionMode |
String | Possible values: list , any or group . |
steps[].recipients |
Array optional | The list of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is list or any . |
steps[].allowedGroups |
Array optional | The list of groups of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is group . |
steps[].maxRecipients |
Number | The maximum number of recipients in the step. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].pictureResourceId |
String optional | The identifier of the user picture resource, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String optional | The first name of the recipient. |
steps[].recipients[].lastName |
String optional | The last name of the recipient. |
steps[].recipients[].country |
String optional | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].allowedConsentPages |
Array | The list of consent pages allowed to be used in the step. |
steps[].requiredRecipients |
Number | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number | The period during which the step is valid. |
steps[].invitePeriod |
Number | The period after which invites are resent. |
steps[].maxInvites |
Number | The maximum number of invites to send to the recipients. |
steps[].sendDownloadLink |
Boolean | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].readonly |
Boolean | Whether or not the step is read-only. |
steps[].removable |
Boolean | Whether or not the step is removable. |
steps[].allowComments |
Boolean | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of the workflow are visible to the recipients in this step. |
notifiedEvents |
Array | The type of events the owner will receive notifications about. |
notifiedEventsReadonly |
Boolean | Whether or not the notified events are read-only. |
watchers |
Array | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
watchers[].readonly |
Boolean | Whether or not the watcher is read-only. |
watchers[].removable |
Boolean | Whether or not the watcher is removable. |
allowedSignatureProfiles |
Array | The list of signature profiles allowed for signing documents. |
documentSelectionMode |
String | Possible values: list or any . |
maxDocuments |
Number | The maximum number of documents to sign. |
maxAttachments |
Number | The maximum number of attachments. |
coManagerSelectionMode |
String | Possible values: none , list , any or anyOrNull . |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
coManagerCanEditCoManager |
Boolean | Whether or not the co-manager events are modifiable by a co-manager. |
coManagerUsersModifiable |
Boolean | Whether or not the comanager notified events are modifiable. |
coManagerNotifiedEvents |
Array | The type of events the comanager will receive notifications about. |
coManagerNotifiedEventsReadonly |
Boolean | Whether or not the comanager notified events are read-only. |
allowedCoManagerGroups |
Array optional | The list of comanager groups allowed to be assigned as workflow comanagers. |
allowConsolidation |
Boolean | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
400 |
NoRecipientInStep | Recipients are missing from workflow step. |
400 |
RecipientInfoMissing | A recipient in the request is missing identity information. |
400 |
RecipientPhoneNumberRequired | The specified consent page requires a recipient phone number. |
400 |
RecipientUserRequired | The specified consent page requires a recipient user ID. |
403 |
ApprovalNotAllowed | The specified recipient user is not allowed to approve workflows. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
ConsentPageDisabled | The specified consent page is disabled. |
403 |
GroupDisabled | The specified group is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
OrganizationNotAllowed | The selected organization is not allowed to this recipient. |
403 |
SignatureNotAllowed | The specified recipient user is not allowed to sign workflows. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserDisabled | The specified user is disabled. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
ConsentPageNotFound | The specified consent page can not be found. |
404 |
GroupNotFound | The specified group can not be found. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
404 |
UserNotFound | The specified user can not be found. |
404 |
WorkflowLayoutNotFound | The specified workflow layout can not be found. |
Retrieve workflow template
Retrieve an existing workflow template.
HTTP request
GET /api/templates/wtm_9WXm736PkbbfYDNzvrE4rd9K HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/templates/{templateId}
Parameter | Description |
---|---|
templateId |
The identifier of the workflow template. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "FrdgrNkd3nkk1Y7wGXk8qmuT"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2650
{
"allowConsolidation" : true,
"allowedCoManagerGroups" : [ ],
"allowedCoManagerUsers" : [ ],
"allowedLayouts" : [ "lay_PkyGJuuFn9fEP1oox3w3uoxN" ],
"allowedSignatureProfiles" : [ "sip_7mm3PEL6BPxp3KTUEaheuiuV" ],
"coManagerCanEditCoManager" : false,
"coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"coManagerNotifiedEventsReadonly" : false,
"coManagerSelectionMode" : "none",
"coManagerUsersModifiable" : true,
"created" : 1731411606961,
"description" : "4 étage, 57 Quai Dauphine, 54572 Montauban",
"documentSelectionMode" : "any",
"id" : "wtm_9WXm736PkbbfYDNzvrE4rd9K",
"isDisabled" : false,
"layoutSelectionMode" : "list",
"maxAttachments" : 5,
"maxDocuments" : 10,
"maxWatchers" : 6,
"name" : "Ergonomic Granite Shirt",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"notifiedEventsReadonly" : false,
"steps" : [ {
"allowComments" : true,
"allowedConsentPages" : [ ],
"allowedGroups" : [ ],
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_NWLZk2suL9qLGEtHagA76JM3",
"invitePeriod" : 86400000,
"maxInvites" : 5,
"maxRecipients" : 1,
"readonly" : false,
"recipientSelectionMode" : "list",
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"country" : "FR",
"email" : "clement.hand267@my-company.com",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"preferredLocale" : "fr",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
} ],
"removable" : true,
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000
} ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411606961,
"watchers" : [ {
"email" : "gayle.schmitt9263@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"readonly" : true,
"removable" : false
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"readonly" : false,
"removable" : true,
"userId" : "usr_CFYCYZ1P5cfitGbwdyMexEbV"
} ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the workflow template. |
tenantId |
String | The identifier of the tenant the workflow template belongs to. |
name |
String | The name of the workflow template. |
description |
String optional | The description of the workflow template. |
isDisabled |
Boolean | Whether or not the workflow template is disabled. |
layoutSelectionMode |
String | Possible values: list , listOrNull , any or anyOrNull . |
allowedLayouts |
Array | The list of workflow layouts allowed to be used in the workflow. |
maxWatchers |
Number | The maximum number of watchers. |
steps |
Array | The steps of the workflow template. |
steps[].id |
String | The identifier of the step. |
steps[].stepType |
String | The type of the step, either signature or approval . |
steps[].recipientSelectionMode |
String | Possible values: list , any or group . |
steps[].recipients |
Array optional | The list of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is list or any . |
steps[].allowedGroups |
Array optional | The list of groups of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is group . |
steps[].maxRecipients |
Number | The maximum number of recipients in the step. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].pictureResourceId |
String optional | The identifier of the user picture resource, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String optional | The first name of the recipient. |
steps[].recipients[].lastName |
String optional | The last name of the recipient. |
steps[].recipients[].country |
String optional | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].allowedConsentPages |
Array | The list of consent pages allowed to be used in the step. |
steps[].requiredRecipients |
Number | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number | The period during which the step is valid. |
steps[].invitePeriod |
Number | The period after which invites are resent. |
steps[].maxInvites |
Number | The maximum number of invites to send to the recipients. |
steps[].sendDownloadLink |
Boolean | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].readonly |
Boolean | Whether or not the step is read-only. |
steps[].removable |
Boolean | Whether or not the step is removable. |
steps[].allowComments |
Boolean | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of the workflow are visible to the recipients in this step. |
notifiedEvents |
Array | The type of events the owner will receive notifications about. |
notifiedEventsReadonly |
Boolean | Whether or not the notified events are read-only. |
watchers |
Array | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
watchers[].readonly |
Boolean | Whether or not the watcher is read-only. |
watchers[].removable |
Boolean | Whether or not the watcher is removable. |
allowedSignatureProfiles |
Array | The list of signature profiles allowed for signing documents. |
documentSelectionMode |
String | Possible values: list or any . |
maxDocuments |
Number | The maximum number of documents to sign. |
maxAttachments |
Number | The maximum number of attachments. |
coManagerSelectionMode |
String | Possible values: none , list , any or anyOrNull . |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
coManagerCanEditCoManager |
Boolean | Whether or not the co-manager events are modifiable by a co-manager. |
coManagerUsersModifiable |
Boolean | Whether or not the comanager notified events are modifiable. |
coManagerNotifiedEvents |
Array | The type of events the comanager will receive notifications about. |
coManagerNotifiedEventsReadonly |
Boolean | Whether or not the comanager notified events are read-only. |
allowedCoManagerGroups |
Array optional | The list of comanager groups allowed to be assigned as workflow comanagers. |
allowConsolidation |
Boolean | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowTemplateNotFound | The specified workflow template can not be found. |
Update workflow template
Update an existing workflow template.
HTTP request
PATCH /api/templates/wtm_Bufd2U3urUguraVKy1QZcaeh HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "JCCtb7PMD18Ktn2rJ5PFHyad"
Content-Type: application/json
Content-Length: 2445
{
"isDisabled" : false,
"name" : "Small Paper Coat",
"description" : "061 Passage Royale, 36079 Villejuif",
"layoutSelectionMode" : "listOrNull",
"allowedLayouts" : [ "lay_CG8Tz2b2pz9LXNsvtqNv84g1" ],
"maxWatchers" : 10,
"steps" : [ {
"id" : "stp_L8trFXvnZXg24Gk9x8bHUoxf",
"recipientSelectionMode" : "list",
"maxRecipients" : 10,
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"email" : "clement.hand267@my-company.com",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn",
"phoneNumber" : "+33 6 12 34 56 78",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"country" : "FR",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"preferredLocale" : "fr"
} ],
"allowedGroups" : [ ],
"allowedConsentPages" : [ "cop_F392wai9pBsya64SY3sBgwG4" ],
"requiredRecipients" : 1,
"maxInvites" : 10,
"sendDownloadLink" : true,
"validityPeriod" : 8553600000,
"invitePeriod" : 86400000,
"readonly" : false,
"removable" : true,
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false
} ],
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"notifiedEventsReadonly" : false,
"coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"coManagerNotifiedEventsReadonly" : false,
"watchers" : [ {
"readonly" : false,
"removable" : true,
"userId" : "usr_BXLExKQGhchCcdt57NdJsEHy",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"readonly" : false,
"removable" : true,
"email" : "donald.ortiz5606@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
} ],
"allowedSignatureProfiles" : [ "sip_B5FDzS6ZfRrYex9cjfKoy75e" ],
"documentSelectionMode" : "any",
"maxDocuments" : 10,
"maxAttachments" : 15,
"coManagerSelectionMode" : "anyOrNull",
"allowedCoManagerUsers" : [ ],
"coManagerUsersModifiable" : true,
"coManagerCanEditCoManager" : false,
"allowedCoManagerGroups" : [ ],
"allowConsolidation" : false
}
Path parameters:
/api/templates/{templateId}
Parameter | Description |
---|---|
templateId |
The identifier of the workflow template. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
name |
String optional | The name of the workflow template. |
description |
String optional | The description of the workflow template. |
isDisabled |
Boolean | Whether or not the workflow template is disabled. |
layoutSelectionMode |
String optional | Possible values: list , listOrNull , any or anyOrNull . |
allowedLayouts |
Array optional | The list of workflow layouts allowed to be used in the workflow. |
maxWatchers |
Number optional | The maximum number of watchers. |
steps |
Array optional | The steps of the workflow template. |
steps[].id |
String optional | The identifier if the step. |
steps[].recipientSelectionMode |
String optional | Possible values: list , any or group |
steps[].allowedGroups |
Array optional | The list of groups of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is group . |
steps[].allowedConsentPages |
Array optional | The list of consent pages allowed to be used in the step. |
steps[].recipients |
Array optional | The list of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is list or any . |
steps[].recipients[].consentPageId |
String optional | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String optional | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String optional | The first name of the recipient. |
steps[].recipients[].lastName |
String optional | The last name of the recipient. |
steps[].recipients[].country |
String optional | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].maxRecipients |
Number optional | The maximum number of recipients in the step. Minimum is 1. Maximum is 99. |
steps[].requiredRecipients |
Number optional | The number of recipients that are required to sign or approve the documents for the step to finish. Minimum is 1. Maximum is maxRecipients . |
steps[].validityPeriod |
Number optional | The period during which the step is valid. Minimum is 86400000. Maximum is 8553600000. |
steps[].invitePeriod |
Number optional | The period after which invites are resent. Minimum is 86400000. Maximum is 2592000000. |
steps[].maxInvites |
Number optional | The maximum number of invites to send to the recipients. Minimum is 0. Maximum is 99. |
steps[].sendDownloadLink |
Boolean optional | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].readonly |
Boolean optional | Whether or not the step is read-only. |
steps[].removable |
Boolean optional | Whether or not the step is removable. |
steps[].allowComments |
Boolean optional | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean optional | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean optional | Whether or not other recipients of the workflow are visible to the recipients in this step. |
notifiedEvents |
Array optional | The type of events the owner will receive notifications about. |
notifiedEventsReadonly |
Boolean optional | Whether or not the notified events are read-only. |
watchers |
Array optional | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
watchers[].readonly |
Boolean optional | Whether or not the watcher is read-only. |
watchers[].removable |
Boolean optional | Whether or not the watcher is removable. |
allowedSignatureProfiles |
Array optional | The list of signature profiles allowed for signing documents. |
documentSelectionMode |
String optional | Possible values: list or any . |
maxDocuments |
Number optional | The maximum number of documents to signe |
maxAttachments |
Number optional | The maximum number of attachments. |
coManagerSelectionMode |
String optional | Possible values: none , list , any or anyOrNull . |
allowedCoManagerGroups |
Array optional | The list of comanager groups allowed to be assigned as workflow comanagers. |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
coManagerUsersModifiable |
Boolean optional | Whether or not the comanager notified events are modifiable. |
coManagerCanEditCoManager |
Boolean optional | Whether or not the co-manager events are modifiable by a co-manager. |
coManagerNotifiedEvents |
Array optional | The type of events the comanager will receive notifications about. |
coManagerNotifiedEventsReadonly |
Boolean optional | Whether or not the comanager notified events are read-only. |
allowConsolidation |
Boolean optional | Indicates whether workflow consolidation is enabled or not. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_4jyQXvSyS7VvwdeLwBYF1VZN
ETag: "CR6pbwUdbsqp7i1Lce7MwYvE"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2649
{
"allowConsolidation" : false,
"allowedCoManagerGroups" : [ ],
"allowedCoManagerUsers" : [ ],
"allowedLayouts" : [ "lay_CG8Tz2b2pz9LXNsvtqNv84g1" ],
"allowedSignatureProfiles" : [ "sip_B5FDzS6ZfRrYex9cjfKoy75e" ],
"coManagerCanEditCoManager" : false,
"coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"coManagerNotifiedEventsReadonly" : false,
"coManagerSelectionMode" : "anyOrNull",
"coManagerUsersModifiable" : true,
"created" : 1731412105710,
"description" : "061 Passage Royale, 36079 Villejuif",
"documentSelectionMode" : "any",
"id" : "wtm_Bufd2U3urUguraVKy1QZcaeh",
"isDisabled" : false,
"layoutSelectionMode" : "listOrNull",
"maxAttachments" : 10,
"maxDocuments" : 10,
"maxWatchers" : 10,
"name" : "Small Paper Coat",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"notifiedEventsReadonly" : false,
"steps" : [ {
"allowComments" : true,
"allowedConsentPages" : [ ],
"allowedGroups" : [ ],
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_L8trFXvnZXg24Gk9x8bHUoxf",
"invitePeriod" : 86400000,
"maxInvites" : 10,
"maxRecipients" : 1,
"readonly" : false,
"recipientSelectionMode" : "list",
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"country" : "FR",
"email" : "clement.hand267@my-company.com",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"preferredLocale" : "fr",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
} ],
"removable" : true,
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000
} ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731412105852,
"watchers" : [ {
"email" : "donald.ortiz5606@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"readonly" : false,
"removable" : true
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"readonly" : false,
"removable" : true,
"userId" : "usr_BXLExKQGhchCcdt57NdJsEHy"
} ]
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the workflow template. |
tenantId |
String | The identifier of the tenant the workflow template belongs to. |
name |
String | The name of the workflow template. |
description |
String optional | The description of the workflow template. |
isDisabled |
Boolean | Whether or not the workflow template is disabled. |
layoutSelectionMode |
String | Possible values: list , listOrNull , any or anyOrNull . |
allowedLayouts |
Array | The list of workflow layouts allowed to be used in the workflow. |
maxWatchers |
Number | The maximum number of watchers. |
steps |
Array | The steps of the workflow template. |
steps[].id |
String | The identifier of the step. |
steps[].stepType |
String | The type of the step, either signature or approval . |
steps[].recipientSelectionMode |
String | Possible values: list , any or group . |
steps[].recipients |
Array optional | The list of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is list or any . |
steps[].allowedGroups |
Array optional | The list of groups of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is group . |
steps[].maxRecipients |
Number | The maximum number of recipients in the step. |
steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
steps[].recipients[].email |
String | The email address of the recipient. |
steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
steps[].recipients[].pictureResourceId |
String optional | The identifier of the user picture resource, in case the recipient is a user. |
steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
steps[].recipients[].firstName |
String optional | The first name of the recipient. |
steps[].recipients[].lastName |
String optional | The last name of the recipient. |
steps[].recipients[].country |
String optional | The country of the user. |
steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
steps[].allowedConsentPages |
Array | The list of consent pages allowed to be used in the step. |
steps[].requiredRecipients |
Number | The number of recipients that are required to sign or approve the documents for the step to finish. |
steps[].validityPeriod |
Number | The period during which the step is valid. |
steps[].invitePeriod |
Number | The period after which invites are resent. |
steps[].maxInvites |
Number | The maximum number of invites to send to the recipients. |
steps[].sendDownloadLink |
Boolean | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
steps[].readonly |
Boolean | Whether or not the step is read-only. |
steps[].removable |
Boolean | Whether or not the step is removable. |
steps[].allowComments |
Boolean | Whether or not the recipients of the step are authorized to view and create comments. |
steps[].hideAttachments |
Boolean | Whether or not the attachments are displayed to the recipients of the step. |
steps[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of the workflow are visible to the recipients in this step. |
notifiedEvents |
Array | The type of events the owner will receive notifications about. |
notifiedEventsReadonly |
Boolean | Whether or not the notified events are read-only. |
watchers |
Array | The list of watchers of the workflow. |
watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
watchers[].readonly |
Boolean | Whether or not the watcher is read-only. |
watchers[].removable |
Boolean | Whether or not the watcher is removable. |
allowedSignatureProfiles |
Array | The list of signature profiles allowed for signing documents. |
documentSelectionMode |
String | Possible values: list or any . |
maxDocuments |
Number | The maximum number of documents to sign. |
maxAttachments |
Number | The maximum number of attachments. |
coManagerSelectionMode |
String | Possible values: none , list , any or anyOrNull . |
allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
coManagerCanEditCoManager |
Boolean | Whether or not the co-manager events are modifiable by a co-manager. |
coManagerUsersModifiable |
Boolean | Whether or not the comanager notified events are modifiable. |
coManagerNotifiedEvents |
Array | The type of events the comanager will receive notifications about. |
coManagerNotifiedEventsReadonly |
Boolean | Whether or not the comanager notified events are read-only. |
allowedCoManagerGroups |
Array optional | The list of comanager groups allowed to be assigned as workflow comanagers. |
allowConsolidation |
Boolean | Indicates whether workflow consolidation is enabled or not. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidRequestField | A request field has an incorrect value. |
400 |
NoRecipientInStep | Recipients are missing from workflow step. |
400 |
RecipientInfoMissing | A recipient in the request is missing identity information. |
400 |
RecipientPhoneNumberRequired | The specified consent page requires a recipient phone number. |
403 |
ApprovalNotAllowed | The specified recipient user is not allowed to approve workflows. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
ConsentPageDisabled | The specified consent page is disabled. |
403 |
GroupDisabled | The specified group is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
OrganizationNotAllowed | The selected organization is not allowed to this recipient. |
403 |
SignatureNotAllowed | The specified recipient user is not allowed to sign workflows. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserDisabled | The specified user is disabled. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
ConsentPageNotFound | The specified consent page can not be found. |
404 |
GroupNotFound | The specified group can not be found. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
404 |
UserNotFound | The specified user can not be found. |
404 |
WorkflowLayoutNotFound | The specified workflow layout can not be found. |
404 |
WorkflowTemplateNotFound | The specified workflow template can not be found. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Search workflow templates
Search in all workflow templates.
HTTP request
GET /api/templates?text=Ergonomic%20Granite%20Shirt&items.id=wtm_9WXm736PkbbfYDNzvrE4rd9K&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.name |
The filter value(s) for the name field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.steps.id |
The filter value(s) for the steps.id field. |
items.recipients.email |
The filter value(s) for the recipients.email field. |
items.recipients.userId |
The filter value(s) for the recipients.userId field. |
items.recipients.subject |
The filter value(s) for the recipients.subject field. |
items.recipients.firstName |
The filter value(s) for the recipients.firstName field. |
items.recipients.lastName |
The filter value(s) for the recipients.lastName field. |
items.recipients.country |
The filter value(s) for the recipients.country field. |
items.recipients.organizationId |
The filter value(s) for the recipients.organizationId field. |
items.nextClean |
The filter value(s) for the nextClean field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 2864
{
"items" : [ {
"allowConsolidation" : true,
"allowedCoManagerGroups" : [ ],
"allowedCoManagerUsers" : [ ],
"allowedLayouts" : [ "lay_PkyGJuuFn9fEP1oox3w3uoxN" ],
"allowedSignatureProfiles" : [ "sip_7mm3PEL6BPxp3KTUEaheuiuV" ],
"coManagerCanEditCoManager" : false,
"coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"coManagerNotifiedEventsReadonly" : false,
"coManagerSelectionMode" : "none",
"coManagerUsersModifiable" : true,
"created" : 1731411606961,
"description" : "4 étage, 57 Quai Dauphine, 54572 Montauban",
"documentSelectionMode" : "any",
"id" : "wtm_9WXm736PkbbfYDNzvrE4rd9K",
"isDisabled" : false,
"layoutSelectionMode" : "list",
"maxAttachments" : 5,
"maxDocuments" : 10,
"maxWatchers" : 6,
"name" : "Ergonomic Granite Shirt",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"notifiedEventsReadonly" : false,
"steps" : [ {
"allowComments" : true,
"allowedConsentPages" : [ ],
"allowedGroups" : [ ],
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_NWLZk2suL9qLGEtHagA76JM3",
"invitePeriod" : 86400000,
"maxInvites" : 5,
"maxRecipients" : 1,
"readonly" : false,
"recipientSelectionMode" : "list",
"recipients" : [ {
"consentPageId" : "cop_F19TQuinRPc6hpnYKRfH69qC",
"country" : "FR",
"email" : "clement.hand267@my-company.com",
"firstName" : "Wilhemina",
"lastName" : "Koch",
"organizationId" : "org_AAC9Z4vf3wuM3NivNpVqGhhe",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_3QmEPm2nMhzLt8VT4afFqaGP",
"preferredLocale" : "fr",
"userId" : "usr_G4Fyxr1r1xttc2SNDKfWguNn"
} ],
"removable" : true,
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000
} ],
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411606961,
"watchers" : [ {
"email" : "gayle.schmitt9263@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"readonly" : true,
"removable" : false
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"readonly" : false,
"removable" : true,
"userId" : "usr_CFYCYZ1P5cfitGbwdyMexEbV"
} ]
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the workflow template. |
items[].tenantId |
String | The identifier of the tenant the workflow template belongs to. |
items[].name |
String | The name of the workflow template. |
items[].description |
String optional | The description of the workflow template. |
items[].isDisabled |
Boolean | Whether or not the workflow template is disabled. |
items[].layoutSelectionMode |
String | Possible values: list , listOrNull , any or anyOrNull . |
items[].allowedLayouts |
Array | The list of workflow layouts allowed to be used in the workflow. |
items[].maxWatchers |
Number | The maximum number of watchers. |
items[].steps |
Array | The steps of the workflow template. |
items[].steps[].id |
String | The identifier of the step. |
items[].steps[].stepType |
String | The type of the step, either signature or approval . |
items[].steps[].recipientSelectionMode |
String | Possible values: list , any or group . |
items[].steps[].recipients |
Array optional | The list of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is list or any . |
items[].steps[].allowedGroups |
Array optional | The list of groups of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is group . |
items[].steps[].maxRecipients |
Number | The maximum number of recipients in the step. |
items[].steps[].recipients[].consentPageId |
String | The ID of the consent page to use for the request. |
items[].steps[].recipients[].email |
String | The email address of the recipient. |
items[].steps[].recipients[].userId |
String optional | The identifier of the recipient user, in case the recipient is a user. |
items[].steps[].recipients[].pictureResourceId |
String optional | The identifier of the user picture resource, in case the recipient is a user. |
items[].steps[].recipients[].phoneNumber |
String optional | The international phone number of the recipient. |
items[].steps[].recipients[].firstName |
String optional | The first name of the recipient. |
items[].steps[].recipients[].lastName |
String optional | The last name of the recipient. |
items[].steps[].recipients[].country |
String optional | The country of the user. |
items[].steps[].recipients[].organizationId |
String optional | The identifier of the organization used to sign for. |
items[].steps[].recipients[].preferredLocale |
String optional | The preferred locale for the notification emails sent to the recipient. |
items[].steps[].allowedConsentPages |
Array | The list of consent pages allowed to be used in the step. |
items[].steps[].requiredRecipients |
Number | The number of recipients that are required to sign or approve the documents for the step to finish. |
items[].steps[].validityPeriod |
Number | The period during which the step is valid. |
items[].steps[].invitePeriod |
Number | The period after which invites are resent. |
items[].steps[].maxInvites |
Number | The maximum number of invites to send to the recipients. |
items[].steps[].sendDownloadLink |
Boolean | Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished. |
items[].steps[].readonly |
Boolean | Whether or not the step is read-only. |
items[].steps[].removable |
Boolean | Whether or not the step is removable. |
items[].steps[].allowComments |
Boolean | Whether or not the recipients of the step are authorized to view and create comments. |
items[].steps[].hideAttachments |
Boolean | Whether or not the attachments are displayed to the recipients of the step. |
items[].steps[].hideWorkflowRecipients |
Boolean | Whether or not other recipients of the workflow are visible to the recipients in this step. |
items[].notifiedEvents |
Array | The type of events the owner will receive notifications about. |
items[].notifiedEventsReadonly |
Boolean | Whether or not the notified events are read-only. |
items[].watchers |
Array | The list of watchers of the workflow. |
items[].watchers[].userId |
String optional | The identifier of the user, in case the watcher is a user. |
items[].watchers[].email |
String optional | The email address of the watcher, in case the watcher is not a user. |
items[].watchers[].notifiedEvents |
Array | The type of events the watcher will receive notifications about. |
items[].watchers[].readonly |
Boolean | Whether or not the watcher is read-only. |
items[].watchers[].removable |
Boolean | Whether or not the watcher is removable. |
items[].allowedSignatureProfiles |
Array | The list of signature profiles allowed for signing documents. |
items[].documentSelectionMode |
String | Possible values: list or any . |
items[].maxDocuments |
Number | The maximum number of documents to sign. |
items[].maxAttachments |
Number | The maximum number of attachments. |
items[].coManagerSelectionMode |
String | Possible values: none , list , any or anyOrNull . |
items[].allowedCoManagerUsers |
Array optional | The list of comanagers allowed to be assigned as workflow comanagers. |
items[].coManagerCanEditCoManager |
Boolean | Whether or not the co-manager events are modifiable by a co-manager. |
items[].coManagerUsersModifiable |
Boolean | Whether or not the comanager notified events are modifiable. |
items[].coManagerNotifiedEvents |
Array | The type of events the comanager will receive notifications about. |
items[].coManagerNotifiedEventsReadonly |
Boolean | Whether or not the comanager notified events are read-only. |
items[].allowedCoManagerGroups |
Array optional | The list of comanager groups allowed to be assigned as workflow comanagers. |
items[].allowConsolidation |
Boolean | Indicates whether workflow consolidation is enabled or not. |
items[].jobOperation |
String optional | The job operation currently running. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export workflow templates
Export a search in all signature profiles.
HTTP request
POST /api/templates/exports?text=Ergonomic%20Granite%20Shirt&items.id=wtm_9WXm736PkbbfYDNzvrE4rd9K&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 182
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json steps}}",
"expired" : 1731498513432
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.name |
The filter value(s) for the name field. |
items.isDisabled |
The filter value(s) for the isDisabled field. |
items.steps.id |
The filter value(s) for the steps.id field. |
items.recipients.email |
The filter value(s) for the recipients.email field. |
items.recipients.userId |
The filter value(s) for the recipients.userId field. |
items.recipients.subject |
The filter value(s) for the recipients.subject field. |
items.recipients.firstName |
The filter value(s) for the recipients.firstName field. |
items.recipients.lastName |
The filter value(s) for the recipients.lastName field. |
items.recipients.country |
The filter value(s) for the recipients.country field. |
items.recipients.organizationId |
The filter value(s) for the recipients.organizationId field. |
items.nextClean |
The filter value(s) for the nextClean field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_HxggLWjUdPaAexMAguZC9jSH
ETag: "33HASrNLvMuMxjn9sG5Rq4N6"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 602
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731412113434,
"expired" : 1731498513432,
"exportOperation" : "createWorkflowTemplateExport",
"id" : "exp_EbTUZpDp5L1WUa1arfeW1UED",
"itemTemplate" : "{{id}},{{name}},{{json steps}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Ergonomic+Granite+Shirt&items.id=wtm_9WXm736PkbbfYDNzvrE4rd9K&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731412113434,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Workflow template documents
Create template blob
Create a workflow template blob.
HTTP request
POST /api/templates/wtm_8J7GKeawh7SCwqbjkT2D1cyg/blobs HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/pdf
Content-Length: 12341
%PDF-1.3
%���������
4 0 obj
<< /Length 5 0 R /Filter /FlateDecode >>
stream
xUϱ�0����G�kk9X5�č��D@0����Nb:��^�庢�
��X��c
...
Path parameters:
/api/templates/{templateId}/blobs
Parameter | Description |
---|---|
templateId |
The identifier of the workflow template. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_68ug6MBHtwvf4zWQqNXCjHnC
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 198
{
"hash" : "obcUcumzUOJsClVDv/jHTNefKTRlTJULnZx4dfOrx+I=",
"id" : "blb_LAauwXDLiHjosUS8CDYU7HAL",
"templateId" : "wtm_8J7GKeawh7SCwqbjkT2D1cyg",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the blob. |
tenantId |
String | The identifier of the tenant. |
templateId |
String | The identifier of the workflow template. |
hash |
String | The cryptographic hash of the blob. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowTemplateNotFound | The specified workflow template can not be found. |
Create template parts
Create workflow template parts.
HTTP request
POST /api/templates/wtm_EMaUFBQ6SAgDjFWdLRHDthSY/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_J6KoexJFFRnnm5uta2WqWP2U&unzip=false&pdf2pdfa=auto&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Disposition: attachment; filename="document.pdf"
Content-Type: application/pdf
Content-Length: 12341
%PDF-1.3
%���������
4 0 obj
<< /Length 5 0 R /Filter /FlateDecode >>
stream
xUϱ�0����G�kk9X5�č��D@0����Nb:��^�庢�
��X��c
...
Path parameters:
/api/templates/{templateId}/parts
Parameter | Description |
---|---|
templateId |
The identifier of the workflow template. |
Query parameters:
Parameter | Description |
---|---|
unzip |
Whether or not zip archives should be unzipped. |
pdf2pdfa |
Whether or not convert pdf files to PDF/A. Possible values: disabled , forced , auto . If not specified, the default is auto . |
createDocuments |
Whether or not documents should be created. |
readonly |
Whether or not the created documents should be read-only. |
removable |
Whether or not the created documents should be removable. |
ignoreAttachments |
Whether or not attachments should be ignored. |
signatureProfileId |
The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, attempts to find suitable signature profiles will be made. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_Hxt8yKR9XdYC6nL4CuRraf6M
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1309
{
"documents" : [ {
"created" : 1731411717960,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "iURh/ctjRe1Fzctxo2bNJiwgl4t4MYl4AS2RfcJmZQw=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"id" : "wtd_CkHNFcBevfnEk6M3s3cYW6NG",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "iURh/ctjRe1Fzctxo2bNJiwgl4t4MYl4AS2RfcJmZQw=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"readonly" : false,
"removable" : true,
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"templateId" : "wtm_EMaUFBQ6SAgDjFWdLRHDthSY",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411717960
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "iURh/ctjRe1Fzctxo2bNJiwgl4t4MYl4AS2RfcJmZQw=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ]
}
Fields:
Path | Type | Description |
---|---|---|
parts |
Array | The created parts. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
documents |
Array optional | The created documents, if requested. |
documents[].id |
String | The identifier of the document. |
documents[].tenantId |
String | The identifier of the tenant the document belongs to. |
documents[].templateId |
String | The identifier of the workflow template the document belongs to. |
documents[].signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
documents[].readonly |
Boolean | Whether or not the document is read-only. |
documents[].removable |
Boolean | Whether or not the document is removable. |
ignoredAttachments |
Number | The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true . |
documents[].parts |
Array | The created parts. |
documents[].parts[].filename |
String | The filename of the part. |
documents[].parts[].contentType |
String | The content type of the part. |
documents[].parts[].size |
Number | The size of the part. |
documents[].parts[].hash |
String | The cryptographic hash of the part. |
documents[].parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
documents[].displayedParts |
Array | The parts of the document to be displayed for final user. |
documents[].displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
documents[].displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
documents[].displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
documents[].displayedParts[].size |
Number | The size of the part to be displayed for final user. |
documents[].displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
documents[].pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
documents[].created |
Number | The creation date of the entity. |
documents[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidPdf | The uploaded PDF is invalid. |
400 |
InvalidXml | The uploaded XML is invalid. |
400 |
InvalidZip | The uploaded ZIP can not be unzipped. |
400 |
MaxDocumentSizeExceeded | Maximum document size exceeded. |
400 |
PasswordProtectedPdf | The uploaded PDF is password protected. |
400 |
TenantMaxAttachmentsReached | The maximum number of attachments has been reached. |
400 |
TenantMaxDocumentsReached | The maximum number of documents to sign has been reached. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
SignatureProfileDisabled | The specified signature profile is disabled. |
403 |
SignatureProfileNotAllowed | The specified signature profile is not allowed for this document. |
403 |
TenantAttachmentsNotAllowed | The attachments are not allowed by the tenant. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
404 |
WorkflowTemplateNotFound | The specified workflow template can not be found. |
Create template parts from multipart
Create workflow template parts from a multipart request.
HTTP request
POST /api/templates/wtm_8dANy9HbEZBbmVZYC9C7sg6E/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_J6KoexJFFRnnm5uta2WqWP2U&unzip=false&pdf2pdfa=auto&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: multipart/form-data;boundary=eV9fC2wGOnaAXnMpePZHNh_sxEDU6o4uCxDyBOq; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Length: 12561
--eV9fC2wGOnaAXnMpePZHNh_sxEDU6o4uCxDyBOq
Content-Type: application/pdf
Content-Disposition: form-data; name="document"; filename="document.pdf"
Content-Length: 12341
%PDF-1.3
%���������
4 0 obj
<< /Length 5 0 R /Filter /FlateDecode >>
stream
xUϱ�0����G�kk9X5�č��D@0����Nb:��^�庢�
��X��c
...
--eV9fC2wGOnaAXnMpePZHNh_sxEDU6o4uCxDyBOq--
Path parameters:
/api/templates/{templateId}/parts
Parameter | Description |
---|---|
templateId |
The identifier of the workflow template. |
Query parameters:
Parameter | Description |
---|---|
unzip |
Whether or not zip archives should be unzipped. |
pdf2pdfa |
Whether or not convert pdf files to PDF/A. Possible values: disabled , forced , auto . If not specified, the default is auto . |
createDocuments |
Whether or not documents should be created. |
readonly |
Whether or not the created documents should be read-only. |
removable |
Whether or not the created documents should be removable. |
ignoreAttachments |
Whether or not attachments should be ignored. |
signatureProfileId |
The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, attempts to find suitable signature profiles will be made. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_CKLFR42gVzLmXzJ49qu8AZiU
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1309
{
"documents" : [ {
"created" : 1731411712272,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "ONSltP+iS2K20qAbr4sM9ymlwf++zF02vAai9LST+n8=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"id" : "wtd_FiETcPgTWwnxhhzzucLxQrZH",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "ONSltP+iS2K20qAbr4sM9ymlwf++zF02vAai9LST+n8=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"readonly" : false,
"removable" : true,
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"templateId" : "wtm_8dANy9HbEZBbmVZYC9C7sg6E",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411712272
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "ONSltP+iS2K20qAbr4sM9ymlwf++zF02vAai9LST+n8=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ]
}
Fields:
Path | Type | Description |
---|---|---|
parts |
Array | The created parts. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
documents |
Array optional | The created documents, if requested. |
documents[].id |
String | The identifier of the document. |
documents[].tenantId |
String | The identifier of the tenant the document belongs to. |
documents[].templateId |
String | The identifier of the workflow template the document belongs to. |
documents[].signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
documents[].readonly |
Boolean | Whether or not the document is read-only. |
documents[].removable |
Boolean | Whether or not the document is removable. |
ignoredAttachments |
Number | The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true . |
documents[].parts |
Array | The created parts. |
documents[].parts[].filename |
String | The filename of the part. |
documents[].parts[].contentType |
String | The content type of the part. |
documents[].parts[].size |
Number | The size of the part. |
documents[].parts[].hash |
String | The cryptographic hash of the part. |
documents[].parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
documents[].displayedParts |
Array | The parts of the document to be displayed for final user. |
documents[].displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
documents[].displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
documents[].displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
documents[].displayedParts[].size |
Number | The size of the part to be displayed for final user. |
documents[].displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
documents[].pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
documents[].created |
Number | The creation date of the entity. |
documents[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidPdf | The uploaded PDF is invalid. |
400 |
InvalidXml | The uploaded XML is invalid. |
400 |
InvalidZip | The uploaded ZIP can not be unzipped. |
400 |
MaxDocumentSizeExceeded | Maximum document size exceeded. |
400 |
PasswordProtectedPdf | The uploaded PDF is password protected. |
400 |
TenantMaxAttachmentsReached | The maximum number of attachments has been reached. |
400 |
TenantMaxDocumentsReached | The maximum number of documents to sign has been reached. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
SignatureProfileDisabled | The specified signature profile is disabled. |
403 |
SignatureProfileNotAllowed | The specified signature profile is not allowed for this document. |
403 |
TenantAttachmentsNotAllowed | The attachments are not allowed by the tenant. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
404 |
WorkflowTemplateNotFound | The specified workflow template can not be found. |
Create template parts from blobs
Create workflow template parts from blobs.
HTTP request
POST /api/templates/wtm_2gGS7Jvk447Fcy3yngpw3ein/blobs/parts?createDocuments=true&ignoreAttachments=false&unzip=false&signatureProfileId=sip_J6KoexJFFRnnm5uta2WqWP2U&pdf2pdfa=force&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 210
{
"parts" : [ {
"filename" : "document.pdf",
"contentType" : "application/pdf",
"blobs" : [ "blb_FAbhTjRSHpAcQ3tDodz3zwf3", "blb_Cv7CmDG5pVdToRqsuNSovsav", "blb_KyEN7urTp7tGsGtEHczwonZi" ]
} ]
}
Path parameters:
/api/templates/{templateId}/blobs/parts
Parameter | Description |
---|---|
templateId |
The identifier of the workflow template. |
Query parameters:
Parameter | Description |
---|---|
unzip |
Whether or not zip archives should be unzipped. |
pdf2pdfa |
Whether or not convert pdf files to PDF/A. Possible values: disabled , forced , auto . If not specified, the default is auto . |
createDocuments |
Whether or not documents should be created. |
readonly |
Whether or not the created documents should be read-only. |
removable |
Whether or not the created documents should be removable. |
ignoreAttachments |
Whether or not attachments should be ignored. |
signatureProfileId |
The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, attempts to find suitable signature profiles will be made. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
parts |
Array | The parts to create. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].blobs |
Array | The sequence of blobs used to build the part. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_N9yKBp25my9xq4RrYT7kHeLS
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1309
{
"documents" : [ {
"created" : 1731411723507,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "x93M4Lcc1ZXWSD2LugcOsI4AiKl48PzxXPIWjOJuU50=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"id" : "wtd_FATw4Fz1fa2heXw71HR57JQN",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "x93M4Lcc1ZXWSD2LugcOsI4AiKl48PzxXPIWjOJuU50=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"readonly" : false,
"removable" : true,
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"templateId" : "wtm_2gGS7Jvk447Fcy3yngpw3ein",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411723507
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "x93M4Lcc1ZXWSD2LugcOsI4AiKl48PzxXPIWjOJuU50=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ]
}
Fields:
Path | Type | Description |
---|---|---|
parts |
Array | The created parts. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
documents |
Array optional | The created documents, if requested. |
documents[].id |
String | The identifier of the document. |
documents[].tenantId |
String | The identifier of the tenant the document belongs to. |
documents[].templateId |
String | The identifier of the workflow template the document belongs to. |
documents[].signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
documents[].readonly |
Boolean | Whether or not the document is read-only. |
documents[].removable |
Boolean | Whether or not the document is removable. |
ignoredAttachments |
Number | The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true . |
documents[].parts |
Array | The created parts. |
documents[].parts[].filename |
String | The filename of the part. |
documents[].parts[].contentType |
String | The content type of the part. |
documents[].parts[].size |
Number | The size of the part. |
documents[].parts[].hash |
String | The cryptographic hash of the part. |
documents[].parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
documents[].displayedParts |
Array | The parts of the document to be displayed for final user. |
documents[].displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
documents[].displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
documents[].displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
documents[].displayedParts[].size |
Number | The size of the part to be displayed for final user. |
documents[].displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
documents[].displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
documents[].pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
documents[].created |
Number | The creation date of the entity. |
documents[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidPdf | The uploaded PDF is invalid. |
400 |
InvalidXml | The uploaded XML is invalid. |
400 |
InvalidZip | The uploaded ZIP can not be unzipped. |
400 |
MaxDocumentSizeExceeded | Maximum document size exceeded. |
400 |
MaxDocumentSizeExceededByBlob | Maximum document size exceeded by blobs. |
400 |
PasswordProtectedPdf | The uploaded PDF is password protected. |
400 |
TenantMaxAttachmentsReached | The maximum number of attachments has been reached. |
400 |
TenantMaxDocumentsReached | The maximum number of documents to sign has been reached. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
SignatureProfileDisabled | The specified signature profile is disabled. |
403 |
SignatureProfileNotAllowed | The specified signature profile is not allowed for this document. |
403 |
TenantAttachmentsNotAllowed | The attachments are not allowed by the tenant. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
404 |
WorkflowTemplateBlobNotFound | The specified template blob can not be found. |
404 |
WorkflowTemplateNotFound | The specified workflow template can not be found. |
Delete pending template blobs
Delete pending blobs attached to the template.
HTTP request
DELETE /api/templates/wtm_D7AaftfXct3Z66kFmP2owcNT/blobs HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/templates/{templateId}/blobs
Parameter | Description |
---|---|
templateId |
The identifier of the workflow template. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_FmzmG6wpLiMKttfgDJNtSq7D
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 121
{
"deletedBlobs" : [ "blb_9JkphNzJiwFmaLWnZbTHmzS6", "blb_3zDHGLstbNLF8N5ebVD8udkL", "blb_PSPsXomuJtkjt1FzuLxWDWbt" ]
}
Fields:
Path | Type | Description |
---|---|---|
deletedBlobs |
Array | The sequence of pending blobs deleted from workflow template. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowTemplateNotFound | The specified workflow template can not be found. |
Create template document
Create a workflow template document from parts.
HTTP request
POST /api/templates/wtm_PNihRaUZzMAdrzj154BijhMB/templateDocuments HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 552
{
"readonly" : false,
"removable" : true,
"parts" : [ {
"filename" : "Document",
"contentType" : "application/pdf",
"size" : 18540,
"hash" : "OH7Qz98wgYzf82P+Rxh965D9fjJoh+iXmLxyrYbQNyI=",
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"isOriginal" : true
} ],
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"pdfSignatureFields" : [ {
"imagePage" : -1,
"imageX" : 390.0,
"imageY" : 710.0,
"imageWidth" : 150.0,
"imageHeight" : 80.0
} ]
}
Path parameters:
/api/templates/{templateId}/templateDocuments
Parameter | Description |
---|---|
templateId |
The identifier of the workflow template. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
readonly |
Boolean | Whether or not the document is read-only. |
removable |
Boolean | Whether or not the document is removable. |
parts |
Array | The parts of the document. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
signatureProfileId |
String optional | The signature profile to be used to sign the document. If empty, the document will be an attachment. If not provided, an attempt to find a suitable signature profile will be made. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_CmHeC44Tx1HpFewHTgfpsBnN
ETag: "FgYScLWq2XADg2NNUsZLoZs3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1052
{
"created" : 1731411838428,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "OH7Qz98wgYzf82P+Rxh965D9fjJoh+iXmLxyrYbQNyI=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"id" : "wtd_NDvNPjhWWWgxMVVnchBPfaEF",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "OH7Qz98wgYzf82P+Rxh965D9fjJoh+iXmLxyrYbQNyI=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"pdfSignatureFields" : [ {
"imageHeight" : 80.0,
"imagePage" : -1,
"imageWidth" : 150.0,
"imageX" : 390.0,
"imageY" : 710.0
} ],
"readonly" : false,
"removable" : true,
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"templateId" : "wtm_PNihRaUZzMAdrzj154BijhMB",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411838428
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the document. |
tenantId |
String | The identifier of the tenant the document belongs to. |
readonly |
Boolean | Whether or not the document is read-only. |
removable |
Boolean | Whether or not the document is removable. |
templateId |
String | The identifier of the workflow template the document belongs to. |
signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position (in pixel) of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position (in pixel) of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
parts |
Array | The parts of the document. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy of the part. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
displayedParts |
Array | The parts of the document to be displayed for final user. |
displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
displayedParts[].size |
Number | The size of the part to be displayed for final user. |
displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy of the part to be displayed for final user. |
displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
MaxDocumentSizeExceeded | Maximum document size exceeded. |
400 |
TenantMaxAttachmentsReached | The maximum number of attachments has been reached. |
400 |
TenantMaxDocumentsReached | The maximum number of documents to sign has been reached. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantAttachmentsNotAllowed | The attachments are not allowed by the tenant. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Retrieve template document
Retrieve an existing workflow template document.
HTTP request
GET /api/templateDocuments/wtd_97smSCxHBQofr73mFKruVW61 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/templateDocuments/{templateDocumentId}
Parameter | Description |
---|---|
templateDocumentId |
The identifier of the document. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "rWeRKfU648ezUnEEMQmvkg8S"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1052
{
"created" : 1731411607148,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "mpNmT7oXtk2eZqGZ2rX1bhy/5DpgrDvCmGz40ILpjLU=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"id" : "wtd_97smSCxHBQofr73mFKruVW61",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "mpNmT7oXtk2eZqGZ2rX1bhy/5DpgrDvCmGz40ILpjLU=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"pdfSignatureFields" : [ {
"imageHeight" : 80.0,
"imagePage" : -1,
"imageWidth" : 150.0,
"imageX" : 390.0,
"imageY" : 710.0
} ],
"readonly" : true,
"removable" : false,
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"templateId" : "wtm_9WXm736PkbbfYDNzvrE4rd9K",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411607245
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the document. |
tenantId |
String | The identifier of the tenant the document belongs to. |
readonly |
Boolean | Whether or not the document is read-only. |
removable |
Boolean | Whether or not the document is removable. |
templateId |
String | The identifier of the workflow template the document belongs to. |
signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position (in pixel) of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position (in pixel) of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
parts |
Array | The parts of the document. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy of the part. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
displayedParts |
Array | The parts of the document to be displayed for final user. |
displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
displayedParts[].size |
Number | The size of the part to be displayed for final user. |
displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy of the part to be displayed for final user. |
displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowTemplateDocumentNotFound | The specified template document can not be found. |
Update template document
Update an existing workflow template document.
HTTP request
PATCH /api/templateDocuments/wtd_3a5Nsk9qVPqSZ2YoARhiJgXw HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "GCHWt5bdDCRtMSCJEBc9P1TT"
Content-Type: application/json
Content-Length: 256
{
"readonly" : true,
"removable" : false,
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"pdfSignatureFields" : [ {
"imagePage" : -1,
"imageX" : 390.0,
"imageY" : 710.0,
"imageWidth" : 150.0,
"imageHeight" : 80.0
} ]
}
Path parameters:
/api/templateDocuments/{templateDocumentId}
Parameter | Description |
---|---|
templateDocumentId |
The identifier of the document. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
signatureProfileId |
String optional | The signature profile to be used to sign the document. If empty, the document will be an attachment. |
readonly |
Boolean optional | Whether or not the document is read-only. |
removable |
Boolean optional | Whether or not the document is removable. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_QFdG5yrHrn71cMRtVGde8KmD
ETag: "HeoUB8Upg1d9o2h29js9QrRo"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1052
{
"created" : 1731411824942,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "EXLZb8gmR3Iw4MWHXZvWuU97BerPnI6/t4kSxBEjjis=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"id" : "wtd_3a5Nsk9qVPqSZ2YoARhiJgXw",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "EXLZb8gmR3Iw4MWHXZvWuU97BerPnI6/t4kSxBEjjis=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"pdfSignatureFields" : [ {
"imageHeight" : 80.0,
"imagePage" : -1,
"imageWidth" : 150.0,
"imageX" : 390.0,
"imageY" : 710.0
} ],
"readonly" : true,
"removable" : false,
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"templateId" : "wtm_9WXm736PkbbfYDNzvrE4rd9K",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411824967
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the document. |
tenantId |
String | The identifier of the tenant the document belongs to. |
readonly |
Boolean | Whether or not the document is read-only. |
removable |
Boolean | Whether or not the document is removable. |
templateId |
String | The identifier of the workflow template the document belongs to. |
signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position (in pixel) of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position (in pixel) of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
parts |
Array | The parts of the document. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy of the part. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
displayedParts |
Array | The parts of the document to be displayed for final user. |
displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
displayedParts[].size |
Number | The size of the part to be displayed for final user. |
displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy of the part to be displayed for final user. |
displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidPdfSignatureField | Parameters of a PDF signature field are incorrect. |
400 |
TenantMaxAttachmentsReached | The maximum number of attachments has been reached. |
400 |
TenantMaxDocumentsReached | The maximum number of documents to sign has been reached. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
SignatureProfileDisabled | The specified signature profile is disabled. |
403 |
SignatureProfileNotAllowed | The specified signature profile is not allowed for this document. |
403 |
TenantAttachmentsNotAllowed | The attachments are not allowed by the tenant. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
SignatureProfileNotFound | The specified signature profile can not be found. |
404 |
WorkflowTemplateDocumentNotFound | The specified template document can not be found. |
412 |
ConditionalUpdateFailed | A condition failed in the update request. |
Delete template document
Delete an existing workflow template document.
HTTP request
DELETE /api/templateDocuments/wtd_7jrx9XFMR85PJ654fiJzr4GJ HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
If-Match: "5teC68W55xZYcy3s8NyxCCSy"
Path parameters:
/api/templateDocuments/{templateDocumentId}
Parameter | Description |
---|---|
templateDocumentId |
The identifier of the document. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_KavX72kiafZE4njWSqQvenF9
ETag: "5teC68W55xZYcy3s8NyxCCSy"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1052
{
"created" : 1731411843329,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "q8ZkfGXbsRUdUjwrOifqKGAcBet+nXNTRM3NOpaxckU=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"id" : "wtd_7jrx9XFMR85PJ654fiJzr4GJ",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "q8ZkfGXbsRUdUjwrOifqKGAcBet+nXNTRM3NOpaxckU=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"pdfSignatureFields" : [ {
"imageHeight" : 80.0,
"imagePage" : -1,
"imageWidth" : 150.0,
"imageX" : 390.0,
"imageY" : 710.0
} ],
"readonly" : true,
"removable" : false,
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"templateId" : "wtm_9WXm736PkbbfYDNzvrE4rd9K",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411843355
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the document. |
tenantId |
String | The identifier of the tenant the document belongs to. |
readonly |
Boolean | Whether or not the document is read-only. |
removable |
Boolean | Whether or not the document is removable. |
templateId |
String | The identifier of the workflow template the document belongs to. |
signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageX |
Number optional | The position (in pixel) of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageY |
Number optional | The position (in pixel) of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
parts |
Array | The parts of the document. |
parts[].filename |
String | The filename of the part. |
parts[].contentType |
String | The content type of the part. |
parts[].size |
Number | The size of the part. |
parts[].hash |
String | The cryptographic hash of the part. |
parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy of the part. |
parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
displayedParts |
Array | The parts of the document to be displayed for final user. |
displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
displayedParts[].size |
Number | The size of the part to be displayed for final user. |
displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy of the part to be displayed for final user. |
displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowTemplateDocumentNotFound | The specified template document can not be found. |
Download template part
Download a template document part.
HTTP request
GET /api/templateDocuments/wtd_97smSCxHBQofr73mFKruVW61/parts/9a93664fba17b64d9e66a199dab5f56e1cbfe43a60ac3bc2986cf8d082e98c... HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/templateDocuments/{templateDocumentId}/parts/{partHash}
Parameter | Description |
---|---|
templateDocumentId |
The identifier of the document. |
partHash |
The hex encoded hash of the part to download. |
HTTP response
HTTP/1.1 200 OK
Content-Type: application/pdf
Content-Disposition: attachment; filename="Document"
Cache-Control: max-age=31536000
Content-Length: 18540
%PDF-1.3
%����
1 0 obj
<</Subtype/XML/Type/Metadata/Length 3497>>stream
<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmp
...
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowTemplateDocumentNotFound | The specified template document can not be found. |
404 |
WorkflowTemplatePartNotFound | The specified template part can not be found. |
Download template documents
Download all the document parts of a workflow template. The result is zipped if multiple parts are returned.
HTTP request
GET /api/templates/wtm_9WXm736PkbbfYDNzvrE4rd9K/downloadDocuments HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Path parameters:
/api/templates/{templateId}/downloadDocuments
Parameter | Description |
---|---|
templateId |
The identifier of the workflow template. |
HTTP response
HTTP/1.1 200 OK
Content-Type: application/zip
Content-Disposition: attachment; filename="documents.zip"
Content-Length: 29188
PK��y]lY���������������Document�uX�]�/N�* �0t330��t7���0t C���HK�tHJ�t*ݝJK7�W������������u�{��g��}_k����Qg��c�,,�b� ���P����l���Uo.�`p}
...
Errors:
Status | Code | Message |
---|---|---|
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
NoDocumentInWorkflowTemplate | There is no document in the specified workflow template. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
404 |
WorkflowTemplateNotFound | The specified workflow template can not be found. |
Search template documents
Search in all the workflow template documents.
HTTP request
GET /api/templateDocuments/?text=Document&items.id=wtd_97smSCxHBQofr73mFKruVW61&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.templateId |
The filter value(s) for the templateId field. |
items.signatureProfileId |
The filter value(s) for the signatureProfileId field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1198
{
"items" : [ {
"created" : 1731411607148,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "mpNmT7oXtk2eZqGZ2rX1bhy/5DpgrDvCmGz40ILpjLU=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"id" : "wtd_97smSCxHBQofr73mFKruVW61",
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "mpNmT7oXtk2eZqGZ2rX1bhy/5DpgrDvCmGz40ILpjLU=",
"isOriginal" : true,
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"size" : 18540
} ],
"pdfSignatureFields" : [ {
"imageHeight" : 80.0,
"imagePage" : -1,
"imageWidth" : 150.0,
"imageX" : 390.0,
"imageY" : 710.0
} ],
"readonly" : true,
"removable" : false,
"signatureProfileId" : "sip_J6KoexJFFRnnm5uta2WqWP2U",
"templateId" : "wtm_9WXm736PkbbfYDNzvrE4rd9K",
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"updated" : 1731411607245
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the document. |
items[].tenantId |
String | The identifier of the tenant the document belongs to. |
items[].readonly |
Boolean | Whether or not the document is read-only. |
items[].removable |
Boolean | Whether or not the document is removable. |
items[].templateId |
String | The identifier of the workflow template the document belongs to. |
items[].signatureProfileId |
String optional | The signature profile to be used to sign the document. If not present, the document will be an attachment. |
items[].pdfSignatureFields |
ArrayList optional | In case of a PDF document, the list of signature fields the signers will have to fill. |
items[].pdfSignatureFields[].fieldId |
String optional | The existing signature field ID in the PDF document. |
items[].pdfSignatureFields[].imagePage |
Number optional | The PDF page where the signature image will appear, starting from 1 . Use a negative number to start from last page. Ignored if fieldId is defined. |
items[].pdfSignatureFields[].imageX |
Number optional | The position (in pixel) of the signature image in the PDF page (X axis). Ignored if fieldId is defined. |
items[].pdfSignatureFields[].imageY |
Number optional | The position (in pixel) of the signature image in the PDF page (Y axis). Ignored if fieldId is defined. |
items[].pdfSignatureFields[].imageWidth |
Number optional | The width (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
items[].pdfSignatureFields[].imageHeight |
Number optional | The height (in pixel) of the signature image in the PDF page. Ignored if fieldId is defined. |
items[].parts |
Array | The parts of the document. |
items[].parts[].filename |
String | The filename of the part. |
items[].parts[].contentType |
String | The content type of the part. |
items[].parts[].size |
Number | The size of the part. |
items[].parts[].hash |
String | The cryptographic hash of the part. |
items[].parts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy of the part. |
items[].parts[].isOriginal |
Boolean optional | Whether or not the part is an original or modified one. |
items[].displayedParts |
Array | The parts of the document to be displayed for final user. |
items[].displayedParts[].filename |
String | The filename of the part to be displayed for final user. |
items[].displayedParts[].contentType |
String | The content type of the part to be displayed for final user. |
items[].displayedParts[].hash |
String | The cryptographic hash of the part to be displayed for final user. |
items[].displayedParts[].size |
Number | The size of the part to be displayed for final user. |
items[].displayedParts[].policyUri |
URI optional | The PDF access URL corresponding to the signature policy of the part to be displayed for final user. |
items[].displayedParts[].isOriginal |
Boolean optional | Whether or not the part to be displayed for final user is an original or modified one. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Export template documents
Export a search in all the workflow template documents.
HTTP request
POST /api/templateDocuments/exports?text=Document&items.id=wtd_97smSCxHBQofr73mFKruVW61&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3mgSVh6bp6Cn5DS856o2H1NZ.4ug9hHi5xmSb8sKt3XYxoiqXJ3EjYcfoQUgxM2f7T2J7rMuop5ieg6mVpQKpN2eN
Content-Type: application/json
Content-Length: 173
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{json parts}}",
"expired" : 1731498220978
}
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.templateId |
The filter value(s) for the templateId field. |
items.signatureProfileId |
The filter value(s) for the signatureProfileId field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
Fields:
Path | Type | Description |
---|---|---|
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
HTTP response
HTTP/1.1 200 OK
X-Log-Id: log_GyUmrw4NCQBESzQtqkoj8n9o
ETag: "3Cg2RSqKog4BFx4UiVne4RAB"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 586
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1731411820981,
"expired" : 1731498220978,
"exportOperation" : "createWorkflowTemplateDocumentExport",
"id" : "exp_Dn5c8hoiLgsCpjPTN9Hf4Csz",
"itemTemplate" : "{{id}},{{json parts}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Document&items.id=wtd_97smSCxHBQofr73mFKruVW61&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_DyvBSLey9Fnh65AGLLGoDB8D",
"totalItems" : 0,
"updated" : 1731411820981,
"userId" : "usr_4aqKyeFGVZTMqH7FfFdVRD1C"
}
Fields:
Path | Type | Description |
---|---|---|
id |
String | The identifier of the export. |
tenantId |
String | The identifier of the tenant the export belongs to. |
userId |
String optional | The identifier of the user who created the export. |
exportOperation |
String | The name of the export operation. |
searchQuery |
String | The search query for the exported items. |
totalItems |
Number | The total number of exported items. |
size |
Number | The size of the export. |
jobOperation |
String optional | The job operation currently running. |
created |
Number | The creation date of the entity. |
updated |
Number | The last modification date of the entity. |
contentType |
String optional | The content type of the export. |
beforeItems |
String optional | In case of a single file export, the text to be added before the exported items. |
afterItems |
String optional | In case of a single file export, the text to be added after the exported items. |
betweenItems |
String optional | In case of a single file export, the text to be added between the exported items. |
itemTemplate |
String optional | The template to be applied on each exported item. If not provided, each item will be serialized to JSON. |
expired |
Number optional | The expiration date of the export. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidItemTemplate | The item template could not be parsed. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |