Workflow Manager – v1.11.0-RC4
Introduction Operation guide Integration guide
API reference

# 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: 26

"sgs-wm-webapp:1.11.0-RC4"

Here is what you should get as a response:

"sgs-wm-webapp:1.11.0-RC4"

# Access tokens

# Create access token

Create a user access token.

# HTTP request

POST /api/users/usr_5LAg5dbXi2uzWVAyqkC9uYRH/accessTokens HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 87

{
  "name" : "Phil Rupp",
  "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_LYCngsKS411WzV4XUrheUXPX
ETag: "2SFDhdXjFuQ6PHkm68LJjQNc"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 392

{
  "authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ],
  "created" : 1711505383926,
  "id" : "act_Q4iQjpV3uAQrab3AQnTZWNDg",
  "name" : "Phil Rupp",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "tokenValue" : "act_Q4iQjpV3uAQrab3AQnTZWNDg.2vTBQd3ekqNWfQzrN1jndp48eRsknyiQSp7kMxfhZixzqDRtBNLS9gFPELLbGg6U",
  "updated" : 1711505383926,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_EPhVvepcJLcTmJTcFxWWkX79 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "GVquwQ96PKPpqcz8HyPTe7PD"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 288

{
  "authorizedIpRanges" : [ ],
  "created" : 1711505183691,
  "id" : "act_EPhVvepcJLcTmJTcFxWWkX79",
  "name" : "Jacques Strap",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "tokenValue" : "****************",
  "updated" : 1711505183691,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_4c7mne6uraj952AGvhGiivZy HTTP/1.1
Authorization: Bearer act_4c7mne6uraj952AGvhGiivZy.3ZrQqmuNSefB3GS6HseRCYz6mxZDr7L8G5bFydTUPQD99DyVhxTRGrp8heJwDFBR
If-Match: "DAuFXVRpHLkpyv23nBfdkVHU"
Content-Type: application/json
Content-Length: 88

{
  "name" : "Pete Zaria",
  "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_At2UdeMbyUkagjpechT8w28k
ETag: "4Dg8RzJszLj5hPcio9kqizev"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 316

{
  "authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ],
  "created" : 1711505375788,
  "id" : "act_4c7mne6uraj952AGvhGiivZy",
  "name" : "Pete Zaria",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "tokenValue" : "****************",
  "updated" : 1711505375818,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_GJYqkbLKwdKxCsXSSE1b6wPc HTTP/1.1
Authorization: Bearer act_GJYqkbLKwdKxCsXSSE1b6wPc.4YmEJjHgi67QM9wqcDmZRkzc9Yp7Y1Kictxdy7ZF3bxVHjkWqtygPsEXcm66EQug

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_8VUepCVzxJ8ohbVPqenbGvqW
ETag: "944sFFVgviVjCQBQFjBjBuVp"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 285

{
  "authorizedIpRanges" : [ ],
  "created" : 1711505385013,
  "id" : "act_GJYqkbLKwdKxCsXSSE1b6wPc",
  "name" : "Olive Hoyl",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "tokenValue" : "****************",
  "updated" : 1711505385013,
  "userId" : "usr_PTwXj71DKcc5bx6RPpCFaEg3"
}

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_EPhVvepcJLcTmJTcFxWWkX79&items.id=act_EPhVvepcJLcTmJTcFxWWkX79&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.userId optional The filter value(s) for the userId field.
items.name optional The filter value(s) for the name field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 388

{
  "items" : [ {
    "authorizedIpRanges" : [ ],
    "created" : 1711505183691,
    "id" : "act_EPhVvepcJLcTmJTcFxWWkX79",
    "name" : "Jacques Strap",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "tokenValue" : "****************",
    "updated" : 1711505183691,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
  } ],
  "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_5LAg5dbXi2uzWVAyqkC9uYRH/bookmarks HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 163

{
  "name" : "Trina Corder",
  "searchOperation" : "searchUsers",
  "searchQuery" : "text=kayleigh.kuhn3897@my-company.com&items.id=usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_PRkoxdQiAfrWwjnC8HG1x7Ka
ETag: "F2QQ8YfXjLH8hbz1PFDhcdES"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 356

{
  "created" : 1711505535289,
  "id" : "bom_3PKK1XWoEKCMSjvfjVRxesud",
  "name" : "Trina Corder",
  "searchOperation" : "searchUsers",
  "searchQuery" : "text=kayleigh.kuhn3897%40my-company.com&items.id=usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505535289,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_HbU9BDWpgCLvZpjhRnJX4oV3 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "VzbmibC5jMRW6ZgEVxyxaJvW"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 316

{
  "created" : 1711505536122,
  "id" : "bom_HbU9BDWpgCLvZpjhRnJX4oV3",
  "name" : "Samson Night",
  "searchOperation" : "searchUsers",
  "searchQuery" : "items.id=usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505536122,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_ENzUa2kSJaz2aS1PWoBV5iHx HTTP/1.1
Authorization: Bearer act_DiLPETAmnyoNtGKBMryDh7F6.5F8cZj7c7TDShsMhXXVugnbvChrAEhCeQLS3CJZVorLPEgsVTMV7S6zLsGaU2vGg

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_BgS52phnnBe2cPNMvNaKonny
ETag: "5VsVF1Yy9AMQLQ7ZsSaZ68Cc"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 313

{
  "created" : 1711505537116,
  "id" : "bom_ENzUa2kSJaz2aS1PWoBV5iHx",
  "name" : "Jack Dupp",
  "searchOperation" : "searchUsers",
  "searchQuery" : "items.id=usr_NwhJbrnVQgwfBgFjsv6ft6Xe",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505537116,
  "userId" : "usr_NwhJbrnVQgwfBgFjsv6ft6Xe"
}

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=Lou%20Pole&items.id=bom_HbU9BDWpgCLvZpjhRnJX4oV3&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.userId optional The filter value(s) for the userId field.
items.name optional The filter value(s) for the name field.
items.searchOperation optional The filter value(s) for the searchOperation field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 412

{
  "items" : [ {
    "created" : 1711505538122,
    "id" : "bom_HbU9BDWpgCLvZpjhRnJX4oV3",
    "name" : "Lou Pole",
    "searchOperation" : "searchUsers",
    "searchQuery" : "items.id=usr_5LAg5dbXi2uzWVAyqkC9uYRH",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505538122,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
  } ],
  "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 a new consent page.

# HTTP request

POST /api/tenants/ten_97DUvrb5NoHGrLty6sj5n1bG/consentPages HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 944

{
  "isDisabled" : false,
  "name" : "Rose",
  "stepType" : "signature",
  "authenticateUser" : true,
  "clientId" : "clt01",
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "sharedPassphrase" : "26KDjBdKSrC3EM785j9GU3KQ",
  "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_PdsHWCvzBRttu58kMUpqmhf8
ETag: "FxgjtZmSay8rmETWPZxXieYm"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 732

{
  "allowOrganization" : true,
  "authenticateUser" : true,
  "clientId" : "clt01",
  "created" : 1711505648575,
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "hideDownloads" : false,
  "hideMobileQrCode" : true,
  "id" : "cop_DkH2wTtpfJcJDJXUXhkiDgct",
  "isCountryRequired" : true,
  "isDisabled" : false,
  "logoResourceId" : "res_7N8V2d7MqMXfcBg1QXp7p4qc",
  "name" : "Rose",
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "sharedPassphrase" : "****************",
  "signingMode" : "server",
  "stepType" : "signature",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "updated" : 1711505648575,
  "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 an existing consent page.

# HTTP request

GET /api/consentPages/cop_8LbQz49DBFTbhu1T8ahW2q3a HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "BhwtxBjWD6kFGy4Tm8aoFnJE"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 738

{
  "allowOrganization" : true,
  "authenticateUser" : false,
  "clientId" : "clt01",
  "created" : 1711505180047,
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "hideDownloads" : false,
  "hideMobileQrCode" : true,
  "id" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
  "isCountryRequired" : false,
  "isDisabled" : false,
  "logoResourceId" : "res_2roYvvrArneA9MCsShCAvR5g",
  "name" : "Orange",
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "sharedPassphrase" : "****************",
  "signingMode" : "server",
  "stepType" : "signature",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "updated" : 1711505180047,
  "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 an existing consent page.

# HTTP request

PATCH /api/consentPages/cop_2DRuPtBz1Z5PF1G3pNVrCwp6 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "DHyPz4xnKXPhxxof9tfNo4jJ"
Content-Type: application/json
Content-Length: 920

{
  "isDisabled" : false,
  "name" : "Magenta",
  "authenticateUser" : true,
  "clientId" : "clt01",
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "sharedPassphrase" : "QCrBXFFpN9i9cQLQ3CesQb8L",
  "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_Lq37Stqs2NgsZe1AtRTbpnLC
ETag: "FkERiZD7JLa7KF6opvWX5eUm"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 783

{
  "allowOrganization" : true,
  "authenticateUser" : true,
  "clientId" : "clt01",
  "created" : 1711505653416,
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "hideDownloads" : false,
  "hideMobileQrCode" : false,
  "id" : "cop_2DRuPtBz1Z5PF1G3pNVrCwp6",
  "isCountryRequired" : true,
  "isDisabled" : false,
  "jobOperation" : "purgeConsentPageResource",
  "logoResourceId" : "res_59jSZAKTX5eJ5612E9ViAAee",
  "name" : "Magenta",
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "sharedPassphrase" : "****************",
  "signingMode" : "server",
  "stepType" : "signature",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "updated" : 1711505653455,
  "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 in all consent pages.

# HTTP request

GET /api/consentPages?text=Orange&items.id=cop_8LbQz49DBFTbhu1T8ahW2q3a&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.isDefault optional The filter value(s) for the isDefault field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.name optional The filter value(s) for the name field.
items.stepType optional The filter value(s) for the stepType field.
items.clientId optional The filter value(s) for the clientId field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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" : 1711505180047,
    "emUrl" : "https://evidence-manager.lex-persona.com/",
    "hideDownloads" : false,
    "hideMobileQrCode" : true,
    "id" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
    "isCountryRequired" : false,
    "isDisabled" : false,
    "logoResourceId" : "res_2roYvvrArneA9MCsShCAvR5g",
    "name" : "Orange",
    "primaryColor" : "#208cdf",
    "secondaryColor" : "#4ca3e5",
    "sharedPassphrase" : "****************",
    "signingMode" : "server",
    "stepType" : "signature",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
    "updated" : 1711505180047,
    "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 a search in all consent pages.

# HTTP request

POST /api/consentPages/exports?text=Orange&items.id=cop_8LbQz49DBFTbhu1T8ahW2q3a&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 190

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{name}},{{json keystoreTypes}}",
  "expired" : 1711592051239
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.isDefault optional The filter value(s) for the isDefault field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.name optional The filter value(s) for the name field.
items.stepType optional The filter value(s) for the stepType field.
items.clientId optional The filter value(s) for the clientId field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_Ehcg452QdHXK9dF41d53gP4H
ETag: "G6wbSJ9JYNLeuQi9oFkPtfJo"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 588

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505651242,
  "expired" : 1711592051239,
  "exportOperation" : "createConsentPageExport",
  "id" : "exp_3u2XnxfCbmJLi5gCALXYkdDw",
  "itemTemplate" : "{{id}},{{name}},{{json keystoreTypes}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Orange&items.id=cop_8LbQz49DBFTbhu1T8ahW2q3a&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505651242,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_5LAg5dbXi2uzWVAyqkC9uYRH/contacts HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 159

{
  "email" : "sherita.crooks168@my-company.com",
  "phoneNumber" : "+33 6 12 34 56 78",
  "firstName" : "Eva",
  "lastName" : "Gaillard",
  "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_Ay3tfy719rjdhSpfKYU3Jd6y
ETag: "4RLYtvmyQQcS5EETuuAaesMU"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 377

{
  "country" : "FR",
  "created" : 1711505631976,
  "email" : "sherita.crooks168@my-company.com",
  "firstName" : "Eva",
  "id" : "con_BxxauFW4pKN9TqbNPsiSQDmB",
  "lastName" : "Gaillard",
  "name" : "Eva Gaillard",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505631976,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_ckGMi3L6zgfgfAiJKQCuCnz5 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "FLkVVf4SiYEBP9rN9SBrtS6b"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 380

{
  "country" : "FR",
  "created" : 1711505631270,
  "email" : "jordan.kunze2589@my-company.com",
  "firstName" : "Antoine",
  "id" : "con_ckGMi3L6zgfgfAiJKQCuCnz5",
  "lastName" : "Renard",
  "name" : "Antoine Renard",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505631270,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_7EoHzjmFvmtgD76ScaXY72LK HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "2SDohir5cUDiWkeeFY1ALXce"
Content-Type: application/json
Content-Length: 160

{
  "email" : "johnson.leffler9093@my-company.com",
  "phoneNumber" : "+33 6 12 34 56 78",
  "firstName" : "Léa",
  "lastName" : "Picard",
  "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_GaNEwJAHtE2wZc9QvLSVgPyg
ETag: "9WraEMPbppfoAkNLR1yFmvjT"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 377

{
  "country" : "FR",
  "created" : 1711505632960,
  "email" : "johnson.leffler9093@my-company.com",
  "firstName" : "Léa",
  "id" : "con_7EoHzjmFvmtgD76ScaXY72LK",
  "lastName" : "Picard",
  "name" : "Léa Picard",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505632981,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_59cLr6Wo4H3tLY3iJKYHWUSZ HTTP/1.1
Authorization: Bearer act_UGBYyWbgATw3MVaXBtYmU4Ui.2dgYv2YgsSU7Cz4sFCarhsY3xCC6XgfzKWGpVNajc3tNBioUTTSL49zEnLaGrCsg

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_M8wuQ5aeaneR76bjHAt5Qu7Y
ETag: "2SU7UoJLZSVvUG4B1MPLvLEE"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 378

{
  "country" : "FR",
  "created" : 1711505640092,
  "email" : "jacquline.hills326@my-company.com",
  "firstName" : "Yanis",
  "id" : "con_59cLr6Wo4H3tLY3iJKYHWUSZ",
  "lastName" : "Girard",
  "name" : "Yanis Girard",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505640092,
  "userId" : "usr_6DacN3b74V1fzgbcsJMdNLw9"
}

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=tenesha.franecki9083%40my-company.com&items.id=con_2rk1wVTgmMH4g7FmZsrRuc7f&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.userId optional The filter value(s) for the userId field.
items.name optional The filter value(s) for the name field.
items.email optional The filter value(s) for the email field.
items.phoneNumber optional The filter value(s) for the phoneNumber field.
items.firstName optional The filter value(s) for the firstName field.
items.lastName optional The filter value(s) for the lastName field.
items.country optional The filter value(s) for the country field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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" : 1711505641442,
    "email" : "tenesha.franecki9083@my-company.com",
    "firstName" : "Romane",
    "id" : "con_2rk1wVTgmMH4g7FmZsrRuc7f",
    "lastName" : "Picard",
    "name" : "Romane Picard",
    "phoneNumber" : "+33 6 12 34 56 78",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505641442,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
  } ],
  "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=Antoine%20Renard&items.id=con_ckGMi3L6zgfgfAiJKQCuCnz5&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 167

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{name}}",
  "expired" : 1711592043184
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.userId optional The filter value(s) for the userId field.
items.name optional The filter value(s) for the name field.
items.email optional The filter value(s) for the email field.
items.phoneNumber optional The filter value(s) for the phoneNumber field.
items.firstName optional The filter value(s) for the firstName field.
items.lastName optional The filter value(s) for the lastName field.
items.country optional The filter value(s) for the country field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_CJV5g7cNEgJ6kuxxw5pS7iMJ
ETag: "B9kGbpAfLo17BpCqqiYdHRbJ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 569

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505643186,
  "expired" : 1711592043184,
  "exportOperation" : "createContactExport",
  "id" : "exp_GfjiEUzY6bT7rVikAYaY6cTu",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Antoine+Renard&items.id=con_ckGMi3L6zgfgfAiJKQCuCnz5&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505643186,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_C1urNGBwgUUS4tftRZ9mKw3m HTTP/1.1

Path parameters:

/api/exports/{exportId}

Parameter Description
exportId The identifier of the export.

# HTTP response

HTTP/1.1 200 OK
ETag: "DYz86U4ors7sJPHnvuwF6AqQ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 521

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505610039,
  "expired" : 1711592010037,
  "exportOperation" : "createUserExport",
  "id" : "exp_C1urNGBwgUUS4tftRZ9mKw3m",
  "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505610039,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_PKkmrGNAtLgtYdpF1hq4CTue/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_PKkmrGNAtLgtYdpF1hq4CTue.csv"
Cache-Control: max-age=31536000
Content-Length: 34819

usr_5LAg5dbXi2uzWVAyqkC9uYRH,Bobbie Swaniawski,"[{""organizationId"":""org_7iqG5V1pEWBPnNQDbBKcCKt9"",""title"":""Dynamic Optimization Agent""}]"
usr_3piYd69CcGtaMKt5nJTkBsjB,Dana Gleichner,[]
usr_BJS2vvow96WboWurUk66XGxo,Bart Bergnaum,[]
usr_NdLPh8cUWRM5zVbweRErLfJF,Shaun O'Kon,[]
usr_9zHqXCX6VRpNJwdfCmmUnn8Y,Mason Funk,[]
usr_NamU7ggGGh67iErSNuqYniLj,Guadalupe Mills,[]
usr_5kuAtjvbXbTVY2SZq4KqPjwu,Clarence Morissette,[]
usr_5CTQ4Qcvks2vhkHTviyitXZr,Lionel Weimann,[]
usr_9YhaPMGt1XfJ4VsE9KWXSwz9,Ian Boyer,[]
usr_Lj11EfEWaSFhDsZAcDBrLxnv,Sherril Goyette,[]
usr_Km7UR4P5MCN9cQZTLcQBCPCc,Christal Roberts,[]
usr_38DNu3WkaYZR2KTy2tDuxHgj,Christopher Keeling,[]
usr_NHY2yj9nYCWH6z8fE6Fa7h3B,Chad Bradtke,[]
usr_HdHtsZQXV9WEY4EvfLtRKSxh,Wilton Ziemann,[]
usr_53Gww1YHiMHh4J6C1WE8SETR,Summer Klein,[]
usr_52L1VDK5hd6tya9G2cQRwtHv,Yasuko Hegmann,[]
usr_JhevgmFmNHXMrWjaFbrUgPnJ,Keturah Abbott,[]
usr_3iCkLdvGBz452aKJixD4muLD,Leisa Schaden,[]
usr_3w1KJ9tbHwu77RC2gygUw38r,Xavier Feil,[]
usr_5QJNF469hoEK377XZhTWm2PM,Percy Berge,[]
usr_GCXpy8nm7YS9SAuALfX5ZjwS,Tressa Tillman,[]
usr_8gajFVD5Mivgq1eH556QJFTf,Henry Welch,[]
usr_HEAobVr38vhAQARJd64tvKPC,Maryellen Ondricka,[]
usr_74wjSdUtzSrZPjpuo6vn8VQk,Darrel Effertz,[]
usr_BKZV2HgGifcYqPPua3r9desL,Hugo Davis,[]
usr_LGXzohys64hkAS8qkLG3Hctk,Elodia Bins,[]
usr_2kdTBunakvHkcb93td3Af3v4,Pandora Wunsch,[]
usr_6LCVjR8Vn24Dq3gkAgC8oXsv,Sixta Gleichner,[]
usr_CY99LiANmfG2Eo9X7oXSXryZ,Shelby Cummings,[]
usr_Q5QrBA4eNj8yPDyCQpy5QWrV,Blossom Rohan,[]
usr_Pk93SSZnP71VQvsN8iqoxQMp,Tyrell Bechtelar,[]
usr_M2fCGQCuqRVjQCdtQ1VqeJLb,Romelia Welch,[]
usr_53kDMynPWu81eDG6s6RdjNwT,Wes Rowe,[]
usr_PdGrBDki957pFxv3msi3yxXJ,Ronny Schulist,[]
usr_EZNkeGvfutEN4BhoQhPMS5xa,Orval Leuschke,[]
usr_ER1qm6P5uZ5FibVtt5mkK2Uh,Angelo Breitenberg,[]
usr_9xy8CXNxHcFzPTZ531UAGXQK,Nicholas Hartmann,[]
usr_AqpqAEEQUHP37Rq8YzEup4ow,Cherri Corwin,[]
usr_EEtm9ANUrznGDj6obFg1U9te,Toney Schumm,[]
usr_N2CFScpcB3GLzYB2K8L2FVYc,Ara Prohaska,[]
usr_3udmEvJJVS1nECoZfByWRBt5,Lucas Lang,[]
usr_N5h7Qb7RH5dSY4zEUrn3vFXp,Theda Hilpert,[]
usr_scqFLdvKrvPjMNJHKQVnfKcf,Marianna Kunze,[]
usr_BRPc2i4sTo9KerfspvT8hiRg,Mariko Bayer,[]
usr_2oMdtqKb5pN4F2b9kpHGJx1z,Natalia Harber,[]
usr_2pTtmXbVrUcLSobLe952aUEe,Clemencia Sawayn,[]
usr_AiTTdJC7m8gC9drRGrHsbuf4,Catharine Purdy,[]
usr_FXCzMFntYEmtPqPLEU1mMp76,Malcolm Collins,[]
usr_NJQLYLxXHf8Zixjk6PXzhy9v,Bonita Metz,[]
usr_6TbnQ61cyjJSMg5zWrvDXkoL,Rickey Senger,[]
usr_JpkqGEzoajUf8kYNpevSwAfM,Armando Rohan,[]
usr_9YWxRFUmdb9p5T6ES25DgjNL,Louie Braun,[]
usr_M9vD2sWHq99xyy4QTdSZ3iFm,Leatha Stokes,[]
usr_4C7F1i6gpDJ2iQyVUNDfTVoL,Jeffry Williamson,[]
usr_Me89dX1wiAavznd6adTXiKYZ,Hank Prosacco,[]
usr_N7Fqf4BNyj8GusS1aCM7wo7r,Brent Strosin,[]
usr_52obmXEdkVoHZuFJEeFbSWS2,Anne Pollich,[]
usr_Euitz5Dp9FAx5assVpYGakYp,Hong Wilderman,[]
usr_6jD22MNpJM2PDKwb1q7FGVV7,Kellee Kuhn,[]
usr_QFLnXfLRQnmhfq5dRK9hsURq,Norman Yost,[]
usr_NwhJbrnVQgwfBgFjsv6ft6Xe,Domenic Tillman,[]
usr_FfEEGEAuvo1YMSN6aiVZA7hr,Del Schmitt,[]
usr_676gavte8vy69MNomwyFrgzP,Myrtie Hansen,[]
usr_ccHGU7Wd4ZK2Fis21c4vzrUG,Kimberli Schulist,[]
usr_FxYZfAznU6aiEpXY88sbkHnT,Alton Sauer,[]
usr_6A9gS9CtgcKT4AxWG8L17QTf,Conrad Dibbert,[]
usr_9oXHY1aQ5rJCRQcvRKuYKAoH,Cecile Gislason,[]
usr_5oYR66wYiEYsfw1LhzTsnYta,Yvone Dach,[]
usr_CnXnFu9XyJ53uZQ9Qi7L7UkZ,Cristopher DuBuque,[]
usr_DthL3gqpm1QoiwGQsRqXyCDP,Gus Bailey,[]
usr_GG32GGcWDkKtQov3mEFAvSPX,Santiago Monahan,[]
usr_5ZdDufdNTb8GBEc8REVLWtdC,Mana Steuber,[]
usr_DWjNHbRDG2o5PsqMBbS7ucKs,Van Rempel,[]
usr_9Feb2sgtCSwLta61Se9BYxeE,Latarsha Ortiz,[]
usr_Mvw9PNXhR4of3FYsNrfGr2vJ,Yuri Frami,[]
usr_A7g68xY78f8Gm5yaBs7mKLTT,Santiago Hegmann,[]
usr_S3pBAZ8QA6682Yb18PEs7YrT,Roy Murazik,[]
usr_VXC7YMrZ1VP8SNK24f4doXC3,Lino Stehr,[]
usr_DnLLHsc4eNVqmWEwv36RT5Tp,Terrance Jacobs,[]
usr_P6ptQHheBEH9acX1dUET1e2x,Burma Feest,[]
usr_HEfxi2kTT788Cvc4oWALddhG,Terri Nolan,[]
usr_8QbrA5ipy5RPAoEHzzYQnG13,Ed Koepp,[]
usr_DaWyMqi57x58hUUPesqAcTSe,Arlette Abernathy,[]
usr_NLuqndY8dWpbsZjie291fszj,Pam Cruickshank,[]
usr_KamuUBtGPTrL5r8kdu1pJwG8,Dick Leuschke,[]
usr_C6tZAJs3TwufCn9C16if1PTp,Wm Conn,[]
usr_2sKqgGcts7Yf8HC6q2fhdTd9,Nereida Mertz,[]
usr_LtSgYv4DK5vbbemnuvQ7mmTb,Kasey Cole,[]
usr_5UiJr5terWHqjfkdJaFUuc3f,Petronila Rolfson,[]
usr_QGTamvKBEHt9dnHANwCxWWE6,Florrie Conroy,[]
usr_4v3nEiWVuNn1VEE4RkwbjtFG,Jude Harris,[]
usr_9UaSDkLnoXbUJgwMfBdNHCf9,Dan Prohaska,[]
usr_23KaC8xTVvs6zSyRUZCHMjxv,Tressa Lynch,[]
usr_HQ9s3xzq8vaggxEjufLxxeBP,Cyrus Goodwin,[]
usr_CLWh215GohuiFsN9DZmmcgZU,Rickie Hilpert,[]
usr_3b793UBAfXJGF8k8NyPw53pj,Rea Jacobson,[]
usr_C8QZLh5ZVVFMGBAUftGFRMuf,Akiko Grant,[]
usr_mWDKghAF3mGywJ9HBok949ZW,Gustavo Watsica,[]
usr_3FugJponkbh5rkVim5v4i85g,Octavio Little,[]
usr_GS5eqSaofsscvRG3QVq7rsf8,Will Crooks,[]
usr_ENrefL5CEFrQZ5pM4X1VWbZ3,Alec Grant,[]
usr_4mQgCGHqL9hChFPqXVPfZT2M,Kirk Jacobs,[]
usr_Ku3FYEzRyXQjWGFcbzMMQm7s,Temika Krajcik,[]
usr_ih7vdJzfw27QhtytGkTsvXHw,Mechelle Stamm,[]
usr_BqCbnp7UbqxwyboNB2aSrBU4,Thersa Schiller,[]
usr_3UrozHTw1E3cuXpth7Jmx5QU,Felisha Russel,[]
usr_AA4heBq2JaPV6UEfg73LbdZa,Armanda Borer,[]
usr_44gm7fn7PpQUR6Nt1rawksrw,Collene McCullough,[]
usr_MdzmxqZ9dfKjpWcntqLVCoWr,Brittni Collier,[]
usr_K9ZA44ucy39Kjanc9E8arJu4,Jerome Ullrich,[]
usr_EdcvUSXviJsxhgAwDrrSGnbm,Gonzalo Becker,[]
usr_3YKZmeVJorfptr33yCpfxcoY,Floy Rohan,[]
usr_4v3Uha1StJqzy6u3CQMDSFQb,Ken Ziemann,[]
usr_E14rxMgcqFNsdp793Mppc5tn,Laronda Hayes,[]
usr_J7b5jWe5gggFLGZARxzwDhAm,Mathew Stracke,[]
usr_BKcj8Gvc5F6yc4GhrYxysVth,Rosalinda Turcotte,[]
usr_4KnwZjtq7i29WcFzCzCrdgZh,Maryjane Ward,[]
usr_5NV42nHbc8tDJ9iXC5iqBx2s,Fletcher Dooley,[]
usr_9HNfYhCZBBHmLxphpFoU7Td4,Bart Block,[]
usr_7QLt7PYS5wT3HW7pehzSK6Tg,Booker Gaylord,[]
usr_p9ccpZPBXrQC2dMEnJSA94Ta,Usha Beatty,[]
usr_Dv4iBBdNvrKJipscrjSinZ6a,Denver Bartoletti,[]
usr_LAJt14SybNcYGs8F9fh4vVu8,Rueben Okuneva,[]
usr_13JjkknnczF2b6Mj99pbwG6H,Tommie Rolfson,[]
usr_GATdcq6dgonxQmS64MCtNnaY,Tandra Ratke,[]
usr_2yQGysJUdxERSuc5i4VPGQgM,Laraine Gislason,[]
usr_5Db72XCw7DLjt2bnMBBr5pUg,Hilary Bernhard,[]
usr_yoHKVUE2tj5AoR43Tw2HWXf5,Nancey Gusikowski,[]
usr_75yBVHBWpWLC3erfvDPHXYGe,Eric Kessler,[]
usr_AfkmC1uT8gH3mcGMij1vxcz3,Berneice Jones,[]
usr_3zMQdj7j7XEo5MERqvWYq4jt,Demetrice Jones,[]
usr_ADnC9vAqHZpW8Y77bK6Xm4YP,Blake Reilly,[]
usr_36wywh3jJR6TDJqt1CHiKWJy,Arturo McDermott,[]
usr_47M333RY9PxbdPtU2d4sbYUQ,Lane Ondricka,[]
usr_7xezk1rwC1GM3KZvMQVQpwQJ,Earnest Kassulke,[]
usr_LA7UHdkbepCsHGVdBwfDeBvK,Duane Marvin,[]
usr_Mr2uBkBXgvvtm9EZgivrNNx3,Patricia Kihn,[]
usr_9Afoc2u1p8dyMv91YFDQ5Muc,Dorethea Turcotte,[]
usr_JU21bfrQKp1EB6cncGZhJd2A,Leslie Hartmann,[]
usr_2S6V3L2ZpU9qkYtY6BJUXSfz,Shandra Murphy,[]
usr_PsugMSpVzUFVnQC43utESm7z,Fleta Baumbach,[]
usr_2thpvWq7UfvTkt1NyHJg1yCN,Bryan Emard,[]
usr_Dpm67eiK5xTPgVrBw2dJBUF6,Patsy Considine,[]
usr_PbGGd5n2JgXux1x8avVqoHJC,Lowell Witting,[]
usr_JCphWL3KwkbVH9MKd62qLsNn,Isela Reynolds,[]
usr_8fERRSg9xLD3vMCE8AkJNo6S,Royce MacGyver,[]
usr_EhoLRnuS2nEJVFs3qL9pHKrF,Particia Hackett,[]
usr_C1y7w5CBK2EVm8GE2rZDQVNA,Michale Lemke,[]
usr_GWAw3tBQvNxV8y4tW5t3ngbn,Damian Mueller,[]
usr_8mLLrepqrvXJ5DG2NZqmEFVw,Michael Franecki,[]
usr_991S34PcznAbbZa4raBr3cuz,Germaine Wisozk,[]
usr_9sKvGsBypPe3sJdLqQ9Ltgxc,Kayce Rowe,[]
usr_FX4JCiN5EiS5MdFf5q9EgmDY,Fabiola Waelchi,[]
usr_PdjHwhanPzuyNznqzrVM8P4z,Lanelle Willms,[]
usr_6zt8EGaKoztBqdu7J9cBky13,Duncan Bogan,[]
usr_3JhTiBWKJujVdwuLZEUbToFj,Angelique Abernathy,[]
usr_FFo7j3xHTCRnDWirbhok8rrZ,Tiffanie Swift,[]
usr_3L7Jr1jWza9X3jf71W6bdJhi,Basil Paucek,[]
usr_274yL6yUHFasyDFACdKtN5oB,Jennifer Bradtke,[]
usr_6PcjgXq2dQ2yWum4AajneL9v,Sunny Tromp,[]
usr_DoYn6qkabvN5kZTzjCNDq1a7,Jewell Hoeger,[]
usr_BEUawUQLZoBzXvSD5TMDzHJU,Estela Volkman,[]
usr_JwouVmBrpuNmXCdJUVfxNa2f,Carlita Blick,[]
usr_6e6pZ1vU2zJq6dokHBecqDDL,Kayleigh Leannon,[]
usr_MepQFbavgC6oQsb7A26QzDJM,Reyes Armstrong,[]
usr_MBuXm446LrEa1gfRQ4g5yj5E,Noel Kuhic,[]
usr_PLFDqQuUsvy4USvLHtfThHVk,Christian Hilpert,[]
usr_ALTnHBqedhKjsiffvsUutLtc,Lewis Rolfson,[]
usr_C7HAcs5XCeooa1stHt4UqkTD,Creola Hahn,[]
usr_5zAGyNVa9eVfvmTrDFAQPSXs,Donald Langworth,[]
usr_MQcgLGdCA44KjBe9fA8sYUnR,Brooks Green,[]
usr_U5Q9E1x3HDCqJ4i57mrzMj1Z,Chang Nolan,[]
usr_FbsaMBPk8QrrBdePSVypJLWk,Dallas Walter,[]
usr_9vq7M1RiQGJp4n2rt7hCzgnk,Riley Harris,[]
usr_PAMs6xfuAZRCRxGHpB3d9FUH,Christian Prosacco,[]
usr_CgxV2BjWdEvzqNaNTSqaNAjX,Tashia Dibbert,[]
usr_BF19XDEHtfhs6F1qsgia1gVG,Graig Bradtke,[]
usr_PPQc7V9EY6bKXF25Lxr26ste,Wilfredo Sauer,[]
usr_KFxg6EycbCTVvZMJuRJDpgaW,Levi Halvorson,[]
usr_15EMPueMmQLRpq2dzbrhACpz,Norman Johnson,[]
usr_3eC41QAYrF5ihUXj47y3SEG6,Arnoldo Dooley,[]
usr_LpxhjhjPxmLCeBY1Xi3M99WU,Carli Rosenbaum,[]
usr_MnQbT6ArLDJ9N9YvdQy7hP4m,Terence Nienow,[]
usr_GyikRYQwTBx3TTkj4JLV2QCM,Donnette Koss,[]
usr_MYP6Niz97DnU9NzBxHGXKwoi,German Gusikowski,[]
usr_EFQPEcSdww5hfEnt1bvZpBPE,Gabriel Buckridge,[]
usr_3a34E6TUHxV1Lha1PKuXUZtJ,Reita Bechtelar,[]
usr_7WG7pboxv7mLpVFk46AWPyCW,Shawnee Murazik,[]
usr_2NN9NoAmiEmea2hWgQJzqt37,Claud Corkery,[]
usr_MGqypZom7pg26pecNqWGgA6B,Fern Pfannerstill,[]
usr_LKuzRZZGs4ezSArAPsiYyuW2,Milan Kutch,[]
usr_HZzqFFm2HULCA1fx93ii7Tr8,Lemuel Kunze,[]
usr_3F5n4vq3JefTYUhZKUEwRtNB,Maximo Ankunding,[]
usr_NphFk97TeERiJHgVqqFF5xuM,Herb Kris,[]
usr_MtZnM2xmjPNUCnf7ZnTt2jUs,Tierra Wisoky,[]
usr_GZi5iUwsiotkRQSSHxJnMpg1,Keith Pfeffer,[]
usr_2c56tuMjCDdVY42NtEHncLC6,Edmund Collins,[]
usr_AD5q6LZWjALthcLa3ca36pRu,Perla O'Hara,[]
usr_FNvgRAbMLdBPCNb3iaqEGLRz,Bo O'Kon,[]
usr_FuRG8LymVZeh9G5tuuCmr1rL,Felton Simonis,[]
usr_2u5YbXgDAY9ojmS7uCzmnzMA,Kirk Rempel,[]
usr_LoCzSUzdFeMB4rMs6uJcT18o,Myron Marquardt,[]
usr_Gwy4gKo8HnGkL4xTqf7Ku7RE,Laveta Feeney,[]
usr_KXUHVnH3SXdHJDnq6XAMwkvB,Logan Terry,[]
usr_8eu1SZHXzPXam5GEvmL9fR5h,Murray Morissette,[]
usr_FceJX2DBa2519HJBnA9g6Cfo,Ruben Boyer,[]
usr_LUFWo1QYM5x5gYh2GRVx87NP,Latasha Russel,[]
usr_AyGiD5CQx9RfMin8yhCfxCz5,Cletus Sipes,[]
usr_NNbqH74SErCmHEbycTubyQKd,Ismael Hodkiewicz,[]
usr_KDGYQX696YQefqqZBKaLBkk6,Harrison Nienow,[]
usr_MNXAYjGwo7f8uwYPh7jNKjMo,Adela Kirlin,[]
usr_LomiYPjNYx5KkRSTWc2MPem1,Clotilde Bednar,[]
usr_CJrHxZ5zsh2XpAbj4v5ytgeQ,Clarence Osinski,[]
usr_MbN4CmjbWRHH7LaC1LhBUwcg,Esther Torp,[]
usr_PfnqsupbtA2VqW9PsuvByMZs,Tequila Kuhlman,[]
usr_Z7pWuKaD8kEALbubfYBs9BpZ,Larita Borer,[]
usr_7vi8ypf6p4cvzw6Atu1yndpe,Lorraine Koss,[]
usr_PXPCSh39i52tvHqBkZGJS4un,Sylvester Kozey,[]
usr_N9H4y5GzfxfdB1kepLQc56xv,Sharda Stokes,[]
usr_DW11BcNYjf4w4x7Yf1Hzb1Ao,Moses Ullrich,[]
usr_D6246vbzPi49hFbyxWMM54DC,Elenore Bernier,[]
usr_JvXsaEV8sxNrz7xerHhzNTgc,Deedee Glover,[]
usr_Q3qivsHtmLbXxo9ApF1JmBtk,Gregorio Harber,[]
usr_9hxcQnir79WqkensLeZVp5kb,Sammie Beatty,[]
usr_8Gkjd6CqHtfGfAic7gxBUkSJ,Tamika Schultz,[]
usr_Hzar8MrezQ9fs5XZqvcCPk3C,Zane Pfannerstill,[]
usr_BPogLWURJJ338bv9WnTeBYpF,Lara Murray,[]
usr_H3juSrdacAU1759nN1W65yFg,Hortensia Shields,[]
usr_J29eUSJexVcc5iYFEBvP8Mfa,Patrick Monahan,[]
usr_LjqfJeos5NeP827pPpxQAKV8,Hank Reinger,[]
usr_BN3MEjfXBhF95zxf7Ud1qgqR,Aaron Bayer,[]
usr_9oWM5i6G83i86P9uqJhCqUJr,Herb Williamson,[]
usr_Fxgfq4jp39G52pZVH7fFioc2,Woodrow Jakubowski,[]
usr_DLYByZ5ZuaLpL1BUqZF5AM8W,Joseph Goodwin,[]
usr_5RwMfRvK7uyWjnxHWpWoSwSw,Leigha Hermann,[]
usr_CxTDCYmsY6pmaD82712qt9aE,Gayle Graham,[]
usr_CxSB2xbpBGqJzzBMqV33WHjn,Arthur Baumbach,[]
usr_C5NPhkbombdZfEDsghkTHc3d,Anton Lowe,[]
usr_KPLb9rPZVMY3oWZfeYBQ8ABZ,Monserrate Dickens,[]
usr_BEnRPiAK2sUzDvmg3aBGYc4F,Oren Fahey,[]
usr_MCXDTVExPxTPBwyMsB5M2ard,Humberto Rice,[]
usr_KnbaXmHcqxTNS5MtvFt3jyTa,Armand Hammes,[]
usr_Dy4krmR72hmCGhad9gchPucm,Jake Feeney,[]
usr_N9q5XhqBH1oZ1qfLJUeXkj49,Veola Thiel,[]
usr_E3jUkNS3KFsWnayY3jrmcNiK,Chloe Gulgowski,[]
usr_3Bnn754XsjAZ5Me3HrqS6z9Z,Inger Lynch,[]
usr_PpQE1k7VnsBcX88oFe9eQap8,Jules Lockman,[]
usr_kLEQrSaUdJqUaFPaYfZqfvKF,Bart Torphy,[]
usr_2uhZ9e78z1j5QfZoHTYKeERA,Ngan Lesch,[]
usr_HjtzvjS4ar33zadNSBYdtxRL,Margert Nitzsche,[]
usr_AnsbnFoaJ4YaJRhkbeD4rqLT,Brianna Crona,[]
usr_C8TENTAwySwiu5qsiq3DLKWp,Rudolph McClure,[]
usr_2EYtqZtkDQJEZ2KHCxire53u,Gil Pollich,[]
usr_12oyEdj26ywJTDhUW1xNUYqp,Rudolph Mann,[]
usr_4cFZoKTBtQPh55tLEY9ckmXE,Deidra Gulgowski,[]
usr_urKtVKXebPbcuCJKuZqqEvyd,Hilario Homenick,[]
usr_2oW4QZo36TDuWbxr4333vdKW,Tierra Leannon,[]
usr_FhLtqcd7NwZzAevboAxxzXZQ,Rufus Bernier,[]
usr_DR6rdyVJttyjFUXFrexLw7d8,Carolin Gibson,[]
usr_NMiiMdVWjKQUrhgEDYxmjoFR,Leslie Lubowitz,[]
usr_P5DrdQ7pbNZC2mnwZwfy1DQB,Julio Rutherford,[]
usr_DSi8iZevneHUgpD3Q3c43eoa,Jovita Goldner,[]
usr_Fyyipse8LpHEpX8Lsj2rTnEw,Tyron Prosacco,[]
usr_DUoAh6yZWh3kcSJSzWHAu8Uf,Lia Graham,[]
usr_81EzLvWap1m8mzwQ1pYn4YyY,Lorine Schmitt,[]
usr_5tmh8MR9pw6CZUjkmynaqT5w,Jerald Lang,[]
usr_nqFDKVXMiJzkXBzFqwn7Phct,Lauren Ritchie,[]
usr_7t78rJJCgbrtZhEYpYkchEor,Rudy Simonis,[]
usr_JErYu7sH47pCMrJFSwzBX2dj,Arianna Luettgen,[]
usr_D1yhGtx1gdeM4mi7igior7gm,Jackie Schmitt,[]
usr_H76qNZF7t4AnvtW9wk3VAyoc,Edmund Harris,[]
usr_q4Ni1o76RbMEf3jqjaktqbMi,Stephan Cassin,[]
usr_38icnv688QpwryiXQke6QmEe,Rex Wehner,[]
usr_8rkUNRVj1QpZZ3TKumGwzdWN,Ulysses Wisoky,[]
usr_AWGTneyUPopbSRdtiXWk3zwB,Alphonse Jacobi,[]
usr_GnM4Z8YWTBQGWsmAmTXXrScV,Rosalina Mayer,[]
usr_N46edTV4Mi81Kmm1X9Y8RvZH,Masako Thiel,[]
usr_8BJCXp7xGr6AE8Btr3jCyuEg,Brenton Grady,[]
usr_3Qr1cSizuXvV7ej7jy9EzE4s,Kacy Stroman,[]
usr_MsWgNiszF5sDTJ5VA2hQXfXk,Ariel Ferry,[]
usr_NDoYSeWS2nPEohCtw4rxDprG,Sharonda Rogahn,[]
usr_Akp2DxBbMc6WYjZx9CFKxLZa,Cristina Reilly,[]
usr_EWqBwngQufgN9B9ZfNRCbiD3,Vera Kohler,[]
usr_KdLd16E2TK8shahsbSGMqgRZ,Benton Will,[]
usr_EacFruwsK4jDKb53Dt2PkLdo,Lincoln Grady,[]
usr_9nc1sYt92KiKWCDMeq4BfkPQ,Brain Rempel,[]
usr_6dbhMFKCTCnVtBeiUmKTvCHh,Shelli Sawayn,[]
usr_MYD8fDGEx3j9Z1Znkb2S7CVb,Troy Flatley,[]
usr_29mNbLV7PQC1FgE3g448kp6U,Cedrick Hirthe,[]
usr_KSjqoxWKPiDoUtH9jiSUJQs2,Aurelio Orn,[]
usr_J67EhJZBvwj7ZHbkW698q4DE,Ana Wehner,[]
usr_FPgiLfduFHjarMKbUMXotXeA,Fay Schinner,[]
usr_3oybRc84q6n2wHabSrWCeq2c,Cameron Brakus,[]
usr_7mumiJWXkqCFikqn7DRsCRfK,Hertha Wolf,[]
usr_2ABu7NNfx8XEH3LGXicGtsmn,Samatha Runolfsson,[]
usr_CjYkFae2QQfZ3jvkAZrQMD8h,Jed Lynch,[]
usr_CneYtPEur2VoGSF5FwP6n9DW,Dona Langworth,[]
usr_JxjfUrDmoVuhTorx8bhh1mRJ,Lashunda Kilback,[]
usr_3uLR6aCycyfZWhMWtaCRnw3e,Janella Carter,[]
usr_BHYby49B9PeMSUXNgfFo1vF5,Marvis Kreiger,[]
usr_2sCGx8eSFq8HzoWAMkYugkpb,Lino Stark,[]
usr_DhHq9Sq2GqxeNZW1ujgV86kP,Kasey Sawayn,[]
usr_6Y6txddiXxuB1avkweHUaJNC,Shad Hintz,[]
usr_DQ2VhpnatSV63oPL9eZVrEMa,Dorris Veum,[]
usr_DxneyRb3t6zmSYDErqnvTj6M,Danny Olson,[]
usr_7ZTW3tBy4rZ2HE4Jw4ykAWEu,Jc Wehner,[]
usr_JexEwj6SkLsbEQYjNyiq1L6u,Michael Bayer,[]
usr_NZv3Zv3uXWnYV6MX5pzzwX4E,Hugo Treutel,[]
usr_A9LEiRW3RmGYpNwUYjfhjZin,Sherwood Macejkovic,[]
usr_5fpad4RF5KoUzUFfcEBzjxDT,Maryanna Fadel,[]
usr_4mUoALaSMZftBxVGW9XxLnW6,Freddie Goldner,[]
usr_HwYej7PEPBPR8y7W1E5VWtZb,Hortense Rosenbaum,[]
usr_7s3kYUsADxiBSYLMyg5R5Fm6,Jackie Feest,[]
usr_C8MXpTBaGmVBpVHXK89UZmk7,Tamra Altenwerth,[]
usr_Kq6fFDbvjwhPMinNvL4NSiX3,Andreas Smitham,[]
usr_7ZNHxrMB2ZryKvuQh4qvxP7m,Buster Kuhic,[]
usr_FBu8VsmgeSiMFPdNr93pUUUD,Zaida Gerhold,[]
usr_DLNjfappnt4zBUCBy2LFGbo4,Crissy Kunde,[]
usr_7ESP9tgvTKH2qoqLXzbgUhgW,Sydney Bernier,[]
usr_FzuW7yBbWiWi1KV66ZFYVQxb,Raleigh Ortiz,[]
usr_2E6mdDMaCwuQEefcWkCn6USd,Houston Carter,"[{""organizationId"":""org_7iqG5V1pEWBPnNQDbBKcCKt9"",""title"":""National Communications Directeur""}]"
usr_GHvah4Nfz9XjmeniW4ancmEs,Vaughn Marvin,[]
usr_DrAZdViCKP9YvcuB2hWcEYQk,Zulema Langosh,[]
usr_BCedMsD1Yh6LyyaNLMW6jmic,Cindy Okuneva,[]
usr_7asaEwduhxgsx8jTbqG4DSqb,Preston Waelchi,[]
usr_DVGuZL8EKqpMp756Uf1ntKyA,Merrilee O'Keefe,[]
usr_MqgMbYhdo4sSHsb7Ycxnjr54,Britta Stehr,[]
usr_Dng5N16mp4UwPsq4J7PcHVN7,Rickie Kiehn,[]
usr_8hBVpVn3vG9j56k1VkDNavBL,Ena Kohler,[]
usr_45VF9qMGt4mb2gE8tDQKQmS4,Tanesha Schaden,[]
usr_6s2K4jvS82EseVmY6ziMvgiq,Chieko Haley,[]
usr_8TNCXpf6vbyfANB5uCwjVwyH,Rhett Schaden,[]
usr_39QmyGfs5hweYtDHmF6zQSMN,Dawn King,[]
usr_Ms297RruRyZBZCyNmrbBLzBb,Brinda Graham,[]
usr_5nkZpsDN68xzTE9uYPiMpcUQ,Janell Wehner,[]
usr_DmUzkZMMEC8hGz1ZRYwt7c5t,Nathan Rippin,[]
usr_58MoGvN3txmxTgUfDi5XRHfA,Edythe Kautzer,[]
usr_BkMHQMig9C114WreZHo9sMQn,Emilio Zboncak,[]
usr_AF1PA2WxPegPfroRTWicYo6S,Derrick Treutel,[]
usr_DQiQi1ndPMVcZEXQzQRusGuj,Mozelle Schamberger,[]
usr_752afMNsiUQuB7JSDpp6EKb5,Charise Rutherford,[]
usr_5pap61J48atTFzn2BJTZqtaz,Robin Bode,[]
usr_37PmvTFrxTGwq4KszWkjpbWi,Jewell Hilpert,[]
usr_AZCzLdz4bKEEkLcir61zJgAB,Korey Bogisich,[]
usr_PyhCQkxQWF59Uy9XZPvPrBg2,Emelina Schimmel,[]
usr_M48N8Z1FeYSEABjiH9SEyMGb,Ambrose Towne,[]
usr_BGKG81JfwQTBPg9UXmCAamzs,Samuel Ondricka,[]
usr_LcvDSt1DJy2KUoGrfPDGcpSG,Shantay Franecki,[]
usr_KWQvsc9eeKPdTj77BWbChWh3,Season Ankunding,[]
usr_96yEyEEm2uSo3sW9EW5w8D6p,Deloise Walter,[]
usr_8MT6tjiyTGYrwfxZLk2rHU8f,Cyril Swift,[]
usr_LFEgcYXHGc7N3bMHd8TQ6VeP,Blair Abernathy,[]
usr_6xM96gUBCUpuvAmndtszbqNf,Ninfa McKenzie,[]
usr_6bGJJCa67e2Rhb2oKyW6KAGy,Del Bailey,[]
usr_LQBQkWLbqjCgp2b5g3sNgcYW,Merlin Kilback,[]
usr_852jp8wsm7iCriHA8UzURKAG,Johnathan Orn,[]
usr_bn6ZJL2ifjPDTvggx4YUuNtt,Karmen Walter,[]
usr_5mUChnse9L7Zb2c3HcnffeSd,Mark Shields,[]
usr_FC358o1TLdPhccuTYU31tPHk,Clare Rice,[]
usr_5NDootu2Rd9pEMpMx9MJESsF,Thurman Reichel,[]
usr_PoWxo9fwuR48XMtHAetEMGSv,Maritza Schneider,[]
usr_Adwvn5S1Hec144iG2mgskd7U,Isidra Bernhard,[]
usr_KKNymfV9VSzjeWn3xR2YSooE,Lenny Dibbert,[]
usr_P78Ny8NNALBrcPa3jwGaKVqS,Marla Aufderhar,[]
usr_MRvzu27HXjLc3nXqGm2ytpcV,Hilario Fritsch,[]
usr_4pXx1D5yN7H1cTUbPV28cYzi,Jimmie Bins,[]
usr_MVMr3khiugCbr56L3zaWmmyB,Major Huels,[]
usr_98h9PaKP2fWZKfSACwAjtDZ1,Emanuel Pacocha,[]
usr_JyKxNp8tD4sAGaxNTEYW3BEz,William Batz,[]
usr_Az4DGDLBKEVuPuSUhQi8S7To,Sandie Glover,[]
usr_Eja3yXbx39fzMD7ytoEMWbfo,Reiko Crona,[]
usr_BiF4VeZybkosmhMfzRQeonrx,Reid Medhurst,[]
usr_6V7AaS8DvQtQ3EbyBJDRcnTS,Tobias Rogahn,[]
usr_Dn4tTzvcFBXx5jYKY7KaLuXx,Tomoko Hauck,[]
usr_7BPxqQq5TTh4wmVxavUershE,Cristy Bernhard,[]
usr_9EVgCCNkrCYZK6PSNvGEPY9J,Donnie Tromp,[]
usr_MeiwbH1bRKp9oBFSRSkJ3L16,Jaquelyn Breitenberg,[]
usr_HJWn6Qp59Nzwsev2h87QzQFi,Alberto Kling,[]
usr_FgwucVceLUwcUDTyhKfB79px,Matt Yost,[]
usr_5hNmCRwTqSauoPHnGcmUPG2W,Orlando MacGyver,[]
usr_2cfXKn1vDLQWVcVLDrFxqjjH,Sherri Fritsch,[]
usr_KSezScqGRptTJYEyipbm71xk,Lauri Robel,[]
usr_2aHS6Sa2CkHpdwy5Yt3KtdD9,Chance Upton,[]
usr_JStfr61kTRexrxYq98Njq9fb,Connie Osinski,[]
usr_9Nc5kFRbbNFqPFVooC4Req4d,Dana McClure,[]
usr_7GRqkNo9N769LNWy81AwBGU4,Ambrose Heller,[]
usr_8tfSqArZ64kngD4hwYob1gd2,Kesha Larson,[]
usr_6mmoEway4t4eEUoyr6GpKLDh,Sherilyn Boyer,[]
usr_DrM8V8yoQVaZERnKbAeTYXu9,Alysia Parker,[]
usr_EySjiSAnNwuPdisScGooWKXG,Alyse Ratke,[]
usr_H6tNdv4n3ACrSpxNBERwH6Zx,Doyle Orn,[]
usr_D9r6shs62emFfkA6zHSYKZLw,Elfriede Zboncak,[]
usr_Q2F4zfriMzRU7FwxmSVUxCYY,Jessie Lockman,[]
usr_D85s2wgegFYVkUe5m8mc38KQ,Jesenia Conn,[]
usr_NxwNvcYmSHMmiEECWzMLyHCX,Dee Welch,[]
usr_4wHN2MJxmM2JNqv2aBwgmrdG,Lila Altenwerth,[]
usr_Lpx1dBtSwf8S4CT3tDB3zzBq,Merlin Zboncak,[]
usr_EDDVwBu1aKc266Uc1vjM4tGv,Nikole Thompson,[]
usr_29g83oGqrwnMVSrnnEm4doja,Juliette Bergnaum,[]
usr_yRP9z79N73A1MB4qTb5S9P6w,Gaynelle Skiles,[]
usr_JFxizgBCvdV3PKZKYyB34ez7,Rene Koch,[]
usr_HJKDhjZ8ZyGT6bTuY9Uw3zTW,Else Simonis,[]
usr_3EuKg9YcGF4StTNzpPnGK2Dx,Guadalupe Shanahan,[]
usr_BtvCnJQehJZyNMMPUWzoSYSy,Steven Mueller,[]
usr_6XMfMxChhaSM7Aa4vbF79Rjy,Anh Bartell,[]
usr_PTwXj71DKcc5bx6RPpCFaEg3,Mauro Haag,[]
usr_CZbEgRvTtz3bQBSXJFztGFWf,Nolan Jerde,"[{""organizationId"":""org_7iqG5V1pEWBPnNQDbBKcCKt9"",""title"":""Forward Research Administrateur""}]"
usr_LJuKVR8tcB2TkyTjyj9q2Pjh,Terica Skiles,[]
usr_3kQBy5pEeU2bGeLZXqw1K3Xa,Timmy Collins,[]
usr_AUbfgjXGXWQFKXZ31vGe8czp,Luciana Hoeger,[]
usr_PbNbjnb7Ucd5wiPzH1eiGtKt,Oswaldo O'Reilly,[]
usr_PJuMB65M9qymwqW4q1JcwNX7,Mignon Brekke,[]
usr_ejmZwe9K94vtHu9iaHCovYy9,Melodie Prosacco,[]
usr_Jb5i1dsHTQNSzUcbCYcvKpUs,Phebe Collins,[]
usr_NHre67jBb7jtnjbLJGrivDkA,Emmitt Breitenberg,[]
usr_9Kdmdfuw8oShEe38AQBhJNA5,Del Spinka,[]
usr_KPDM1Y9t8T3zp6QAaRDrw6Rc,Audrey Fadel,[]
usr_C5zD3vGBsxvmyJ5vTQ2tK8i8,Leanna King,[]
usr_93oqPD1UhJm5XdLt9AFUCdiF,Stephan Hessel,[]
usr_Hvwk3foRx2gf69T2xpq1Ccfy,Hang Towne,[]
usr_9yMETFRmAGATeS3dzfav9ZWv,Kareem Gottlieb,[]
usr_99bLHAyRE8xJtTxZT9HAKG8G,Clinton Hagenes,[]
usr_PMvb7NEXXkVsBjrZ9dSWiK3y,Scott Bode,[]
usr_Axc7zmidjr2dLZ8PjfX4oeAh,Andra White,[]
usr_AeZthiPjbWeL6Qp3gUonxJ3V,Rosaura Torphy,[]
usr_AoH6vQqxnhQKQ1PUEWVN7rYy,John Harris,[]
usr_Nc3e2rekEVzyqMXsmbod93jz,Chris Pfannerstill,[]
usr_MFK1FoFjBhvdY9qgQkF9SW6Z,Lourdes Nolan,[]
usr_FCxFD2L3pLoshukojWzPYNGV,Gerardo Auer,[]
usr_NEG9dEKq6Tbwm16iRqHHcL97,Brain Zemlak,[]
usr_J6uBf74MkHaCEPcAiwf81rCh,Garfield Bechtelar,[]
usr_LmTaVM67wLuE7CpSvPfj3cFv,Sofia Kuphal,[]
usr_3Uuo3ijhEKHeVemB2HR4uJhD,Jonas Barrows,[]
usr_5Nuehwu5GDNv5SAzcUmPT1n7,Christel Corkery,[]
usr_2s73Z7kxiNCocjbNj4wQFuWm,Estela Kohler,[]
usr_AEbMF5Qb43J32RdfSLWQy89s,Nicolasa Hane,[]
usr_3r9ThvUvLcQGdTVbxF1pMNBy,Lindsey Stamm,[]
usr_AS126q7TY6hu3QYMvHUVgF1Y,Sean Satterfield,[]
usr_9AkXtoPFTi83uczmJaSSBy4y,Jamila Bartell,[]
usr_MmeeNcm3sysC6uEb41qZn3zt,Charles Koss,[]
usr_7cNTUdMirbE7kzUmQpgQFrb7,Jude Mante,[]
usr_8Pm1Cw3mXydwtTi6aZra9jP1,Iola Ortiz,[]
usr_LUfQux2CtiNEKPkS6eahz7kX,Cindie Ratke,[]
usr_GmTSV54QwGF92geEJ8F4ha7t,Danita Rodriguez,[]
usr_BYpSxL72gWbRQNdYDjqwaAdt,Charline Becker,[]
usr_GD8WYW2ZGTTmmffyHauNrd8U,Maynard Reilly,[]
usr_KWZdopyocyP89DrD5Ytid5z6,,[]
usr_GF2DqY8hsF7zvGza5htAZNGE,,[]
usr_JSoP8WcaaXSXEJGtHnf6qaEx,,[]
usr_3hnvgER419ZAsEuCoDCYGvMi,Johnnie Gulgowski,[]
usr_5fajWbAdT89CLjgbtfskicoi,Jordon Hirthe,[]
usr_Ceant8W57uEgg1URRy9RhWUh,Gwendolyn McDermott,[]
usr_W791Soccf9fAkLJxXKN2CMrN,Sacha Poirier,"[{""organizationId"":""org_7iqG5V1pEWBPnNQDbBKcCKt9""}]"
usr_CiMUSfHkRqz3pJ9BV9GiH5nx,Pierre Charpentier,[]
usr_N5RuMDEeo2kd7bkEvHqAeyMr,Tom Schneider,[]
usr_H9kPerwaszEJQdaZ3DUb27rK,Noah Schneider,[]
usr_HWDS5SdeKStUxgk63pZK7Yev,Pauline Gaillard,[]
usr_N4YjJCT6LRWCfWD3G6efWv2i,Benjamin Gaillard,[]
usr_FvmNGvhBEN3yxBKHQHkBuGMi,Delsie Grant,[]
usr_EzxFJUZfPRfQqT1maGANyhf2,Louis Roux,"[{""organizationId"":""org_7iqG5V1pEWBPnNQDbBKcCKt9"",""title"":""National Creative Coordinateur""}]"
usr_JvVLZ6mVVunBWn7QNi8ct5hh,Jerrie Rogahn,[]
usr_D7phK3ZsT7wQoTxoFhqefK97,Eva Adam,"[{""organizationId"":""org_7iqG5V1pEWBPnNQDbBKcCKt9""}]"
usr_wrP1M2VDPgmQWzdhs2fkq2iw,Eli Ruecker,[]
usr_2fyS6LDEjv3Eg6NB13TrmEhr,Manda Powlowski,[]
usr_L4BBpNJbrJVpXCbrV4yBezxt,Hellen Kub,[]
usr_2bzmUSL5RdxvqKNVN5MWeVPE,Julien Fontaine,[]
usr_32tLtPxSNV1rmjf5oSYpuFtV,Julie Carre,"[{""organizationId"":""org_7iqG5V1pEWBPnNQDbBKcCKt9"",""title"":""Principal Creative Manager""}]"
usr_FTfu7qexdGYqp3hEZF5ZFghJ,Tiesha Luettgen,[]
usr_PcdeuZu3AR4NN8SYKww7WrCE,Jamie D'Amore,[]
usr_KVsuqnczS89JTbzAgoKn1gGy,Nick Ortiz,[]
usr_NkLLsS7Qo11ovTns3ia5T6uz,Jeffry Hegmann,[]
usr_LwCrj4sVV8NMSKSvsAze2DBj,Anibal MacGyver,[]
usr_3e1oUXG1Rz31VSLmFpNr8Vt1,Riley O'Conner,[]
usr_GCm8BCSPkVXT8w9AgJdog43H,Haywood Wiza,[]
usr_6cwWHdDikorAk5ANFeXG8zwK,Arlette Mann,[]
usr_QLbqC49P2zy6vZeVvPBnfEXW,Wilhemina Renner,[]
usr_454aGMqtp7DLqH2mTDQC2djF,Kendall Ernser,[]
usr_3yZFkmFaNn4zFoQztKsvhwow,Palmira Von,[]
usr_9v3CYCMM6UcrdqVz9qmcySi3,Rueben Hartmann,[]
usr_7cqVdeAFjZJxrZ2vNaKnikuG,Idalia Dare,[]
usr_EG5f8RZgg79A2oqXvAGSkbC4,Anderson Schmeler,[]
usr_5Hx473GCLnP1wweQnhwJqvpX,Glen Nienow,[]
usr_2GkGJhms7amSz367Mvz2TFdk,Amado Baumbach,[]
usr_6WdmU7JxTFd4GnnHPXkR9xH3,Dewitt Willms,[]
usr_JikR2crwCNcZSY1Wbv5eq81o,Verona Ferry,[]
usr_NYFXFCqJXXMEBX6WzMSxpWBN,Hector Hickle,[]
usr_8qCgtG3gpHF6JgxBHqRzvwfj,Stormy Bergstrom,[]
usr_GM8WuUt4q4EdXrorQx4daN9a,Julian Reilly,[]
usr_4UzziRiXQSkt8FGKmwP3V9cH,Mark Skiles,[]
usr_8cHX624K7Q5pyVebBU52iPcG,Alita Spinka,[]
usr_8UAxFKgNKdV3nzgAXqQpW4CE,Delicia Friesen,[]
usr_MszRJ6CEJ6UE75zsfDcBJVtt,Gigi Glover,[]
usr_DhtHGrhJLYnEPj25wHbSoJiH,Miss Lakin,[]
usr_H1BqXrcuHgy1V3rsyQrPYhgB,Wilber Cole,[]
usr_3oAz2tXrFLureaHaD3L916in,Shirley Kuvalis,[]
usr_7gSyStB2X7JXj6bVWStnBMLG,Assunta Daniel,[]
usr_9LKipKpRNL63u5wWNvRf7GDy,Bobby Orn,[]
usr_MWTegSsNgCC7Pi8TnDMZ9eeG,Ted Stehr,[]
usr_9fUxM1taiSzVL9tNcNyz88UX,Carmine Keeling,[]
usr_MdNKpTPw3pnXxmHo4mzRD5TN,Crystle Walsh,[]
usr_4psRQBeR1wTmT3FaeHB2bSK1,Duane Balistreri,[]
usr_ATzX42ZwjLB4Fz2F9ieRu7JM,Jerrold Effertz,[]
usr_LM781Vd6Jr7FzjvsPmRHJLcc,Merle Ratke,[]
usr_BLWtcmGAwJbg1m2bjfSzN9rD,Twila Kohler,[]
usr_9y2m1AaFzy9dvc2gaBEuBuHe,Kenneth Bashirian,[]
usr_FhKENc7riFC7FWUucAUgoEPr,Claretta Nader,[]
usr_EK3errkJowo4w4QSWfDdaVVF,Micheal Langworth,[]
usr_FhPCXQLk2JzCGDVVPFTiWhpa,Luther Rempel,[]
usr_Dci6MbQML6EwFkvRtupiYe88,Nicolle Corwin,[]
usr_8uRSwXJww39JFYcHGnsGaVus,Isabelle Sanford,[]
usr_HGQxfR9FoqZt9cYjxP44T83Y,Edgar Shanahan,[]
usr_J21QS4CJJVVaaQZhqDpEwrYq,Bud Kris,[]
usr_JDoxPTFJU1tEHKYZVb8mTJGP,Tianna Heller,[]
usr_AgrrS4jRnZMMJfv79SyB3rFs,Jessenia Kuphal,[]
usr_BWnXQinqxrKGfcz1ndWCDDvB,Arturo Robel,[]
usr_7TL5ceg1F8wnJbA7aKBXuf4D,Etta Hilll,[]
usr_Npz7Bq5Qu5qeXNv4e3gg9EgB,Colton Johnson,[]
usr_4HejsbuD3PiHj1UnY36TyXtj,Abraham King,[]
usr_AJRnG94sAjLw3nerFXjG7PmD,Conchita Kautzer,[]
usr_ES8bZY4AJSUfv1WBSkSGcHqU,Yoshiko Jenkins,[]
usr_8UDHsTpUEi7dxd2kAgAVULuc,Jackie Mitchell,[]
usr_PraHwQMtpdPnGQa41RZBFGC1,Shawn Denesik,[]
usr_9DVjge2phA3DFpV2yAEKPvM2,Marco Sawayn,[]
usr_9Ue91vc6pKC1Wm5Q1MuAWULh,Elenora Murphy,[]
usr_K9Pi9LvoevYdUjuPwxjrSzG5,Joaquin Smitham,[]
usr_N6mu7B6gUoQAjvvtCSgzG6dm,Rick Hagenes,[]
usr_819CGBqnKspJQi9b7hzuF4cR,Clint Wuckert,[]
usr_NRY1x2fmmRdG91DtAjg8XAhH,Wendy Kshlerin,[]
usr_DNp81Rzx9uubTRbtBFZy59cY,Susann Hirthe,[]
usr_2XTcTJyvv9xFB1E67xuXxtSn,Zetta O'Keefe,[]
usr_M2mX9hy3zUnXxAii1tmakbiE,Elizebeth Schamberger,[]
usr_Nb2rR2isY4cpjtXtu2tawLzH,Jaquelyn Koepp,[]
usr_CoaqnHHLrLKaXDMJ4TVETwzR,Lesli Corkery,[]
usr_7LwVqE5AEyFpT9mEUu4nqJ8S,Wilmer Gleichner,[]
usr_CqFiyHjo2BaCmZ1YW2AH4pvf,Reinaldo Schneider,[]
usr_PhP9qtrQ8ewbRtdQpZdprV64,Tyesha Ledner,[]
usr_6MUDEf74N4h2zQT3c2wkzVLU,Norberto Aufderhar,[]
usr_4jfMVJ3fH4yrR9twSGdBpEcP,Christian Hane,[]
usr_K6eCQRQ1Xy7ZkdL2TiiK86Zm,Dwayne Sauer,[]
usr_CPEuv3heMAS4Vc8x3ZEkH4jA,Hugo Rath,[]
usr_yE4FQhfJXmWsekYy73ojdNYF,Hellen Kovacek,[]
usr_MpSMLjSbTvvz3ekdn1awVMuD,Hillary Schmidt,[]
usr_KdpPbnfba155pdnBkeo5h7bG,Christene Lowe,[]
usr_PjJDvZKLxd7R3A9pC5AMh6gU,Valentin Simonis,[]
usr_EHfEnSrha3hSfoxP2xgtYHDy,Victoria Mohr,[]
usr_64UdLRNmS24PxK4ovfafjoJx,Zola Heathcote,[]
usr_MpfVnfbkuF4We7FTpMzMEt7L,Marcelo Nolan,[]
usr_2hchsiXPpn7L3X8b6zefSCNK,Whitney O'Conner,[]
usr_MA2rY1B5D6Rvvb5KAw2pXAJG,Wally Swift,[]
usr_2j24yUAd5rPdYzY1MWFTsp3w,Sabine Murray,[]
usr_4Hy3Hb7UeLBS9yzNe2YLTUug,Lilla McGlynn,[]
usr_PbNw3qsaMRcZo26W9wtNGSGD,Humberto Gerlach,[]
usr_4epDV4qsAr1J2En16DKY22b7,Lavette McGlynn,[]
usr_p5chGJZ7FeKKVkAKxhZ4n21N,Freddy Quitzon,[]
usr_PHAVW5jL2ViWzmuZnztaBww3,Dario Bauch,[]
usr_8SWSDUohaCWT6iUQVWjf7Tm4,Yong Mosciski,[]
usr_9zYpmaTHYrLcdJ6prLhpdSDy,Eliana Yundt,[]
usr_C936EfRabDPDJ3f95Ntn8j4B,Young Ward,[]
usr_PNaiFp3RiqmEPJSbxuGeDQZS,Sybil Kozey,[]
usr_EgXG6JrerzPLRq1JUv2cSaK6,Ellsworth Gutkowski,[]
usr_9yNXrrTSWaAGRGA64iLpYtJM,Clyde Windler,[]
usr_JNAZDgemp48nqB3bnmpXdCwk,Grover Strosin,[]
usr_CYRZucUx7W5kfJ8tJ8Y9FPCC,Tyrone Fritsch,[]
usr_EFRrKgM2gruj5LPETs3Fgh6D,Kathryne Ferry,[]
usr_5wMc38BtZJeTN3ZzXXZAoLGy,Barney Lang,[]
usr_6xuH3UPeKPv8rprcAsWjagEj,Gwenda Grant,[]
usr_G6vWZR4vDW9Q66SS3V2RDFi1,Bennie Strosin,[]
usr_EgAn3SpCmgbLkQqxYdPUTKLK,Silva Marvin,[]
usr_28A8YeLtBVFak7ut6sxv1GJf,Shaunna Jacobs,[]
usr_2MScku9khox5SiekrfUD46WP,Glenn Block,[]
usr_EUcUoqxFWuTD5qjqw36mbXKy,Mireya Nitzsche,[]
usr_GWzXpSv15aumNbuVrJ8pk1eq,Vincent Purdy,[]
usr_6uw3pdyaaP8GeQUTrFrex2CG,Carli Reynolds,[]
usr_NyRyaECo9kJKvbYA4ox91CFe,Alfred Heller,[]
usr_DBnerVZ5HD3FXVq8gyEXuu17,Carrol Abbott,[]
usr_EtwgGEbFSrPoqoDBUnqQG4wd,Elina Orn,[]
usr_6W2LqQsK8ijbkPNZirv4fj9C,Jolyn Fadel,[]
usr_8KAn21Ubq4LCcBbErReca3SD,Hunter Maggio,[]
usr_4fYo8SccyMNuKdnnWDnDvyZM,Eddie Pouros,[]
usr_FHBGwuCY65bHmASh4rVQndpE,Terrence Little,[]
usr_162FJEqQyuF39iYLEpyvExNM,Norman Block,[]
usr_BZL6rhcLLsUXGUnhFtcg33cr,Kimberlie Tromp,[]
usr_2BxFZWTQ2s1sQ28mbphD9A7b,Joe Blick,[]
usr_33Wo8qmHpvYw77YgnqfKuykT,Richie Langosh,[]
usr_q3zAG5BU7zJvwJjFBWzx74qt,Luciano Ondricka,[]
usr_JCFw6kTTzJsdwgFC3PeEWbs9,Wes Gibson,[]
usr_3Qo86LSf5bsAyY4M5kpwsBCc,Harold Daugherty,[]
usr_Agd132Eh8y3L62HceZ5y3J6A,Rozella Powlowski,[]
usr_HF2j2qAcN4tQXP3VuMkJ8K6h,Arron Ratke,[]
usr_PfqNV4NRwNcqYJLfvexXJESU,Christoper Ritchie,[]
usr_AhoAAZ4QHc37KA6vvRsD7kzQ,Petrina Bashirian,[]
usr_AXDqhbCQn6fwZ18XrYTXkd6c,Albert Hoppe,[]
usr_NGv8hkZmsJFCPFCUW25S43EM,Bobby Feil,[]
usr_4ntrZMcG3CuEzcyZRqY3FKHf,Reyes Sanford,[]
usr_2d6FpYKBaa2bjZukW1XWYHoC,Juan Harvey,[]
usr_PtmornBkikxzTXK5feYVeURy,Rutha Medhurst,[]
usr_BDPcuNAXSEFqGSaa14c1kZWc,Yuk Turner,[]
usr_JeDbYZMCHK93MXb6X2JRqszD,Esteban Kertzmann,[]
usr_EoK6TCNNG6sSsNtFEGQT2Auj,Athena Howe,[]
usr_ES5bw5SbRDXg943zCkm33p7Q,So Pfannerstill,[]
usr_88U9ucYVvNoMKiERNLZdhjWZ,Noelia Baumbach,[]
usr_CjAyYaDkHm9zDd5onuJmN14U,Kristofer Jacobson,[]
usr_A3Pj6jqwetFqEbg2naJ5XN9b,Allen Haag,[]
usr_Lzf5qx7LmZPXDvoZWRh7ogEs,Rickie Boyle,[]
usr_9BaLF73jqmixeNGE66ZhRWqp,Ramiro Stracke,[]
usr_D51HL93ZEjT2jbi3BakdAPq6,Cornell Hettinger,[]
usr_KvRwGkpJchLSK7hXmktwxjye,Adelia West,[]
usr_BN7Rwya1BxYqaRHsWWbXtHhL,Dione Jacobs,[]
usr_BXFF7ePL8fB8exn4SepxmueP,Lucile Mosciski,[]
usr_LMCMb7iEXhoo6zZfA1zZW3nL,Marcene Zieme,[]
usr_Edbu1x16SxQTgEpLha7y9Ut8,Jimmie Kihn,[]
usr_6PeqifsTzAu1YdPHMft2beuT,Ardelle Bartoletti,[]
usr_7HQGPJ4gUk6z796MU21dF65T,Hal Stamm,[]
usr_FXyTpxUqcWA5zmcKD19ScfSh,Liliana Cummerata,[]
usr_2eyu5u3QH1iQtssQDpgZZE4Y,Winford Welch,[]
usr_PGJr19WcmhZDmDri3SbFHWzk,Shonta Lehner,[]
usr_Ki4wxt38KnCrvwA8dfhu3gR2,Yajaira Tromp,[]
usr_3NwQpofyeDEWUAg1R4HQvK8s,Willia Pollich,[]
usr_9xqUJb2tRUGyyWzgmFHwccyw,Joey DuBuque,[]
usr_7v35DEtGLBWv92YjpTpXCZE4,Candis Simonis,[]
usr_6RCjEfpriJKMgpNv49m3SXSL,Sun Grady,[]
usr_F17VMU99HET9YdiP1kZDMgFP,Analisa Mitchell,[]
usr_QJjBKyeg14SwRANAUhuf4DHf,Clarinda Jaskolski,[]
usr_83rNTMqYCtEEcnTQBhAJbecu,Grover Sawayn,[]
usr_Ac7EYNRrFfT1wmbqL7ZeCLAR,Tomas Ruecker,[]
usr_2ELKmXDwT6pUyfG4hNipBHxd,Hester Beier,[]
usr_AcHB8ReRL8k7HKbu6H9VGVM3,Dorian Bruen,[]
usr_6fHGDEWi6P5X9j8RuyNKJeKq,Carlita Jaskolski,[]
usr_6cuJajpE1ZPgS11yYXfJJGcA,Franklin Paucek,[]
usr_P4jy8R9iviS4F5K1cQcgd9CX,Soledad Sanford,[]
usr_kkWwLTgAkFD5j2HYyMiH4FLz,Edda Prosacco,[]
usr_3ea6kj3Rva8PdCHUBidh5XTF,Arturo Littel,[]
usr_5vgsYAMm2bi7npSM5s7gCyaR,Natalia Runte,[]
usr_MGRSJxCYffrDAYs238xJstA7,Tommie Stoltenberg,[]
usr_PgV5P4KBgthwQUrup5Bs1NjL,Louis Runte,[]
usr_2R3P5ypcUEBhUcQj599W7cYJ,Chaya Medhurst,[]
usr_MQ346vx39YiJxoT4UcH7phts,Rosalba Green,[]
usr_2bbpx4zyaCphU7RQCJArCAWr,Colleen Hettinger,[]
usr_GyNPJKXPKYJFGTPLe1zJMgiD,Keri Mitchell,[]
usr_966EzSZ1mR7jtb2QrfL8QJDT,Leota Marks,[]
usr_8QRmr3QW6zTsaqYBkQw1TXhG,Gisela Zemlak,[]
usr_NqUuNKLZMJVDKnW5QRaLHvLz,Morton Wolff,[]
usr_F17YeXf1pARy3scx3VFtxGEJ,Venessa Gorczany,[]
usr_DvfqBoqTawZWwAifySowmE4K,Ismael Hintz,[]
usr_4axTn89eC4C4QpfYViWd27dt,Caroyln Kshlerin,[]
usr_8eGCAtKNujS2jjk324pXK6hD,Mckinley Watsica,[]
usr_Pb1mzLV5nTCksV9SsUuDSnjL,Markus Brekke,[]
usr_L9yoHrTda2ZFwVCZb7orYrzW,Juan Stoltenberg,[]
usr_ARX5WFHkD4xDQjzfhSJKcubt,Olevia Greenholt,[]
usr_9iN7WafHf5KPCn26yZaAdQTQ,Manuela Hudson,[]
usr_81vHNqoL9emzupJSeKGoFt5a,Ray Runolfsdottir,[]
usr_7uEJadxPvk2r7Shu2hi8VWjj,Wai Ernser,[]
usr_GpVL3A4SA7kS9oerh2b4JNHQ,Annelle Daugherty,[]
usr_GYvV56TX2V9DgVb5cu3eEZVA,Galen Kub,[]
usr_EQGHXbyaAm2acSSxGS5yjt88,Ozzie Kris,[]
usr_AfoBLCKqbTrV5UwyaqFsR7Gv,Phylicia Terry,[]
usr_3JR5YWgaoNe9XKwmsfX5xPsP,Wynell Stiedemann,[]
usr_H9cEV4BgvCn7pZsCN2ZzhNsD,Ariel Harvey,[]
usr_2w13rLWsy51vZwJdeBf6wPnN,Ismael Blick,[]
usr_8NSUYMf8DhaoGXqz66c4W5WD,Vickie Mayert,[]
usr_9FD2ixArJcFFFmRyiTPxMMZ4,Robyn Koss,[]
usr_8ax7AYrPo6RayJ6TycvxxNLt,Elouise Smith,[]
usr_NaHKxMVPrGdDLx7JAucztBGS,Savannah Gulgowski,[]
usr_AyVzPChR81D9VGQZhVYmtnfC,Harland Watsica,[]
usr_Jpric2wUR5aYQW65qU3VxY8i,Brent Strosin,[]
usr_3pYkgjMzZZhgCioE3KkRRZtN,Hollis Kulas,[]
usr_HWANePRDMT7Yu2ZBkmBFZSgF,Amado Mueller,[]
usr_2fdzcQrMH9C6wXiEvJvUUCCu,Kai Witting,[]
usr_5gHiNzMJst8DugwfhVd8wzdr,Christopher Daniel,[]
usr_cDvVwyPw4vA75VkH8eyWW5uc,Rashida Schaefer,[]
usr_9BsSfAhpZkLL4JfNmnGgU6sR,Elvin Will,[]
usr_3TRiFKnvbodrJyCfU5ADVtQt,Chong Brekke,[]
usr_M7HsYFx26X1K66k7k6j77vzp,Cedric Connelly,[]
usr_CfkiHwo9jNUUcrLmFLFeuWgd,Yessenia Gibson,[]
usr_536aJ7fC5xPq9DYsuUErwmLy,Alton Cummerata,[]
usr_DN7CreBmLizb6VKaoA5DsqNt,Shanita Heaney,[]
usr_MeEvjtxHL4Cz81mh49A1CMQJ,Genaro Wiza,[]
usr_9fUah6ki7H794ofwqZY9MDZe,Kelsi Cummerata,[]
usr_DMLiprWTvQ4UoCyRqLS3SAn1,Janise Schulist,[]
usr_62thZ6jdZjBQCP93b26UWFhX,Dara Bayer,[]
usr_EmKUa9AFB8tWknzgYz1vEkw6,Jayson Reichert,[]
usr_MFcMZmwRb76LSdhWx2cK5NVQ,Seymour Mosciski,[]
usr_KYdei1N8aCNRyWkn18fW9xik,Michale Deckow,[]
usr_L8TuZF8bPo8WVQKAFRTAvGNe,Elizabet Williamson,[]
usr_E6rQHoLBxtmLdWkDFBCX43fk,Essie Jacobi,[]
usr_Cyd2zE35xqXdCEBSCoLf9ZZT,Wilhelmina Weimann,[]
usr_FYEC9sLyxdiqpAjPAhiQ1Pp7,Marianne Cruickshank,[]
usr_CQmQzf5M3jQDfVUjPUrauUjt,Eldon Nitzsche,[]
usr_87st3GwTh8jd4Yippeyrh5xu,Deloras Kutch,[]
usr_B4X8Y1z3cPefFkJcjEmJxzaw,Marcos Connelly,[]
usr_4zxZmPKkqXqdiHRjXrzqH6Lm,Taunya Jerde,[]
usr_2hry5ymhSg11LedHaf6ubtR3,Lauren Nikolaus,[]
usr_DqqFgVivmay92SUendERDWzj,Numbers Green,[]
usr_GCxUhSzU1A8MFqYgFCWxfZa2,Jewell DuBuque,[]
usr_J4esvDtjootgRwXQdzHze8VZ,Emmitt D'Amore,[]
usr_5r52rMF3Ei2LM4HZR2gQX6Es,Debrah Littel,[]
usr_CTASE1XGSfZSRHQ4B83X25nQ,Zulema Hintz,[]
usr_C1GLxqHG6JsxVdkUB7WzADQF,Darin Windler,[]
usr_7g3mNTwD7HFQmrEnSEyyGpsJ,Carrol Greenholt,[]
usr_BMz8RYJoKbhuGYCiUf41PDiE,Carol Hammes,[]
usr_7p4XwVKVcJzAmY2ySxTMkq3z,Brigida Hoeger,[]
usr_8bUVs3BTa8k6niGJFSi44iwc,Florencia Jones,[]
usr_LZXGs7H5Lqm9Bn22Bjm1zqxf,Lavern Stokes,[]
usr_6GnB2dS2sykT9LFnNUJyBege,Jamie Langworth,[]
usr_BYKgueGTqierBcovrRW2BLUH,Leilani Wyman,[]
usr_DVfRMsEeyJa75EAwYoHtCbSK,Nettie Kris,[]
usr_KXZxc9FLu19Aq2ocApHNXRKW,Bettina Beier,[]
usr_J5ec1GUZK79fLTZZuAgJLdV8,Deidra Maggio,[]
usr_DSdPm61aoQgA8hTWTkF7hAZx,Luna Bosco,[]
usr_N9mEhGPYqDF8TtVXLR4dMcGc,Alyce Lockman,[]
usr_HjNaJcUmUhr6XWBvzqG1z3mP,Krystin Hagenes,[]
usr_KbeRMf7nbuW8TajrtjRKrAY6,Virgil Ondricka,[]
usr_AJqLe3EvM6FzoJebosBmFn58,Bruna Yost,[]
usr_LQSNw3c3S2gx2KqS151hLmYk,Carmelo Windler,[]
usr_LRJkKd1CKUQxkxX7qJP8zArE,Edmond Parisian,[]
usr_646tSxdb4mVXtrU7uwXQeQuV,Ervin Kling,[]
usr_Ejd5f6UbwRnS9cPHdha2UrPZ,Horacio Braun,[]
usr_6EfrHkYFDofK5ZNqid3JjQCw,Buck Wiegand,[]
usr_9C8Ae2eGHwrCcL1kdxngfGqV,Gilda Heller,[]
usr_JwUM1NN7E24bPAZ5sryUbkbP,Phillip Schmeler,[]
usr_GCYn1Dxw32JR9fVaLwWc1CkM,Glynda Brown,[]
usr_L2GsD2G8mz7XFQCWvB13Wx7w,Burt Leffler,[]
usr_K5de6D37t1VCCN4qDn2tqcMU,Brenton Altenwerth,[]
usr_9CWJbbZ4pwEfaDxt98v9schZ,Lillian Halvorson,[]
usr_KWiCYXs3WqvpsNRk3U7WBJ4v,Renna Crona,[]
usr_H6qP1GJWiwqdanUv6SMqZPN1,Russel McClure,[]
usr_NXPvAxByUAuYfUo6MSD2rs9w,Chong Schneider,[]
usr_H9R5bbBrwc2H2sWMrDtbEVPv,Brendan Gutmann,[]
usr_Goh1FcQDVxpD39fxxDCjruE6,Ali Pollich,[]
usr_5gyePyXsjyqQWgLvuo8kmv1L,Fermin Beahan,[]
usr_2FBTeCiCgAoUgsCpDWb65gHS,Luise Fritsch,[]
usr_Mbo3fd7cpvqLx5mg3WLVMecu,Abram Ortiz,"[{""organizationId"":""org_7iqG5V1pEWBPnNQDbBKcCKt9"",""title"":""Forward Accountability Executif""}]"
usr_F6kSkxSkovJQST7hSSSCYQHb,Florentino Abernathy,"[{""organizationId"":""org_7iqG5V1pEWBPnNQDbBKcCKt9"",""title"":""Dynamic Branding Developpeur""}]"

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_5E9Nu5i6wQHEJ9dkFnaNEWf2 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "3nZceyHnZwSjt5EYXVWFt45J"

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_DBNtgfraidfKfKFJ7Dsav565
ETag: "2KD1B3ManBFp1Lqag5CNwysQ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 524

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505618939,
  "expired" : 1711592018937,
  "exportOperation" : "createUserExport",
  "id" : "exp_5E9Nu5i6wQHEJ9dkFnaNEWf2",
  "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
  "jobOperation" : "purgeExport",
  "searchQuery" : "",
  "size" : 34772,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 732,
  "updated" : 1711505619769,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_8AwTDXEKn8FCBe9jPADyoEvA&items.id=exp_8AwTDXEKn8FCBe9jPADyoEvA&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.userId optional The filter value(s) for the userId field.
items.adminUser optional The filter value(s) for the adminUser field.
items.exportOperation optional The filter value(s) for the exportOperation field.
items.totalItems optional The filter value(s) for the totalItems field.
items.size optional The filter value(s) for the size field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
items.expired optional The filter value(s) for the expired field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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" : 1711505629270,
    "expired" : 1711592029269,
    "exportOperation" : "createUserExport",
    "id" : "exp_8AwTDXEKn8FCBe9jPADyoEvA",
    "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
    "jobOperation" : "exportEntities",
    "searchQuery" : "",
    "size" : 0,
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "totalItems" : 0,
    "updated" : 1711505629270,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
  } ],
  "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_DrcPL3Ce5vZ2hRbm6BM1DfDQ&items.id=exp_DrcPL3Ce5vZ2hRbm6BM1DfDQ&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 167

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{name}}",
  "expired" : 1711592009956
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.userId optional The filter value(s) for the userId field.
items.adminUser optional The filter value(s) for the adminUser field.
items.exportOperation optional The filter value(s) for the exportOperation field.
items.totalItems optional The filter value(s) for the totalItems field.
items.size optional The filter value(s) for the size field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
items.expired optional The filter value(s) for the expired field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_EFqjtxCYbGtVyttraBDVisbZ
ETag: "4qgtYSUJt1t8nA9CAykKsoQ2"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 582

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505609959,
  "expired" : 1711592009956,
  "exportOperation" : "createExportExport",
  "id" : "exp_PuFUYb38dSTzJPnsYqzKvrw7",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=exp_DrcPL3Ce5vZ2hRbm6BM1DfDQ&items.id=exp_DrcPL3Ce5vZ2hRbm6BM1DfDQ&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505609959,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_97DUvrb5NoHGrLty6sj5n1bG/groups HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 1083

{
  "name" : "Managed intermediate policy",
  "description" : "Apt. 456, 4035 Impasse d'Abbeville, 20763 Saint-Pierre",
  "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" ],
  "templateSelectionMode" : "list",
  "allowedTemplates" : [ "wtm_ExQN9q5VXXa4WhHmcjZdbft2" ],
  "layoutSelectionMode" : "listOrNull",
  "allowedLayouts" : [ "lay_6ZmPhCj17DUxa7DpEtb8k9Ca" ],
  "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_EQZSuNjU21kVbV9Exsn9NS5J
ETag: "9JMVVW3gp74YrXAtrkHB4FC6"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1252

{
  "allowedLayouts" : [ "lay_6ZmPhCj17DUxa7DpEtb8k9Ca" ],
  "allowedTemplates" : [ "wtm_ExQN9q5VXXa4WhHmcjZdbft2" ],
  "createUserAuthorizedGroups" : [ ],
  "createWorkflowAuthorizedGroups" : [ ],
  "created" : 1711505354680,
  "deleteUserAuthorizedGroups" : [ ],
  "deleteWorkflowAuthorizedGroups" : [ ],
  "description" : "Apt. 456, 4035 Impasse d'Abbeville, 20763 Saint-Pierre",
  "hideWorkflowRecipients" : false,
  "id" : "grp_D5TyDSEBozNmRBt5vdVwUDDC",
  "isDefault" : false,
  "isDisabled" : false,
  "layoutSelectionMode" : "listOrNull",
  "name" : "Managed intermediate policy",
  "templateSelectionMode" : "list",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updateUserAuthorizedGroups" : [ ],
  "updateWorkflowAuthorizedGroups" : [ ],
  "updated" : 1711505354680,
  "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer" ],
  "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_Ho6dHeApprVuv9Avjxa9kWJx HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "5uFjPkzaed3X65Zb5ukEiwEZ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1692

{
  "allowedLayouts" : [ ],
  "allowedTemplates" : [ ],
  "createUserAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "createWorkflowAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "created" : 1711505181097,
  "deleteUserAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "deleteWorkflowAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "description" : "1 étage, 4216 Quai Saint-Denis, 76730 Nancy",
  "hideWorkflowRecipients" : false,
  "id" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
  "isDefault" : false,
  "isDisabled" : false,
  "layoutSelectionMode" : "anyOrNull",
  "name" : "Intuitive dynamic collaboration",
  "templateSelectionMode" : "anyOrNull",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updateUserAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "updateWorkflowAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "updated" : 1711505181097,
  "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer" ],
  "viewUserAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "viewWorkflowAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ]
}

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_Q2MUqcfyKWoTfgoF3mjE1FQy HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "Dxm92DXpLqXvroAFWktmWJ4W"
Content-Type: application/json
Content-Length: 1084

{
  "name" : "Monitored empowering pricing structure",
  "description" : "33 Boulevard de Tilsitt, 14803 Nanterre",
  "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" ],
  "templateSelectionMode" : "listOrNull",
  "allowedTemplates" : [ "wtm_Nx6WLyBawPt8aEnGcLkw2wY3" ],
  "layoutSelectionMode" : "anyOrNull",
  "allowedLayouts" : [ "lay_K4LzkJ2DQwG2htEQmGNh72gT" ],
  "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_4azXs8MXnS1T3ZqDSUTDsyRY
ETag: "J48nBPGiA9K9i7BnQvEjtLqG"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1281

{
  "allowedLayouts" : [ ],
  "allowedTemplates" : [ "wtm_Nx6WLyBawPt8aEnGcLkw2wY3" ],
  "createUserAuthorizedGroups" : [ ],
  "createWorkflowAuthorizedGroups" : [ ],
  "created" : 1711505357863,
  "deleteUserAuthorizedGroups" : [ ],
  "deleteWorkflowAuthorizedGroups" : [ ],
  "description" : "33 Boulevard de Tilsitt, 14803 Nanterre",
  "hideWorkflowRecipients" : false,
  "id" : "grp_Q2MUqcfyKWoTfgoF3mjE1FQy",
  "isDefault" : false,
  "isDisabled" : false,
  "jobOperation" : "refreshWorkflowsViewAuthorizedGroups",
  "layoutSelectionMode" : "anyOrNull",
  "name" : "Monitored empowering pricing structure",
  "templateSelectionMode" : "listOrNull",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updateUserAuthorizedGroups" : [ ],
  "updateWorkflowAuthorizedGroups" : [ ],
  "updated" : 1711505357891,
  "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer" ],
  "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_5KuU7ojvBPnE7651142x9P3i HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "5LsLGhHLYPkaKte8DPw3KNmY"

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_EBmFN17SAXf32XnUTeaRe18X
ETag: "8tw5a233jepp7NojTcb9KA7S"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1741

{
  "allowedLayouts" : [ ],
  "allowedTemplates" : [ ],
  "createUserAuthorizedGroups" : [ "grp_5KuU7ojvBPnE7651142x9P3i", "grp_Ev1LqnfvFpQwYiPrzzHYUhgx" ],
  "createWorkflowAuthorizedGroups" : [ "grp_5KuU7ojvBPnE7651142x9P3i", "grp_Ev1LqnfvFpQwYiPrzzHYUhgx" ],
  "created" : 1711505366118,
  "deleteUserAuthorizedGroups" : [ "grp_5KuU7ojvBPnE7651142x9P3i", "grp_Ev1LqnfvFpQwYiPrzzHYUhgx" ],
  "deleteWorkflowAuthorizedGroups" : [ "grp_5KuU7ojvBPnE7651142x9P3i", "grp_Ev1LqnfvFpQwYiPrzzHYUhgx" ],
  "description" : "7 Boulevard de Solférino, 51322 Montreuil",
  "hideWorkflowRecipients" : false,
  "id" : "grp_5KuU7ojvBPnE7651142x9P3i",
  "isDefault" : false,
  "isDisabled" : false,
  "jobOperation" : "purgeGroup",
  "layoutSelectionMode" : "anyOrNull",
  "name" : "Switchable 4th generation artificial intelligence",
  "templateSelectionMode" : "anyOrNull",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updateUserAuthorizedGroups" : [ "grp_5KuU7ojvBPnE7651142x9P3i", "grp_Ev1LqnfvFpQwYiPrzzHYUhgx" ],
  "updateWorkflowAuthorizedGroups" : [ "grp_5KuU7ojvBPnE7651142x9P3i", "grp_Ev1LqnfvFpQwYiPrzzHYUhgx" ],
  "updated" : 1711505366169,
  "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer" ],
  "viewUserAuthorizedGroups" : [ "grp_5KuU7ojvBPnE7651142x9P3i", "grp_Ev1LqnfvFpQwYiPrzzHYUhgx" ],
  "viewWorkflowAuthorizedGroups" : [ "grp_5KuU7ojvBPnE7651142x9P3i", "grp_Ev1LqnfvFpQwYiPrzzHYUhgx" ]
}

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=Intuitive%20dynamic%20collaboration&items.id=grp_Ho6dHeApprVuv9Avjxa9kWJx&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.isDefault optional The filter value(s) for the isDefault field.
items.name optional The filter value(s) for the name field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.userRoles optional The filter value(s) for the userRoles field.
items.viewUserAuthorizedGroups optional The filter value(s) for the viewUserAuthorizedGroups field.
items.createUserAuthorizedGroups optional The filter value(s) for the createUserAuthorizedGroups field.
items.updateUserAuthorizedGroups optional The filter value(s) for the updateUserAuthorizedGroups field.
items.deleteUserAuthorizedGroups optional The filter value(s) for the deleteUserAuthorizedGroups field.
items.viewWorkflowAuthorizedGroups optional The filter value(s) for the viewWorkflowAuthorizedGroups field.
items.createWorkflowAuthorizedGroups optional The filter value(s) for the createWorkflowAuthorizedGroups field.
items.updateWorkflowAuthorizedGroups optional The filter value(s) for the updateWorkflowAuthorizedGroups field.
items.deleteWorkflowAuthorizedGroups optional The filter value(s) for the deleteWorkflowAuthorizedGroups field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 1820

{
  "items" : [ {
    "allowedLayouts" : [ ],
    "allowedTemplates" : [ ],
    "createUserAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "createWorkflowAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "created" : 1711505181097,
    "deleteUserAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "deleteWorkflowAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "description" : "1 étage, 4216 Quai Saint-Denis, 76730 Nancy",
    "hideWorkflowRecipients" : false,
    "id" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
    "isDefault" : false,
    "isDisabled" : false,
    "layoutSelectionMode" : "anyOrNull",
    "name" : "Intuitive dynamic collaboration",
    "templateSelectionMode" : "anyOrNull",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updateUserAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "updateWorkflowAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "updated" : 1711505181097,
    "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer" ],
    "viewUserAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "viewWorkflowAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ]
  } ],
  "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=Intuitive%20dynamic%20collaboration&items.id=grp_Ho6dHeApprVuv9Avjxa9kWJx&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 186

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{name}},{{json userRoles}}",
  "expired" : 1711591751265
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.isDefault optional The filter value(s) for the isDefault field.
items.name optional The filter value(s) for the name field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.userRoles optional The filter value(s) for the userRoles field.
items.viewUserAuthorizedGroups optional The filter value(s) for the viewUserAuthorizedGroups field.
items.createUserAuthorizedGroups optional The filter value(s) for the createUserAuthorizedGroups field.
items.updateUserAuthorizedGroups optional The filter value(s) for the updateUserAuthorizedGroups field.
items.deleteUserAuthorizedGroups optional The filter value(s) for the deleteUserAuthorizedGroups field.
items.viewWorkflowAuthorizedGroups optional The filter value(s) for the viewWorkflowAuthorizedGroups field.
items.createWorkflowAuthorizedGroups optional The filter value(s) for the createWorkflowAuthorizedGroups field.
items.updateWorkflowAuthorizedGroups optional The filter value(s) for the updateWorkflowAuthorizedGroups field.
items.deleteWorkflowAuthorizedGroups optional The filter value(s) for the deleteWorkflowAuthorizedGroups field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_C9jrJZjEZ5ES1cmr4BL4Xmiw
ETag: "5RAnSv42R7HfrCPTpk6cX8u6"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 603

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505351267,
  "expired" : 1711591751265,
  "exportOperation" : "createGroupExport",
  "id" : "exp_9zF6TdVEZMFM36qbyZ8m4s5x",
  "itemTemplate" : "{{id}},{{name}},{{json userRoles}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Intuitive+dynamic+collaboration&items.id=grp_Ho6dHeApprVuv9Avjxa9kWJx&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505351267,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_M8CGpBV2CD8DJwg3TuN5weVT&items.id=log_M8CGpBV2CD8DJwg3TuN5weVT&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.entityId optional The filter value(s) for the entityId field.
items.tenantId optional The filter value(s) for the tenantId field.
items.groupId optional The filter value(s) for the groupId field.
items.userId optional The filter value(s) for the userId field.
items.adminUser optional The filter value(s) for the adminUser field.
items.operation optional The filter value(s) for the operation field.
items.duration optional The filter value(s) for the duration field.
items.errorCode optional The filter value(s) for the errorCode field.
items.appVersion optional The filter value(s) for the appVersion field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 1219

{
  "items" : [ {
    "appVersion" : "sgs-wm-webapp:1.11.0-RC4",
    "created" : 1711505699138,
    "duration" : 2,
    "entityId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
    "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_Ho6dHeApprVuv9Avjxa9kWJx",
    "id" : "log_M8CGpBV2CD8DJwg3TuN5weVT",
    "operation" : "updateUser",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505699138,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
    "variables" : {
      "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
      "httpRequest" : "PATCH /api/users/usr_5LAg5dbXi2uzWVAyqkC9uYRH\nX-Forwarded-For: 127.0.0.1\nWebTestClient-Request-Id: 9231\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.

# Metadata

# Retrieve metadata mapping

Retrieve the metadata mapping for a tenant.

# HTTP request

GET /api/tenants/ten_2XhEe9trtuaLrGysGDcVWs45/dataMapping HTTP/1.1
Authorization: Bearer act_EQWxpumjEEv24DvgZnwGG9zP.5AtsErZKvTFWkxKaJbvrqivmWSGvnUUndy9xBbyXwjoN4xwPZzrunfG5gG8GjQLc

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_3WYpc35MEXVPKveeRq8fvSu2/dataMapping HTTP/1.1
Authorization: Bearer act_78uiy7CumtAjRhevi7ZDE9fA.5FkUvTjBZ4HjkRWKABnBP6d1aWijP7MReSxtPzt4dAxgkR56WnCTpHsPxGfgSsVj
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_BUnPyBjLLDuEPYYgjf7SPn8g
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_7akm51EZHmDzeYyNSFbXBN9k HTTP/1.1
Authorization: Bearer act_BAHepoJfyF9YKq2kL6KGSr6u.36pEEZJe62aTTmcoTxpShaVEPPpajsWrJNrVQ2ewoH34v7V6Bih3McrBA42EgHz4

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: "6aUXzmM9zfJvxQC6td7cqEip"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 819

{
  "created" : 1711505586053,
  "creator" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "creatorName" : "Bobbie Swaniawski",
  "creatorPictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "eventType" : "recipientInvite",
  "id" : "not_7akm51EZHmDzeYyNSFbXBN9k",
  "isUnread" : true,
  "linkUrl" : "https://hane.info/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJ1c2VySWQiOiJ1c3JfTWJvM2ZkN2NwdnFMeDVtZzNXTFZNZWN1IiwiaWF0IjoxNzExNTA1N...",
  "preferredLocale" : "fr",
  "stepType" : "signature",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505586089,
  "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu",
  "workflowId" : "wfl_HxU3XKhkMu1K2tRSSmnjgtXa",
  "workflowName" : "Intelligent Leather Lamp"
}

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_4q2d9FNjppYqeEpinZ6q24SQ HTTP/1.1
Authorization: Bearer act_BAHepoJfyF9YKq2kL6KGSr6u.36pEEZJe62aTTmcoTxpShaVEPPpajsWrJNrVQ2ewoH34v7V6Bih3McrBA42EgHz4
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_CUpHkaqgWuJ5ZxggAm8EmpNe
ETag: "3cXif2NcnLyh5WuYTssBnZYR"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 823

{
  "created" : 1711505600185,
  "creator" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "creatorName" : "Bobbie Swaniawski",
  "creatorPictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "eventType" : "recipientInvite",
  "id" : "not_4q2d9FNjppYqeEpinZ6q24SQ",
  "isUnread" : false,
  "linkUrl" : "https://hane.info/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJ1c2VySWQiOiJ1c3JfTWJvM2ZkN2NwdnFMeDVtZzNXTFZNZWN1IiwiaWF0IjoxNzExNTA1N...",
  "preferredLocale" : "fr",
  "stepType" : "signature",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505600584,
  "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu",
  "workflowId" : "wfl_Kgr8zNV1hFzhcXbP8jsAar7V",
  "workflowName" : "Synergistic Rubber Keyboard"
}

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_BSPRWMQFvo3yjiAPfYBpQB7Q&items.id=not_GSAADND9cfNSoiXs7ACfKKmn&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_BAHepoJfyF9YKq2kL6KGSr6u.36pEEZJe62aTTmcoTxpShaVEPPpajsWrJNrVQ2ewoH34v7V6Bih3McrBA42EgHz4

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.userId optional The filter value(s) for the userId field.
items.email optional The filter value(s) for the email field.
items.creator optional The filter value(s) for the creator field.
items.workflowId optional The filter value(s) for the workflowId field.
items.eventType optional The filter value(s) for the eventType field.
items.isUnread optional The filter value(s) for the isUnread field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 925

{
  "items" : [ {
    "created" : 1711505183404,
    "creator" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
    "creatorName" : "Bobbie Swaniawski",
    "creatorPictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
    "eventType" : "recipientInvite",
    "id" : "not_GSAADND9cfNSoiXs7ACfKKmn",
    "isUnread" : true,
    "linkUrl" : "https://hane.info/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJ1c2VySWQiOiJ1c3JfTWJvM2ZkN2NwdnFMeDVtZzNXTFZNZWN1IiwiaWF0IjoxNzExNTA1M...",
    "preferredLocale" : "fr",
    "stepType" : "signature",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505183644,
    "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu",
    "workflowId" : "wfl_BSPRWMQFvo3yjiAPfYBpQB7Q",
    "workflowName" : "Small Iron Table"
  } ],
  "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_H1NwEC4LdGSpTTv2BXyQ7jju&items.id=not_7mSFM32R6UfBM1fyVzdKbTf6 HTTP/1.1
Authorization: Bearer act_BAHepoJfyF9YKq2kL6KGSr6u.36pEEZJe62aTTmcoTxpShaVEPPpajsWrJNrVQ2ewoH34v7V6Bih3McrBA42EgHz4

Headers:

Name Description
Authorization A valid access token or admin credentials.

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.userId optional The filter value(s) for the userId field.
items.email optional The filter value(s) for the email field.
items.creator optional The filter value(s) for the creator field.
items.workflowId optional The filter value(s) for the workflowId field.
items.eventType optional The filter value(s) for the eventType field.
items.isUnread optional The filter value(s) for the isUnread field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional 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_97DUvrb5NoHGrLty6sj5n1bG/organizations HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 152

{
  "name" : "Pierre SARL",
  "organizationIdentifier" : "FR5957785385",
  "additionalInfo" : "761 Allée, Voie du Chat-qui-Pêche, 74868 Montpellier"
}

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_2527A5U3NApjfUSa4hLBXrNx
ETag: "88gyBfXjM1HNNoR5EyrHZTs3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 298

{
  "additionalInfo" : "761 Allée, Voie du Chat-qui-Pêche, 74868 Montpellier",
  "created" : 1711505346524,
  "id" : "org_Jr2zmFW5Qb3SMeZuD77pH4r5",
  "name" : "Pierre SARL",
  "organizationIdentifier" : "FR5957785385",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505346524
}

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_7iqG5V1pEWBPnNQDbBKcCKt9 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Path parameters:

/api/organizations/{organizationId}

Parameter Description
organizationId 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: "4RKDH69enpHYt53DhvhSHvhn"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 293

{
  "additionalInfo" : "Apt. 619, 4019 Rue Molière, 10985 Colombes",
  "created" : 1711505180684,
  "id" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
  "name" : "Prévost et Carre",
  "organizationIdentifier" : "FR6449781238",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505180684
}

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_9MqGXWttsSsbw7gr9SK4k1M4 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "HEippWTaX78wKtTMgiNMwxBk"
Content-Type: application/json
Content-Length: 135

{
  "name" : "Meyer SARL",
  "organizationIdentifier" : "FR3365624376",
  "additionalInfo" : "77 Impasse de Provence, 64314 Créteil"
}

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_LQp5zp6BB7tPLduVEK1KA6c7
ETag: "ErbdSLHt8ykUunoVgy91rr8u"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 281

{
  "additionalInfo" : "77 Impasse de Provence, 64314 Créteil",
  "created" : 1711505338235,
  "id" : "org_9MqGXWttsSsbw7gr9SK4k1M4",
  "name" : "Meyer SARL",
  "organizationIdentifier" : "FR3365624376",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505338259
}

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_5wdx6qLWVomdZ1c93v1vbyJ3 HTTP/1.1
Authorization: Bearer act_ABheSxK8KLxh5xRLAVcYii58.5ErXm3ot9qR1dVtn8VLaV6niGhYsadFiaWgAwg9PfEKsMdQCfVHddoZeUTg16Toa
If-Match: "GF8243DgbNxW9CkyeTzXXtB5"

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_PeTXpMUa5CV9eWqbkvKSGevX
ETag: "5Yhe5Qcf6wmnjXiAJQUJCYiN"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 344

{
  "additionalInfo" : "Apt. 044, 1 Impasse de la Huchette, 77718 Fort-de-France",
  "created" : 1711505348657,
  "id" : "org_5wdx6qLWVomdZ1c93v1vbyJ3",
  "jobOperation" : "purgeOrganization",
  "name" : "Royer et Masson",
  "organizationIdentifier" : "FR2296749863",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505348686
}

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=Barre%20et%20Carre&items.id=org_MccQ8AyQ9tHSz3ZBe8GN3pmd&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.name optional The filter value(s) for the name field.
items.organizationIdentifier optional The filter value(s) for the organizationIdentifier field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 394

{
  "items" : [ {
    "additionalInfo" : "7 étage, 6629 Place Pastourelle, 86352 Tourcoing",
    "created" : 1711505347551,
    "id" : "org_MccQ8AyQ9tHSz3ZBe8GN3pmd",
    "name" : "Barre et Carre",
    "organizationIdentifier" : "FR2101732413",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505347551
  } ],
  "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=Pr%C3%A9vost%20et%20Carre&items.id=org_7iqG5V1pEWBPnNQDbBKcCKt9&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 167

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{name}}",
  "expired" : 1711591745838
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.name optional The filter value(s) for the name field.
items.organizationIdentifier optional The filter value(s) for the organizationIdentifier field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_2ixL9Cqs5dUDYVBbJafZ6KXf
ETag: "24okcNKmhWyiBpzrkwAtLcPp"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 581

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505345841,
  "expired" : 1711591745838,
  "exportOperation" : "createOrganizationExport",
  "id" : "exp_GkZwNt4nnBJcrJsJ8yJF1Pak",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Pr%C3%A9vost+et+Carre&items.id=org_7iqG5V1pEWBPnNQDbBKcCKt9&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505345841,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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: "5rM92xMxwNYDowwCLrQN4Wyv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 262373

{
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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."
    }
  },
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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" : [ "en" ],
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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.

# Retrieve tenant settings

Retrieve the settings for a tenant.

# HTTP request

GET /api/tenants/ten_XFL9goYdsts9b2PmUvoLMM9c/settings HTTP/1.1
Authorization: Bearer act_7CARgsrm3GX6ggQUWRgQg1G3.5mz6UKgwEzcv1jZdMbnW14ZXLJxEETUoYpMdA3fAYx4yA6CgFW7uM2dA6cyZWYtq

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: "8mxGKUAjnmacjGioGFqQ9fmZ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 131769

{
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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."
    }
  },
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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.

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_97DUvrb5NoHGrLty6sj5n1bG/appliedSettings HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "5rM92xMxwNYDowwCLrQN4Wyv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 262373

{
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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."
    }
  },
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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" : [ "en" ],
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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.

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_C5fMzBH2Z4DV2P7i1qCTTUv8/settings HTTP/1.1
Authorization: Bearer act_Q8zJrSgXT2PHGMsh6CPaGLJJ.383zWoH5RXX6QpcLkGt5JDCH9BQNqTb1kwBxETrR4PodZ57woxooPjqMSTDqhgaR
Content-Type: application/json
Content-Length: 131769

{
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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"
    }
  }
}

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.

# HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_DLg1Q1YHHudH45kUWYt49UG3
ETag: "8mxGKUAjnmacjGioGFqQ9fmZ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 131769

{
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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."
    }
  },
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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.

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_8Qw4DLHh2YqdYLwHNyiMEieV/settings HTTP/1.1
Authorization: Bearer act_CjpXTgQUjapg7PhzaxGQU5aA.oi9V4KReg7i2tJa3jwHh8o5ai5Zp96ncTqj7EHqrQHaqjEpeGVC21r7u19uwGQSy

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: "8mxGKUAjnmacjGioGFqQ9fmZ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 131769

{
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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."
    }
  },
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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.

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_5LAg5dbXi2uzWVAyqkC9uYRH/appliedSettings HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "5rM92xMxwNYDowwCLrQN4Wyv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 262373

{
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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."
    }
  },
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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" : [ "en" ],
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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.

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_2YvjPLhv3vZu4o49hjeGmDEb/settings HTTP/1.1
Authorization: Bearer act_jGWUCpR95U1SxikNq7P1uBZr.5QtLrDhEPtivSwziz8orTKLNJKzRMHr5VnunYyMMBMvaA5cy4g2qcofWXRbMFAFF
Content-Type: application/json
Content-Length: 131769

{
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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"
    }
  }
}

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.

# HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_L2KpQBoS3tdEZgEzMfNL55ea
ETag: "8mxGKUAjnmacjGioGFqQ9fmZ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 131769

{
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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."
    }
  },
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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.

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_2dg4LboWQqvz8u5uqf9bGtiC/settings HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: 262340

{
  "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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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                                      &rarr;\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"
    }
  }
}

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.

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.

# Signature profiles

# Create signature profile

Create a new signature profile.

# HTTP request

POST /api/tenants/ten_97DUvrb5NoHGrLty6sj5n1bG/signatureProfiles HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 870

{
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Realistic fiction",
  "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_8KA24Xsh8PBW1DCwC97DugR9
ETag: "DCaDBiGNnsQgPjoz8ycjeK6F"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1016

{
  "created" : 1711505707888,
  "documentType" : "pdf",
  "forceScrollDocument" : true,
  "id" : "sip_JxExbzMkfgtuDdGttDpwGjje",
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Realistic fiction",
  "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_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505707888
}

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_FMoXUyYL7grJdPYzzxY38m3o HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Path parameters:

/api/signatureProfiles/{signatureProfileId}

Parameter Description
signatureProfileId 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: "CmVnthNbjvMFyX7LMzDfetgK"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1113

{
  "created" : 1711505180312,
  "documentType" : "pdf",
  "forceScrollDocument" : true,
  "id" : "sip_FMoXUyYL7grJdPYzzxY38m3o",
  "isDefault" : false,
  "isDisabled" : false,
  "name" : "Narrative nonfiction",
  "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_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505180312
}

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_BUEtep5vf94rRFiVrDP3oEQ9 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "BNguDB6KTJyZU4ieFAtdL2zJ"
Content-Type: application/json
Content-Length: 844

{
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Realistic fiction",
  "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 consent page.

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_866YPVApnzjdWWfgpH3Nk6ri
ETag: "6BXwX9LKPtiFiqrwqmv4g7u2"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1016

{
  "created" : 1711505701128,
  "documentType" : "pdf",
  "forceScrollDocument" : true,
  "id" : "sip_BUEtep5vf94rRFiVrDP3oEQ9",
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Realistic fiction",
  "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_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505701148
}

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=Narrative%20nonfiction&items.id=sip_FMoXUyYL7grJdPYzzxY38m3o&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.isDefault optional The filter value(s) for the isDefault field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.name optional The filter value(s) for the name field.
items.documentType optional The filter value(s) for the documentType field.
items.signatureType optional The filter value(s) for the signatureType field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 1239

{
  "items" : [ {
    "created" : 1711505180312,
    "documentType" : "pdf",
    "forceScrollDocument" : true,
    "id" : "sip_FMoXUyYL7grJdPYzzxY38m3o",
    "isDefault" : false,
    "isDisabled" : false,
    "name" : "Narrative nonfiction",
    "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_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505180312
  } ],
  "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=Narrative%20nonfiction&items.id=sip_FMoXUyYL7grJdPYzzxY38m3o&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 167

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{name}}",
  "expired" : 1711592109303
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.isDefault optional The filter value(s) for the isDefault field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.name optional The filter value(s) for the name field.
items.documentType optional The filter value(s) for the documentType field.
items.signatureType optional The filter value(s) for the signatureType field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_2aUcSEuTXXPWrQ1ShewMYeau
ETag: "A8J2GLrmswMTT8cvGcuiD1n3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 584

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505709305,
  "expired" : 1711592109303,
  "exportOperation" : "createSignatureProfileExport",
  "id" : "exp_MJY9h8EQSxC6pBWBKAAWm8Pz",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Narrative+nonfiction&items.id=sip_FMoXUyYL7grJdPYzzxY38m3o&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505709305,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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 YWRtaW46RWZnblJvdnFWMm82aGdEZnlvTXEyOGpF
Content-Type: application/json
Content-Length: 1195

{
  "domainName" : "bode.io",
  "idpType" : "google",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpScope" : "openid email profile",
  "idpClientId" : "2721",
  "idpClientSecret" : "52Y1e6NvCxVYXFMMj2Lwx3FM",
  "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,
  "certificateEvidenceLanguage" : "en",
  "attachmentExtensions" : [ "pdf", "word" ],
  "lockDocumentsAfterFirstValidation" : false
}

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.
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.
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.

# HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_5i9GDaWNBgmr6giRr3S787Ds
ETag: "87huB32UgZeYe6rWXGLKQrTy"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1156

{
  "allowCommentsInSteps" : false,
  "allowWatchers" : true,
  "allowedTenantStatus" : [ "active", "inactive", "trial" ],
  "attachmentExtensions" : [ "pdf", "word" ],
  "certificateEvidenceLanguage" : "en",
  "createUserOnLogin" : true,
  "created" : 1711505681462,
  "darkColor" : "#104670",
  "defaultAllowComments" : false,
  "defaultCountry" : "FR",
  "defaultGroupId" : "grp_BiiDRYVL5gcrLYDaya9BWzks",
  "domainName" : "bode.io",
  "downloadLinkTokenValidityDays" : 90,
  "forceFlattenPdf" : false,
  "id" : "ten_HT2SheKoJkiHE1qiGGaYLgrD",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpClientId" : "2721",
  "idpClientSecret" : "****************",
  "idpScope" : "openid email profile",
  "idpType" : "google",
  "lockDocumentsAfterFirstValidation" : false,
  "loginTokenTtl" : 3600000,
  "logoResourceId" : "res_LNgTjwnYsDtxnCztz2frPoCP",
  "maxAttachments" : 10,
  "maxDocumentSize" : 10485760,
  "maxDocuments" : 200,
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "smtpSenderName" : "My application",
  "technicalContactUrl" : "https://support.lex-persona.com",
  "tenantStatus" : "trial",
  "updated" : 1711505681462
}

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.
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.
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.
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_97DUvrb5NoHGrLty6sj5n1bG HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "94KGkoqnfWMRn8FSdxYqyK3R"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1143

{
  "allowCommentsInSteps" : true,
  "allowWatchers" : true,
  "allowedTenantStatus" : [ "active", "inactive", "trial" ],
  "attachmentExtensions" : [ ],
  "certificateEvidenceLanguage" : "en",
  "createUserOnLogin" : true,
  "created" : 1711505179765,
  "darkColor" : "#104670",
  "defaultAllowComments" : true,
  "defaultCountry" : "FR",
  "defaultGroupId" : "grp_Ev1LqnfvFpQwYiPrzzHYUhgx",
  "domainName" : "hane.info",
  "downloadLinkTokenValidityDays" : 3650,
  "forceFlattenPdf" : true,
  "id" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpClientId" : "2721",
  "idpClientSecret" : "****************",
  "idpScope" : "openid email profile",
  "idpType" : "google",
  "lockDocumentsAfterFirstValidation" : false,
  "loginTokenTtl" : 3600000,
  "logoResourceId" : "res_3Qeh9YeSv6Vk68KE3uT3UxsR",
  "maxAttachments" : 10,
  "maxDocumentSize" : 10485760,
  "maxDocuments" : 200,
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "smtpSenderName" : "My application",
  "technicalContactUrl" : "https://support.lex-persona.com",
  "tenantStatus" : "trial",
  "updated" : 1711505179765
}

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.
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.
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.
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_AhHhvFfPWfTJxiZ9hdNvoXki HTTP/1.1
Authorization: Bearer act_9g9qC2KFne336JWEFPswGzmC.4Yrt6sW9MMgfzGvMixQS9N13ktdrU6drbstx1ZxouF3JVsvheHBQArdURQ8oRBHd
If-Match: "4PJEQJYiDWHaQnmjMzNysL2d"
Content-Type: application/json
Content-Length: 1197

{
  "domainName" : "rohan.io",
  "idpType" : "google",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpScope" : "openid email profile",
  "idpClientId" : "2721",
  "idpClientSecret" : "52Y1e6NvCxVYXFMMj2Lwx3FM",
  "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,
  "certificateEvidenceLanguage" : "fr",
  "attachmentExtensions" : [ "pdf", "word" ],
  "lockDocumentsAfterFirstValidation" : false
}

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.
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.
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.

# HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_LpvHGEhDdPH9kdw3BMops3vL
ETag: "2VNK7EdMJov9bbNyBnyVxvtm"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1200

{
  "allowCommentsInSteps" : false,
  "allowWatchers" : false,
  "allowedTenantStatus" : [ "active", "inactive", "trial" ],
  "attachmentExtensions" : [ "pdf", "word" ],
  "certificateEvidenceLanguage" : "fr",
  "createUserOnLogin" : true,
  "created" : 1711505682293,
  "darkColor" : "#104670",
  "defaultAllowComments" : false,
  "defaultCountry" : "FR",
  "defaultGroupId" : "grp_DTTJgPbpgLjhQp6dBgGzws2C",
  "domainName" : "rohan.io",
  "downloadLinkTokenValidityDays" : 90,
  "forceFlattenPdf" : false,
  "id" : "ten_AhHhvFfPWfTJxiZ9hdNvoXki",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpClientId" : "2721",
  "idpClientSecret" : "****************",
  "idpScope" : "openid email profile",
  "idpType" : "google",
  "jobOperation" : "purgeTenantResource",
  "lockDocumentsAfterFirstValidation" : false,
  "loginTokenTtl" : 3600000,
  "logoResourceId" : "res_GiMMhLKPBAqvwwUHcwjR11F1",
  "maxAttachments" : 10,
  "maxDocumentSize" : 10485760,
  "maxDocuments" : 200,
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "smtpSenderName" : "My application",
  "technicalContactUrl" : "https://support.lex-persona.com",
  "tenantStatus" : "trial",
  "updated" : 1711505682390
}

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.
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.
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.
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_BpG3VaJUTB1QMuyAaj1mMwmx HTTP/1.1
Authorization: Basic YWRtaW46RWZnblJvdnFWMm82aGdEZnlvTXEyOGpF
If-Match: "3ESLc3Vd6kihW3FZMarhvxn1"

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_EvQSaA7vHhfwTdqhKT252HuD
ETag: "7gBfZLumUmkir5xqF4HZEEp8"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1177

{
  "allowCommentsInSteps" : true,
  "allowWatchers" : true,
  "allowedTenantStatus" : [ "active", "inactive", "trial" ],
  "attachmentExtensions" : [ ],
  "certificateEvidenceLanguage" : "en",
  "createUserOnLogin" : true,
  "created" : 1711505688979,
  "darkColor" : "#104670",
  "defaultAllowComments" : true,
  "defaultCountry" : "FR",
  "defaultGroupId" : "grp_5Nf51sG3WqteM1veQh5C5qU9",
  "domainName" : "huels.biz",
  "downloadLinkTokenValidityDays" : 3650,
  "forceFlattenPdf" : true,
  "id" : "ten_BpG3VaJUTB1QMuyAaj1mMwmx",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpClientId" : "2721",
  "idpClientSecret" : "****************",
  "idpScope" : "openid email profile",
  "idpType" : "google",
  "jobOperation" : "purgeTenant",
  "lockDocumentsAfterFirstValidation" : false,
  "loginTokenTtl" : 3600000,
  "logoResourceId" : "res_Nqh3VYVcDKhCMSCEo6s7Aw3S",
  "maxAttachments" : 10,
  "maxDocumentSize" : 10485760,
  "maxDocuments" : 200,
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "smtpSenderName" : "My application",
  "technicalContactUrl" : "https://support.lex-persona.com",
  "tenantStatus" : "trial",
  "updated" : 1711505689005
}

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.
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.
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.
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=hane.info&items.id=ten_97DUvrb5NoHGrLty6sj5n1bG&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Basic YWRtaW46RWZnblJvdnFWMm82aGdEZnlvTXEyOGpF

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.domainName optional The filter value(s) for the domainName field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 1291

{
  "items" : [ {
    "allowCommentsInSteps" : true,
    "allowWatchers" : true,
    "allowedTenantStatus" : [ "active", "inactive", "trial" ],
    "attachmentExtensions" : [ ],
    "certificateEvidenceLanguage" : "en",
    "createUserOnLogin" : true,
    "created" : 1711505179765,
    "darkColor" : "#104670",
    "defaultAllowComments" : true,
    "defaultCountry" : "FR",
    "defaultGroupId" : "grp_Ev1LqnfvFpQwYiPrzzHYUhgx",
    "domainName" : "hane.info",
    "downloadLinkTokenValidityDays" : 3650,
    "forceFlattenPdf" : true,
    "id" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "idpBaseUrl" : "https://accounts.google.com/",
    "idpClientId" : "2721",
    "idpClientSecret" : "****************",
    "idpScope" : "openid email profile",
    "idpType" : "google",
    "lockDocumentsAfterFirstValidation" : false,
    "loginTokenTtl" : 3600000,
    "logoResourceId" : "res_3Qeh9YeSv6Vk68KE3uT3UxsR",
    "maxAttachments" : 10,
    "maxDocumentSize" : 10485760,
    "maxDocuments" : 200,
    "primaryColor" : "#208cdf",
    "secondaryColor" : "#4ca3e5",
    "smtpSenderName" : "My application",
    "technicalContactUrl" : "https://support.lex-persona.com",
    "tenantStatus" : "trial",
    "updated" : 1711505179765
  } ],
  "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[].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[].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[].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=hane.info&items.id=ten_97DUvrb5NoHGrLty6sj5n1bG&sortBy=items.id HTTP/1.1
Authorization: Basic YWRtaW46RWZnblJvdnFWMm82aGdEZnlvTXEyOGpF
Content-Type: application/json
Content-Length: 167

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{name}}",
  "expired" : 1711592088806
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.domainName optional The filter value(s) for the domainName field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_HcSMqKcM18wqSqe2yLAoXY3N
ETag: "HeZfcDs6jyUcJ1wfWYoC7wZh"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 496

{
  "adminUser" : "admin",
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505688807,
  "expired" : 1711592088806,
  "exportOperation" : "createTenantExport",
  "id" : "exp_QcWw7NCf39b3K3bscH1pfYE4",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=hane.info&items.id=ten_97DUvrb5NoHGrLty6sj5n1bG&sortBy=items.id",
  "size" : 0,
  "totalItems" : 0,
  "updated" : 1711505688807
}

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_97DUvrb5NoHGrLty6sj5n1bG/users HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 745

{
  "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
  "isDisabled" : false,
  "email" : "lance.botsford7113@my-company.com",
  "picture" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
  "phoneNumber" : "+33 6 12 34 56 78",
  "firstName" : "Julie",
  "lastName" : "Carre",
  "country" : "FR",
  "organizationTitles" : [ {
    "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
    "title" : "Principal Creative Manager"
  } ],
  "subject" : "f965b0d4-f0bf-4f68-ae42-585ff4baf46b"
}

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_PMvzW8XbMfydaRyH9bQVhPjo
ETag: "7Wdb5csaKBVUExAPCoKumorK"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 838

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "country" : "FR",
  "created" : 1711505323577,
  "email" : "lance.botsford7113@my-company.com",
  "firstName" : "Julie",
  "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "usr_32tLtPxSNV1rmjf5oSYpuFtV",
  "isDisabled" : false,
  "lastLogin" : 0,
  "lastName" : "Carre",
  "name" : "Julie Carre",
  "organizationTitles" : [ {
    "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
    "title" : "Principal Creative Manager"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_Gq7Ri2DmPLJEMRkNP3r2jBNM",
  "signAllowed" : true,
  "subject" : "f965b0d4-f0bf-4f68-ae42-585ff4baf46b",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505323577,
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ]
}

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_5LAg5dbXi2uzWVAyqkC9uYRH HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "2NNVypE6KFZDugsH4Zna6gTB"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 861

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "country" : "FR",
  "created" : 1711505181203,
  "email" : "kayleigh.kuhn3897@my-company.com",
  "firstName" : "Bobbie",
  "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "isDisabled" : false,
  "lastLogin" : 1711505181313,
  "lastName" : "Swaniawski",
  "name" : "Bobbie Swaniawski",
  "organizationTitles" : [ {
    "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
    "title" : "Dynamic Optimization Agent"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "signAllowed" : true,
  "subject" : "f36ba706-ca65-442c-ba73-9010965896b9",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505181314,
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ]
}

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_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Headers:

Name Description
Authorization A valid access token or admin credentials.

# HTTP response

HTTP/1.1 200 OK
ETag: "2NNVypE6KFZDugsH4Zna6gTB"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 861

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "country" : "FR",
  "created" : 1711505181203,
  "email" : "kayleigh.kuhn3897@my-company.com",
  "firstName" : "Bobbie",
  "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "isDisabled" : false,
  "lastLogin" : 1711505181313,
  "lastName" : "Swaniawski",
  "name" : "Bobbie Swaniawski",
  "organizationTitles" : [ {
    "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
    "title" : "Dynamic Optimization Agent"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "signAllowed" : true,
  "subject" : "f36ba706-ca65-442c-ba73-9010965896b9",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505181314,
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ]
}

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_EzxFJUZfPRfQqT1maGANyhf2 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "8ApTLKU44FcbET81XprGuhSP"
Content-Type: application/json
Content-Length: 747

{
  "groupId" : "grp_Ev1LqnfvFpQwYiPrzzHYUhgx",
  "isDisabled" : false,
  "email" : "kelvin.hamill6760@my-company.com",
  "picture" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
  "phoneNumber" : "+33 6 12 34 56 78",
  "firstName" : "Louis",
  "lastName" : "Roux",
  "country" : "FR",
  "organizationTitles" : [ {
    "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
    "title" : "National Creative Coordinateur"
  } ],
  "subject" : "db1af4bd-ecd3-45f5-9b76-2c9c9cb879b8"
}

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_NfSSfCQ4KkKmhSsVyruYn1Wp
ETag: "82Zg3oexy2XJBYThBRnfruJ3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 814

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "country" : "FR",
  "created" : 1711505325423,
  "email" : "kelvin.hamill6760@my-company.com",
  "firstName" : "Louis",
  "groupId" : "grp_Ev1LqnfvFpQwYiPrzzHYUhgx",
  "id" : "usr_EzxFJUZfPRfQqT1maGANyhf2",
  "isDisabled" : false,
  "jobOperation" : "refreshUserInfo",
  "lastLogin" : 0,
  "lastName" : "Roux",
  "name" : "Louis Roux",
  "organizationTitles" : [ {
    "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
    "title" : "National Creative Coordinateur"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_8vyxuFZX85CfmYUPgHwz7MzH",
  "signAllowed" : true,
  "subject" : "db1af4bd-ecd3-45f5-9b76-2c9c9cb879b8",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505325458,
  "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_5LAg5dbXi2uzWVAyqkC9uYRH/loginTokens HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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_HcWDhF6poJGNFdBVB2YTQmPp
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 370

{
  "created" : 1711505373725,
  "expired" : 1711508973725,
  "scope" : "portalUser",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "tokenValue" : "eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MTE1MDg5NzMsInVzZXJJZCI6InVzcl81TEFnNWRiWGkydXpXVkF5cWtDOXVZUkgiLCJzY29wZSI6InBvcnRhbFV...",
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_7LwVqE5AEyFpT9mEUu4nqJ8S/loginTokens HTTP/1.1
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJhZG1pblVzZXIiOiJhZG1pbiIsImV4cCI6MTcxMTUwODg3OCwidXNlcklkIjoidXNyXzdMd1ZxRTVBRXlGcFQ5bUVVdTRucUo...

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_5gfB69amUKF8zG6MWoRVLpDB
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_JSoP8WcaaXSXEJGtHnf6qaEx HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "5LNCVfQPoR52R8xxAMv8jh7q"

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_3gSVt4f8of2PUrfvwkJSxREk
ETag: "ZYBsqoJuFpr1eSpVbYAaayre"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 566

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "country" : "",
  "created" : 1711505315681,
  "email" : "usr_JSoP8WcaaXSXEJGtHnf6qaEx@anonymized",
  "firstName" : "",
  "groupId" : "grp_Ev1LqnfvFpQwYiPrzzHYUhgx",
  "id" : "usr_JSoP8WcaaXSXEJGtHnf6qaEx",
  "isDisabled" : true,
  "jobOperation" : "purgeUserResource",
  "lastLogin" : 0,
  "lastName" : "",
  "name" : "",
  "organizationTitles" : [ ],
  "phoneNumber" : "",
  "signAllowed" : true,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505315714,
  "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=Bobbie%20Swaniawski&items.id=usr_5LAg5dbXi2uzWVAyqkC9uYRH&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.groupId optional The filter value(s) for the groupId field.
items.viewAuthorizedGroups optional The filter value(s) for the viewAuthorizedGroups field.
items.lastLogin optional The filter value(s) for the lastLogin field.
items.subject optional The filter value(s) for the subject field.
items.name optional The filter value(s) for the name field.
items.email optional The filter value(s) for the email field.
items.firstName optional The filter value(s) for the firstName field.
items.lastName optional The filter value(s) for the lastName field.
items.country optional The filter value(s) for the country field.
items.signAllowed optional The filter value(s) for the signAllowed field.
items.approveAllowed optional The filter value(s) for the approveAllowed field.
items.organizationTitles.organizationId optional The filter value(s) for the organizationTitles.organizationId field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.comanageAllowed optional The filter value(s) for the comanageAllowed field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 991

{
  "items" : [ {
    "approveAllowed" : true,
    "comanageAllowed" : true,
    "country" : "FR",
    "created" : 1711505181203,
    "email" : "kayleigh.kuhn3897@my-company.com",
    "firstName" : "Bobbie",
    "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
    "id" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
    "isDisabled" : false,
    "lastLogin" : 1711505181313,
    "lastName" : "Swaniawski",
    "name" : "Bobbie Swaniawski",
    "organizationTitles" : [ {
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "title" : "Dynamic Optimization Agent"
    } ],
    "phoneNumber" : "+33 6 12 34 56 78",
    "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
    "signAllowed" : true,
    "subject" : "f36ba706-ca65-442c-ba73-9010965896b9",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505181314,
    "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ]
  } ],
  "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=Bobbie%20Swaniawski&items.id=usr_5LAg5dbXi2uzWVAyqkC9uYRH&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 195

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
  "expired" : 1711591713846
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.groupId optional The filter value(s) for the groupId field.
items.viewAuthorizedGroups optional The filter value(s) for the viewAuthorizedGroups field.
items.lastLogin optional The filter value(s) for the lastLogin field.
items.subject optional The filter value(s) for the subject field.
items.name optional The filter value(s) for the name field.
items.email optional The filter value(s) for the email field.
items.firstName optional The filter value(s) for the firstName field.
items.lastName optional The filter value(s) for the lastName field.
items.country optional The filter value(s) for the country field.
items.signAllowed optional The filter value(s) for the signAllowed field.
items.approveAllowed optional The filter value(s) for the approveAllowed field.
items.organizationTitles.organizationId optional The filter value(s) for the organizationTitles.organizationId field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.comanageAllowed optional The filter value(s) for the comanageAllowed field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_Q6Bq8Sk3FgZE7jeyMqCP2FyN
ETag: "2paWXsdo9kcWfusFb7AWQ3up"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 597

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505313848,
  "expired" : 1711591713846,
  "exportOperation" : "createUserExport",
  "id" : "exp_HcBBSRrUipwVMWPAYFfegSgU",
  "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Bobbie+Swaniawski&items.id=usr_5LAg5dbXi2uzWVAyqkC9uYRH&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505313848,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_5LAg5dbXi2uzWVAyqkC9uYRH/webhooks HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 213

{
  "endpointUrl" : "https://my-company.com/Mu4XAaJP9ouMQyvF6Zrn5Vnp",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "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_EycvKPepAUZzRyrZU1ZRU29G
ETag: "8P9tTcdimvXEykyyS36fZB2b"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 404

{
  "created" : 1711505200233,
  "endpointUrl" : "https://my-company.com/Mu4XAaJP9ouMQyvF6Zrn5Vnp",
  "id" : "wbh_BL8LVNJ49rzW4UXWvhbiX4gd",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished" ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505200233,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_97DUvrb5NoHGrLty6sj5n1bG/webhooks HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 213

{
  "endpointUrl" : "https://my-company.com/FGxjGJCnTfQNVbjcPjBGNXBj",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "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_HNnyDCqwXYYPPh1Knt523yJr
ETag: "vUekNG4zTdSyMwZUyVKBtd5S"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 359

{
  "created" : 1711505199203,
  "endpointUrl" : "https://my-company.com/FGxjGJCnTfQNVbjcPjBGNXBj",
  "id" : "wbh_5oDJS659cksgRiBfSmUt3qdn",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished" ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505199203
}

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_EyuPYj5T9jBqSa28XZFLThmM HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "EYh8JZeg9x87E7DFuCTvbc8R"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 404

{
  "created" : 1711505181400,
  "endpointUrl" : "https://my-company.com/3ZbccpybJkgc6EfL1yoA8FkQ",
  "id" : "wbh_EyuPYj5T9jBqSa28XZFLThmM",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished" ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505195214,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_EyuPYj5T9jBqSa28XZFLThmM HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "HfCkwdDfoXvp3CVcuZGkRY7J"
Content-Type: application/json
Content-Length: 213

{
  "endpointUrl" : "https://my-company.com/Q787kVCyZ1vMY9kaYgp9uNZA",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "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_JphS2hx5wMmiZCDKyxs5NHCQ
ETag: "D2voQ9EVgi6LM59W1roiGfGy"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 404

{
  "created" : 1711505181400,
  "endpointUrl" : "https://my-company.com/Q787kVCyZ1vMY9kaYgp9uNZA",
  "id" : "wbh_EyuPYj5T9jBqSa28XZFLThmM",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished" ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505192148,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_JABnYzCuM9QpKpobNBAG2oe4 HTTP/1.1
Authorization: Bearer act_FNy915nTvqHs4YcXBFaZuRzJ.3qGZrAb4BX24sjbdbvz8pMzdBVXZ1hCXQEoySYLvRy93vKTzBTgsDcCnZqKckVwN

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_JfGXX2auQArKG2Q48Sy6WaXY
ETag: "4fG2FEgULx6ZTtb4zQxUAQPH"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 404

{
  "created" : 1711505187634,
  "endpointUrl" : "https://my-company.com/2kLx6PWrjawXFyjkDnbAD8CH",
  "id" : "wbh_JABnYzCuM9QpKpobNBAG2oe4",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished" ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505187634,
  "userId" : "usr_NXPvAxByUAuYfUo6MSD2rs9w"
}

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%2FMPFF8J71V77Fo4RBaVmKSVTc&items.id=wbh_EyuPYj5T9jBqSa28XZFLThmM&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.userId optional The filter value(s) for the userId field.
items.endpointUrl optional The filter value(s) for the endpointUrl field.
items.notifiedEvents optional The filter value(s) for the notifiedEvents field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 502

{
  "items" : [ {
    "created" : 1711505181400,
    "endpointUrl" : "https://my-company.com/MPFF8J71V77Fo4RBaVmKSVTc",
    "id" : "wbh_EyuPYj5T9jBqSa28XZFLThmM",
    "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished" ],
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505181400,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
  } ],
  "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_31uaGDh2vBqUmNcJY9M3bK2S HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "8dFWd6KTbyP9hTcFqy35PLXp"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 325

{
  "created" : 1711505182597,
  "eventType" : "workflowStarted",
  "id" : "wbe_31uaGDh2vBqUmNcJY9M3bK2S",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505236265,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "webhookId" : "wbh_EyuPYj5T9jBqSa28XZFLThmM",
  "workflowId" : "wfl_BSPRWMQFvo3yjiAPfYBpQB7Q"
}

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_EyuPYj5T9jBqSa28XZFLThmM&items.id=wbe_31uaGDh2vBqUmNcJY9M3bK2S&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.userId optional The filter value(s) for the userId field.
items.endpointUrl optional The filter value(s) for the endpointUrl field.
items.notifiedEvents optional The filter value(s) for the notifiedEvents field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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" : 1711505182597,
    "eventType" : "workflowStarted",
    "id" : "wbe_31uaGDh2vBqUmNcJY9M3bK2S",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505236265,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
    "webhookId" : "wbh_EyuPYj5T9jBqSa28XZFLThmM",
    "workflowId" : "wfl_BSPRWMQFvo3yjiAPfYBpQB7Q"
  } ],
  "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_5LAg5dbXi2uzWVAyqkC9uYRH/workflows HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 1428

{
  "name" : "Small Plastic Hat",
  "description" : "8 Avenue des Saussaies, 08950 Poitiers",
  "steps" : [ {
    "stepType" : "signature",
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "email" : "timothy.boyer6629@my-company.com",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu",
      "phoneNumber" : "+33 6 12 34 56 78",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "country" : "FR",
      "preferredLocale" : "fr",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9"
    } ],
    "requiredRecipients" : 1,
    "validityPeriod" : 8553600000,
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "sendDownloadLink" : true,
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : true
  } ],
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "watchers" : [ {
    "userId" : "usr_HjtzvjS4ar33zadNSBYdtxRL",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "email" : "parker.kiehn6443@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  } ]
}

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.

# HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_6ixrQBeB8mTFN2cW1mFoFzwn
ETag: "GgyTfMcH6ZoywTSjqmazRNTZ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2352

{
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1711505473539,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "8 Avenue des Saussaies, 08950 Poitiers",
  "email" : "kayleigh.kuhn3897@my-company.com",
  "firstName" : "Bobbie",
  "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "wfl_FDFXXQgW3uiGdiVxkaaWu3b5",
  "lastName" : "Swaniawski",
  "logs" : [ ],
  "name" : "Small Plastic Hat",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : true,
    "id" : "stp_La56e4DWuSkGWjP7XogvyujA",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "country" : "FR",
      "email" : "timothy.boyer6629@my-company.com",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
      "preferredLocale" : "fr",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505473539,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "viewAuthorizedUsers" : [ "usr_HjtzvjS4ar33zadNSBYdtxRL" ],
  "watchers" : [ {
    "email" : "parker.kiehn6443@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_HjtzvjS4ar33zadNSBYdtxRL"
  } ],
  "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.
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_D8G3qrFPnUJB3bidR9y1ukTU HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "6MhnSytJLCEQ83TnhfJdxwmh"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2506

{
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1711505206345,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "5 étage, 8 Avenue Pastourelle, 00101 Vitry-sur-Seine",
  "email" : "kayleigh.kuhn3897@my-company.com",
  "firstName" : "Bobbie",
  "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "wfl_D8G3qrFPnUJB3bidR9y1ukTU",
  "lastName" : "Swaniawski",
  "logs" : [ {
    "commentId" : "com_GiNbQJqvdkHfgePYuUN6hFBd",
    "created" : 1711505206536,
    "operation" : "notifyCommentCreated"
  } ],
  "name" : "Enormous Granite Bottle",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_BbrjWiEri3Ad4tKthPBtgwUH",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "country" : "FR",
      "email" : "timothy.boyer6629@my-company.com",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
      "preferredLocale" : "fr",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505206782,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "viewAuthorizedUsers" : [ "usr_Ejd5f6UbwRnS9cPHdha2UrPZ" ],
  "watchers" : [ {
    "email" : "christeen.conroy3926@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_Ejd5f6UbwRnS9cPHdha2UrPZ"
  } ],
  "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.
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_7PeFtYtzxSJvZrGKXzBvBKem HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "7FyTjvwTEa6WfDMWgVSxS5VZ"
Content-Type: application/json
Content-Length: 1555

{
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "name" : "Heavy Duty Wool Shoes",
  "description" : "678 Impasse Laffitte, 25948 Mulhouse",
  "steps" : [ {
    "id" : "stp_HmCXJUGJbRibdhx2oWBpAAmx",
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "email" : "timothy.boyer6629@my-company.com",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu",
      "phoneNumber" : "+33 6 12 34 56 78",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "country" : "FR",
      "preferredLocale" : "fr",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9"
    } ],
    "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_MYP6Niz97DnU9NzBxHGXKwoi",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "email" : "emilia.goodwin4662@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_JFU9qq6bafuPS5uciKGxrm4P
ETag: "7UeaiPAfHpGj6U6wCFBWKRu8"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2415

{
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1711505481995,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "678 Impasse Laffitte, 25948 Mulhouse",
  "email" : "kayleigh.kuhn3897@my-company.com",
  "firstName" : "Bobbie",
  "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "wfl_7PeFtYtzxSJvZrGKXzBvBKem",
  "jobOperation" : "refreshWorkflowViewAuthorizedUsers",
  "lastName" : "Swaniawski",
  "logs" : [ ],
  "name" : "Heavy Duty Wool Shoes",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : true,
    "id" : "stp_HmCXJUGJbRibdhx2oWBpAAmx",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "country" : "FR",
      "email" : "timothy.boyer6629@my-company.com",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
      "preferredLocale" : "fr",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505482053,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "viewAuthorizedUsers" : [ "usr_MYP6Niz97DnU9NzBxHGXKwoi" ],
  "watchers" : [ {
    "email" : "emilia.goodwin4662@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_MYP6Niz97DnU9NzBxHGXKwoi"
  } ],
  "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.
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_DdEpH918Zdi2skW6C8nYY56g/copy HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 1424

{
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "name" : "new Workflow",
  "description" : "Apt. 225, 011 Passage de Caumartin, 18481 Reims",
  "steps" : [ {
    "id" : "stp_Dr2V1RNDUHrbxNjisPqNnCey",
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "email" : "timothy.boyer6629@my-company.com",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu",
      "phoneNumber" : "+33 6 12 34 56 78",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "country" : "FR",
      "preferredLocale" : "fr",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9"
    } ],
    "requiredRecipients" : 1,
    "validityPeriod" : 8553600000,
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "sendDownloadLink" : true
  } ],
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "watchers" : [ {
    "userId" : "usr_A9LEiRW3RmGYpNwUYjfhjZin",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "email" : "eva.rempel7946@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_JavGZL6dpvgrKLQiZHDjanB5
ETag: "G3DiheyCQLJMWVPmTk3M2m5c"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2357

{
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1711505428847,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "Apt. 225, 011 Passage de Caumartin, 18481 Reims",
  "email" : "kayleigh.kuhn3897@my-company.com",
  "firstName" : "Bobbie",
  "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "wfl_8L5Hk9k3MWvEw3CjdRuU2G8R",
  "lastName" : "Swaniawski",
  "logs" : [ ],
  "name" : "new Workflow",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_Dr2V1RNDUHrbxNjisPqNnCey",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "country" : "FR",
      "email" : "timothy.boyer6629@my-company.com",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
      "preferredLocale" : "fr",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505428847,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "viewAuthorizedUsers" : [ "usr_A9LEiRW3RmGYpNwUYjfhjZin" ],
  "watchers" : [ {
    "email" : "eva.rempel7946@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_A9LEiRW3RmGYpNwUYjfhjZin"
  } ],
  "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.
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_BSPRWMQFvo3yjiAPfYBpQB7Q/invite HTTP/1.1
Authorization: Bearer act_BAHepoJfyF9YKq2kL6KGSr6u.36pEEZJe62aTTmcoTxpShaVEPPpajsWrJNrVQ2ewoH34v7V6Bih3McrBA42EgHz4
Content-Type: application/json
Content-Length: 59

{
  "recipientEmail" : "timothy.boyer6629@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_FRfXx8fzv2oryXH51E6qbPKd
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 274

{
  "inviteUrl" : "https://hane.info/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJ1c2VySWQiOiJ1c3JfTWJvM2ZkN2NwdnFMeDVtZzNXTFZNZWN1IiwiaWF0IjoxNzExNTA1N..."
}

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_HinMkjfaQEDkHvs1W4uZn5oD/sendInvite HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 59

{
  "recipientEmail" : "timothy.boyer6629@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_6gH8yrtZXLeYh5P3EqZDxACa
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 274

{
  "inviteUrl" : "https://hane.info/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJ1c2VySWQiOiJ1c3JfTWJvM2ZkN2NwdnFMeDVtZzNXTFZNZWN1IiwiaWF0IjoxNzExNTA1N..."
}

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_Q7i7nSLtSZPyeVq7Yy71erwP/refuse HTTP/1.1
Authorization: Bearer act_BAHepoJfyF9YKq2kL6KGSr6u.36pEEZJe62aTTmcoTxpShaVEPPpajsWrJNrVQ2ewoH34v7V6Bih3McrBA42EgHz4
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_CvXZrttPzeDcpqyL2XUSjqKE
ETag: "12ty7pz8n98JxsVLPxzrCpKV"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 3117

{
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1711505423695,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "4 étage, 6804 Allée, Voie de Provence, 82350 Ivry-sur-Seine",
  "email" : "kayleigh.kuhn3897@my-company.com",
  "firstName" : "Bobbie",
  "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "wfl_Q7i7nSLtSZPyeVq7Yy71erwP",
  "jobOperation" : "processWorkflow",
  "lastName" : "Swaniawski",
  "logs" : [ ],
  "name" : "Small Plastic Computer",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "progress" : 0,
  "started" : 1711505423775,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_FMae5u8GUUKCuaHUvpzemiXk",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : true,
    "logs" : [ {
      "created" : 1711505423775,
      "operation" : "start"
    }, {
      "created" : 1711505423775,
      "operation" : "notifyWorkflowStarted"
    }, {
      "created" : 1711505424120,
      "operation" : "invite",
      "recipientEmail" : "timothy.boyer6629@my-company.com",
      "recipientUserId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
    }, {
      "created" : 1711505424209,
      "operation" : "refuse",
      "reason" : "I disagree.",
      "recipientEmail" : "timothy.boyer6629@my-company.com",
      "recipientUserId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
    }, {
      "created" : 1711505424209,
      "operation" : "stop"
    } ],
    "maxInvites" : 5,
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "country" : "FR",
      "email" : "timothy.boyer6629@my-company.com",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
      "preferredLocale" : "fr",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505424209,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "viewAuthorizedUsers" : [ "usr_DrAZdViCKP9YvcuB2hWcEYQk", "usr_Mbo3fd7cpvqLx5mg3WLVMecu" ],
  "watchers" : [ {
    "email" : "hailey.ferry6679@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_DrAZdViCKP9YvcuB2hWcEYQk"
  } ],
  "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.
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_BADKbQ85D6FTGNhhMmiLr1BV HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "GqjSzqpV33pQ1LHtVnf3EJEs"

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_GbqqnzaLH7d8q7NJXEKx7yxt
ETag: "E6afxU7cyRMcrpZ1t4V2JWjR"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2396

{
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1711505451598,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "23 Allée, Voie Montorgueil, 26775 Drancy",
  "email" : "kayleigh.kuhn3897@my-company.com",
  "firstName" : "Bobbie",
  "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "wfl_BADKbQ85D6FTGNhhMmiLr1BV",
  "jobOperation" : "purgeWorkflow",
  "lastName" : "Swaniawski",
  "logs" : [ ],
  "name" : "Small Marble Table",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_Lt6xryCCJ7xcZ5rW2zjXmLcL",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "country" : "FR",
      "email" : "timothy.boyer6629@my-company.com",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
      "preferredLocale" : "fr",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505451633,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "viewAuthorizedUsers" : [ "usr_NDoYSeWS2nPEohCtw4rxDprG" ],
  "watchers" : [ {
    "email" : "twanda.bernhard2071@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_NDoYSeWS2nPEohCtw4rxDprG"
  } ],
  "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.
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=Enormous%20Granite%20Bottle&items.id=wfl_D8G3qrFPnUJB3bidR9y1ukTU&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.layoutId optional The filter value(s) for the layoutId field.
items.templateId optional The filter value(s) for the templateId field.
items.groupId optional The filter value(s) for the groupId field.
items.userId optional The filter value(s) for the userId field.
items.email optional The filter value(s) for the email field.
items.firstName optional The filter value(s) for the firstName field.
items.lastName optional The filter value(s) for the lastName field.
items.userHash optional The filter value(s) for the userHash field.
items.name optional The filter value(s) for the name field.
items.data1 optional The filter value(s) for the data1 field.
items.data2 optional The filter value(s) for the data2 field.
items.data3 optional The filter value(s) for the data3 field.
items.data4 optional The filter value(s) for the data4 field.
items.data5 optional The filter value(s) for the data5 field.
items.data6 optional The filter value(s) for the data6 field.
items.data7 optional The filter value(s) for the data7 field.
items.data8 optional The filter value(s) for the data8 field.
items.data9 optional The filter value(s) for the data9 field.
items.data10 optional The filter value(s) for the data10 field.
items.data11 optional The filter value(s) for the data11 field.
items.data12 optional The filter value(s) for the data12 field.
items.data13 optional The filter value(s) for the data13 field.
items.data14 optional The filter value(s) for the data14 field.
items.data15 optional The filter value(s) for the data15 field.
items.data16 optional The filter value(s) for the data16 field.
items.viewAuthorizedGroups optional The filter value(s) for the viewAuthorizedGroups field.
items.viewAuthorizedUsers optional The filter value(s) for the viewAuthorizedUsers field.
items.currentRecipientEmails optional The filter value(s) for the currentRecipientEmails field.
items.currentRecipientUsers optional The filter value(s) for the currentRecipientUsers field.
items.recipients.email optional The filter value(s) for the recipients.email field.
items.recipients.userId optional The filter value(s) for the recipients.userId field.
items.recipients.subject optional The filter value(s) for the recipients.subject field.
items.recipients.firstName optional The filter value(s) for the recipients.firstName field.
items.recipients.lastName optional The filter value(s) for the recipients.lastName field.
items.recipients.country optional The filter value(s) for the recipients.country field.
items.recipients.organizationId optional The filter value(s) for the recipients.organizationId field.
items.workflowStatus optional The filter value(s) for the workflowStatus field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.nextClean optional The filter value(s) for the nextClean field.
items.nextProcess optional The filter value(s) for the nextProcess field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
items.started optional The filter value(s) for the started field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 2710

{
  "items" : [ {
    "allowedCoManagerUsers" : [ ],
    "coManagerNotifiedEvents" : [ ],
    "created" : 1711505206345,
    "currentRecipientEmails" : [ ],
    "currentRecipientUsers" : [ ],
    "description" : "5 étage, 8 Avenue Pastourelle, 00101 Vitry-sur-Seine",
    "email" : "kayleigh.kuhn3897@my-company.com",
    "firstName" : "Bobbie",
    "groupId" : "grp_Ho6dHeApprVuv9Avjxa9kWJx",
    "id" : "wfl_D8G3qrFPnUJB3bidR9y1ukTU",
    "lastName" : "Swaniawski",
    "logs" : [ {
      "commentId" : "com_GiNbQJqvdkHfgePYuUN6hFBd",
      "created" : 1711505206536,
      "operation" : "notifyCommentCreated"
    } ],
    "name" : "Enormous Granite Bottle",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
    "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
    "progress" : 0,
    "steps" : [ {
      "allowComments" : true,
      "hideAttachments" : false,
      "hideWorkflowRecipients" : false,
      "id" : "stp_BbrjWiEri3Ad4tKthPBtgwUH",
      "invitePeriod" : 86400000,
      "isFinished" : false,
      "isStarted" : false,
      "logs" : [ ],
      "maxInvites" : 5,
      "recipients" : [ {
        "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
        "country" : "FR",
        "email" : "timothy.boyer6629@my-company.com",
        "firstName" : "Abram",
        "lastName" : "Ortiz",
        "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
        "phoneNumber" : "+33 6 12 34 56 78",
        "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
        "preferredLocale" : "fr",
        "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
      } ],
      "requiredRecipients" : 1,
      "sendDownloadLink" : true,
      "stepType" : "signature",
      "validityPeriod" : 8553600000
    } ],
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505206782,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
    "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "viewAuthorizedUsers" : [ "usr_Ejd5f6UbwRnS9cPHdha2UrPZ" ],
    "watchers" : [ {
      "email" : "christeen.conroy3926@my-company.com",
      "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
    }, {
      "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
      "userId" : "usr_Ejd5f6UbwRnS9cPHdha2UrPZ"
    } ],
    "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[].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=Enormous%20Granite%20Bottle&items.id=wfl_D8G3qrFPnUJB3bidR9y1ukTU&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 182

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{name}},{{json steps}}",
  "expired" : 1711591907679
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.layoutId optional The filter value(s) for the layoutId field.
items.templateId optional The filter value(s) for the templateId field.
items.groupId optional The filter value(s) for the groupId field.
items.userId optional The filter value(s) for the userId field.
items.email optional The filter value(s) for the email field.
items.firstName optional The filter value(s) for the firstName field.
items.lastName optional The filter value(s) for the lastName field.
items.userHash optional The filter value(s) for the userHash field.
items.name optional The filter value(s) for the name field.
items.data1 optional The filter value(s) for the data1 field.
items.data2 optional The filter value(s) for the data2 field.
items.data3 optional The filter value(s) for the data3 field.
items.data4 optional The filter value(s) for the data4 field.
items.data5 optional The filter value(s) for the data5 field.
items.data6 optional The filter value(s) for the data6 field.
items.data7 optional The filter value(s) for the data7 field.
items.data8 optional The filter value(s) for the data8 field.
items.data9 optional The filter value(s) for the data9 field.
items.data10 optional The filter value(s) for the data10 field.
items.data11 optional The filter value(s) for the data11 field.
items.data12 optional The filter value(s) for the data12 field.
items.data13 optional The filter value(s) for the data13 field.
items.data14 optional The filter value(s) for the data14 field.
items.data15 optional The filter value(s) for the data15 field.
items.data16 optional The filter value(s) for the data16 field.
items.viewAuthorizedGroups optional The filter value(s) for the viewAuthorizedGroups field.
items.viewAuthorizedUsers optional The filter value(s) for the viewAuthorizedUsers field.
items.currentRecipientEmails optional The filter value(s) for the currentRecipientEmails field.
items.currentRecipientUsers optional The filter value(s) for the currentRecipientUsers field.
items.recipients.email optional The filter value(s) for the recipients.email field.
items.recipients.userId optional The filter value(s) for the recipients.userId field.
items.recipients.subject optional The filter value(s) for the recipients.subject field.
items.recipients.firstName optional The filter value(s) for the recipients.firstName field.
items.recipients.lastName optional The filter value(s) for the recipients.lastName field.
items.recipients.country optional The filter value(s) for the recipients.country field.
items.recipients.organizationId optional The filter value(s) for the recipients.organizationId field.
items.workflowStatus optional The filter value(s) for the workflowStatus field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.nextClean optional The filter value(s) for the nextClean field.
items.nextProcess optional The filter value(s) for the nextProcess field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
items.started optional The filter value(s) for the started field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_6v1qfjvRS9EoFmEkm4XFpSHx
ETag: "8HRty5djY6R8GuAojc1stc3K"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 594

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505507681,
  "expired" : 1711591907679,
  "exportOperation" : "createWorkflowExport",
  "id" : "exp_An56gYxvzfYEswDtNPitgCYM",
  "itemTemplate" : "{{id}},{{name}},{{json steps}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Enormous+Granite+Bottle&items.id=wfl_D8G3qrFPnUJB3bidR9y1ukTU&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505507681,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_D8G3qrFPnUJB3bidR9y1ukTU/downloadEvidenceCertificate HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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_D8G3qrFPnUJB3bidR9y1ukTU.pdf"
Cache-Control: no-store
Content-Length: 9631

%PDF-1.4
%����
1 0 obj
<<
/Creator (Apache FOP Version SVN)
/Producer (Apache FOP Version SVN)
/CreationDate (D:20240327021144Z)
>
...

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_D8G3qrFPnUJB3bidR9y1ukTU/comments HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 137

{
  "parentId" : "com_GiNbQJqvdkHfgePYuUN6hFBd",
  "content" : "Et pariatur quasi commodi velit quos dignissimos.",
  "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_B8tjZK1z3CR7CTA9jKa4HAok
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 536

{
  "content" : "Et pariatur quasi commodi velit quos dignissimos.",
  "created" : 1711505525942,
  "email" : "kayleigh.kuhn3897@my-company.com",
  "firstName" : "Bobbie",
  "id" : "com_PAcADNoc6q58dwU71FbdYjej",
  "isPublic" : true,
  "lastName" : "Swaniawski",
  "parentId" : "com_GiNbQJqvdkHfgePYuUN6hFBd",
  "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505525942,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "workflowId" : "wfl_D8G3qrFPnUJB3bidR9y1ukTU"
}

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_4LAqRLWcUwzFFCkRp8pf9QHK/comments HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: 984

[ {
  "id" : "com_DiVVUtzdx2USWTwmUhN5aN4P",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "workflowId" : "wfl_4LAqRLWcUwzFFCkRp8pf9QHK",
  "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu",
  "email" : "timothy.boyer6629@my-company.com",
  "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
  "firstName" : "Abram",
  "lastName" : "Ortiz",
  "content" : "Neque sunt cumque quas.",
  "isPublic" : true,
  "created" : 1711505517149,
  "updated" : 1711505517149
}, {
  "id" : "com_7pmepsXESpRWiUSgz8qccayS",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "workflowId" : "wfl_4LAqRLWcUwzFFCkRp8pf9QHK",
  "parentId" : "com_DiVVUtzdx2USWTwmUhN5aN4P",
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "email" : "kayleigh.kuhn3897@my-company.com",
  "pictureResourceId" : "res_7UQEi4sVgHTDxNx24fYQ4Xjb",
  "firstName" : "Bobbie",
  "lastName" : "Swaniawski",
  "content" : "Est qui qui quae corporis commodi.",
  "isPublic" : true,
  "created" : 1711505517378,
  "updated" : 1711505517378
} ]

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_FxcLs2rFLrvrQRp7iKTgNTcg/blobs HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
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_AtLnexrRpm77tme81H9M4JyS",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "workflowId" : "wfl_FxcLs2rFLrvrQRp7iKTgNTcg"
}

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_4mRp9AgSeGoRdDkjk77oNdZx/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_FMoXUyYL7grJdPYzzxY38m3o&unzip=false&pdf2pdfa=auto HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
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 optional Whether or not zip archives should be unzipped.
pdf2pdfa optional Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments optional Whether or not documents should be created.
ignoreAttachments optional Whether or not attachments should be ignored.
signatureProfileId optional 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_3fmkGcwQVmH1g3fXzC2R8jJ7
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1560

{
  "documents" : [ {
    "created" : 1711505206237,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "S710o4FN0TJcMOlxrlIUTfn3cyrvp6y/mAWC8hO8/Sc=",
      "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_Ho6dHeApprVuv9Avjxa9kWJx",
    "id" : "doc_7J7oHBWGsBYRovqTiT86ScYM",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "S710o4FN0TJcMOlxrlIUTfn3cyrvp6y/mAWC8hO8/Sc=",
      "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_FMoXUyYL7grJdPYzzxY38m3o",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505206237,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
    "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "viewAuthorizedUsers" : [ "usr_6EfrHkYFDofK5ZNqid3JjQCw" ],
    "workflowId" : "wfl_4mRp9AgSeGoRdDkjk77oNdZx",
    "workflowName" : "Enormous Silk Coat"
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "S710o4FN0TJcMOlxrlIUTfn3cyrvp6y/mAWC8hO8/Sc=",
    "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.
403 VirusFound A virus was found in a document.
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_PiRz5AHbUbutzXfRr7JSYjxc/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_FMoXUyYL7grJdPYzzxY38m3o&unzip=false&pdf2pdfa=auto HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: multipart/form-data;boundary=piFLt9ufwYwFuu5aVgh3pAPP5Tik3C; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Length: 12543

--piFLt9ufwYwFuu5aVgh3pAPP5Tik3C
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
...

--piFLt9ufwYwFuu5aVgh3pAPP5Tik3C--

Path parameters:

/api/workflows/{workflowId}/parts

Parameter Description
workflowId The identifier of the workflow.

Query parameters:

Parameter Description
unzip optional Whether or not zip archives should be unzipped.
pdf2pdfa optional Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments optional Whether or not documents should be created.
ignoreAttachments optional Whether or not attachments should be ignored.
signatureProfileId optional 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_HDDnZtsF6Mpv3JsdA1CjRm1S
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1564

{
  "documents" : [ {
    "created" : 1711505227206,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "vjQ52XbRK9IFwvIL3ID4hgAbbXfCdzrzy4Cy4DIgn9A=",
      "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_Ho6dHeApprVuv9Avjxa9kWJx",
    "id" : "doc_46taLyADfcbN9FPcGxuZtLRY",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "vjQ52XbRK9IFwvIL3ID4hgAbbXfCdzrzy4Cy4DIgn9A=",
      "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_FMoXUyYL7grJdPYzzxY38m3o",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505227206,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
    "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "viewAuthorizedUsers" : [ "usr_3JR5YWgaoNe9XKwmsfX5xPsP" ],
    "workflowId" : "wfl_PiRz5AHbUbutzXfRr7JSYjxc",
    "workflowName" : "Mediocre Plastic Bench"
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "vjQ52XbRK9IFwvIL3ID4hgAbbXfCdzrzy4Cy4DIgn9A=",
    "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.
403 VirusFound A virus was found in a document.
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_8GbswiqtGzoCFBHjJdbKcEhs/blobs/parts?createDocuments=true&ignoreAttachments=false&unzip=false&signatureProfileId=sip_FMoXUyYL7grJdPYzzxY38m3o&pdf2pdfa=force HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 210

{
  "parts" : [ {
    "filename" : "document.pdf",
    "contentType" : "application/pdf",
    "blobs" : [ "blb_DiqAUubnhWC92yfyrax7TkCZ", "blb_DftsFZmqPgktKtsqAUhr3RVm", "blb_B6s2nBcBvbbrRgvhLdw81FoY" ]
  } ]
}

Path parameters:

/api/workflows/{workflowId}/blobs/parts

Parameter Description
workflowId The identifier of the workflow.

Query parameters:

Parameter Description
unzip optional Whether or not zip archives should be unzipped.
pdf2pdfa optional Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments optional Whether or not documents should be created.
ignoreAttachments optional Whether or not attachments should be ignored.
signatureProfileId optional 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_MWfNrkSW1fRgMaQ2kynAZcmv
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1564

{
  "documents" : [ {
    "created" : 1711505220232,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "X/JhMsmLBn1skAV2r+6hCfvrbNDWq9xdkkOuZBCzRX8=",
      "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_Ho6dHeApprVuv9Avjxa9kWJx",
    "id" : "doc_3UXVnSMzfyG5ntJamZJhFMgV",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "X/JhMsmLBn1skAV2r+6hCfvrbNDWq9xdkkOuZBCzRX8=",
      "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_FMoXUyYL7grJdPYzzxY38m3o",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505220232,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
    "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "viewAuthorizedUsers" : [ "usr_L8TuZF8bPo8WVQKAFRTAvGNe" ],
    "workflowId" : "wfl_8GbswiqtGzoCFBHjJdbKcEhs",
    "workflowName" : "Synergistic Marble Hat"
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "X/JhMsmLBn1skAV2r+6hCfvrbNDWq9xdkkOuZBCzRX8=",
    "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.
403 VirusFound A virus was found in a document.
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_DbAc2j4EY94aKyHi2pcTJsMf/blobs HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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_KN9cmn4kXwQdpWy6LR1FnVRd
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 121

{
  "deletedBlobs" : [ "blb_FvUtcW8U1J2DvvSzDasB6Vfq", "blb_PaCNknEvXqVq2oUNGhDj5yJK", "blb_4hPEXwhBQEbZ7SYX8kCsUTav" ]
}

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_4S2AAaCWp4EZg4U4s2CvNwvc/documents HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 508

{
  "parts" : [ {
    "filename" : "Document",
    "contentType" : "application/pdf",
    "size" : 18540,
    "hash" : "XoG9a8ulmq9n0NnnvTf67/ZrDMOhuJgOn1kIgXDoo3Q=",
    "policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
    "isOriginal" : true
  } ],
  "signatureProfileId" : "sip_FMoXUyYL7grJdPYzzxY38m3o",
  "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_5HhgTG24SzWRuYc7JKC8LPgJ
ETag: "7YGCXBZ2eAdrupvU7mPDjRRX"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1301

{
  "created" : 1711505234441,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "XoG9a8ulmq9n0NnnvTf67/ZrDMOhuJgOn1kIgXDoo3Q=",
    "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_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "doc_A3NpgadsuRP4YzpjfmNQPniu",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "XoG9a8ulmq9n0NnnvTf67/ZrDMOhuJgOn1kIgXDoo3Q=",
    "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_FMoXUyYL7grJdPYzzxY38m3o",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505234441,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "viewAuthorizedUsers" : [ "usr_MQ346vx39YiJxoT4UcH7phts" ],
  "workflowId" : "wfl_4S2AAaCWp4EZg4U4s2CvNwvc",
  "workflowName" : "Gorgeous Silk 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_H7FtS833omEVfTpN2TDxbH6o HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "5DoNjcJprw4VLR16UwD2ksig"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1302

{
  "created" : 1711505206422,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "PQM2KlPLXWfka/qqUodc1jH4sFvjaMr1t4u/lrRp5PY=",
    "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_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "doc_H7FtS833omEVfTpN2TDxbH6o",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "PQM2KlPLXWfka/qqUodc1jH4sFvjaMr1t4u/lrRp5PY=",
    "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_FMoXUyYL7grJdPYzzxY38m3o",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505206467,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "viewAuthorizedUsers" : [ "usr_Ejd5f6UbwRnS9cPHdha2UrPZ" ],
  "workflowId" : "wfl_D8G3qrFPnUJB3bidR9y1ukTU",
  "workflowName" : "Enormous Granite Bottle"
}

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_CNrHHqDASiuDtVACL69xunRP HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "9JjhGj8ejnc2ZMUHCHZHq4hu"
Content-Type: application/json
Content-Length: 212

{
  "signatureProfileId" : "sip_FMoXUyYL7grJdPYzzxY38m3o",
  "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_Q56ppchfQsKDhtLXrwoYfC7z
ETag: "838m548cjiCpmn75PwyX7iKy"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1302

{
  "created" : 1711505264448,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "cAFFPIyHpbIybz8s/cKSE2xe21UX85lbUEDMUv1BoEc=",
    "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_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "doc_CNrHHqDASiuDtVACL69xunRP",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "cAFFPIyHpbIybz8s/cKSE2xe21UX85lbUEDMUv1BoEc=",
    "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_FMoXUyYL7grJdPYzzxY38m3o",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505264480,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "viewAuthorizedUsers" : [ "usr_Ejd5f6UbwRnS9cPHdha2UrPZ" ],
  "workflowId" : "wfl_D8G3qrFPnUJB3bidR9y1ukTU",
  "workflowName" : "Enormous Granite Bottle"
}

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_2vv1ngLhFcMAZbNrtnCXRZnb HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "87UsjWA8t97R1zuLgSSHQkJn"

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_4uk7yGDMq76oRSbjWAXVrNoZ
ETag: "87UsjWA8t97R1zuLgSSHQkJn"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1302

{
  "created" : 1711505244799,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "PDh4GZZdDOenYjrXpXHlAeId96KaEsYEZQtxGelX9a4=",
    "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_Ho6dHeApprVuv9Avjxa9kWJx",
  "id" : "doc_2vv1ngLhFcMAZbNrtnCXRZnb",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "PDh4GZZdDOenYjrXpXHlAeId96KaEsYEZQtxGelX9a4=",
    "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_FiUkPSsPTQ6SKRwY4G6eDtV4",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505244828,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
  "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
  "viewAuthorizedUsers" : [ "usr_Ejd5f6UbwRnS9cPHdha2UrPZ" ],
  "workflowId" : "wfl_D8G3qrFPnUJB3bidR9y1ukTU",
  "workflowName" : "Enormous Granite Bottle"
}

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_H7FtS833omEVfTpN2TDxbH6o/parts/3d03362a53cb5d67e46bfaaa52875cd631f8b05be368caf5b78bbf96b469e4f6 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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_D8G3qrFPnUJB3bidR9y1ukTU/downloadDocuments HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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_H7FtS833omEVfTpN2TDxbH6o&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.layoutId optional The filter value(s) for the layoutId field.
items.groupId optional The filter value(s) for the groupId field.
items.userId optional The filter value(s) for the userId field.
items.workflowId optional The filter value(s) for the workflowId field.
items.workflowHash optional The filter value(s) for the workflowHash field.
items.workflowName optional The filter value(s) for the workflowName field.
items.data1 optional The filter value(s) for the data1 field.
items.data2 optional The filter value(s) for the data2 field.
items.data3 optional The filter value(s) for the data3 field.
items.data4 optional The filter value(s) for the data4 field.
items.data5 optional The filter value(s) for the data5 field.
items.data6 optional The filter value(s) for the data6 field.
items.data7 optional The filter value(s) for the data7 field.
items.data8 optional The filter value(s) for the data8 field.
items.data9 optional The filter value(s) for the data9 field.
items.data10 optional The filter value(s) for the data10 field.
items.data11 optional The filter value(s) for the data11 field.
items.data12 optional The filter value(s) for the data12 field.
items.data13 optional The filter value(s) for the data13 field.
items.data14 optional The filter value(s) for the data14 field.
items.data15 optional The filter value(s) for the data15 field.
items.data16 optional The filter value(s) for the data16 field.
items.signatureProfileId optional The filter value(s) for the signatureProfileId field.
items.viewAuthorizedGroups optional The filter value(s) for the viewAuthorizedGroups field.
items.viewAuthorizedUsers optional The filter value(s) for the viewAuthorizedUsers field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 1454

{
  "items" : [ {
    "created" : 1711505206422,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "PQM2KlPLXWfka/qqUodc1jH4sFvjaMr1t4u/lrRp5PY=",
      "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_Ho6dHeApprVuv9Avjxa9kWJx",
    "id" : "doc_H7FtS833omEVfTpN2TDxbH6o",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "PQM2KlPLXWfka/qqUodc1jH4sFvjaMr1t4u/lrRp5PY=",
      "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_FMoXUyYL7grJdPYzzxY38m3o",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505206467,
    "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH",
    "viewAuthorizedGroups" : [ "grp_Ev1LqnfvFpQwYiPrzzHYUhgx", "grp_Ho6dHeApprVuv9Avjxa9kWJx" ],
    "viewAuthorizedUsers" : [ "usr_Ejd5f6UbwRnS9cPHdha2UrPZ" ],
    "workflowId" : "wfl_D8G3qrFPnUJB3bidR9y1ukTU",
    "workflowName" : "Enormous Granite Bottle"
  } ],
  "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_H7FtS833omEVfTpN2TDxbH6o&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 173

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{json parts}}",
  "expired" : 1711591655695
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.layoutId optional The filter value(s) for the layoutId field.
items.groupId optional The filter value(s) for the groupId field.
items.userId optional The filter value(s) for the userId field.
items.workflowId optional The filter value(s) for the workflowId field.
items.workflowHash optional The filter value(s) for the workflowHash field.
items.workflowName optional The filter value(s) for the workflowName field.
items.data1 optional The filter value(s) for the data1 field.
items.data2 optional The filter value(s) for the data2 field.
items.data3 optional The filter value(s) for the data3 field.
items.data4 optional The filter value(s) for the data4 field.
items.data5 optional The filter value(s) for the data5 field.
items.data6 optional The filter value(s) for the data6 field.
items.data7 optional The filter value(s) for the data7 field.
items.data8 optional The filter value(s) for the data8 field.
items.data9 optional The filter value(s) for the data9 field.
items.data10 optional The filter value(s) for the data10 field.
items.data11 optional The filter value(s) for the data11 field.
items.data12 optional The filter value(s) for the data12 field.
items.data13 optional The filter value(s) for the data13 field.
items.data14 optional The filter value(s) for the data14 field.
items.data15 optional The filter value(s) for the data15 field.
items.data16 optional The filter value(s) for the data16 field.
items.signatureProfileId optional The filter value(s) for the signatureProfileId field.
items.viewAuthorizedGroups optional The filter value(s) for the viewAuthorizedGroups field.
items.viewAuthorizedUsers optional The filter value(s) for the viewAuthorizedUsers field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_BPvho2CML14fVPhPf2vvpSFx
ETag: "2dbKq9WxXo2fGsXUBdHVbZdL"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 578

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505255698,
  "expired" : 1711591655695,
  "exportOperation" : "createWorkflowDocumentExport",
  "id" : "exp_GLVs4BbGfh2YTYpek1zqLWkT",
  "itemTemplate" : "{{id}},{{json parts}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Document&items.id=doc_H7FtS833omEVfTpN2TDxbH6o&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505255698,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_H7FtS833omEVfTpN2TDxbH6o/viewer HTTP/1.1
Authorization: Bearer act_BAHepoJfyF9YKq2kL6KGSr6u.36pEEZJe62aTTmcoTxpShaVEPPpajsWrJNrVQ2ewoH34v7V6Bih3McrBA42EgHz4
Content-Type: application/json
Content-Length: 79

{
  "redirectUrl" : "https://hauck.com/callback",
  "expired" : 1711591640594
}

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_5VZAB8B85XxYP3mX62cYnSgr
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 365

{
  "expired" : 1711591640594,
  "viewerUrl" : "https://hane.info/viewer#token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJ2aWV3ZXIiLCJkb2N1bWVudElkIjoiZG9jX0g3RnRTODMzb21FVmZUcE4yVER4Ykg2byIsInJlZGlyZWN0V..."
}

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_97DUvrb5NoHGrLty6sj5n1bG/layouts HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 585

{
  "isDisabled" : false,
  "name" : "Ergonomic Iron Clock",
  "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_JX8oBwLbnL76n2Vv97cX3g7G
ETag: "7FkYsHcHX7kFiiAqtDbJyjMv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 731

{
  "created" : 1711505311444,
  "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_NfkZ37zb15GeMcjthUzKQ8ss",
  "isDisabled" : false,
  "name" : "Ergonomic Iron Clock",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505311444
}

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_K4LzkJ2DQwG2htEQmGNh72gT HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "HFo8wVZU55pdcPpwmkvTWdaD"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 731

{
  "created" : 1711505186882,
  "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_K4LzkJ2DQwG2htEQmGNh72gT",
  "isDisabled" : false,
  "name" : "Small Plastic Gloves",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505186882
}

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_5rGU1oFFBEZiXygewKv9sDvj HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "8KRZGsSeQNWqc7tYRhmA1Caw"
Content-Type: application/json
Content-Length: 584

{
  "isDisabled" : false,
  "name" : "Durable Iron 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_BBso1Wy6U5R4zoZboLxEVc5H
ETag: "DJsRmfzPdkQne1hhbqpFn53j"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 730

{
  "created" : 1711505303626,
  "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_5rGU1oFFBEZiXygewKv9sDvj",
  "isDisabled" : false,
  "name" : "Durable Iron Wallet",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505303649
}

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=Fantastic%20Wool%20Car&items.id=lay_EwYLv6TXTv8wa4u9Rp3oTwsC&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.name optional The filter value(s) for the name field.
items.dataConfigurations.slot optional The filter value(s) for the dataConfigurations.slot field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 871

{
  "items" : [ {
    "created" : 1711505310728,
    "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_EwYLv6TXTv8wa4u9Rp3oTwsC",
    "isDisabled" : false,
    "name" : "Fantastic Wool Car",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505310728
  } ],
  "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=Small%20Plastic%20Gloves&items.id=lay_K4LzkJ2DQwG2htEQmGNh72gT&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 195

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{name}},{{json dataConfigurations}}",
  "expired" : 1711591701708
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.name optional The filter value(s) for the name field.
items.dataConfigurations.slot optional The filter value(s) for the dataConfigurations.slot field.
items.jobOperation optional The filter value(s) for the jobOperation field.
items.jobErrorCode optional The filter value(s) for the jobErrorCode field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_AEZ9T36KG3gykK5kKuvyjrpB
ETag: "CA5w2dPFCK3eKx2ACWhcGSjq"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 610

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505301711,
  "expired" : 1711591701708,
  "exportOperation" : "createWorkflowLayoutExport",
  "id" : "exp_LTb8uD9bjC8oA1JBkW8RoZnq",
  "itemTemplate" : "{{id}},{{name}},{{json dataConfigurations}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Small+Plastic+Gloves&items.id=lay_K4LzkJ2DQwG2htEQmGNh72gT&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505301711,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_97DUvrb5NoHGrLty6sj5n1bG/templates HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 2373

{
  "isDisabled" : false,
  "name" : "Heavy Duty Plastic Wallet",
  "description" : "2 étage, 44 Place Joubert, 82888 Besançon",
  "layoutSelectionMode" : "list",
  "allowedLayouts" : [ "lay_Pi9uLcVUHFmPg3nrLcLME9rk" ],
  "maxWatchers" : 10,
  "steps" : [ {
    "stepType" : "signature",
    "recipientSelectionMode" : "list",
    "maxRecipients" : 10,
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "email" : "timothy.boyer6629@my-company.com",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu",
      "phoneNumber" : "+33 6 12 34 56 78",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "country" : "FR",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "preferredLocale" : "fr"
    } ],
    "allowedGroups" : [ ],
    "allowedConsentPages" : [ "cop_PKXZCX219CkqSg7dZ8BmQHPi" ],
    "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_GfdLegx27j31CmKtsFUvYGb8",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "readonly" : false,
    "removable" : true,
    "email" : "shaneka.pfannerstill3979@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  } ],
  "allowedSignatureProfiles" : [ "sip_J72x9WGsLZ9Z8dERMm1FiGPY" ],
  "documentSelectionMode" : "any",
  "maxDocuments" : 10,
  "maxAttachments" : 20,
  "coManagerSelectionMode" : "none",
  "allowedCoManagerUsers" : [ ],
  "coManagerUsersModifiable" : true,
  "allowedCoManagerGroups" : [ ]
}

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.
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.

# HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_9k5cE3die3thFfbAEw36LWy3
ETag: "GwU8BEQ4Sx3FL5KmaHUvHMKT"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2590

{
  "allowedCoManagerGroups" : [ ],
  "allowedCoManagerUsers" : [ ],
  "allowedLayouts" : [ "lay_Pi9uLcVUHFmPg3nrLcLME9rk" ],
  "allowedSignatureProfiles" : [ "sip_J72x9WGsLZ9Z8dERMm1FiGPY" ],
  "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "coManagerNotifiedEventsReadonly" : false,
  "coManagerSelectionMode" : "none",
  "coManagerUsersModifiable" : true,
  "created" : 1711505675938,
  "description" : "2 étage, 44 Place Joubert, 82888 Besançon",
  "documentSelectionMode" : "any",
  "id" : "wtm_6LCxwDBKCoZNKbECRSwQtzst",
  "isDisabled" : false,
  "layoutSelectionMode" : "list",
  "maxAttachments" : 10,
  "maxDocuments" : 10,
  "maxWatchers" : 10,
  "name" : "Heavy Duty Plastic Wallet",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "notifiedEventsReadonly" : false,
  "steps" : [ {
    "allowComments" : true,
    "allowedConsentPages" : [ ],
    "allowedGroups" : [ ],
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_HLPw67BjhVN1vKE8iw78vuNA",
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "maxRecipients" : 1,
    "readonly" : false,
    "recipientSelectionMode" : "list",
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "country" : "FR",
      "email" : "timothy.boyer6629@my-company.com",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
      "preferredLocale" : "fr",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
    } ],
    "removable" : true,
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505675938,
  "watchers" : [ {
    "email" : "shaneka.pfannerstill3979@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_GfdLegx27j31CmKtsFUvYGb8"
  } ]
}

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.
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.
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_Nx6WLyBawPt8aEnGcLkw2wY3 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "8PjHxpkmtR4oU37FNQTQ6Vh4"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2567

{
  "allowedCoManagerGroups" : [ ],
  "allowedCoManagerUsers" : [ ],
  "allowedLayouts" : [ "lay_J8NsbJDxZSrTv3LeFK7yHfYL" ],
  "allowedSignatureProfiles" : [ "sip_K9zhgachziNi8jvyfR6hHnkQ" ],
  "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "coManagerNotifiedEventsReadonly" : false,
  "coManagerSelectionMode" : "none",
  "coManagerUsersModifiable" : true,
  "created" : 1711505186588,
  "description" : "22 Quai Montorgueil, 64080 Marseille",
  "documentSelectionMode" : "any",
  "id" : "wtm_Nx6WLyBawPt8aEnGcLkw2wY3",
  "isDisabled" : false,
  "layoutSelectionMode" : "list",
  "maxAttachments" : 5,
  "maxDocuments" : 10,
  "maxWatchers" : 6,
  "name" : "Sleek Cotton Hat",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "notifiedEventsReadonly" : false,
  "steps" : [ {
    "allowComments" : true,
    "allowedConsentPages" : [ ],
    "allowedGroups" : [ ],
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_JamGGuFQ9HvTnshj513so9Qn",
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "maxRecipients" : 1,
    "readonly" : false,
    "recipientSelectionMode" : "list",
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "country" : "FR",
      "email" : "timothy.boyer6629@my-company.com",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
      "preferredLocale" : "fr",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
    } ],
    "removable" : true,
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505186588,
  "watchers" : [ {
    "email" : "gerry.kertzmann8056@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_Goh1FcQDVxpD39fxxDCjruE6"
  } ]
}

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.
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.
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_BRkYdMtWXfC13uLprpXVW4E8 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "2Aq9GHbCNWRKWYWxxArvTYad"
Content-Type: application/json
Content-Length: 2394

{
  "isDisabled" : false,
  "name" : "Synergistic Rubber Computer",
  "description" : "7186 Allée, Voie Oberkampf, 75818 Hyères",
  "layoutSelectionMode" : "listOrNull",
  "allowedLayouts" : [ "lay_D3iGRZmz91RDE8wf9zG1Dgzf" ],
  "maxWatchers" : 10,
  "steps" : [ {
    "id" : "stp_JgzarA8ZRn1nUmt58ZLtQpPZ",
    "recipientSelectionMode" : "list",
    "maxRecipients" : 10,
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "email" : "timothy.boyer6629@my-company.com",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu",
      "phoneNumber" : "+33 6 12 34 56 78",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "country" : "FR",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "preferredLocale" : "fr"
    } ],
    "allowedGroups" : [ ],
    "allowedConsentPages" : [ "cop_L5KxTdR7arW32MAH6zYuyt2f" ],
    "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_MmJuP8ysom9eg7pAGiMuGX33",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "readonly" : false,
    "removable" : true,
    "email" : "rolando.collins2208@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  } ],
  "allowedSignatureProfiles" : [ "sip_JApMd6ESrCNevrfoNWAzG5z5" ],
  "documentSelectionMode" : "any",
  "maxDocuments" : 10,
  "maxAttachments" : 15,
  "coManagerSelectionMode" : "anyOrNull",
  "allowedCoManagerUsers" : [ ],
  "coManagerUsersModifiable" : true,
  "allowedCoManagerGroups" : [ ]
}

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.
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.

# HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_9jBaNczTAsoWZsbRcTssZDRk
ETag: "9kP1YrFGAy1oSszTyfmtg3HL"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2598

{
  "allowedCoManagerGroups" : [ ],
  "allowedCoManagerUsers" : [ ],
  "allowedLayouts" : [ "lay_D3iGRZmz91RDE8wf9zG1Dgzf" ],
  "allowedSignatureProfiles" : [ "sip_JApMd6ESrCNevrfoNWAzG5z5" ],
  "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "coManagerNotifiedEventsReadonly" : false,
  "coManagerSelectionMode" : "anyOrNull",
  "coManagerUsersModifiable" : true,
  "created" : 1711505666636,
  "description" : "7186 Allée, Voie Oberkampf, 75818 Hyères",
  "documentSelectionMode" : "any",
  "id" : "wtm_BRkYdMtWXfC13uLprpXVW4E8",
  "isDisabled" : false,
  "layoutSelectionMode" : "listOrNull",
  "maxAttachments" : 10,
  "maxDocuments" : 10,
  "maxWatchers" : 10,
  "name" : "Synergistic Rubber Computer",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "notifiedEventsReadonly" : false,
  "steps" : [ {
    "allowComments" : true,
    "allowedConsentPages" : [ ],
    "allowedGroups" : [ ],
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_JgzarA8ZRn1nUmt58ZLtQpPZ",
    "invitePeriod" : 86400000,
    "maxInvites" : 10,
    "maxRecipients" : 1,
    "readonly" : false,
    "recipientSelectionMode" : "list",
    "recipients" : [ {
      "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
      "country" : "FR",
      "email" : "timothy.boyer6629@my-company.com",
      "firstName" : "Abram",
      "lastName" : "Ortiz",
      "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
      "preferredLocale" : "fr",
      "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
    } ],
    "removable" : true,
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505666759,
  "watchers" : [ {
    "email" : "rolando.collins2208@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_MmJuP8ysom9eg7pAGiMuGX33"
  } ]
}

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.
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.
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=Sleek%20Cotton%20Hat&items.id=wtm_Nx6WLyBawPt8aEnGcLkw2wY3&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.name optional The filter value(s) for the name field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.steps.id optional The filter value(s) for the steps.id field.
items.recipients.email optional The filter value(s) for the recipients.email field.
items.recipients.userId optional The filter value(s) for the recipients.userId field.
items.recipients.subject optional The filter value(s) for the recipients.subject field.
items.recipients.firstName optional The filter value(s) for the recipients.firstName field.
items.recipients.lastName optional The filter value(s) for the recipients.lastName field.
items.recipients.country optional The filter value(s) for the recipients.country field.
items.recipients.organizationId optional The filter value(s) for the recipients.organizationId field.
items.nextClean optional The filter value(s) for the nextClean field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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: 2777

{
  "items" : [ {
    "allowedCoManagerGroups" : [ ],
    "allowedCoManagerUsers" : [ ],
    "allowedLayouts" : [ "lay_J8NsbJDxZSrTv3LeFK7yHfYL" ],
    "allowedSignatureProfiles" : [ "sip_K9zhgachziNi8jvyfR6hHnkQ" ],
    "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
    "coManagerNotifiedEventsReadonly" : false,
    "coManagerSelectionMode" : "none",
    "coManagerUsersModifiable" : true,
    "created" : 1711505186588,
    "description" : "22 Quai Montorgueil, 64080 Marseille",
    "documentSelectionMode" : "any",
    "id" : "wtm_Nx6WLyBawPt8aEnGcLkw2wY3",
    "isDisabled" : false,
    "layoutSelectionMode" : "list",
    "maxAttachments" : 5,
    "maxDocuments" : 10,
    "maxWatchers" : 6,
    "name" : "Sleek Cotton Hat",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
    "notifiedEventsReadonly" : false,
    "steps" : [ {
      "allowComments" : true,
      "allowedConsentPages" : [ ],
      "allowedGroups" : [ ],
      "hideAttachments" : false,
      "hideWorkflowRecipients" : false,
      "id" : "stp_JamGGuFQ9HvTnshj513so9Qn",
      "invitePeriod" : 86400000,
      "maxInvites" : 5,
      "maxRecipients" : 1,
      "readonly" : false,
      "recipientSelectionMode" : "list",
      "recipients" : [ {
        "consentPageId" : "cop_8LbQz49DBFTbhu1T8ahW2q3a",
        "country" : "FR",
        "email" : "timothy.boyer6629@my-company.com",
        "firstName" : "Abram",
        "lastName" : "Ortiz",
        "organizationId" : "org_7iqG5V1pEWBPnNQDbBKcCKt9",
        "phoneNumber" : "+33 6 12 34 56 78",
        "pictureResourceId" : "res_Ja9uHUGRRFtAgA54mdY5FwH5",
        "preferredLocale" : "fr",
        "userId" : "usr_Mbo3fd7cpvqLx5mg3WLVMecu"
      } ],
      "removable" : true,
      "requiredRecipients" : 1,
      "sendDownloadLink" : true,
      "stepType" : "signature",
      "validityPeriod" : 8553600000
    } ],
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505186588,
    "watchers" : [ {
      "email" : "gerry.kertzmann8056@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_Goh1FcQDVxpD39fxxDCjruE6"
    } ]
  } ],
  "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[].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[].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=Sleek%20Cotton%20Hat&items.id=wtm_Nx6WLyBawPt8aEnGcLkw2wY3&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 182

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{name}},{{json steps}}",
  "expired" : 1711592073509
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.name optional The filter value(s) for the name field.
items.isDisabled optional The filter value(s) for the isDisabled field.
items.steps.id optional The filter value(s) for the steps.id field.
items.recipients.email optional The filter value(s) for the recipients.email field.
items.recipients.userId optional The filter value(s) for the recipients.userId field.
items.recipients.subject optional The filter value(s) for the recipients.subject field.
items.recipients.firstName optional The filter value(s) for the recipients.firstName field.
items.recipients.lastName optional The filter value(s) for the recipients.lastName field.
items.recipients.country optional The filter value(s) for the recipients.country field.
items.recipients.organizationId optional The filter value(s) for the recipients.organizationId field.
items.nextClean optional The filter value(s) for the nextClean field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_8msat2DjXBTW9ck36effogxC
ETag: "CyojLnzwoLhG7fvdUzchcmKn"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 595

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505673511,
  "expired" : 1711592073509,
  "exportOperation" : "createWorkflowTemplateExport",
  "id" : "exp_MrurKjFKX3wXoWC2hxYbnWmg",
  "itemTemplate" : "{{id}},{{name}},{{json steps}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Sleek+Cotton+Hat&items.id=wtm_Nx6WLyBawPt8aEnGcLkw2wY3&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505673511,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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_Am7EsUkmwdVXjdXJUQz2vH3a/blobs HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
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_7Dn1noFtivdVPXtrfVyWNXkW
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 198

{
  "hash" : "obcUcumzUOJsClVDv/jHTNefKTRlTJULnZx4dfOrx+I=",
  "id" : "blb_FZXndZPfUwAEkjbKRUsU8U7r",
  "templateId" : "wtm_Am7EsUkmwdVXjdXJUQz2vH3a",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG"
}

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_P7e4ExzZtKpDP3p5iXfQryhy/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_FMoXUyYL7grJdPYzzxY38m3o&unzip=false&pdf2pdfa=auto&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
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 optional Whether or not zip archives should be unzipped.
pdf2pdfa optional Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments optional Whether or not documents should be created.
readonly optional Whether or not the created documents should be read-only.
removable optional Whether or not the created documents should be removable.
ignoreAttachments optional Whether or not attachments should be ignored.
signatureProfileId optional 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_5hupVgUrWLmqVykSTYBbLe7S
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1309

{
  "documents" : [ {
    "created" : 1711505290726,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "KsUMEplJ/0g+os7X/t3NAZjSkkdD/YvNGYac3DtLtqU=",
      "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_4hnQtBdpkUshUxnthJYEmTbr",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "KsUMEplJ/0g+os7X/t3NAZjSkkdD/YvNGYac3DtLtqU=",
      "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_FMoXUyYL7grJdPYzzxY38m3o",
    "templateId" : "wtm_P7e4ExzZtKpDP3p5iXfQryhy",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505290726
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "KsUMEplJ/0g+os7X/t3NAZjSkkdD/YvNGYac3DtLtqU=",
    "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.
403 VirusFound A virus was found in a document.
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_HZMmfmwNmh5gDnshs49SfVKn/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_FMoXUyYL7grJdPYzzxY38m3o&unzip=false&pdf2pdfa=auto&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: multipart/form-data;boundary=m-JzEEaTZAOjfYVWyjEZZIvKyyrTPKaJ44baKo; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Length: 12559

--m-JzEEaTZAOjfYVWyjEZZIvKyyrTPKaJ44baKo
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
...

--m-JzEEaTZAOjfYVWyjEZZIvKyyrTPKaJ44baKo--

Path parameters:

/api/templates/{templateId}/parts

Parameter Description
templateId The identifier of the workflow template.

Query parameters:

Parameter Description
unzip optional Whether or not zip archives should be unzipped.
pdf2pdfa optional Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments optional Whether or not documents should be created.
readonly optional Whether or not the created documents should be read-only.
removable optional Whether or not the created documents should be removable.
ignoreAttachments optional Whether or not attachments should be ignored.
signatureProfileId optional 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_BrjMidLd7nd2VfkA5mFnc6rC
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1309

{
  "documents" : [ {
    "created" : 1711505285432,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "Vnjrw5+E7E3DYLcQDGn1TIOw6IryFtzwKV7wCmPRC5w=",
      "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_KCKiYLoDTWuhh6DCMpbvzNBo",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "Vnjrw5+E7E3DYLcQDGn1TIOw6IryFtzwKV7wCmPRC5w=",
      "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_FMoXUyYL7grJdPYzzxY38m3o",
    "templateId" : "wtm_HZMmfmwNmh5gDnshs49SfVKn",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505285432
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "Vnjrw5+E7E3DYLcQDGn1TIOw6IryFtzwKV7wCmPRC5w=",
    "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.
403 VirusFound A virus was found in a document.
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_GqSkHQTbZ25AhibMjgATAkpb/blobs/parts?createDocuments=true&ignoreAttachments=false&unzip=false&signatureProfileId=sip_FMoXUyYL7grJdPYzzxY38m3o&pdf2pdfa=force&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 210

{
  "parts" : [ {
    "filename" : "document.pdf",
    "contentType" : "application/pdf",
    "blobs" : [ "blb_5P6fK4LrZdqqSw3uiMEUHooe", "blb_6iZbXWf2BdcZX2ttSZVPKYDn", "blb_4TMFXUHrPUp3Yf7z2ojc4qcM" ]
  } ]
}

Path parameters:

/api/templates/{templateId}/blobs/parts

Parameter Description
templateId The identifier of the workflow template.

Query parameters:

Parameter Description
unzip optional Whether or not zip archives should be unzipped.
pdf2pdfa optional Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments optional Whether or not documents should be created.
readonly optional Whether or not the created documents should be read-only.
removable optional Whether or not the created documents should be removable.
ignoreAttachments optional Whether or not attachments should be ignored.
signatureProfileId optional 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_2CKDFMXGHvHnxCZp66jQ5fT2
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1309

{
  "documents" : [ {
    "created" : 1711505295717,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "b6aUZOiU0APXqSSXbJMs1+Ijzw7Rwp+wDQqzlq0Xtfo=",
      "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_5MMdJ1Fo5P2zNQjiwHDpQidX",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "b6aUZOiU0APXqSSXbJMs1+Ijzw7Rwp+wDQqzlq0Xtfo=",
      "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_FMoXUyYL7grJdPYzzxY38m3o",
    "templateId" : "wtm_GqSkHQTbZ25AhibMjgATAkpb",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505295717
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "b6aUZOiU0APXqSSXbJMs1+Ijzw7Rwp+wDQqzlq0Xtfo=",
    "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.
403 VirusFound A virus was found in a document.
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_2WFasoBJJcw68AgGWYLBAdzF/blobs HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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_4Ubb4M5euX7Q3zxvqNyGLn6i
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 121

{
  "deletedBlobs" : [ "blb_JGVj6kmKQZpD1acJTtNCAmkn", "blb_ERUW5NZjPCTrzNucEJvCa6jJ", "blb_HD7wG88qpbzGGhTjZJkKWYjR" ]
}

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_PLgFgsDkMvHMhyizGT5qm3uz/templateDocuments HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 552

{
  "readonly" : false,
  "removable" : true,
  "parts" : [ {
    "filename" : "Document",
    "contentType" : "application/pdf",
    "size" : 18540,
    "hash" : "tZHSqYncTHSm/Xh8ezKDMhkP0aWsY9U3zAuzcXQi8l0=",
    "policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
    "isOriginal" : true
  } ],
  "signatureProfileId" : "sip_FMoXUyYL7grJdPYzzxY38m3o",
  "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_PdSNLHRRrYqXdFHU7wYjMpBu
ETag: "6pn8qwtGGtjEUmxKsfR3vkEF"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1052

{
  "created" : 1711505404730,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "tZHSqYncTHSm/Xh8ezKDMhkP0aWsY9U3zAuzcXQi8l0=",
    "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_Az3uDWqxM7u4ftK1zeWfHj8e",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "tZHSqYncTHSm/Xh8ezKDMhkP0aWsY9U3zAuzcXQi8l0=",
    "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_FMoXUyYL7grJdPYzzxY38m3o",
  "templateId" : "wtm_PLgFgsDkMvHMhyizGT5qm3uz",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505404730
}

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_5Diyj8TJyYCbV4oYNkz3NaZS HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: "2K8ukmfRMxnoeiFedFM1Bz1K"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1052

{
  "created" : 1711505186740,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "PA0oGJ8Ln3dpZvyD1AjnAGM0b/OYeaaL/YgupYJzUoI=",
    "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_5Diyj8TJyYCbV4oYNkz3NaZS",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "PA0oGJ8Ln3dpZvyD1AjnAGM0b/OYeaaL/YgupYJzUoI=",
    "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_FMoXUyYL7grJdPYzzxY38m3o",
  "templateId" : "wtm_Nx6WLyBawPt8aEnGcLkw2wY3",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505186816
}

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_9jGuiF54v6TjH2oZiTSeYdAc HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "13BLvU6Q3yaJ1HmHMrUc9u2o"
Content-Type: application/json
Content-Length: 256

{
  "readonly" : true,
  "removable" : false,
  "signatureProfileId" : "sip_FMoXUyYL7grJdPYzzxY38m3o",
  "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_8W5hx4oPuqq13a6stovTErfb
ETag: "ASajhGT3BsakLYhHz8ECCRDs"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1052

{
  "created" : 1711505393071,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "hBqyen/KTGBBaIzq8/n//in7oVs6/s1JD9eNP6CKRfs=",
    "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_9jGuiF54v6TjH2oZiTSeYdAc",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "hBqyen/KTGBBaIzq8/n//in7oVs6/s1JD9eNP6CKRfs=",
    "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_FMoXUyYL7grJdPYzzxY38m3o",
  "templateId" : "wtm_Nx6WLyBawPt8aEnGcLkw2wY3",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505393100
}

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_HJvU7rSZ9WE9rtikqqPwTmHV HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
If-Match: "3SWX1GZgqrefb73n4L4qnetj"

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_4aYDc93f4UCXiAiHCQTfgkTL
ETag: "3SWX1GZgqrefb73n4L4qnetj"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1052

{
  "created" : 1711505409123,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "Hlk1FJQWz2kaWMBcpnhGyUPS6tO63Qh6fLxcE1NgpOw=",
    "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_HJvU7rSZ9WE9rtikqqPwTmHV",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "Hlk1FJQWz2kaWMBcpnhGyUPS6tO63Qh6fLxcE1NgpOw=",
    "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_FMoXUyYL7grJdPYzzxY38m3o",
  "templateId" : "wtm_Nx6WLyBawPt8aEnGcLkw2wY3",
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "updated" : 1711505409149
}

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_5Diyj8TJyYCbV4oYNkz3NaZS/parts/3c0d28189f0b9f776966fc83d408e70063346ff39879a68bfd882ea5827352... HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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_Nx6WLyBawPt8aEnGcLkw2wY3/downloadDocuments HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

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: 29186

PK��<{X���������������Document�|wTTK�/9*A������A$�!ga� "I$�3%g�Q�9G%K��P���������70k��_uu���7���(���ji�����0xx�J��0gC���4P�ۅ�!L�@��6�
...

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_5Diyj8TJyYCbV4oYNkz3NaZS&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.templateId optional The filter value(s) for the templateId field.
items.signatureProfileId optional The filter value(s) for the signatureProfileId field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional The sort order of the search result.
itemsPerPage optional The number of items per page to retrieve. Maximum is 50.
pageIndex optional 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" : 1711505186740,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "PA0oGJ8Ln3dpZvyD1AjnAGM0b/OYeaaL/YgupYJzUoI=",
      "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_5Diyj8TJyYCbV4oYNkz3NaZS",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "PA0oGJ8Ln3dpZvyD1AjnAGM0b/OYeaaL/YgupYJzUoI=",
      "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_FMoXUyYL7grJdPYzzxY38m3o",
    "templateId" : "wtm_Nx6WLyBawPt8aEnGcLkw2wY3",
    "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
    "updated" : 1711505186816
  } ],
  "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_5Diyj8TJyYCbV4oYNkz3NaZS&sortBy=items.id HTTP/1.1
Authorization: Bearer act_EPhVvepcJLcTmJTcFxWWkX79.2TkN32XLm61TLgn5bqKwwaDNfDhEe7BDDnSzZsmgFUpGU2JX96sHFEhvMwvZYykt
Content-Type: application/json
Content-Length: 173

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{json parts}}",
  "expired" : 1711591789620
}

Query parameters:

Parameter Description
text optional The text to search.
items.id optional The filter value(s) for the id field.
items.tenantId optional The filter value(s) for the tenantId field.
items.templateId optional The filter value(s) for the templateId field.
items.signatureProfileId optional The filter value(s) for the signatureProfileId field.
items.created optional The filter value(s) for the created field.
items.updated optional The filter value(s) for the updated field.
sortBy optional The field used to sort the search result.
sortOrder optional 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_Hm9fPb3uTe3vMQFJjE9RF7vQ
ETag: "29CjQKcFAhvFKLXC7GXCMMtv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 586

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1711505389622,
  "expired" : 1711591789620,
  "exportOperation" : "createWorkflowTemplateDocumentExport",
  "id" : "exp_Neniu3USj79WgSjuSJi77Cuj",
  "itemTemplate" : "{{id}},{{json parts}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Document&items.id=wtd_5Diyj8TJyYCbV4oYNkz3NaZS&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_97DUvrb5NoHGrLty6sj5n1bG",
  "totalItems" : 0,
  "updated" : 1711505389622,
  "userId" : "usr_5LAg5dbXi2uzWVAyqkC9uYRH"
}

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.