Workflow Manager – v1.14.4
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: 22

"sgs-wm-webapp:1.14.4"

Here is what you should get as a response:

"sgs-wm-webapp:1.14.4"

Access tokens

Create access token

Create a user access token.

HTTP request

POST /api/users/usr_5jmbWEirzyin4KJvzDVPqf7q/accessTokens HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 97

{
  "name" : "Denny Juan Heredatt",
  "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_JYqTfzriThmNVwtnKmd6TJXX
ETag: "U8PMzjURPLviavseBddpiReC"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 402

{
  "authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ],
  "created" : 1740575669846,
  "id" : "act_8Mj92YZaKv62FW2Jknv25Jsk",
  "name" : "Denny Juan Heredatt",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "tokenValue" : "act_8Mj92YZaKv62FW2Jknv25Jsk.3jYvkPdwRrHz7TYwzwwpqTwoq2GYhEQrXtsuSo9wLg3hY56FDCAdxvYHAcoJsiAj",
  "updated" : 1740575669846,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_3m4v7pjSKxnkB6EkTnnNHcxH HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "authorizedIpRanges" : [ ],
  "created" : 1740575451167,
  "id" : "act_3m4v7pjSKxnkB6EkTnnNHcxH",
  "name" : "Lisa Ford",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "tokenValue" : "****************",
  "updated" : 1740575451167,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_2kXhUsApYrjSvedeqfKQJxk8 HTTP/1.1
Authorization: Bearer act_2kXhUsApYrjSvedeqfKQJxk8.ivzXHe4rQAB9FDWAQFCH3NisLovHKwX6Lr9kxTq1w7iXYGUAqRKHZe9q3hLLnc4m
If-Match: "ApaeSJAsGE9wUCg6J2Lk2u3A"
Content-Type: application/json
Content-Length: 89

{
  "name" : "Lisa Neucar",
  "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_MyJSVNZmy1F9Rn1sYepvBQHY
ETag: "9hD9sWhkmowL3WH931wdhNvZ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 317

{
  "authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ],
  "created" : 1740575661755,
  "id" : "act_2kXhUsApYrjSvedeqfKQJxk8",
  "name" : "Lisa Neucar",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "tokenValue" : "****************",
  "updated" : 1740575661784,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_HH6NM3CHpj4H4ZWVJ3uvxont HTTP/1.1
Authorization: Bearer act_HH6NM3CHpj4H4ZWVJ3uvxont.49szkH8qDnTRfjzm7aWn7cLoWyjqDyXy7n4q4WAAu2D8fQjd84ar2pMChUbBrtGd

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_55zkYDwNC8mWZM5idHYCE77h
ETag: "2Ld3HpEMnPdCmTbEY3f7jtXD"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 287

{
  "authorizedIpRanges" : [ ],
  "created" : 1740575670986,
  "id" : "act_HH6NM3CHpj4H4ZWVJ3uvxont",
  "name" : "Sally Mander",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "tokenValue" : "****************",
  "updated" : 1740575670986,
  "userId" : "usr_CRhGKhKFKmZJu8tRjp3APbmc"
}

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_3m4v7pjSKxnkB6EkTnnNHcxH&items.id=act_3m4v7pjSKxnkB6EkTnnNHcxH&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.userId The filter value(s) for the userId field.
items.name The filter value(s) for the name field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 384

{
  "items" : [ {
    "authorizedIpRanges" : [ ],
    "created" : 1740575451167,
    "id" : "act_3m4v7pjSKxnkB6EkTnnNHcxH",
    "name" : "Lisa Ford",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "tokenValue" : "****************",
    "updated" : 1740575451167,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
  } ],
  "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_5jmbWEirzyin4KJvzDVPqf7q/bookmarks HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 154

{
  "name" : "Hy Ball",
  "searchOperation" : "searchUsers",
  "searchQuery" : "text=ling.dare6185@my-company.com&items.id=usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_Hrdjgk6PBVa6iLKrpauXzHzf
ETag: "2reAzqmHsBGD1AVTWv1kJLUk"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 347

{
  "created" : 1740575849361,
  "id" : "bom_A98njdGoBsrUD7etkBrL5eSm",
  "name" : "Hy Ball",
  "searchOperation" : "searchUsers",
  "searchQuery" : "text=ling.dare6185%40my-company.com&items.id=usr_5jmbWEirzyin4KJvzDVPqf7q",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575849361,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_4NLKsLhNZHWp24u9jeo45Dru HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "created" : 1740575850276,
  "id" : "bom_4NLKsLhNZHWp24u9jeo45Dru",
  "name" : "Barb E. Cue",
  "searchOperation" : "searchUsers",
  "searchQuery" : "items.id=usr_5jmbWEirzyin4KJvzDVPqf7q",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575850276,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_3n6ge1AUeo3WyhddcZjWSbUb HTTP/1.1
Authorization: Bearer act_FyS3btRnCPMQPRBYzHBG6MRA.2w4Mpxhb65yvZ9hajwZfvJpHX6H5pKv9PfiAb71F9uoqLfgVqNC2h3coCu69F6RZ

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_BmqESbWgxyNJHehvjjJcQts8
ETag: "5jMgQ82JtXeTnZ5ZoEdJWicC"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 315

{
  "created" : 1740575851368,
  "id" : "bom_3n6ge1AUeo3WyhddcZjWSbUb",
  "name" : "Trina Woods",
  "searchOperation" : "searchUsers",
  "searchQuery" : "items.id=usr_JFs5uNkggvbzi2hA67B2ww48",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575851368,
  "userId" : "usr_JFs5uNkggvbzi2hA67B2ww48"
}

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=X.%20Benedict&items.id=bom_4NLKsLhNZHWp24u9jeo45Dru&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.userId The filter value(s) for the userId field.
items.name The filter value(s) for the name field.
items.searchOperation The filter value(s) for the searchOperation field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 415

{
  "items" : [ {
    "created" : 1740575852416,
    "id" : "bom_4NLKsLhNZHWp24u9jeo45Dru",
    "name" : "X. Benedict",
    "searchOperation" : "searchUsers",
    "searchQuery" : "items.id=usr_5jmbWEirzyin4KJvzDVPqf7q",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575852416,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
  } ],
  "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_Dd3R8EjLoTYMd73hjqC7GAnX/consentPages HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 944

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

{
  "allowOrganization" : true,
  "authenticateUser" : true,
  "clientId" : "clt01",
  "created" : 1740575956270,
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "hideDownloads" : false,
  "hideMobileQrCode" : true,
  "id" : "cop_LfgCrCasgBojHEjNTHxXzgne",
  "isCountryRequired" : true,
  "isDisabled" : false,
  "logoResourceId" : "res_HaWyXHbf5eUwwomeKktP5QpM",
  "name" : "Azur",
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "sharedPassphrase" : "****************",
  "signingMode" : "server",
  "stepType" : "signature",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "updated" : 1740575956270,
  "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_5TY7evwt7j1o8LXDtGGybtnw HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "allowOrganization" : true,
  "authenticateUser" : false,
  "clientId" : "clt01",
  "created" : 1740575446950,
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "hideDownloads" : false,
  "hideMobileQrCode" : true,
  "id" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
  "isCountryRequired" : false,
  "isDisabled" : false,
  "logoResourceId" : "res_KwPnhRiQ32B41UkSj73HTDA5",
  "name" : "Blanc",
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "sharedPassphrase" : "****************",
  "signingMode" : "server",
  "stepType" : "signature",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "updated" : 1740575446950,
  "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_5DkR63MigrCXy9Ako4tPA9mb HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "7P4mNXC2bmBHuMebhTq6Y8BN"
Content-Type: application/json
Content-Length: 917

{
  "isDisabled" : false,
  "name" : "Cyan",
  "authenticateUser" : true,
  "clientId" : "clt01",
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "sharedPassphrase" : "4AuTJvK5ARvEtyikyhFUe6sd",
  "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_4iyiM72CwYCmQL5oh7F5Kjbp
ETag: "D7oxEamNgDhnsYqALUNqSprv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 780

{
  "allowOrganization" : true,
  "authenticateUser" : true,
  "clientId" : "clt01",
  "created" : 1740575963005,
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "hideDownloads" : false,
  "hideMobileQrCode" : false,
  "id" : "cop_5DkR63MigrCXy9Ako4tPA9mb",
  "isCountryRequired" : true,
  "isDisabled" : false,
  "jobOperation" : "purgeConsentPageResource",
  "logoResourceId" : "res_4LbGrrTAa52dDAjBfojHreNh",
  "name" : "Cyan",
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "sharedPassphrase" : "****************",
  "signingMode" : "server",
  "stepType" : "signature",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "updated" : 1740575963079,
  "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=Blanc&items.id=cop_5TY7evwt7j1o8LXDtGGybtnw&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.isDefault The filter value(s) for the isDefault field.
items.isDisabled The filter value(s) for the isDisabled field.
items.name The filter value(s) for the name field.
items.stepType The filter value(s) for the stepType field.
items.clientId The filter value(s) for the clientId field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 865

{
  "items" : [ {
    "allowOrganization" : true,
    "authenticateUser" : false,
    "clientId" : "clt01",
    "created" : 1740575446950,
    "emUrl" : "https://evidence-manager.lex-persona.com/",
    "hideDownloads" : false,
    "hideMobileQrCode" : true,
    "id" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
    "isCountryRequired" : false,
    "isDisabled" : false,
    "logoResourceId" : "res_KwPnhRiQ32B41UkSj73HTDA5",
    "name" : "Blanc",
    "primaryColor" : "#208cdf",
    "secondaryColor" : "#4ca3e5",
    "sharedPassphrase" : "****************",
    "signingMode" : "server",
    "stepType" : "signature",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
    "updated" : 1740575446950,
    "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=Blanc&items.id=cop_5TY7evwt7j1o8LXDtGGybtnw&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 190

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.isDefault The filter value(s) for the isDefault field.
items.isDisabled The filter value(s) for the isDisabled field.
items.name The filter value(s) for the name field.
items.stepType The filter value(s) for the stepType field.
items.clientId The filter value(s) for the clientId field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_FY9YC6S8W92p2tCZHmSWPnWT
ETag: "963snSaSRuC8aimV3UZT63Jg"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 587

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575960024,
  "expired" : 1740662360022,
  "exportOperation" : "createConsentPageExport",
  "id" : "exp_2bNqMzfesNiBe95MxyU68oPT",
  "itemTemplate" : "{{id}},{{name}},{{json keystoreTypes}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Blanc&items.id=cop_5TY7evwt7j1o8LXDtGGybtnw&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575960024,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_5jmbWEirzyin4KJvzDVPqf7q/contacts HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 216

{
  "email" : "velda.jakubowski8440@my-company.com",
  "phoneNumber" : "+33 6 12 34 56 78",
  "comments" : "Quia velit repudiandae dolores.",
  "firstName" : "Jeanne",
  "lastName" : "Rodriguez",
  "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.
comments String optional The comments associated with 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_BgFFfdd6nHEcXyLmVX1sdMdC
ETag: "BBCCEz1NpwMfU4AYYfhJUEiP"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 438

{
  "comments" : "Quia velit repudiandae dolores.",
  "country" : "FR",
  "created" : 1740575938860,
  "email" : "velda.jakubowski8440@my-company.com",
  "firstName" : "Jeanne",
  "id" : "con_MXFzpECmY1ZRq8aAUqDNkzCe",
  "lastName" : "Rodriguez",
  "name" : "Jeanne Rodriguez",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575938860,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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.
comments String optional The comments associated with 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_Ei7Xqv5KcjCMKjGpFsvtwrWQ HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "comments" : "Totam dolorum quo totam et cum atque necessitatibus.",
  "country" : "FR",
  "created" : 1740575938054,
  "email" : "sook.bosco6810@my-company.com",
  "firstName" : "Axel",
  "id" : "con_Ei7Xqv5KcjCMKjGpFsvtwrWQ",
  "lastName" : "Jacquet",
  "name" : "Axel Jacquet",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575938054,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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.
comments String optional The comments associated with 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_Jj2D21bxr68YzDPvLA6VvoSi HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "6rskHhfqyCC4tEUDsz59GQjR"
Content-Type: application/json
Content-Length: 225

{
  "email" : "mose.jacobs8807@my-company.com",
  "phoneNumber" : "+33 6 12 34 56 78",
  "comments" : "Possimus explicabo praesentium sed maxime quia eum.",
  "firstName" : "Adam",
  "lastName" : "Caron",
  "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.
comments String optional The comments associated with 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_4HYjuXtjcMx7mhqZJmRPh7LW
ETag: "633PELsqGBeqzfiFz2NRCceU"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 441

{
  "comments" : "Possimus explicabo praesentium sed maxime quia eum.",
  "country" : "FR",
  "created" : 1740575939936,
  "email" : "mose.jacobs8807@my-company.com",
  "firstName" : "Adam",
  "id" : "con_Jj2D21bxr68YzDPvLA6VvoSi",
  "lastName" : "Caron",
  "name" : "Adam Caron",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575939957,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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.
comments String optional The comments associated with 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_LsCSftmrMkBtEccJyTcjYfMF HTTP/1.1
Authorization: Bearer act_Q5uT6ffDLmdRphvAuPGsc291.2aF5JnmzryoR1iWhwYBQ4fDSQcEBmXJU2UjmCf5L3kvF6RHdNP326pHxLcS33hao

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_849VFMYNAV1NmPA9hnSHcHD7
ETag: "FGZZrcHcToNYdqT13eG6dtoC"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 431

{
  "comments" : "Et dignissimos omnis ab iste.",
  "country" : "FR",
  "created" : 1740575947133,
  "email" : "nichelle.walter2729@my-company.com",
  "firstName" : "Sacha",
  "id" : "con_LsCSftmrMkBtEccJyTcjYfMF",
  "lastName" : "Marchand",
  "name" : "Sacha Marchand",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575947133,
  "userId" : "usr_MiWb1ZYw3FS7p4txGYegjrUN"
}

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.
comments String optional The comments associated with 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=carlos.crooks1632%40my-company.com&items.id=con_Pf7az6n9MUqWrTBcdXWqFr89&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.userId The filter value(s) for the userId field.
items.name The filter value(s) for the name field.
items.email The filter value(s) for the email field.
items.phoneNumber The filter value(s) for the phoneNumber field.
items.firstName The filter value(s) for the firstName field.
items.lastName The filter value(s) for the lastName field.
items.country The filter value(s) for the country field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 528

{
  "items" : [ {
    "comments" : "Incidunt quasi delectus.",
    "country" : "FR",
    "created" : 1740575948210,
    "email" : "carlos.crooks1632@my-company.com",
    "firstName" : "Romain",
    "id" : "con_Pf7az6n9MUqWrTBcdXWqFr89",
    "lastName" : "Petit",
    "name" : "Romain Petit",
    "phoneNumber" : "+33 6 12 34 56 78",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575948210,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
  } ],
  "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[].comments String optional The comments associated with 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=Axel%20Jacquet&items.id=con_Ei7Xqv5KcjCMKjGpFsvtwrWQ&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 167

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.userId The filter value(s) for the userId field.
items.name The filter value(s) for the name field.
items.email The filter value(s) for the email field.
items.phoneNumber The filter value(s) for the phoneNumber field.
items.firstName The filter value(s) for the firstName field.
items.lastName The filter value(s) for the lastName field.
items.country The filter value(s) for the country field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_FXF9im9YKfbQpa6qpoT93J2m
ETag: "2hnxnrpQLDCdm6iXubfRhPDf"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 567

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575950119,
  "expired" : 1740662350117,
  "exportOperation" : "createContactExport",
  "id" : "exp_yhC25TeZmYKEUj1LEwsCEbiZ",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Axel+Jacquet&items.id=con_Ei7Xqv5KcjCMKjGpFsvtwrWQ&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575950119,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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

Path parameters:

/api/exports/{exportId}

Parameter Description
exportId The identifier of the export.

HTTP response

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

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575919469,
  "expired" : 1740662319467,
  "exportOperation" : "createUserExport",
  "id" : "exp_15AjGTRs1RswkqynUw8CF5kU",
  "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575919469,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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

usr_5jmbWEirzyin4KJvzDVPqf7q,Chi O'Hara,"[{""organizationId"":""org_6it6k5mJFhxEdsLUQjG4EuYx"",""title"":""Dynamic Operations Coordinateur""}]"
usr_6YMvitEjdBxQvWqcSqWbPaf9,Sandy Beier,[]
usr_FnSDa1MNSJ6zCwyeW49AVab7,Shona Wisozk,[]
usr_B8jbHvkYR8VQqAeFVzX4txdE,Estelle Collins,[]
usr_GPVMzg4ngE138MXz561Pypf2,Pansy Schuppe,[]
usr_E4ZFiisEnpLoi7rpe5QsgSPA,Mohammed Mann,[]
usr_P6sEzmieQxvHegMLSxL8LveX,Zane Reichel,[]
usr_CoyMu35fDG896misvqFGzUpU,Johnson Oberbrunner,[]
usr_L3Q1BxpKdow75T7Dc3Zta79J,Thelma Brekke,[]
usr_EvQAov6MfBGE2uD4vKWLj15a,Gidget Paucek,[]
usr_NZea2bcUBQRSycgSHqnGQ2fN,Wallace VonRueden,[]
usr_5RbTV9y3LdPgcQRBG4LobhmQ,Antonia Larkin,[]
usr_BbY11udtWJM3ofX2HD2uwdGp,Leland Waters,[]
usr_Gh4hF9uH58JUaM67VvYZSYRH,Kristopher Schuster,[]
usr_7YeK2op7Zrbam8HS57d6K3zz,Drema Hamill,[]
usr_DRQV26YD9EGKm92KTgSCrrXb,Ervin Stark,[]
usr_5SKRSZgcnNWYRJhA9Hp6DuxT,Brenton Keeling,[]
usr_3CFM7zmWtfnyyWHr6M9BrMUC,Yvone Spencer,[]
usr_EhRaBLeiToKtTMP1ohSMDcsX,Conrad Cremin,[]
usr_LUKdXjVHVyBSw4BTLcoqpJhw,Nubia Beahan,[]
usr_P783MR1eLrewEk9EE3U9UcEP,Monnie Volkman,[]
usr_GS1Nz3tXETWghg8oqut75vL8,Yessenia Hansen,[]
usr_FzqnfDEkPCzBpsnNDu8bCvby,Earnest Jaskolski,[]
usr_31XCYjnCawC2RS8iNNQkGt2e,Travis Sauer,[]
usr_HXTDUgxgHAtxp59Asxg6mLea,Kiara Tromp,[]
usr_MkSkr4cYYXF34n2douuiPqxt,Fabiola Koch,[]
usr_C7kFvbkqtxYkssL2xp4pgVNH,Rafael Davis,[]
usr_MaE74PUUSxeWsa3tFroSZKod,Odelia Langosh,[]
usr_9qcZBAYgiUi7H3fcjQ33Uf2s,Francesco Wolf,[]
usr_F2PpL63k8DvLNB8G1y16icy4,Deanna Bode,[]
usr_7JgAHLCPCcGYJtZY2Lq4JCYw,Lore Nienow,[]
usr_3zhgcC6V9Czkkd6n5PrCd61W,Kendall Smitham,[]
usr_6ipKQF9LpNwd1qCJG5VZ5Abu,Lynwood Legros,[]
usr_GaxbAQS8oN7vFHe25cyCumJL,Barbera Balistreri,[]
usr_W32hkw5J23hai3icNDVra42E,Salena Conroy,[]
usr_rsDc6DBcEKRcvzpcxVQJX6m3,Ariel Beier,[]
usr_AkCuB6qBYxNbn3r1avzYa3Tw,Francesco Bruen,[]
usr_CbiPqfGDtbhan9qDW67CGdzW,Louis Hoppe,[]
usr_JnxvCPjNMNaQwcNPL5d5fM4h,Sueann Kuhn,[]
usr_AczSM3Fm55DemCQ77vEwR9jB,Dustin Bayer,[]
usr_BV2pm4tvuhzHcajmR4DnHeLD,Candelaria Schulist,[]
usr_FUSXbFk93Qh1h1nYrAvhUBGq,Lester Aufderhar,[]
usr_LGsUmx1FSZfANH3g8gH165D6,Jeneva Ullrich,[]
usr_EChVjh6vAP9Dma4GDLapUNfc,Chi Zieme,[]
usr_B5pX2uUjDRVptSzwSKXuHbVT,Jose McLaughlin,[]
usr_GqRbnoSdBFLKVnEqhmjAhrQW,Catharine Larkin,[]
usr_Lw485ndTmg4sTZXHPYTRishh,Dominic Hegmann,[]
usr_97uEEDjxDq9HBZuLkSwyQXTh,Waylon Homenick,[]
usr_57BT7NRkKvcfLbccKFVCRAQo,Daniela Armstrong,[]
usr_EVCkntAZ7PCub8PPrZXKXrKr,Ronald Schuster,[]
usr_3k88QPh7xjkN1Y27xDiaV1s7,Quincy Klein,[]
usr_GjP1gyvzv7B9STboLed67fiy,Lashay Prohaska,[]
usr_An1svKCjkDMJg8dJHoJA49JG,Curt Keebler,[]
usr_AKp4RD5Wp69hoWzDAjmQfyZz,Shela Gerhold,[]
usr_JBgsuiqyu2xNVCkhwCTXRYhc,Arthur Cole,[]
usr_8PcpVjY3EzqSAj12pr6U81fs,Magdalena McCullough,[]
usr_Dij1fv9pX3h7L9guLu4KYoBg,Stefany Hodkiewicz,[]
usr_Dsoc9FJDLQd3F2GAtNpcBYw4,Jacqueline Hayes,[]
usr_GJrNok89Ud7A4jJtVxbEoWxa,Carlos Moen,[]
usr_MUPMaq1RbGVNnA2Jh21UuRNF,Robert Dibbert,[]
usr_JFs5uNkggvbzi2hA67B2ww48,Darrin Kertzmann,[]
usr_JKugW1oyXPAWsfiEJHV5J1BW,Minnie Metz,[]
usr_66K3bSyadkkHw112MdDsDiLt,Alexia Welch,[]
usr_KoMeATnXxNWoEWya33WkWCgS,Santo Waelchi,[]
usr_2UF9J6f3MVaQW7RECzF7zWJf,Zane Heidenreich,[]
usr_CKW4XfEeTmKrCo7yxAKpwFpe,Octavio Smitham,[]
usr_J2Z3xvAzNVaz325oEm9LpwUx,Claud Gleichner,[]
usr_95FkRqUedcC5gCgMMkijCLhn,Reggie McClure,[]
usr_SUZ8aJjVwAAjrvjwX7zmGdF1,Bridget Von,[]
usr_K4SJqfeLiefcQJXiAxaMZuLs,Jaime Wisoky,[]
usr_Hf6AbAwUoewGSN8cYgSMzoyC,Adaline Walker,[]
usr_NAHvHy7dFBps88D3gauJHK9D,Isreal Watsica,[]
usr_AvfrmAqnDCkaZPuzYWeCymUU,Reinaldo Kertzmann,[]
usr_CrmpSogzcqkmnUBcJKvPhFXS,Jake Blick,[]
usr_AsaWXi8R8UauPauU6KCa7rf7,Casimira Greenfelder,[]
usr_5nwXKKNBqAi3KVtLDbsYSAcR,Stacy Blick,[]
usr_4fi5wbFdjvABZ4BwZeMK2Bnq,Iona Muller,[]
usr_LvFD9xtSaBwVZxtKaCwYZonQ,Alex Bogan,[]
usr_4rq1rVhx9HfJzhoVH4YuYAy2,Frederick Kuhn,[]
usr_8gNNN6PNihUBzYZPxomhJJcC,Page Schoen,[]
usr_N4eAXmDyHcyzP5Gy338R6rp1,Albert King,[]
usr_BnfhVL6uk8nb9CUD2TBeGg7r,Orlando Fahey,[]
usr_FrAEncSgMastGj7P8ucYNRus,Wendy O'Reilly,[]
usr_8rmPQT5JBB7M9vgHx6UmdSCz,Adan Considine,[]
usr_Q9DH5iApV5FUdD16i58aPpdy,Launa Stiedemann,[]
usr_JaEUYhm6nhq4nAk5EPnUt3Ms,Russ Parker,[]
usr_DCjUxCYLcbVPU49FgLdAHnU3,Elisha Mosciski,[]
usr_HCSWuVLFCg26bSnk1QYCogmT,Sherwood Blanda,[]
usr_G2gPPAzj1dc7y6QBYwC2MZSh,Clemmie Pfannerstill,[]
usr_BqYaELqmeoHs5LyScYShUtJG,Dora Greenfelder,[]
usr_Nw8HmgxN11w69SDbPs6Y1gAf,Rich Nader,[]
usr_MDiHaKfTsFvCtdd4WT4kP71p,Dominique Schamberger,[]
usr_9uqn9nn5q3w6UiDUWMV5Dq5i,Timmy Abernathy,[]
usr_48mR43Te36SxssnkH4J1ZsT1,Misti Vandervort,[]
usr_M82JfxzKhFtXRib27bU3pScr,Tomas Mohr,[]
usr_HxKjV5JsEfyRNNWN3oTp4xxQ,Raul Sipes,[]
usr_Bcgxirmmwz7J99hadu75vvkV,Cameron Mann,[]
usr_KCmqwawLxjJJuNczXmwX47DH,Sabra Kemmer,[]
usr_8gzp7HmDimBFy5CpoB2jAfB9,Carrie Bahringer,[]
usr_Bh1KdqNkJsP6ZE2fSVdRC6P4,Daryl Ritchie,[]
usr_LWXFeBVfWjfpsKvk26yKEVSy,Flossie Bailey,[]
usr_Z89BPMXxEcqd8bFYMFZVKbFa,Carlton Kozey,[]
usr_9fQvQamnnZmcFhqzCFXgXAZy,Will Quitzon,[]
usr_Axfy9THsmhT2YMmEntioziD7,Rueben Lemke,[]
usr_EkW68yAFYPPoVu5Cn7CL1bri,Cody Witting,[]
usr_6ebbSWDNYDGCBnSphcgJMbbH,Tish Stanton,[]
usr_KZNcAC6qLjDPknxUN6LNMvqn,Steve Vandervort,[]
usr_NPHQFy9hHgwcU7jDeuV8dYK2,Shanel Hudson,[]
usr_2Kh7uUAeBAKsrqHVcAizXHiH,Roman Mills,[]
usr_5BnyBCn6vve52PzrSSi7FeG4,Carolin Fisher,[]
usr_3Bu1VDo69UqzBLaUhqGiR2wh,Reggie Stracke,[]
usr_GiL3gEZuZjpXadCGLG66DHRH,Jessie Crist,[]
usr_HZjAY36mkWYcjHpuPFXmvMQm,Sang Ortiz,[]
usr_9tyMf8HwHQVB4pvu4RuqDpz5,Merle Schaefer,[]
usr_M9urJbmwQkKJK8aRKEDjTBPr,Ninfa Beer,[]
usr_HdHYDgwtQRNWagr8VUa9cYxR,Cliff Marks,[]
usr_HUZgkUkbiNrG3v2hUZ1M9S17,Katrina Cronin,[]
usr_ByvrwKgXNTscPDbUJsURxRgS,Jonathon Zieme,[]
usr_DnDH5bHfhGED2mvMa79SJuNV,Tawana Frami,[]
usr_62sSDQKSXYVVLedQtqTQpofT,Riley Lockman,[]
usr_Hua9MdRHjNc3pdsidqWu5e9Q,Alphonso Kertzmann,[]
usr_DygPqnmSPmNKWS7EcNdBNmsf,Ike Waters,[]
usr_G1NdB3RA6qq932HQm9QEj3k3,Moshe Homenick,[]
usr_GCPyyKQJ1YumVQ217Y9EbntB,Marketta Ankunding,[]
usr_N6Zcg8vhgm4YzxaS1KAZQA8m,Odell Schmitt,[]
usr_MeqHRzma2Jyi7V9iFcg27zSQ,Jackie Ratke,[]
usr_PmaN4btkt46Ky7p3YEVVkDUT,Mika Cummings,[]
usr_G1qband64VinzeFD1jnZ2BYN,Zane Bayer,[]
usr_JFPdogYJ4g9SnEfqYA7SSx3R,Kai Goldner,[]
usr_9JDiD5DpjxUHkEJ4sLJFzbA8,Georgine Halvorson,[]
usr_5etot48HsdbHt7p3jKnKPaKZ,Wade Funk,[]
usr_QBCzHrSDutmD5Er48QNnqV4h,Rodger Rosenbaum,[]
usr_BCyY5C6UvwQVU2b3UEaAJLAW,Iola Farrell,[]
usr_6fAXDrG6bWuNTiQgoEMuUboG,Earnest Walker,[]
usr_PTk1sHYqXvSR51SzTzdW45Sm,Elmer Jerde,[]
usr_P72qJjdHk5xA6cKHAsbVtEHZ,Barney Turner,[]
usr_2qwv9gwXdR9Mg2WbawH5c1Lu,Chadwick Weissnat,[]
usr_C1L8kqK7ev6NV5bcoTEuYVea,Isidro Wisoky,[]
usr_ELw5XbRi1YJWRgMSiPgBTyuH,Flossie Bernier,[]
usr_CvWtkvV4VTxoGmq7ieVnqbES,Shamika Funk,[]
usr_DSnF8q35uWmm3dfcS3WZ2yDy,Neida Grady,[]
usr_AcXa65nVi1gHM59jcuLUNNph,Edmond Price,[]
usr_C2Csgn3GGLAzYyT7ATZwwz9o,Tona Powlowski,[]
usr_Biu65hFzvcjCQVcedTXwvUVZ,Major Cormier,[]
usr_KJ4eTzH6ZdNbQykKSQ1icw1m,Lanny Murray,[]
usr_8VpH1LPQupQc9nAGahH7Zdmz,Clyde Lang,[]
usr_CkdAgKhgFqKiD8qA9GEDmcUM,Bridgett Wintheiser,[]
usr_LuNSG9VcQAH677uWsBouhYwm,Rogelio Lang,[]
usr_MAjYXCH8SkCQaUFMs2vPHQ2k,Hilario Hammes,[]
usr_PK8xHs3C6dRJHmbdKBrpAFyh,Shana Collier,[]
usr_PBzd1m8zjhYBUFwmoCtgdaZS,Thelma Gerhold,[]
usr_8kFSRWFjU4S69afh1P45gybo,Jonathan Rice,[]
usr_HCcx2N4iBg8DToqxZKytvNqs,Moriah Kozey,[]
usr_NXExtsh89FT9yAFRdhCT6N8g,Rosy Brakus,[]
usr_PPbCR994dNBb5DgQsbo8mNVq,Warren Orn,[]
usr_Krc1jXLafgNSvoXGLKPHt7j6,Elton Kuhn,[]
usr_MkqQMBUTR5ocrvA95Vg6wF98,Victor Schaden,[]
usr_G1uVydugL5FoNXQd4ovWurFo,William Gottlieb,[]
usr_4jnYdLmd8aZLeJt2YtGbnZsG,Olympia Stracke,[]
usr_EV56jbraWhNf696XEcpwKTc4,Magnolia Medhurst,[]
usr_MmrjKbhQWVAgxEUEmEjoQcDB,Johnnie Ebert,[]
usr_2oQyknTjYPsPsGCq8v24YNZb,Bryant Daugherty,[]
usr_6RFYVGDDqZqLsNKUhUxoqdEB,Gilbert Wolff,[]
usr_4sKB3Mgn9TTFcRrWiyJ3nTsp,Maryam Blanda,[]
usr_BDs7yr6VywADeEHzspRqZ2H8,Genevieve Hyatt,[]
usr_GtuyuNNcp5ZsuF5d7ZWpPBKT,Rufus Romaguera,[]
usr_qYamdzQbLHMspUYEuj4RrLwq,Harriet Rolfson,[]
usr_HAGQ1mz81PA7QqYg1LsxXz7G,Veta Kulas,[]
usr_4ZWBgCwLmg7fykCsKycyfrNQ,Rosario Zieme,[]
usr_HnTdmrWecgThXz8nxUAZfrsn,Gregory Leuschke,[]
usr_2zm2rHkMDLArVGYxS1FBPdP3,Orlando Schultz,[]
usr_MKuyCGcCpLcfNcmPcgc7zYtS,Waldo Stanton,[]
usr_4GVnGkrbZoRRW7oqwm9YsfeR,Sheldon Ruecker,[]
usr_2F5HEKaXa3smDgA6bSojvGde,Quinton Hills,[]
usr_Mqbm26SYhJP1Y84fPueVtPUz,Bryce Feeney,[]
usr_2k3dMVWYkG2AhHGqoUws2EZs,Emely Fritsch,[]
usr_MJcHnZkDnnJvqoqS7fisC5jY,Brunilda Hartmann,[]
usr_NMu5Piq7UYRbG8mQw4K2S7dd,Darren Cummerata,[]
usr_ZxW2thhwt9pP6Ez1Wti8amKU,Wynona Mertz,[]
usr_KR1VDUHgwRJkLAWrULDWB4d8,Carlos Koch,[]
usr_8hA1RyuBL8fY5XHQsyqpX54x,Flavia Pfannerstill,[]
usr_Joc3c1hK4oKj3DoWRaknLV7s,Corinna White,[]
usr_H5zi8LKPS9gBwpyh5PwsYPT9,Trevor Schowalter,[]
usr_Q2Y1PYYq8oENxnWHz586QTke,Cedric Abernathy,[]
usr_53nS61ZKihv92HTusjn7sB4z,Mitchell Larson,[]
usr_JLuX8aWVLPWJboPvfsZfywUp,Izola Moore,[]
usr_2JHo5DYrWJ39sQdm6Po3BmeP,Fred Prosacco,[]
usr_7sePD5R99b4sh75g4gzvsTpq,Doug Hamill,[]
usr_KdtdfV3bSm2PopjBy9yorkta,Dannie Mitchell,[]
usr_KzUxLCQjCXiJAKRGmM11KdRq,Eddie Marquardt,[]
usr_BF5JuXdTqTZNLH2Cb7iKNpqK,Bobbi Cormier,[]
usr_CmPjUFWcw1GK24mpVsp8WCAW,Leonard O'Reilly,[]
usr_HfbGRLJaPwTEzacCe6eVFLKU,Hang Gerlach,[]
usr_MZqGEN2xTR7ekamZew8dvKsR,Leonel Smitham,[]
usr_7wUzvJgnd2roDKfmfxE447U7,Maryland Kunze,[]
usr_9BhoakhaFvAD7xDMNTMuZAR4,Israel Cartwright,[]
usr_HnccLzv8Heua4RduwsZhr6Q5,Leida Gibson,[]
usr_JsTfcxMsBZQC3P8XBCEa2pXN,Allen Stehr,[]
usr_3nBjb1CWVVfXZaXt3bbQUiJj,Jewell Cartwright,[]
usr_DZBCYfwup3kbni7vCJtqY3J8,Jefferey Kohler,[]
usr_HyEhYw6YpYbtQrMjudT7qHKw,Kena Daniel,[]
usr_7Ds1GJ3qbUN76QvSVojmjf8F,Danille Ledner,[]
usr_2i3dYYHAq7x4ksbufFp2g5YB,Lecia Volkman,[]
usr_BJg2sBikgEfXnVWU4NRahA8D,Manual Quitzon,[]
usr_8Xs3UaMtpaJXGRgij1XT1Y8v,Rex Gusikowski,[]
usr_3YngLKJecppaKU5tyTPM2hVA,Jerrell Torp,[]
usr_cJSYpSqLKc1BMJLGHKjuABwr,Necole Walter,[]
usr_Jh8BHLGwZEnYVsn5m47RoTSH,Kaye Gutkowski,[]
usr_EUXAGkxGDQZAsGMA69Pazwfh,Lavera Walker,[]
usr_7gnwKGAseNxFFXUrAKCvKwy7,Johnathon Jenkins,[]
usr_2U4qHFYU57MeUztUyoRQVeuM,Olin Wunsch,[]
usr_AKRS1VNKr8FyHr4Abk9MUeBj,Jay Jaskolski,[]
usr_3sLHdAnv14gDqBZDwiJE6hoT,Tesha Hoeger,[]
usr_PXyDEMSFbXuuB8cqjLFLPxdY,Quintin Gibson,[]
usr_cxwGjgQNAnwzw2ajee1HcTPF,Rosalyn Kunze,[]
usr_C9uU7tTR7aJrKtv1q3B94bqy,Reita Kiehn,[]
usr_QBpsRMSB8gHiCrujdJKN9hZZ,Robby Stracke,[]
usr_PCSLyp8FmyMafbJYzqNVcdYG,Beverley Cronin,[]
usr_DVCQiNzM319Sn25nhbr2FeLS,Drema Boyle,[]
usr_6kdGE7BTRLYV2k5BTSM4HXji,Jessie Grimes,[]
usr_PBvZfG5dY9oaPs3o3CAGLnHg,Laronda Becker,[]
usr_4JWrwBcU4WPcwhCTgdvGLgEo,Denis White,[]
usr_9oic6KeSBrSrD3tFsSKp2cwG,Wendell McCullough,[]
usr_Ms7SE9DRnVyAjK9LXMAU2N8M,Venus Schimmel,[]
usr_NnYzPNKtLtm4igcGfKNLX5Xv,Kendrick Reilly,[]
usr_Hwj5LJmEe2zuqahWE37vEJae,Ashley Osinski,[]
usr_CdnRSxUC2u7BPRi9pLQcJkrQ,Johnie Will,[]
usr_3cM25s2esGzh7NSAmHghsXwj,Many Pfannerstill,[]
usr_5cFGkqLCRgFBVXc3ZnNfvpK6,Annamae Becker,[]
usr_ArMf36meCmFiDSpNWp5p1VqW,Dung Smitham,[]
usr_8HMMs7GzBWgasmhKRL8UFmXv,Shayne Becker,[]
usr_8aYQ9J9zg135N2Hh1mBZC5QR,Kathi Koepp,[]
usr_9UioccS48AoxPciuq3FEe9Y5,Pearline King,[]
usr_L4vMKGNfJbvrXYFPmBTqhiLD,Joanie Konopelski,[]
usr_Pmnm2uCS9aGffj42SRcdkzYi,Jenine Bednar,[]
usr_pKTGh8NViTrYipn3n2fD4ayW,Randal Herman,[]
usr_MdVJzk5ZBXBqTHqm6GuFBWH1,Cornell Larkin,[]
usr_DvUP8gGc2Ym6j9CiE9d8cBFb,Fredda Zemlak,[]
usr_JsNPbtBDqJJbYRWoQXwAFxZP,Raven Quitzon,[]
usr_A1g7fjNEXQ2RvFnbCE7wB28W,Dorian Jerde,[]
usr_J2SCHV5qSUDGqKiVqvxMVYGw,Lynn Cruickshank,[]
usr_4RPGdYdcb692AcscwFGXpjXG,Larraine Hegmann,[]
usr_QAxpHRHggnb9AUG2xQuKfCEE,Whitney Wisoky,[]
usr_NfFB3WuyPDayjGXVXTuaiWVF,Vilma Stroman,[]
usr_cm3MqVr88FJS9Gbp9BFagobK,Jodi Sawayn,[]
usr_GGKh3R4WVRLPHicGDe4qinj2,Sung Marquardt,[]
usr_Do9dsRJnExRtFCy52r436Dd1,Loren Schaden,[]
usr_92Ry8WJSuTAu3W9RSCHtfdw8,Benjamin Feil,[]
usr_HmM2vP6J8KCbXsko1dRgL398,Mike Predovic,[]
usr_HzDbmUcUSUXDhtYDT9NUvn35,Ferdinand Dare,[]
usr_8qwj4AskxQBgEqbb28kFum9f,Zoe Nienow,[]
usr_HHopAu181n94fRndCPpywrR2,Devin Donnelly,[]
usr_D4dEePqNjV2tqWkdGddBgaYx,Dane O'Kon,[]
usr_BBy6Y54LDDvbJHtSXiNTZAKL,Hal McCullough,[]
usr_N6KCL4dwS7Khe1utZkZmMS9j,Tod Kassulke,[]
usr_EQpaK9YrvSwq98jknAA5hkpm,Deena Lemke,[]
usr_BLgsRwE9W4mxs6co9PhmoYXS,Kelsey Adams,[]
usr_C8N4HH574EEJCV15Z5ZsdUms,Lizzette Hermiston,[]
usr_9BSCKQx1GBKRVK9J4Cr9bfgx,Peter Shanahan,[]
usr_12mmanGEkANSvvkn5nNDYdMj,Julian Thompson,[]
usr_HQWT3htwRcy3Hj3rxZhepjd7,Chrissy Ritchie,[]
usr_L44rSef9JEWzeoboKiPYT6EK,Nickolas Johns,[]
usr_78SjoDqCbJ3H759WPHEbonYY,Evan Emard,[]
usr_KXRvH328i3qEyGs2bo2RtGvS,Loreta Casper,[]
usr_NyKcWx6yFNNcWf8KEGs2LdVh,Sylvia Ullrich,[]
usr_8HWRJVtXyqRPVNS5M8yfgdEr,Cleotilde Pfeffer,[]
usr_Eicq5kCzgRusnCdvsJhWUibb,Heike Kuhic,[]
usr_3qoTf6LZ9JgfJRrmBXVDZXcB,Lester Gleason,[]
usr_KvPM3a6epC2CqL1GPiJpjUAx,Orville Rolfson,[]
usr_JrT58TYjGbqVb87KkFegmUK8,Florine Bauch,[]
usr_C63fjL7doeTm9bXfDTg7cvBs,Geraldo Kautzer,[]
usr_KR65qCFxMJ2xRMpnd3yXmapk,Lacresha Schowalter,[]
usr_LwqmPfaErgxnXUzTbVvHfVhm,Raymon Wisoky,[]
usr_5KuH43toXkpfhWF6qRUr4rcv,Ling Armstrong,[]
usr_14qF658whxYzeGjLpxaaav8x,Clint Steuber,[]
usr_2E9xgz1D1wRYPbDxv9h3LN8q,Roselle Lemke,[]
usr_7j9dZbwKV46UKa37WzagFabp,Providencia Homenick,[]
usr_FdMAM9FJyJTW6VVpc3JeYSR2,Myles Hammes,[]
usr_7HuwhT1g7AosQausRjtRExg7,Queenie Ankunding,[]
usr_LTewjNwvYPG7ByV3GtcYxvAS,Juliane Skiles,[]
usr_KCw4Hj6EJPXYVPUhdwho7XZ4,Kyle Cole,[]
usr_6nipddVBFCA6wkp3TC3Mo7BP,Tangela McClure,[]
usr_2kiA2rDfQjbPN8jJbYPLjMF2,Alberto Glover,[]
usr_KYGF4uVNnja7EBN1Kh6mmGpt,Carita Kassulke,[]
usr_EiSdx7gZkwQZoQ1Uf4wQiHGg,Gema Fadel,[]
usr_BMFsq3R5qMLLMTiLxUSw6aGz,Dorathy Orn,[]
usr_JmVXrWDB8x8EeQtHX2p3MJhP,Dion Gulgowski,[]
usr_Jp2bYchD9PGaUVqT5z79a9Wx,Ozell Hermann,[]
usr_N1MT6WQhejE2Gudo4Ba5QD2u,Liza Balistreri,[]
usr_PimGRTk4DUvVCpmf7RzZvQAF,Dyan Schowalter,[]
usr_PY2h9b6v51ZQesxmCY95eh4r,Erich Erdman,[]
usr_6use4SVv5zBW6KiznwgyHFNm,Cari Monahan,[]
usr_MbFzdKGyybyuPDiCgLUfH9C5,Nancee Mills,[]
usr_PS6vcHRsW36weKs6aPLiVTKZ,Deandre Davis,[]
usr_Nc2npz7X5zg2GyC7zyNK6NkL,Lezlie Jacobson,[]
usr_CsC2KSJs2zvwsjGTZBmDMT5d,Randolph Friesen,[]
usr_PdNSb72tTZdecJYuN5irX1yA,Sha Willms,[]
usr_6JGTcm3zshYnD6E8pmLBziTp,Bernie Auer,[]
usr_5Y7dL5SXQYHPcs8EEuKoZ8FT,Logan Schinner,[]
usr_NnQkwhZjWr9xTg62qSicWWWy,Reuben Kuhn,[]
usr_6c5NoxJp94Aob9dPAq3BUyX4,Gaylord Hagenes,[]
usr_6KCAQWLTrVEdU2c6XABJpdFM,Son Gaylord,[]
usr_EXTLhPoPQzThfeG2pNZpVVwP,Miquel Nienow,[]
usr_LKJrP9aiXHjzn67xgurEayNZ,Barton Runolfsson,[]
usr_zamPZUtQoU51PGyGWq2oAvH1,Marceline Mueller,[]
usr_A16u53f5uxN47RPtqBnUYtbw,Hank Bartoletti,[]
usr_HiwuA3JwUrTkqjcWGEdPhdQg,Edgar Morar,[]
usr_2FQxKmJLWYyNuPjGx6rVK1EE,Ronny Considine,[]
usr_86P8tsW9cqkxxjcGRRtfm6bg,Gabrielle Okuneva,[]
usr_AcoGsH5rSP6JK2NURHjAv7xN,Torrie Abshire,[]
usr_BoUqWdjHn6WmCbbPX9xQLway,Austin O'Connell,[]
usr_MB1KRHNE4NwkPCmZGMETruPJ,Isaias Bode,[]
usr_9Z7X2Kcojcg3B7kNLhu3NtZb,Florinda Macejkovic,[]
usr_FkHeDPFSEXc4LmLTN5UVStTj,Luis Veum,[]
usr_Hnb57Kxea5Drc5WkiC7ahvk8,Denis Heathcote,[]
usr_3DyZiryk8GvVHrQtJyoBbLYd,Lemuel Ledner,[]
usr_Fg72VKqSWhXFcJjj6vy9p7Ly,Jesusa Runolfsdottir,[]
usr_Ks25XinDhHgWMRxLt3wdv9iY,Bryce Reichert,[]
usr_7pEJkHcQ4Eqwcrxj6SPowF37,Stacey Gottlieb,"[{""organizationId"":""org_6it6k5mJFhxEdsLUQjG4EuYx"",""title"":""Senior Brand Administrateur""}]"
usr_BsDC6JthF3o9Gev9pGZRMa8b,Sybil Brekke,[]
usr_KcLnEv8szhhh3EoYKjuK6oF6,Errol Koepp,[]
usr_5ufdPgb4dMEWnauzjS1ZP2Lg,Kathy Rice,[]
usr_N3jCCCHSbEi8f74HN6zkD1CB,Marilee Hansen,[]
usr_8qELoc75ebRyJyv6SHpbwkmL,Kerri Johnson,[]
usr_DXffGHWPFy8UERLL8fuGaQVL,Bernie Grant,[]
usr_BFjKwHWacs3zy38oTDxgR6EF,Mike Nienow,[]
usr_nyKYi6xqpY4WZhwZ63nHAYzw,Sima Wiegand,[]
usr_N2qLgh8YAw3ZTAd3Awi6WCFF,Wally Konopelski,[]
usr_DZShFezfSX9x1ifQK6MHsUNv,Velia Christiansen,[]
usr_Ckwpt2ZWqe2XtYjeGR77bEVa,Mamie Green,[]
usr_88pG3RMwth2QYRFN6fXECyjA,Quiana Mosciski,[]
usr_CvpPoaGuzQFwuC8pXbFqarNz,Shayne Stark,[]
usr_dkGRzy896j2zyL1WnPNEtoNh,Kyle Weimann,[]
usr_Cko4U2mPQh5GB4sTaYT5YFMw,Ariana Ondricka,[]
usr_NiR4VpaZ9hT4RUPtAr6QsQi7,Marcos Raynor,[]
usr_3U6aiiZ4eri1TqNwib9hVzPk,Levi Rutherford,[]
usr_L4qajAFh8YCsFoBFgK1tjLka,Steven Glover,[]
usr_9jJ8An3SfsgbhzqSPkoRRRpc,Werner Bosco,[]
usr_FjVyqwUQQSZHkZzSD6dgbjbZ,Estela Ebert,[]
usr_GjSYD1Zv9bvnaepSo4wMTwRK,Clint McLaughlin,[]
usr_N7wQBFsmuajuDTkJ17N3XPeZ,Bruna Lubowitz,[]
usr_H4s47ZkmU4VavCqLV7GgqLDj,Patrick Wintheiser,[]
usr_FGYb7FZxJ5nhY7bYjhy3XLqG,Shelby Swift,[]
usr_4cg3rHzJKvFDNhamxnupzkxe,Manual Paucek,[]
usr_83WPTusfBeRWt7N257fcYMnW,Devin Cole,[]
usr_pyot5jcDSWAhn17vAM5LEiSN,Jerrold Jacobs,[]
usr_Gt96YWri4yjC9hrSopaLA63W,Herschel Sauer,[]
usr_K6Yabxw8t3nvoUSZrQx1rKBu,Ellsworth Gaylord,[]
usr_9Zy2PiyymeawcHVNUdWg8QPr,Elvis Mitchell,[]
usr_G7R37kjhxcDos6NkBEoWSfGW,Joey McDermott,[]
usr_SA3BhfrKVt9zzvQn43u12QKN,Milagro Moore,[]
usr_CVAu4ntvopBAQw8eBLu7NNqQ,Reginia Pfeffer,[]
usr_6DNrwfK27G2YCnze9gbegfBK,Retta Walsh,[]
usr_GAtk9JD2Uj1kdsW8psyhhc7s,Theodora Daugherty,[]
usr_NwJ5gDMmM8mDmPZQGaJyLRJo,Simonne Bayer,[]
usr_D68foBSAh9X83RJwjErXE1mS,Emeline Hodkiewicz,[]
usr_QKkGFin53gxt9gWtNfodNMSb,Rodrigo Wyman,[]
usr_LCThX5QBKVUPdgExw685rCew,Donnell Goyette,[]
usr_6UnK2jAtyrAdC6Wzx6PPETwE,German McKenzie,[]
usr_FVYC4za32qRt37Fw7Lmgr4QC,Hosea Bogan,[]
usr_Diup629BwupcjihVMfEuiojE,Latonya Wunsch,[]
usr_NMXMqKuuHiTqaFx6Bud6QnnZ,Hermina Schroeder,[]
usr_59gf75qA5VNY2iHu4MwpNecK,Byron Mueller,[]
usr_FcHPaowa9eK5foF8esdL4DmN,Guillermina Jacobi,[]
usr_LF5wyEeRGMtA5gUfXe16R73z,Lashaunda Wuckert,[]
usr_MvBJRdDDQbFazqjiFzgxeEXq,Jaimee Weimann,[]
usr_12PXfPfMGu8EjXzaFu3C4vK7,Jeannie Roob,[]
usr_9CsY7bAhiu53vt69H8cTY567,Steven White,[]
usr_4j3tZAxSLyS1MLw24hCYT1wB,Erasmo Auer,[]
usr_HyVoX6Xy7AafV6EAU7tm8Rgu,Roselee Marquardt,[]
usr_KoT7s1j4YCWcRRZfy8MsMH4A,Otis Grant,[]
usr_KNr3GiLCLkUf525vvG7LTeMd,Clemente Weimann,[]
usr_2WYTQdsK4ib5ouXZtuHqtEJM,Devin Berge,[]
usr_PQ3MKuoL24Sd67Mnv8KEDoKi,Len Little,[]
usr_6cRNVo6mkf1LmqCAfKLQLsv7,Brent Will,[]
usr_5o7754MkDk9R2FD5D3nY4cAt,Bryon Ruecker,[]
usr_CVzCC5UmkWNKA2ZbJ92wDj1M,Leigh Powlowski,[]
usr_EJdwFa19g2SdPZggb2aHWPYa,Maxie Marvin,[]
usr_NT5RP2JeNTTkwq94uYot5mBX,Octavio Dibbert,[]
usr_6cTxvHUVDcZacC8ZEqthn6xL,Palmira Kuhlman,[]
usr_7P2TAKUkKswwqkQrGoK7nzn1,Teddy Runte,[]
usr_NP2ScpkzXEha1QNRxABVe3qx,Percy Block,[]
usr_BKbYdHs4PY6ABmyK4EcuxCdo,Felix Yost,[]
usr_EgsqYofn3ip22m31NFkBXibC,Aida Bergnaum,[]
usr_LRjuuC88HgP2h6fyxDm56QET,Armand Lesch,[]
usr_F7pYE9481tWL1BNMrSv7PnpF,Numbers Feeney,[]
usr_6sWmuBKSg6tmmdh1iByVcYZZ,Paul Toy,[]
usr_A1AtVSGcN8MCg89bXgQ4wLA5,Roger Durgan,[]
usr_G6XeXhDjbxN4cSZpaKonisRM,Cherie Dickinson,[]
usr_DnxTfRDepoYQtzQxckcgoAvc,Nicki Zieme,[]
usr_KqsFUX3Bjb8baP6smAsykFjC,August Bernier,[]
usr_DLeTAzZrd6kXMRtRG2ZLQejm,Violeta Stanton,[]
usr_9R6ZmgdRerFzdTfAm5eP4PKg,Louie Daniel,[]
usr_BXjuRHPfW2zxPvA1FSxZRQDe,Tressie Schinner,[]
usr_K56gkAUPST9F1egHnSeWxESE,Tom Grant,[]
usr_C2WPTe8aotB9J7sbn2eQNMaX,Deena Beahan,[]
usr_6NCGtGDGCCm9KwCJzcbTr4r8,Sharda Cummings,[]
usr_98G7MpZz7CFtkvLtJzzdT2gq,Lou Littel,[]
usr_GZDeWs6wCJkWRNK31kBAiKDj,Jesusita MacGyver,[]
usr_MzDRgNartFf4nDRr549QEb45,Ambrose Koelpin,[]
usr_P6aH9D7prRjbmc51duQTKVsp,Frankie Gutmann,[]
usr_2GQuHKCWLehsk1BfjC5a1K7z,Nelson Erdman,[]
usr_7X4Hj8dLXsQRXJdkNXFgzrTZ,Nannette Hand,[]
usr_CRhGKhKFKmZJu8tRjp3APbmc,Branda Moen,[]
usr_CYQt7LcmXZLvesyaARXBzZ75,Jason Haag,"[{""organizationId"":""org_6it6k5mJFhxEdsLUQjG4EuYx"",""title"":""Legacy Data Assistant""}]"
usr_KPr8qUHoNRskAPGHX6RHhe5X,Silas Bahringer,[]
usr_LULkcUGNjphxq264DBR2LCau,Ashton Bruen,[]
usr_Dk9MMjWSJss6ddj2C313AWAm,Paula Terry,[]
usr_BwDbJdjzwrV5CmaNW4PcSt48,Somer Rowe,[]
usr_8e9BSFgY7bgAZwxkR8U24u9s,Armando Kirlin,[]
usr_5eEMifKPugeYCjr4WBs7csCL,Mia Runte,[]
usr_LLVqFVSNWaQrBTJpNH1vsCDg,Wade Collins,[]
usr_JZ5Uwr6SUuXj1HrMUajNTjFL,Raul Kiehn,[]
usr_FCd5gn1hA5FDANzR8MnD8rEk,Rhett Carter,[]
usr_CA75hwDfagEceYgo14H6JKHa,Rico Von,[]
usr_Hq9qU4xHmUVtSRCPianK3g84,Chang Jaskolski,[]
usr_BHn1NVag9AKWAYG89kFQBRtg,Hannelore Abbott,[]
usr_LSRBiRb7Xyk4Ppb7mKKC8Xyu,Marni Rosenbaum,[]
usr_EDTWEoSgMFYrZPuneDB2w35N,Carmelina Kessler,[]
usr_Hu91AeFBTn65a5y2qPMKgoUX,Mayola Harris,[]
usr_Lu4P62WgQBSPnsHtxesh5xfH,Rosina Jenkins,[]
usr_FTP1DSAoubNFFFRMRsW26k8E,Bethel Goldner,[]
usr_4TG4ygneiUM89CMifXuYJQFj,Kyla Breitenberg,[]
usr_HbMsdHA2weCpn3L8FSP8Do2e,Karie Trantow,[]
usr_A8Ws4qUnMhPogNnndBFYZ6sK,Marcelene Hettinger,[]
usr_NaLju6RAS5AakAsQtuep9bgh,Dreama Lemke,[]
usr_MQQNks9sw9zf3pjrbo7zFcLH,Charles Mertz,[]
usr_J1JHAqnibg1ycWDNCKVkhFTK,Elinor D'Amore,[]
usr_4sVQNU2BZkZ93YP55wepUFgr,Rickie Bartoletti,[]
usr_5dWXV1eRzd4XAuifXmpEAghN,Ciera Rolfson,[]
usr_GwiYzf6F1f9QmJLxw6gbAGwy,Madonna Hartmann,[]
usr_KfPKVLqjLf493hi2XnGTGUH4,Treena Olson,[]
usr_JEnF4wrYo62cgCKpYrLHxnmE,Jorge Sipes,[]
usr_8jMxa8TrzVJumB6yvPqWCbeD,Eugene Doyle,[]
usr_9hjNGFF5nvZEdPkfL6j744tT,Laine DuBuque,[]
usr_4pjzYppHBq5uzXVrBGfUfP3N,Boyd Bergstrom,[]
usr_882KAJpMejjC6UzU797fexWP,Bennie Bradtke,[]
usr_dFg9iqU35u2rcBnaQjBQDgDq,Arlette Hagenes,[]
usr_MZXpEeV3N4akuXozyDacEtJb,Milo Romaguera,[]
usr_LsK5ogjRMxR9DHNGcB8hLEvh,Phillip Wuckert,[]
usr_5EjfJwbqjPgjFuhzKeMiZzne,Jerrell Kshlerin,[]
usr_5wCQEHpMZ6yf2wvvHZgfQcqJ,Lavern Sporer,[]
usr_JYM6kgBPgZv88Gx5GSg2uEfv,Leo Bernhard,[]
usr_8Jt63XyyB4raVL66Avr3QkLB,Robert Windler,[]
usr_DBxYcsmxSKhtrB5L7YYthK74,,[]
usr_B4cDjP1pVH71cUprWvgMbBvw,,[]
usr_BMAr6XZ4P2iTY3Z2J3R2s2mC,,[]
usr_7jjiKzxnWYKddgzxMCr2GBHf,,[]
usr_BUXGzVaJnMVh7MCkBde6rL83,Makeda Reilly,[]
usr_9GT4SDvHbbkLMEZwu8C4vKzd,Dee Stroman,[]
usr_HPuXpdGzHKpu3y58nhHdkvbq,Celsa Gorczany,[]
usr_74hwGop1HseswkvHHCJCfGkn,Antoine Gonzalez,"[{""organizationId"":""org_6it6k5mJFhxEdsLUQjG4EuYx""}]"
usr_DzMUcaLXciYXFNt1t9mBENyn,Océane Le roux,[]
usr_K8uC4ZW1WfG35dqn6Qps7vZs,Evan Richard,[]
usr_DmJQiurU87nrmNHHfNe6UAp4,Louna Philippe,[]
usr_4cBQGRwxdSvXfP2TwrZ1kiLB,Sarah Giraud,[]
usr_RzpLDH8epP6E1XATZm22dTp9,Julie Fernandez,[]
usr_FheL5UMTVgWo5Fo8p4A9tfwG,Anitra Robel,[]
usr_Bbvwo7s4qeYmGhKQ6ETn1jt1,Noah Marty,"[{""organizationId"":""org_6it6k5mJFhxEdsLUQjG4EuYx"",""title"":""National Research Ingenieur""}]"
usr_CaBixrKf9mmB38kGs19epy88,Romeo Luettgen,[]
usr_HfcWPGSHAFfTSorG9T2EEQgv,Lou Rodriguez,"[{""organizationId"":""org_6it6k5mJFhxEdsLUQjG4EuYx""}]"
usr_BdRx67qNBJH1uNi9L1Vkr9kK,Nathaniel Hermann,[]
usr_CVxyZEmTKYH5UJdVdJf8TVQz,Ollie Murray,[]
usr_JZiLkyPzgKkYn7V46KDPDs7z,Quentin Abernathy,[]
usr_NLQVNr8aVKNXW9RqsUQYyZmV,Elisa Ménard,[]
usr_9GmuEQcdZFd9ECDLAg1NTPhn,Lilou Bourgeois,"[{""organizationId"":""org_6it6k5mJFhxEdsLUQjG4EuYx"",""title"":""Dynamic Assurance Developpeur""}]"
usr_BSowm7unGdpshcQeJKxPBDTB,Cathi Schamberger,[]
usr_5JcKUNdjZnF6s7FW5PWxWoUJ,Nisha Kutch,[]
usr_Aq3VetvXTzs13vUE381Vd31K,Steve Orn,[]
usr_5fyne86qHjH6G2RjDfqGwrrV,Thad Hodkiewicz,[]
usr_7RsFtjtpU9s9azYYcq7WF5tB,Machelle Schmidt,[]
usr_86DV7XVLr1VUTc3TANjJbTxF,Ione Effertz,[]
usr_KvtgGVYvRjrBvJi4M2VGBrEe,Lester Hodkiewicz,[]
usr_4BdHiHukJ1oX8tyYDTER7dfJ,Ernest Batz,[]
usr_Gb1gedz6rKgCRd18YobnE5dR,Cristi Dach,[]
usr_P1JixJPqG5uEAvUCTT7Lv9je,Charles Conroy,[]
usr_LLrJAssmLpmoa2rfA4mGNXP3,Kiesha Murray,[]
usr_ALEXqRwsuDK42RdVkbjr867T,Reid Cummings,[]
usr_4pbvbcn185uLB77txEJYqUYi,Joni Runte,[]
usr_FWFp4FfCrQ9j9exzCojJ3Jyv,Eduardo Keeling,[]
usr_5hbUw8MWNNymoBhBMfHPxKqk,Alfredo Kerluke,[]
usr_KmtugjR8JQkoaHQj6mjwm8bN,Lia Torp,[]
usr_8xW6SXnVM9NUuEwrKtcnsATV,Brock Deckow,[]
usr_3TXuvBrJ49h4bQVy9GzFHjQW,Luigi Dooley,[]
usr_MaHSqLAZaMpxSjxYoChJSkqe,Clair Jerde,[]
usr_hfENLffL1AQz1vKCQieJGmu8,Marth Hoppe,[]
usr_5aFPL3WWeECokW41NM8D212q,Norma Yost,[]
usr_LMfBjdqV1hnvWVfTGC3EbWnZ,Randell Cassin,[]
usr_bpUvPaVxEPEnuh5kKwhWUmiY,Caryn Boyer,[]
usr_M3YV78EbnbGCLgwijYHBikBW,Berna Mueller,[]
usr_LhzMMb9BHbbS4BiNvkkLa1b3,Kendra Wolf,[]
usr_HX3EGTVYTxpNs1PKmfStbwek,Elfrieda Anderson,[]
usr_CefDN8PcS5axHYvZ77mZP43N,Tu Rippin,[]
usr_CQDvYBmbQfPbJKTNWkwtUeQN,Kylee Ebert,[]
usr_4GjBS7bpMgAqz6E9DVaMhkZD,Rickie O'Connell,[]
usr_BWpXWaU7qjvhB45wU9whvWah,Rubie Kiehn,[]
usr_Ca6LwEfmLjuZryGXrJuua1S8,Sammy Kirlin,[]
usr_K6ioHtZeU5gGFpffp4T7DWSJ,Kirk Treutel,[]
usr_5KaBS4aRCv8oG2dbDmP4iPYd,Chuck Deckow,[]
usr_71fdqj42swuLmJFwcYbV5XKS,Zelda Marks,[]
usr_3e32LmLeaJWbSoiJ4txTfjHF,Elaine Mills,[]
usr_7V3cNo7ayrAjPGM57j5KxpEu,Horacio Kovacek,[]
usr_FYmHe5YTyZ8JCDvk8HyxBWUb,Tyler Bechtelar,[]
usr_97du5AfL3zNfxdJ2EpbHGyty,Ned Lindgren,[]
usr_DZpQuxM4Hp6GnftE4jCKk9aT,Larhonda Blick,[]
usr_GDmRcwYTMY4SMLetoSmKUm47,Sidney Upton,[]
usr_DC29R4k9ykBvk184RFjd77mw,Thaddeus Tillman,[]
usr_BxDGWuoJnb8dioa5WPrrgx69,Harrison Franecki,[]
usr_7ZqMEMTm8rpapd52Cfumu6Ws,Jonas Kozey,[]
usr_Ffxz5qLppfUTjSw3XRucGk4C,Olinda Nolan,[]
usr_F47PZx66rVNqLkJT1RtYCLR9,Eugene Graham,[]
usr_5VfZ8c3Bvvziqe431AFbodeV,Cristobal Bernier,[]
usr_3sidP97ePTaHsdDYg5unZfcN,Coy Reinger,[]
usr_5nUMuG7GztyxrxvwJ4LpKKJ9,Benton Borer,[]
usr_DSQYp4oNEHhBgB7qFzqVyaNx,Evon Schaden,[]
usr_2z4oLomEjg22c8ZyRtsuoe23,Pia Fisher,[]
usr_4VuGSeStzQwrRnJFBPYWLRZs,Tamala Wintheiser,[]
usr_9tJVA8zj7BuWV9yThB3tDVRA,Loyd Sipes,[]
usr_NJ8gMyVA23zvzbd1VZtTeC5N,Manual Kemmer,[]
usr_EsFWKqDCDmQspviLDoe9th8N,Terry Kunde,[]
usr_2FyZGiaGmi41sR2XSKKvTEVU,Saran Barrows,[]
usr_JPMaDJwQz7ppQddhWY9MUkFk,Elodia Herzog,[]
usr_MuWDTxJ6T6YGRhdYaPTdmZao,Anderson Pacocha,[]
usr_CyWZgfikcqj27xaQwYnvfFd4,Kiyoko Reilly,[]
usr_5vvQRSfZFzqwjvMs68CKBeNx,Lisha Oberbrunner,[]
usr_znYbn2E6ghFfgg6f5es8RVCU,Melba Osinski,[]
usr_4oH5o2RWC6CGLDvx51tqe5p9,Many Wiza,[]
usr_LBnS6L8GPFLEjEa6ZAteda4P,Billi Little,[]
usr_29aTVkQw8hUK3raL2Wk33NuR,Karan Collins,[]
usr_H6FLJwDZwrgRdqhQTAjD32fy,Jim Sawayn,[]
usr_4GSwxjsUMiQ8yUh5VogCb8L2,Rosaria Homenick,[]
usr_PoFJX9HWK3ih36SyimG3bpaD,Miki Nitzsche,[]
usr_FJbVCD8jZYxRCnGmzQNCKVLn,Cherryl Keebler,[]
usr_7e56ip5BTAYKhscaURxo7FSd,Joe Bins,[]
usr_K3EBHao3s95Kv4Q4R3v8jFLU,Gabrielle Cormier,[]
usr_3D9BRJQcHoYv3CNisGv5JQG2,Jerrod Kuhic,[]
usr_8J4vJhHYKywtAATpay32rUsG,Ila Armstrong,[]
usr_9cCJ2CENmL3h86m85BQBCyi5,Ronald Prohaska,[]
usr_FhzuNAAk3CrSDTfRD8nVK1vB,Keisha Trantow,[]
usr_6Ha3WwT9AV6QRBc1c6U2uZPs,Julene Considine,[]
usr_FqVa6rFFwbKM75D8tkZeBytw,Adaline Schowalter,[]
usr_M4zJQWAktHhoF1fcV9NAD1np,Odis Quigley,[]
usr_6aZXPZJdRM2xBBoNtoM8JnEn,Hyo Corkery,[]
usr_ASKfa6soJTP45DBPquT4Y8Yc,Nereida Conn,[]
usr_NN5L8BKwjkdhajcSj2x7PqtH,Treva Green,[]
usr_9b6vfztjuMS2W77rtLjZ6qT9,Douglass Jones,[]
usr_7vyWBwvPwoSbRTundrRJ8o3o,Katie Hermiston,[]
usr_PoE7xvsDG3HnDJKysR56xR4h,Sean Stanton,[]
usr_D92yikCC1uRauftBwsc8aLZG,Fermin Kunze,[]
usr_5WnE4v4cV2TYvfJy18nUS7da,Viviana Carter,[]
usr_7VErLnjvwfDyk9cSaQhayjuG,Ina Schoen,[]
usr_EB67nKyQtEdsUDpyV5UrnxnJ,Jolanda Spinka,[]
usr_34BroJCGpdm6bcCAedjdXenm,Yoko Lebsack,[]
usr_Nbn2fdqVgD4t6amVrbhT5Ddb,Asa Lehner,[]
usr_3UPJaqnMadL7a2nLF8jnsiNd,Ivory Runolfsdottir,[]
usr_HYZY62xAMq4qCmeGTh7Py8sX,Chad Gislason,[]
usr_NZB1aoGoSXPuyonTAhxJPGSm,Stuart Sanford,[]
usr_GxgtWASQAByEXx1ZKHSoTPz4,Zita Hintz,[]
usr_EYgFdS4eLZNFJ6MGt52reR5M,Gregg Zboncak,[]
usr_G3noYxWeAELAxSGUXLuuxFgG,Dane Fisher,[]
usr_2TzXiKpHjfYQ6DFJmdYEVfFb,Ona Grady,[]
usr_2WEr3bXmApTK6JQMfvFrZUQb,Fred Rempel,[]
usr_2jhioNYcmqfovLB5kLDqCYX7,Mariko Ondricka,[]
usr_LGnHmWHvUXWic124DohLUa8e,Louvenia Lesch,[]
usr_AjScdbzXpiDSAo9XnjUuCq1p,Dorie Bailey,[]
usr_6MEEeSfW8Dk9388E8dfkxHfE,Micheal Heaney,[]
usr_EwmUFe8cb3vPeSPHfe97LRjs,Marquis Schaden,[]
usr_4iwTGQ9f9EdMsrwT4NscjJgH,Tobi Bins,[]
usr_4xhpQeVSUAR5nDmKCTkVXmQH,Kim Funk,[]
usr_D4ezeGCPucPR9rAGHEKcRQqT,Tory Jacobs,[]
usr_23yVyyhqN6HHynGyE3pQAP4A,Leland Senger,[]
usr_kPtnky7EpKck6JSx78c67F6T,Jasmin Konopelski,[]
usr_3jTzSLvSznEmURFeywKir5xi,Morgan Considine,[]
usr_NhEbzVjhuyLGxqeqrvoXACbw,Rosamond Hand,[]
usr_5ZJsEaPjPT8uPEKShoLJjayv,Maxie Beier,[]
usr_EZbmZtyANXLrGGT9Mz9Uj4eu,Janise Keeling,[]
usr_28DfDvQHcZZSpwiwjMFZTh95,Lilia Rau,[]
usr_2w1ZTi7G6jRhTh97WiWmxeNu,Deon Macejkovic,[]
usr_EapS2M589X8vj95d7gQwjt4q,Denice Friesen,[]
usr_HCKEBqgyFgHcLyme7yvspRBf,Devon Strosin,[]
usr_LTpsVaYB5gfC59TnbW5USJPn,Adrianna Schmidt,[]
usr_PwJuCReN16eAw7yevHqArSPs,Celena Adams,[]
usr_6ws6EGYVeiuzeYMQFmjnq5zZ,Kenny Bernier,[]
usr_JZLvtuj47i1MVaPKkid7QQB1,Meagan Towne,[]
usr_6vhm8ZTT1F9FW1A6k7jLSiBe,Garrett Keeling,[]
usr_KkYToEdSvBSLHjPRvForSFY1,Micheal Dietrich,[]
usr_DZo8UHLML3WMAi7y54fk7Zfv,Davis Price,[]
usr_L1cN7R9yH41FegbQnVShpM7V,Lawerence Ruecker,[]
usr_ENaX6T1s9xGfCG3z9dw9Gsdm,Stephnie Wilderman,[]
usr_DqaxcQrkGs6a6Smyfv21QA4g,Ardelia Pfeffer,[]
usr_NJy352e7NUi7o4q731XhZdxi,Ray Bogisich,[]
usr_AqhfsfegS62LZ6PJ6r4b1wUk,Shae DuBuque,[]
usr_BHFBm6eeYRAnSGyZJUWm5e99,Carlo Kreiger,[]
usr_HvmEQSY6TsA6N7RgeEjpsUx1,Buddy Funk,[]
usr_2Uig19HvCctY3cSq2vSLBVcz,Lan Wyman,[]
usr_FmyLWH7VMhcZwCY1sAkHgew8,Lien Stoltenberg,[]
usr_6jbESQGziq98fUKFz2WdhkCH,Mirian Wiegand,[]
usr_KMNDgWuYqUKSJBWC67oGmxBv,Quinn Powlowski,[]
usr_DZaNgWCvEPFkTL45Jccipgyr,Lida Schinner,[]
usr_4TNqp8an4B7uwCgvD1N7HygB,Moises Casper,[]
usr_J5BiEpYpxiHePGSHtryWZWiT,Madalene Collins,[]
usr_EmHZvLPpEE8k3Ds6kVGo4Wmw,Joya Langworth,[]
usr_MKfiRWehdEM6FANSy8XxN84v,Santo Turcotte,[]
usr_EwhCtKcyxMiN9Q9KFbsj7RFU,Gaynelle Emmerich,[]
usr_NeWFgZa97Jr6BNqZUAWKGSNz,Abbey Abbott,[]
usr_KVvRaE9txtS4V79UPQqMeRw1,Almeda Balistreri,[]
usr_BLZtFfjLibAixpA6hhnpd7iN,Geraldo Rowe,[]
usr_N5GGfmTUP24cRmzTRCNt3ndr,Donald Rutherford,[]
usr_4snSyUBy2hxfznvZG7h7gsq6,Tony Labadie,[]
usr_9mGZtavN2Dyxd2jz8wcNYYa3,Stephen Okuneva,[]
usr_CbmBz231jhqbZ95oothr91wd,Rosendo Lueilwitz,[]
usr_64zYHXJbhwdHJ7pXRXwacvnn,Ahmed Konopelski,[]
usr_AGyofrMsfUFH6nGaQE9ZXVRR,Deanna Howell,[]
usr_6KEzGy8f655KkyiL18r9PYjV,Rae Bogan,[]
usr_6PgrMf5n5mdqTP6osknLvCRQ,Blondell Halvorson,[]
usr_Ky6usQA2YxVp78MH3AimrAsx,Evan Fritsch,[]
usr_CNhdXdfRyfBd6AwMpUAFmiTj,Melvin Abernathy,[]
usr_7qUQQb27hbmT1NAPooQkp64Z,Eugena Pfeffer,[]
usr_3ATQZRDw1Z7MGoSLYd5paSjm,Melissia Kunze,[]
usr_GEoHX89aw3u2Jy7jdxsXvTMR,Scott Willms,[]
usr_8AgPdcvzfBCWosMXwQCUWDDC,Adalberto Bogan,[]
usr_7uVmAaC1PsHAPefwJXhhAjbq,Laurence Heller,[]
usr_2kM2mvj838C2qSJrefcuekXs,Rene Kemmer,[]
usr_G9jLmtbhwfKychUrWtMycGET,Mary Wisoky,[]
usr_NcLqXWzwf8qgWXUqzqWvGKE9,Shila Haley,[]
usr_2S4U4hc7YUq2S3VRe1c1DaWz,Marguerita Stokes,[]
usr_84dCq8FRJKuhZzWb3QHPiFUA,Cammie Wolff,[]
usr_FdUfMEdGeofMQiUA9stahjJv,Klara Hauck,[]
usr_4GsHzDAqDGXNeiv6ixfCPUXi,Judson Bogan,[]
usr_34eAqbRD6ye3go2cpQb8ku5U,Cammy Hamill,[]
usr_7bqpKuGaUZfJ6R6ePgsjLptM,Lee Bradtke,[]
usr_ARJyEHG8pn54yuLNWg8242JN,Zoila Wolf,[]
usr_HCiUynSv3BL9GWnivP8fxPXi,Samella Russel,[]
usr_2NPktJtwfAJgLmmwK5CEptgB,Octavio Torphy,[]
usr_5gGcuAUdWtHR4bFZK2smLY6K,Jazmin Gislason,[]
usr_MToBrCbP3HujkU2Vk8JuYPDW,Nu Walker,[]
usr_CqYzm3FHQEmdv1ubrGNrs5Cn,Bo Stanton,[]
usr_Jgf2b2kRCpS5hR6nN5UQmamm,See O'Kon,[]
usr_LYprn8vh2db7J6hP3Pc6osxL,Juan Gottlieb,[]
usr_8fF49x41dNMAS2ankzRX42ie,Diego Wilderman,[]
usr_D3pwadz4tqmCaGuSQzjBbrPx,Nathanael Little,[]
usr_69CAuLkPh4SkMBQa4N6uSK6r,Hollis Leffler,[]
usr_F3BbmnVw23MXQ9c4QrWfFDJC,Reyes Farrell,[]
usr_FYWWXTncFFGJUXCo1fJjhMrR,Kerry Langosh,[]
usr_5VcjeJG2EE497P1PyKYhARbK,Andre Carter,[]
usr_6xHc1nqFQuB7ZyEo4wgRagzr,Kaycee Lebsack,[]
usr_3q948S3WHjNc6trPyowwU7G7,Abigail Morar,[]
usr_DgmYqd1irQdCroGjWP3L2bXA,Kortney Rodriguez,[]
usr_MKTUikwcNfpXubLAyjdaWiHW,Dewey Larkin,[]
usr_KwFLe17nc3aAwS2ny1Kp3f4L,Julian Roob,[]
usr_2qMkh9eKzW5ABNRhQxa8TdfP,Marsha Halvorson,[]
usr_Bu5LycP7sw4P4wNsw3Vu3acX,Odell Skiles,[]
usr_PNHcMTUuFm79zQUddzKxXV88,Coleman Hilll,[]
usr_4D9479b92x3mrJXfYPeC3jhf,Porter Waters,[]
usr_EdPqybkSQ2LGkS3gN8pjrDvT,Duane Sanford,[]
usr_HZpvsQ6xWJx4QxKb4NrMf8i7,Moses Rosenbaum,[]
usr_A8X68tZ2kFmbtkuxEq67yojG,Luther Gulgowski,[]
usr_Cj6gotFmKjuRAhBAGQ7PA7Hg,Zula Fahey,[]
usr_7thFDrvEZVGR7V1pME2xfRmJ,Lavina Gleichner,[]
usr_BGV3YpaLPsCFvTWA6FKD1ht4,Dorsey Ledner,[]
usr_JiVx6dMgSpp5hiRaaZBW7y6U,Mabelle Howe,[]
usr_EWaheaFoCKfUKKuKGZ5xvDmn,Ned Runolfsson,[]
usr_E61HpGJoS81gU2VcSrSvmpDx,Magdalena Gottlieb,[]
usr_NJJ5gDvawULDN8TMA7D1EcFd,Tamra Boyer,[]
usr_N3TXVvUZz9seADNq8MAk5LVB,Robena Cremin,[]
usr_EbjZxkRaKYKPu7K1ghjTatkd,Sharonda Hoppe,[]
usr_3MxNgqXXJcQydsai6hkijwx8,Reuben Sauer,[]
usr_HVJrzo2BJHCYF3GkWcXN4eJE,Larae White,[]
usr_JtkErR6oLiXBk853Nw5qMUp2,Marty Kuhic,[]
usr_3uHisHofbyGbTP4WCbdSPT1J,Wilbert Purdy,[]
usr_BoGd5nWvYe5zYFqQe5Dknkn2,Mandi Metz,[]
usr_8z2RMcXN11GXCN6mMPKYWvJc,Floy Parker,[]
usr_F18cLA6i17Ti6CstVUqpMX5u,Johnathon Dibbert,[]
usr_2PVSwj1QbcoyHQj77zuXJgV7,Ellsworth Ziemann,[]
usr_AN8qAqx3xeQVX9SmNU5HdzcG,Reggie Durgan,[]
usr_LDMNagiYVNMSbZogRdG4Du8m,Scotty Witting,[]
usr_JbvC2UdJb8Jy3vq2XiPjmQaD,Larraine Upton,[]
usr_PNj1HtFBkd9SfZMyTT7N78WT,Lan Johnston,[]
usr_43h1sWscujzJPgGspck4WYGh,Eugenio Yundt,[]
usr_DbxdawGZQtan5HnFq7Mn2fxC,Jamar Luettgen,[]
usr_HtQnkbR5uvXj3kfzuedMiEUa,Garry Marks,[]
usr_CUHsWqr9KRUz1JdH76mbwbp2,Silva Marks,[]
usr_JY53tWn4rQE6hJyB6CLjSYhT,Jude Hagenes,[]
usr_71YwFv3sKFzP2xsXwmmG4sUx,Denise Kuphal,[]
usr_3RcQJLCPafg6ehdYpVf67MD2,Tania Grimes,[]
usr_L2iZPyPbSv82Smto3SoiZ7Xn,Leslie Mosciski,[]
usr_5QMxP6CAaiMhfaMka4B1uYiN,Gayle King,[]
usr_Hu8QDbK5bGeyDfJPuHsPJeyG,Damien Kilback,[]
usr_MXnHFZ1CvEP9ytpGrPtdoWNd,Ivory Gaylord,[]
usr_6jS96jCrMWM4zpFw26ppqYdy,Ashley Schumm,[]
usr_4fBskGKVkx8ri1qfCPxVqYS8,Clifford Lockman,[]
usr_LdvLr4nESiCTv2NbX82Qbkv9,Joyce Batz,[]
usr_9H3itRQxz89zbRuRfHkujLnN,Awilda Runte,[]
usr_Dy86S9rHQJStQ3RZLCSejHg6,Candra Goyette,[]
usr_E3XvtNoN2hVNR2Yv5zbT8W9F,Dirk Abbott,[]
usr_45Fhdd4NBTT9CiREQyvnKg49,Naida D'Amore,[]
usr_LtQNYFBDzLDVYDaYQZHa4Dc2,Kathryne Weimann,[]
usr_FxdUTDFW4vK7jeQTB3KT1RFG,Demetrius Little,[]
usr_MNtU6t7B79jnUbrT9Ya6CJpv,Felix Schoen,[]
usr_84Rp6cp7ppwX7ETwoh4a42Zu,Hermelinda Mante,[]
usr_83efiSiHnv3WAR8FDapWctTr,Cathryn Sipes,[]
usr_MAJmKuCTMSSyFaNpWR9koq5o,Moon Hartmann,[]
usr_HDVkddD1SMEsMgzU8HPniwWC,Eric Gislason,[]
usr_LxTDZHJidjPzDgBhxZW3iiJ9,Inez O'Hara,[]
usr_L72SraHduUANzNVn1B6QVWfG,Reba Lynch,[]
usr_3HQfeRMmJhEgNkqCKBTc7DoF,Karleen West,[]
usr_8TzG15Lww5aMefL1YZRUXppr,Dayna Parisian,[]
usr_5CETFnQ9intjFh4omVRU4RNf,Frankie Torphy,[]
usr_JCvco7dDhX5jGCqX8DLDZEjM,Inger Kassulke,[]
usr_Kft86YW28MvEamDCePu8yNyj,Derek McClure,[]
usr_8kaDqFdiKV2GdWsP8mKqcTTC,Orville Stark,[]
usr_9hht7Jjzex6DqLS29GPiFi9V,Annice Schmeler,[]
usr_B35q1mkPh2KC2tMmoYVL22ju,Renea Lubowitz,[]
usr_4Lxkc6YqSMca2DkozsgSRKK2,Rodney Hirthe,[]
usr_GCEg9VMKfgRruLjjadP6nndZ,Tabitha Kilback,[]
usr_9BGZH5eHvJSWcEHgyVJfPAyo,Leonard Prosacco,[]
usr_9fAeFxvq1fUi5rD4JWuyP8fs,Janyce Runte,[]
usr_HP4pwYuPiXD1M1fiXdy7nz9E,Ramiro Schuster,[]
usr_Pta8JSP9AQLnb8pwotRtSXio,Trang Dickens,[]
usr_FjdkmBW9bPx3ozgWh3N7dFbv,Sabrina VonRueden,[]
usr_A7rNthy7iDyiD2aoHdy8Qw4q,Kecia Cremin,[]
usr_DjXDvN4KXTooCms8Fm1V2sXx,Nicolasa McLaughlin,[]
usr_Cbc9HzcRWxhFUMWxsGvfJmms,Shelton Conroy,[]
usr_2PU1F5WiBY8eeurNh8fytMrS,Arlen Crooks,[]
usr_2sgvf5Sfq5c7yCta7D8Qi9EQ,Antonia Treutel,[]
usr_5HFWYBQWiEcAmB3T1orG9usf,Devin Hayes,[]
usr_PaagEkAE1mFWYF1vDXG5fSmD,Stephani O'Keefe,[]
usr_JELN1MTSRC8xC3H11dtS4QTc,Charmain Mertz,[]
usr_Ng1SynW8gqXYR7TURyn9XE3h,Heidi Boehm,[]
usr_Kdtv8kBiuhAANPvEyxRPN2Mb,Kimberely Roberts,[]
usr_4Jh2SFagiHqNzgVasKCXC24z,Amy Kuhn,[]
usr_8jwgTFbGPrfrkF6XGkNJVzsx,Cornell Bernhard,[]
usr_JNKa4CesXts8ntQwDABGrEtN,Sherwood Flatley,"[{""organizationId"":""org_6it6k5mJFhxEdsLUQjG4EuYx"",""title"":""National Web Assistant""}]"
usr_EnCwkEMUMPzdYftqq9SaoCFU,Evia Murphy,"[{""organizationId"":""org_6it6k5mJFhxEdsLUQjG4EuYx"",""title"":""Dynamic Research Ingenieur""}]"

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_P8vZ4bH3Y9278ubjnTn9Wnhv HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "H3zUbHTN7VGC8LwhgtWCjNV5"

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

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575926415,
  "expired" : 1740662326413,
  "exportOperation" : "createUserExport",
  "id" : "exp_P8vZ4bH3Y9278ubjnTn9Wnhv",
  "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
  "jobOperation" : "purgeExport",
  "searchQuery" : "",
  "size" : 34741,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 733,
  "updated" : 1740575926942,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_xvyAxorZ2ddL42C59zoeojAP&items.id=exp_xvyAxorZ2ddL42C59zoeojAP&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.userId The filter value(s) for the userId field.
items.adminUser The filter value(s) for the adminUser field.
items.exportOperation The filter value(s) for the exportOperation field.
items.totalItems The filter value(s) for the totalItems field.
items.size The filter value(s) for the size field.
items.jobOperation The filter value(s) for the jobOperation field.
items.jobErrorCode The filter value(s) for the jobErrorCode field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
items.expired The filter value(s) for the expired field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 637

{
  "items" : [ {
    "afterItems" : "",
    "beforeItems" : "",
    "betweenItems" : "\n",
    "contentType" : "text/csv",
    "created" : 1740575936033,
    "expired" : 1740662336031,
    "exportOperation" : "createUserExport",
    "id" : "exp_xvyAxorZ2ddL42C59zoeojAP",
    "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
    "jobOperation" : "exportEntities",
    "searchQuery" : "",
    "size" : 0,
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "totalItems" : 0,
    "updated" : 1740575936033,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
  } ],
  "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_F1N169BaB6bo4zdjRkcgDaDW&items.id=exp_F1N169BaB6bo4zdjRkcgDaDW&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 167

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.userId The filter value(s) for the userId field.
items.adminUser The filter value(s) for the adminUser field.
items.exportOperation The filter value(s) for the exportOperation field.
items.totalItems The filter value(s) for the totalItems field.
items.size The filter value(s) for the size field.
items.jobOperation The filter value(s) for the jobOperation field.
items.jobErrorCode The filter value(s) for the jobErrorCode field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
items.expired The filter value(s) for the expired field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_Q4zDfj7BJVcpAbxoqzTkGi7T
ETag: "Ez2odij9X3KmTXEcFCm9Av5G"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 582

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575919394,
  "expired" : 1740662319392,
  "exportOperation" : "createExportExport",
  "id" : "exp_69nAqi5zWNnsW68RvkFs6ZLH",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=exp_F1N169BaB6bo4zdjRkcgDaDW&items.id=exp_F1N169BaB6bo4zdjRkcgDaDW&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575919394,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_Dd3R8EjLoTYMd73hjqC7GAnX/groups HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 1101

{
  "name" : "Cloned executive contingency",
  "description" : "01 Boulevard Dauphine, 05905 Beauvais",
  "isDisabled" : false,
  "hideWorkflowRecipients" : false,
  "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer", "exportViewer" ],
  "templateSelectionMode" : "list",
  "allowedTemplates" : [ "wtm_Dd24geH9sy8SS5MPG44DjEkW" ],
  "layoutSelectionMode" : "listOrNull",
  "allowedLayouts" : [ "lay_KiDrnLT8G7AXLw1RgH2vpy4M" ],
  "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_Df7AD7ErbEYFztGLDukb9RWg
ETag: "2MLJu1QWeHLsguw1g8mHTD1H"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1270

{
  "allowedLayouts" : [ "lay_KiDrnLT8G7AXLw1RgH2vpy4M" ],
  "allowedTemplates" : [ "wtm_Dd24geH9sy8SS5MPG44DjEkW" ],
  "createUserAuthorizedGroups" : [ ],
  "createWorkflowAuthorizedGroups" : [ ],
  "created" : 1740575639677,
  "deleteUserAuthorizedGroups" : [ ],
  "deleteWorkflowAuthorizedGroups" : [ ],
  "description" : "01 Boulevard Dauphine, 05905 Beauvais",
  "hideWorkflowRecipients" : false,
  "id" : "grp_PHymp9vNaoJpiV8LC8f9GeMN",
  "isDefault" : false,
  "isDisabled" : false,
  "layoutSelectionMode" : "listOrNull",
  "name" : "Cloned executive contingency",
  "templateSelectionMode" : "list",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updateUserAuthorizedGroups" : [ ],
  "updateWorkflowAuthorizedGroups" : [ ],
  "updated" : 1740575639677,
  "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer", "exportViewer" ],
  "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_Jsy1b2sZ4LMHa6viDXba9CFK HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "allowedLayouts" : [ ],
  "allowedTemplates" : [ ],
  "createUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "createWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "created" : 1740575448620,
  "deleteUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "deleteWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "description" : "177 Place du Faubourg-Saint-Denis, 89708 Aulnay-sous-Bois",
  "hideWorkflowRecipients" : false,
  "id" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "isDefault" : false,
  "isDisabled" : false,
  "layoutSelectionMode" : "anyOrNull",
  "name" : "Function-based encompassing parallelism",
  "templateSelectionMode" : "anyOrNull",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updateUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "updateWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "updated" : 1740575448620,
  "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer", "exportViewer" ],
  "viewUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "viewWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ]
}

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_Fbt7UXfrMKHLwcGwS6cRV7uM HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "EeEiKoHLbsShvEExUVAH6Xym"
Content-Type: application/json
Content-Length: 1123

{
  "name" : "Organic client-driven archive",
  "description" : "Apt. 663, 8 Avenue de Richelieu, 93486 Saint-Étienne",
  "isDisabled" : false,
  "hideWorkflowRecipients" : false,
  "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer", "exportViewer" ],
  "templateSelectionMode" : "listOrNull",
  "allowedTemplates" : [ "wtm_PMok7SRE63iPmYsAwkUz1v2u" ],
  "layoutSelectionMode" : "anyOrNull",
  "allowedLayouts" : [ "lay_QL2PYqxswRb39rDdmBq17uNd" ],
  "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_9bKsfUiS1xrA81M1PYtCfG7i
ETag: "Ah7rY6hyF5Aq4QZVv3FkipXN"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1320

{
  "allowedLayouts" : [ ],
  "allowedTemplates" : [ "wtm_PMok7SRE63iPmYsAwkUz1v2u" ],
  "createUserAuthorizedGroups" : [ ],
  "createWorkflowAuthorizedGroups" : [ ],
  "created" : 1740575643404,
  "deleteUserAuthorizedGroups" : [ ],
  "deleteWorkflowAuthorizedGroups" : [ ],
  "description" : "Apt. 663, 8 Avenue de Richelieu, 93486 Saint-Étienne",
  "hideWorkflowRecipients" : false,
  "id" : "grp_Fbt7UXfrMKHLwcGwS6cRV7uM",
  "isDefault" : false,
  "isDisabled" : false,
  "jobOperation" : "refreshWorkflowsViewAuthorizedGroups",
  "layoutSelectionMode" : "anyOrNull",
  "name" : "Organic client-driven archive",
  "templateSelectionMode" : "listOrNull",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updateUserAuthorizedGroups" : [ ],
  "updateWorkflowAuthorizedGroups" : [ ],
  "updated" : 1740575643434,
  "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer", "exportViewer" ],
  "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_DARzN6NTfxvaimVJ9jHoAcDa HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "822tK2fyr8QH33XeWwGnxryi"

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_4iJajXq6zDGU4HaFrNr9Z7rZ
ETag: "9tysggcy7fpVcnRrkxY6W2BR"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1761

{
  "allowedLayouts" : [ ],
  "allowedTemplates" : [ ],
  "createUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_DARzN6NTfxvaimVJ9jHoAcDa" ],
  "createWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_DARzN6NTfxvaimVJ9jHoAcDa" ],
  "created" : 1740575651862,
  "deleteUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_DARzN6NTfxvaimVJ9jHoAcDa" ],
  "deleteWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_DARzN6NTfxvaimVJ9jHoAcDa" ],
  "description" : "2 étage, 52 Passage Pastourelle, 25039 Dijon",
  "hideWorkflowRecipients" : false,
  "id" : "grp_DARzN6NTfxvaimVJ9jHoAcDa",
  "isDefault" : false,
  "isDisabled" : false,
  "jobOperation" : "purgeGroup",
  "layoutSelectionMode" : "anyOrNull",
  "name" : "Vision-oriented regional support",
  "templateSelectionMode" : "anyOrNull",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updateUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_DARzN6NTfxvaimVJ9jHoAcDa" ],
  "updateWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_DARzN6NTfxvaimVJ9jHoAcDa" ],
  "updated" : 1740575651917,
  "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer", "exportViewer" ],
  "viewUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_DARzN6NTfxvaimVJ9jHoAcDa" ],
  "viewWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_DARzN6NTfxvaimVJ9jHoAcDa" ]
}

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=Function-based%20encompassing%20parallelism&items.id=grp_Jsy1b2sZ4LMHa6viDXba9CFK&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

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

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1875

{
  "items" : [ {
    "allowedLayouts" : [ ],
    "allowedTemplates" : [ ],
    "createUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "createWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "created" : 1740575448620,
    "deleteUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "deleteWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "description" : "177 Place du Faubourg-Saint-Denis, 89708 Aulnay-sous-Bois",
    "hideWorkflowRecipients" : false,
    "id" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
    "isDefault" : false,
    "isDisabled" : false,
    "layoutSelectionMode" : "anyOrNull",
    "name" : "Function-based encompassing parallelism",
    "templateSelectionMode" : "anyOrNull",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updateUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "updateWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "updated" : 1740575448620,
    "userRoles" : [ "tenantManager", "groupManager", "userViewer", "workflowViewer", "workflowEvidenceDownloader", "workflowDeleter", "workflowArchiver", "userManager", "consentPageManager", "templateManager", "workflowCoManager", "workflowManager", "layoutManager", "organizationManager", "workflowInviter", "workflowCreator", "portalUser", "contactCreator", "signer", "approver", "developer", "selfAnonymizer", "exportViewer" ],
    "viewUserAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "viewWorkflowAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ]
  } ],
  "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=Function-based%20encompassing%20parallelism&items.id=grp_Jsy1b2sZ4LMHa6viDXba9CFK&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 186

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.isDefault The filter value(s) for the isDefault field.
items.name The filter value(s) for the name field.
items.isDisabled The filter value(s) for the isDisabled field.
items.userRoles The filter value(s) for the userRoles field.
items.viewUserAuthorizedGroups The filter value(s) for the viewUserAuthorizedGroups field.
items.createUserAuthorizedGroups The filter value(s) for the createUserAuthorizedGroups field.
items.updateUserAuthorizedGroups The filter value(s) for the updateUserAuthorizedGroups field.
items.deleteUserAuthorizedGroups The filter value(s) for the deleteUserAuthorizedGroups field.
items.viewWorkflowAuthorizedGroups The filter value(s) for the viewWorkflowAuthorizedGroups field.
items.createWorkflowAuthorizedGroups The filter value(s) for the createWorkflowAuthorizedGroups field.
items.updateWorkflowAuthorizedGroups The filter value(s) for the updateWorkflowAuthorizedGroups field.
items.deleteWorkflowAuthorizedGroups The filter value(s) for the deleteWorkflowAuthorizedGroups field.
items.jobOperation The filter value(s) for the jobOperation field.
items.jobErrorCode The filter value(s) for the jobErrorCode field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_MEephNbLtu6PVuThS97TayWM
ETag: "48bYQhjeU39hzPLFnF81YG4w"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 611

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575635926,
  "expired" : 1740662035924,
  "exportOperation" : "createGroupExport",
  "id" : "exp_6zSvD7n7EYMewXWxPGn6YZgd",
  "itemTemplate" : "{{id}},{{name}},{{json userRoles}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Function-based+encompassing+parallelism&items.id=grp_Jsy1b2sZ4LMHa6viDXba9CFK&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575635926,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_CpXxHeEdQLf9hpYA7jDbnY7Z&items.id=log_CpXxHeEdQLf9hpYA7jDbnY7Z&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.entityId The filter value(s) for the entityId field.
items.tenantId The filter value(s) for the tenantId field.
items.groupId The filter value(s) for the groupId field.
items.userId The filter value(s) for the userId field.
items.adminUser The filter value(s) for the adminUser field.
items.operation The filter value(s) for the operation field.
items.duration The filter value(s) for the duration field.
items.errorCode The filter value(s) for the errorCode field.
items.appVersion The filter value(s) for the appVersion field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1215

{
  "items" : [ {
    "appVersion" : "sgs-wm-webapp:1.14.4",
    "created" : 1740576013685,
    "duration" : 1,
    "entityId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
    "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_Jsy1b2sZ4LMHa6viDXba9CFK",
    "id" : "log_CpXxHeEdQLf9hpYA7jDbnY7Z",
    "operation" : "updateUser",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740576013685,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
    "variables" : {
      "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
      "httpRequest" : "PATCH /api/users/usr_5jmbWEirzyin4KJvzDVPqf7q\nX-Forwarded-For: 127.0.0.1\nWebTestClient-Request-Id: 9473\nAuthorization: ***loginToken***\nIf-Match: \"4KGKPGwkVcrdrrpBvtJGLyZr\"\nContent-Type: application/json\nContent-Length: 3\n\n{ }",
      "userIp" : "127.0.0.1"
    }
  } ],
  "itemsPerPage" : 50,
  "pageIndex" : 0,
  "totalItems" : 1
}

Fields:

Path Type Description
pageIndex Number The index of the page.
itemsPerPage Number The number of items per page.
totalItems Number The total number of items in all pages.
items Array The list of items in the page.
items[].id String The identifier of the log.
items[].tenantId String optional The identifier of the tenant the log belongs to.
items[].groupId String optional The identifier of the group of the user who created the log.
items[].userId String optional The identifier of the user who created the log.
items[].operation String The name of the performed operation.
items[].entityId String optional The identifier of the entity the performed operation was for.
items[].variables Object The logged variables.
items[].duration Number The duration of the performed operation, in ms.
items[].errorCode String optional The error code in case of a failed operation.
items[].errorDetail String optional The error detail in case of a failed operation.
items[].appVersion String The version of the Workflow Manager that performed the operation.
items[].created Number The creation date of the entity.
items[].updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidFilterField A filter parameter has an incorrect field name.
400 InvalidFilterValue A filter parameter has an incorrect value.
400 InvalidSortByField The sortBy parameter has an incorrect field name.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.

Export logs

Export a search in all the logs.

HTTP request

POST /api/logs/exports?text=log_LLRvsNMoGqgBD6VkXe21ov3f&items.id=log_LLRvsNMoGqgBD6VkXe21ov3f&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 191

{
  "contentType" : "text/csv",
  "beforeItems" : "",
  "afterItems" : "",
  "betweenItems" : "\n",
  "itemTemplate" : "{{id}},{{operation}},{{json variables}}",
  "expired" : 1740662412476
}

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.entityId The filter value(s) for the entityId field.
items.tenantId The filter value(s) for the tenantId field.
items.groupId The filter value(s) for the groupId field.
items.userId The filter value(s) for the userId field.
items.adminUser The filter value(s) for the adminUser field.
items.operation The filter value(s) for the operation field.
items.duration The filter value(s) for the duration field.
items.errorCode The filter value(s) for the errorCode field.
items.appVersion The filter value(s) for the appVersion field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_HoamdjsvT2S5wN8GmRHt5GZM
ETag: "6WeraYL6JkCrdcBbD6F9WPpt"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 603

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740576012478,
  "expired" : 1740662412476,
  "exportOperation" : "createLogExport",
  "id" : "exp_CUrGcapYQTwjH12gXJHBdFy2",
  "itemTemplate" : "{{id}},{{operation}},{{json variables}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=log_LLRvsNMoGqgBD6VkXe21ov3f&items.id=log_LLRvsNMoGqgBD6VkXe21ov3f&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740576012478,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

Fields:

Path Type Description
id String The identifier of the export.
tenantId String The identifier of the tenant the export belongs to.
userId String optional The identifier of the user who created the export.
exportOperation String The name of the export operation.
searchQuery String The search query for the exported items.
totalItems Number The total number of exported items.
size Number The size of the export.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

Errors:

Status Code Message
400 InvalidFilterField A filter parameter has an incorrect field name.
400 InvalidFilterValue A filter parameter has an incorrect value.
400 InvalidItemTemplate The item template could not be parsed.
400 InvalidSortByField The sortBy parameter has an incorrect field name.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.

Metadata

Retrieve metadata mapping

Retrieve the metadata mapping for a tenant.

HTTP request

GET /api/tenants/ten_7ghP8Ar8MMxHXZQyv5oGo5oU/dataMapping HTTP/1.1
Authorization: Bearer act_FuuSoRuCLbohC5LeDneemdb7.65y4UrHcG86g4YMW5Pxre4xkLTKS3vgSh8dYBLm3HWhmH1WXppFcAfgctTZk4DQy

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_8GqBNz8xmmUHpsqtHVskYXq2/dataMapping HTTP/1.1
Authorization: Bearer act_ATDDdyWc7NyeCwid1jbf3q6Q.2sQ4YfPJjdSKkNECDUnNuRb7QQQqajBX4gmCR4HjaubYucunF78yvfyeqC8L9Kxp
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_w7xvdpynWFw8PbNXk4nWn3Ng
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_C5HkYczXFnso2Yvq4iMHbc5T HTTP/1.1
Authorization: Bearer act_HxaW1AjdrD4ttu8bzuSfSu3q.3fso9Xx8RHrwrJgeCHHQRXE4MPGkKDGjZydnKWd66vhfoY2cE1VnFZQnZt5BJjNd

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

{
  "created" : 1740575897301,
  "creator" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "creatorName" : "Chi O'Hara",
  "creatorPictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "eventType" : "recipientInvite",
  "id" : "not_C5HkYczXFnso2Yvq4iMHbc5T",
  "isUnread" : true,
  "linkUrl" : "https://mclaughlin.net/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0dYd2RTTU1rbzc4aVdnMXUxa...",
  "preferredLocale" : "fr",
  "stepType" : "signature",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575897368,
  "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN",
  "workflowId" : "wfl_PraaZpuVc4xqgoHbCewVJm1C",
  "workflowName" : "Heavy Duty Steel Car"
}

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_2aeeR6Cx4SsLSHE6tFxRpvLX HTTP/1.1
Authorization: Bearer act_HxaW1AjdrD4ttu8bzuSfSu3q.3fso9Xx8RHrwrJgeCHHQRXE4MPGkKDGjZydnKWd66vhfoY2cE1VnFZQnZt5BJjNd
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_QDg6BhxTYWCdH1syXA4MV7pR
ETag: "GdfVk5PzaeF4Us7yBendDhxH"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 899

{
  "created" : 1740575910084,
  "creator" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "creatorName" : "Chi O'Hara",
  "creatorPictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "eventType" : "recipientInvite",
  "id" : "not_2aeeR6Cx4SsLSHE6tFxRpvLX",
  "isUnread" : false,
  "linkUrl" : "https://mclaughlin.net/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX1VDOXhGeExtNkRKRldWSmUxd...",
  "preferredLocale" : "fr",
  "stepType" : "signature",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575910153,
  "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN",
  "workflowId" : "wfl_DcW1JNscNgLTyJ153G4CUjse",
  "workflowName" : "Heavy Duty Paper Chair"
}

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_Gzj2qctfj6dXaci4oTU1yyoM&items.id=not_8YaLy9oVuV45VpiMHsCi9P7A&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_HxaW1AjdrD4ttu8bzuSfSu3q.3fso9Xx8RHrwrJgeCHHQRXE4MPGkKDGjZydnKWd66vhfoY2cE1VnFZQnZt5BJjNd

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.userId The filter value(s) for the userId field.
items.email The filter value(s) for the email field.
items.creator The filter value(s) for the creator field.
items.workflowId The filter value(s) for the workflowId field.
items.eventType The filter value(s) for the eventType field.
items.isUnread The filter value(s) for the isUnread field.
items.jobOperation The filter value(s) for the jobOperation field.
items.jobErrorCode The filter value(s) for the jobErrorCode field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1016

{
  "items" : [ {
    "created" : 1740575775342,
    "creator" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
    "creatorName" : "Chi O'Hara",
    "creatorPictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
    "eventType" : "recipientInvite",
    "id" : "not_8YaLy9oVuV45VpiMHsCi9P7A",
    "isUnread" : true,
    "linkUrl" : "https://mclaughlin.net/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0FienRSa05vZmg4WDhBenhMd...",
    "preferredLocale" : "fr",
    "stepType" : "signature",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575775383,
    "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN",
    "workflowId" : "wfl_Gzj2qctfj6dXaci4oTU1yyoM",
    "workflowName" : "Incredible Cotton Keyboard"
  } ],
  "itemsPerPage" : 50,
  "pageIndex" : 0,
  "totalItems" : 1
}

Fields:

Path Type Description
pageIndex Number The index of the page.
itemsPerPage Number The number of items per page.
totalItems Number The total number of items in all pages.
items Array The list of items in the page.
items[].id String The identifier of the notification.
items[].tenantId String The identifier of the tenant the notification belongs to.
items[].userId String optional The identifier of the user the notification belongs to.
items[].email String optional The email of the recipient the notification is about.
items[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
items[].creator String optional The identifier of the user who created the notification.
items[].creatorName String optional The name of the user who created the notification.
items[].creatorPictureResourceId String optional The picture resource identifier of the user who created the notification.
items[].workflowId String optional The identifier of the workflow the notification is about.
items[].stepId String optional The identifier of the workflow step the notification is about, if relevant.
items[].workflowName String optional The name of the workflow the notification is about.
items[].stepType String optional The type of step the notification is about, either signature or approval.
items[].eventType String The type of event the notification is about.
items[].linkUrl String optional The URL of the page linked with the notification.
items[].isUnread Boolean Whether or not the notification has been read.
items[].jobOperation String optional The job operation currently running.
items[].created Number The creation date of the entity.
items[].updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidFilterField A filter parameter has an incorrect field name.
400 InvalidFilterValue A filter parameter has an incorrect value.
400 InvalidSortByField The sortBy parameter has an incorrect field name.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.

Read notifications

Read all the notifications.

HTTP request

PATCH /api/unreadNotifications?text=wfl_82eiuL8YiDr6b5FgKQQut4Vj&items.id=not_68T6awYBibGPHLpfNQ9m91vS HTTP/1.1
Authorization: Bearer act_HxaW1AjdrD4ttu8bzuSfSu3q.3fso9Xx8RHrwrJgeCHHQRXE4MPGkKDGjZydnKWd66vhfoY2cE1VnFZQnZt5BJjNd
Content-Type: application/x-www-form-urlencoded

Headers:

Name Description
Authorization A valid access token or admin credentials.

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.userId The filter value(s) for the userId field.
items.email The filter value(s) for the email field.
items.creator The filter value(s) for the creator field.
items.workflowId The filter value(s) for the workflowId field.
items.eventType The filter value(s) for the eventType field.
items.isUnread The filter value(s) for the isUnread field.
items.jobOperation The filter value(s) for the jobOperation field.
items.jobErrorCode The filter value(s) for the jobErrorCode field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.

HTTP response

HTTP/1.1 200 OK
Content-Type: text/plain;charset=UTF-8

Errors:

Status Code Message
400 InvalidFilterField A filter parameter has an incorrect field name.
400 InvalidFilterValue A filter parameter has an incorrect value.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.

Organizations

Create organization

Create an organization.

HTTP request

POST /api/tenants/ten_Dd3R8EjLoTYMd73hjqC7GAnX/organizations HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 140

{
  "name" : "Vincent et Boyer",
  "organizationIdentifier" : "FR8689498621",
  "additionalInfo" : "2 Impasse de l'Odéon, 61223 Le Havre"
}

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_2LzHGp1wGD5ytFiS3uGwsjWy
ETag: "B6d8eSeBF7Xi7tSJCNoYq5me"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 286

{
  "additionalInfo" : "2 Impasse de l'Odéon, 61223 Le Havre",
  "created" : 1740575630745,
  "id" : "org_GNaPrcvgUjcuNT2ncBqMYV9h",
  "name" : "Vincent et Boyer",
  "organizationIdentifier" : "FR8689498621",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575630745
}

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_6it6k5mJFhxEdsLUQjG4EuYx HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Path parameters:

/api/organizations/{organizationId}

Parameter Description
organizationId The identifier of the organization.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

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

{
  "additionalInfo" : "49 Avenue de la Chaussée-d'Antin, 12179 Clermont-Ferrand",
  "created" : 1740575448146,
  "id" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
  "name" : "Laurent EURL",
  "organizationIdentifier" : "FR3356004308",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575448146
}

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_53ysPUu1pnkCAdHwyHSBbCUC HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "2Ax4TaBMt1DEC9Ryv49we71v"
Content-Type: application/json
Content-Length: 157

{
  "name" : "Dubois EI",
  "organizationIdentifier" : "FR2951412208",
  "additionalInfo" : "1 étage, 5549 Impasse de l'Abbaye, 02836 Issy-les-Moulineaux"
}

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_xCbnxMnBUCxhgbf1Uiyj3EF4
ETag: "FJt3uDjHmYCgmi5K2iyH2chf"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 303

{
  "additionalInfo" : "1 étage, 5549 Impasse de l'Abbaye, 02836 Issy-les-Moulineaux",
  "created" : 1740575622137,
  "id" : "org_53ysPUu1pnkCAdHwyHSBbCUC",
  "name" : "Dubois EI",
  "organizationIdentifier" : "FR2951412208",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575622161
}

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_CnSomSuwpYhUd1Kk2V8YPgsN HTTP/1.1
Authorization: Bearer act_DS2z72pYmRFW8YrkSKmRGctQ.4FGabDspXx2VRws6g8sgbAovoJc76QTXqCTokE6hGNbk7TY8YR3siMRwpjNuL22i
If-Match: "CZe8q5xmQwignCjzmyGRUzny"

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_6cYPs3xYkQFC5nzTomhj1A5q
ETag: "9G3GjvFok1sCX7xxjTbPU25z"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 324

{
  "additionalInfo" : "89 Avenue d'Abbeville, 40698 Hyères",
  "created" : 1740575632998,
  "id" : "org_CnSomSuwpYhUd1Kk2V8YPgsN",
  "jobOperation" : "purgeOrganization",
  "name" : "André et Rémy",
  "organizationIdentifier" : "FR9590045416",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575633025
}

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=Dupuis%20SA&items.id=org_14ktThtRqunvU3BnKBwRiBNU&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.name The filter value(s) for the name field.
items.organizationIdentifier The filter value(s) for the organizationIdentifier field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 381

{
  "items" : [ {
    "additionalInfo" : "Apt. 227, 94 Avenue du Havre, 62856 Paris",
    "created" : 1740575631805,
    "id" : "org_14ktThtRqunvU3BnKBwRiBNU",
    "name" : "Dupuis SA",
    "organizationIdentifier" : "FR2735253236",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575631805
  } ],
  "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=Laurent%20EURL&items.id=org_6it6k5mJFhxEdsLUQjG4EuYx&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 167

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.name The filter value(s) for the name field.
items.organizationIdentifier The filter value(s) for the organizationIdentifier field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_MWNftq4ESyDZ9xwmzfGixJiJ
ETag: "5gdddYH1qD65BoKwwpeZnUE7"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 572

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575629984,
  "expired" : 1740662029981,
  "exportOperation" : "createOrganizationExport",
  "id" : "exp_DDxTtxfxcLTM5pbdPeuaXH2Z",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Laurent+EURL&items.id=org_6it6k5mJFhxEdsLUQjG4EuYx&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575629984,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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

{
  "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."
    }
  },
  "coManagerAddedEmail" : {
    "en" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                The role of comanager has been assigned to you on a workflow\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Hello,</p>\n                                                                <p>You have been designated as co-manager of the following workflow :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Review the workflow\n                                                                            &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>To view this workflow, please click on the button above or copy the following address and paste it into the address bar of your browser :\n                                                                </p>\n                                                                <p>\n                                                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                                                </p>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{/if}}\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> We thank you for your confidence.\n                                                                            <br> See you soon.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "The role of comanager has been assigned to you on a workflow"
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été attribué sur un parapheur\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Visualiser le parapheur\n                                                                            &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" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
    }
  },
  "coManagerRemovedEmail" : {
    "en" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                The role of co-manager has been removed from you on a workflow.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Hello,</p>\n                                                                <p>You are no longer co-manager of the following workflow :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> We thank you for your confidence.\n                                                                            <br> See you soon.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "The role of co-manager has been removed from you on a workflow"
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> Merci pour votre confiance.\n                                                                            <br> À bientôt.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
    }
  },
  "commentCreatedEmail" : {
    "en" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"https://www.lex-persona.com/email-logo.png\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        A comment was just left\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Hi,</p>\n                                <p>{{notification.creatorName}} has just left a comment in the\n                                  following workflow:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Review the workflow\n                                      &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" : [ "fr" ],
  "rolesTranslationInEmail" : {
    "en" : {
      "cc" : "carbon copy",
      "comanager" : "comanager",
      "manager" : "manager",
      "watcher" : "watcher"
    },
    "fr" : {
      "cc" : "copie carbone",
      "comanager" : "cogestionnaire",
      "manager" : "gestionnaire",
      "watcher" : "observateur"
    }
  },
  "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                                {{#if notifierRoles}}\n                                <p>You have been designated as {{notifierRoles}} of the following workflow: {{notification.workflowName}}.\n                                  <br>\n                                The workflow was just started.</p>\n                                {{else}}\n                                <p>The following workflow was just started:\n                                  <strong>{{notification.workflowName}}</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\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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                                {{#if notifierRoles}}\n                                <p>Vous avez été désigné {{notifierRoles}} du parapheur suivant: {{notification.workflowName}}.\n                                <br>\n                                Nous vous informons que le parapheur vient d'être démarré.</p>\n                                {{else}}\n                                <p>Le parapheur suivant vient d'être démarré:\n                                  <strong>{{notification.workflowName}}</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 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.
coManagerAddedEmail Object The translations for the coManager has been added emails.
coManagerRemovedEmail Object The translations for the coManager has been removed emails.
rolesTranslationInEmail Object The translation of users roles.

Retrieve tenant settings

Retrieve the settings for a tenant.

HTTP request

GET /api/tenants/ten_CTYumMJ5yoeXKfxU7DpQLvCA/settings HTTP/1.1
Authorization: Bearer act_2SkxXYDHY1npFRcw3zeQM3KY.2DbeGaahb5YFDbEygQd43KxinkCwutac8DXqBGp3me7SfQevzPvqUTNEDGmMJXCq

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

{
  "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."
    }
  },
  "coManagerAddedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été attribué sur un parapheur\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Visualiser le parapheur\n                                                                            &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" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
    }
  },
  "coManagerRemovedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> Merci pour votre confiance.\n                                                                            <br> À bientôt.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
    }
  },
  "commentCreatedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"https://www.lex-persona.com/email-logo.png\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Un commentaire vient d'être laissé\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Bonjour,</p>\n                                <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser le parapheur\n                                      &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" ],
  "rolesTranslationInEmail" : {
    "fr" : {
      "cc" : "copie carbone",
      "comanager" : "cogestionnaire",
      "manager" : "gestionnaire",
      "watcher" : "observateur"
    }
  },
  "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                                {{#if notifierRoles}}\n                                <p>Vous avez été désigné {{notifierRoles}} du parapheur suivant: {{notification.workflowName}}.\n                                <br>\n                                Nous vous informons que le parapheur vient d'être démarré.</p>\n                                {{else}}\n                                <p>Le parapheur suivant vient d'être démarré:\n                                  <strong>{{notification.workflowName}}</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 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.
coManagerAddedEmail Object The translations for the coManager has been added emails.
coManagerRemovedEmail Object The translations for the coManager has been removed emails.
rolesTranslationInEmail Object The translation of users roles.

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_Dd3R8EjLoTYMd73hjqC7GAnX/appliedSettings HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "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."
    }
  },
  "coManagerAddedEmail" : {
    "en" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                The role of comanager has been assigned to you on a workflow\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Hello,</p>\n                                                                <p>You have been designated as co-manager of the following workflow :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Review the workflow\n                                                                            &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>To view this workflow, please click on the button above or copy the following address and paste it into the address bar of your browser :\n                                                                </p>\n                                                                <p>\n                                                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                                                </p>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{/if}}\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> We thank you for your confidence.\n                                                                            <br> See you soon.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "The role of comanager has been assigned to you on a workflow"
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été attribué sur un parapheur\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Visualiser le parapheur\n                                                                            &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" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
    }
  },
  "coManagerRemovedEmail" : {
    "en" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                The role of co-manager has been removed from you on a workflow.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Hello,</p>\n                                                                <p>You are no longer co-manager of the following workflow :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> We thank you for your confidence.\n                                                                            <br> See you soon.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "The role of co-manager has been removed from you on a workflow"
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> Merci pour votre confiance.\n                                                                            <br> À bientôt.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
    }
  },
  "commentCreatedEmail" : {
    "en" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"https://www.lex-persona.com/email-logo.png\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        A comment was just left\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Hi,</p>\n                                <p>{{notification.creatorName}} has just left a comment in the\n                                  following workflow:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Review the workflow\n                                      &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" : [ "fr" ],
  "rolesTranslationInEmail" : {
    "en" : {
      "cc" : "carbon copy",
      "comanager" : "comanager",
      "manager" : "manager",
      "watcher" : "watcher"
    },
    "fr" : {
      "cc" : "copie carbone",
      "comanager" : "cogestionnaire",
      "manager" : "gestionnaire",
      "watcher" : "observateur"
    }
  },
  "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                                {{#if notifierRoles}}\n                                <p>You have been designated as {{notifierRoles}} of the following workflow: {{notification.workflowName}}.\n                                  <br>\n                                The workflow was just started.</p>\n                                {{else}}\n                                <p>The following workflow was just started:\n                                  <strong>{{notification.workflowName}}</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\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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                                {{#if notifierRoles}}\n                                <p>Vous avez été désigné {{notifierRoles}} du parapheur suivant: {{notification.workflowName}}.\n                                <br>\n                                Nous vous informons que le parapheur vient d'être démarré.</p>\n                                {{else}}\n                                <p>Le parapheur suivant vient d'être démarré:\n                                  <strong>{{notification.workflowName}}</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 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.
coManagerAddedEmail Object The translations for the coManager has been added emails.
coManagerRemovedEmail Object The translations for the coManager has been removed emails.
rolesTranslationInEmail Object The translation of users roles.

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_7aqQzhp7xMcKwy99DgpP3xqx/settings HTTP/1.1
Authorization: Bearer act_Mz3gbP6BPET4HTcPs5g5d8gT.5BX4bC8YUFnHiW7dsPa1m5yzVwLA7Lj45Ye4BFztq6DeDE1Rp5DWUTvjgRRFcRUW
Content-Type: application/json
Content-Length: 154607

{
  "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                                {{#if notifierRoles}}\n                                <p>Vous avez été désigné {{notifierRoles}} du parapheur suivant: {{notification.workflowName}}.\n                                <br>\n                                Nous vous informons que le parapheur vient d'être démarré.</p>\n                                {{else}}\n                                <p>Le parapheur suivant vient d'être démarré:\n                                  <strong>{{notification.workflowName}}</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"
    }
  },
  "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"
    }
  },
  "coManagerAddedEmail" : {
    "fr" : {
      "subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été attribué sur un parapheur\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Visualiser le parapheur\n                                                                            &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"
    }
  },
  "coManagerRemovedEmail" : {
    "fr" : {
      "subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> Merci pour votre confiance.\n                                                                            <br> À bientôt.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n"
    }
  },
  "rolesTranslationInEmail" : {
    "fr" : {
      "manager" : "gestionnaire",
      "watcher" : "observateur",
      "cc" : "copie carbone",
      "comanager" : "cogestionnaire"
    }
  }
}

Path parameters:

/api/tenants/{tenantId}/settings

Parameter Description
tenantId The identifier of the tenant.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
preferredLocales Array The preferred locales.
approbationInviteEmail Object The translations for the approbation invite emails.
approbationUninviteEmail Object The translations for the approbation uninvite emails.
approbationRefusedEmail Object The translations for the approbation refusal notification emails.
approbationFinishedEmail Object The translations for the approbation finished notification emails.
signatureInviteEmail Object The translations for the signature invite emails.
signatureUninviteEmail Object The translations for the signature uninvite emails.
signatureRefusedEmail Object The translations for the signature refusal notification emails.
signatureFinishedEmail Object The translations for the signature finished notification emails.
workflowStartedEmail Object The translations for the workflow started notification emails.
workflowStoppedEmail Object The translations for the workflow stopped notification emails.
workflowFinishedEmail Object The translations for the workflow finished notification emails.
anonymizedUsersInStepEmail Object The translations for the anonymized users in step notification emails.
workflowFinishedDownloadLinkEmail Object The translations for the signed documents download emails.
commentCreatedEmail Object The translations for the comment created notification emails.
commentCreatedSecuredEmail Object The translations for the secured comment created notification emails.
coManagerAddedEmail Object The translations for the coManager has been added emails.
coManagerRemovedEmail Object The translations for the coManager has been removed emails.
rolesTranslationInEmail Object The translation of users roles.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_124HWNDuxmTdUnkr18o8ySwa
ETag: "4AfR1tx4G3fR5EiekT1eYgyH"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 154607

{
  "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."
    }
  },
  "coManagerAddedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été attribué sur un parapheur\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Visualiser le parapheur\n                                                                            &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" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
    }
  },
  "coManagerRemovedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> Merci pour votre confiance.\n                                                                            <br> À bientôt.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
    }
  },
  "commentCreatedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"https://www.lex-persona.com/email-logo.png\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Un commentaire vient d'être laissé\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Bonjour,</p>\n                                <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser le parapheur\n                                      &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" ],
  "rolesTranslationInEmail" : {
    "fr" : {
      "cc" : "copie carbone",
      "comanager" : "cogestionnaire",
      "manager" : "gestionnaire",
      "watcher" : "observateur"
    }
  },
  "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                                {{#if notifierRoles}}\n                                <p>Vous avez été désigné {{notifierRoles}} du parapheur suivant: {{notification.workflowName}}.\n                                <br>\n                                Nous vous informons que le parapheur vient d'être démarré.</p>\n                                {{else}}\n                                <p>Le parapheur suivant vient d'être démarré:\n                                  <strong>{{notification.workflowName}}</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 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.
coManagerAddedEmail Object The translations for the coManager has been added emails.
coManagerRemovedEmail Object The translations for the coManager has been removed emails.
rolesTranslationInEmail Object The translation of users roles.

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_GsComp6tTHrhran4YNS9qFNP/settings HTTP/1.1
Authorization: Bearer act_PQ2yFj7adhkHALJi8H6Rwmhq.4YWyFmh89jkeiQRN4ZhBELL26bhd5jyjwerMXBpYJoWof4dApvdy46VDMYTxhMxn

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

{
  "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."
    }
  },
  "coManagerAddedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été attribué sur un parapheur\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Visualiser le parapheur\n                                                                            &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" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
    }
  },
  "coManagerRemovedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> Merci pour votre confiance.\n                                                                            <br> À bientôt.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
    }
  },
  "commentCreatedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"https://www.lex-persona.com/email-logo.png\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Un commentaire vient d'être laissé\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Bonjour,</p>\n                                <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser le parapheur\n                                      &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                                {{#if notifierRoles}}\n                                <p>Vous avez été désigné {{notifierRoles}} du parapheur suivant: {{notification.workflowName}}.\n                                <br>\n                                Nous vous informons que le parapheur vient d'être démarré.</p>\n                                {{else}}\n                                <p>Le parapheur suivant vient d'être démarré:\n                                  <strong>{{notification.workflowName}}</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 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.
coManagerAddedEmail Object The translations for the coManager has been added emails.
coManagerRemovedEmail Object The translations for the coManager has been removed emails.

Errors:

Status Code Message
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.

Retrieve applied user settings

Retrieve the tenant settings overridden by the user settings.

HTTP request

GET /api/users/usr_5jmbWEirzyin4KJvzDVPqf7q/appliedSettings HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "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."
    }
  },
  "coManagerAddedEmail" : {
    "en" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                The role of comanager has been assigned to you on a workflow\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Hello,</p>\n                                                                <p>You have been designated as co-manager of the following workflow :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Review the workflow\n                                                                            &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>To view this workflow, please click on the button above or copy the following address and paste it into the address bar of your browser :\n                                                                </p>\n                                                                <p>\n                                                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                                                </p>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{/if}}\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> We thank you for your confidence.\n                                                                            <br> See you soon.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "The role of comanager has been assigned to you on a workflow"
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été attribué sur un parapheur\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Visualiser le parapheur\n                                                                            &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" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
    }
  },
  "coManagerRemovedEmail" : {
    "en" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                The role of co-manager has been removed from you on a workflow.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Hello,</p>\n                                                                <p>You are no longer co-manager of the following workflow :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> We thank you for your confidence.\n                                                                            <br> See you soon.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "The role of co-manager has been removed from you on a workflow"
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> Merci pour votre confiance.\n                                                                            <br> À bientôt.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
    }
  },
  "commentCreatedEmail" : {
    "en" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"https://www.lex-persona.com/email-logo.png\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        A comment was just left\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Hi,</p>\n                                <p>{{notification.creatorName}} has just left a comment in the\n                                  following workflow:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Review the workflow\n                                      &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" : [ "fr" ],
  "signatureFinishedEmail" : {
    "en" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"https://www.lex-persona.com/email-logo.png\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        A recipient has just signed\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Hi,</p>\n                                <p>{{notification.creatorName}} has just signed the\n                                  document(s) of the following workflow:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Review the workflow\n                                      &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                                {{#if notifierRoles}}\n                                <p>You have been designated as {{notifierRoles}} of the following workflow: {{notification.workflowName}}.\n                                  <br>\n                                The workflow was just started.</p>\n                                {{else}}\n                                <p>The following workflow was just started:\n                                  <strong>{{notification.workflowName}}</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\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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                                {{#if notifierRoles}}\n                                <p>Vous avez été désigné {{notifierRoles}} du parapheur suivant: {{notification.workflowName}}.\n                                <br>\n                                Nous vous informons que le parapheur vient d'être démarré.</p>\n                                {{else}}\n                                <p>Le parapheur suivant vient d'être démarré:\n                                  <strong>{{notification.workflowName}}</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 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.
coManagerAddedEmail Object The translations for the coManager has been added emails.
coManagerRemovedEmail Object The translations for the coManager has been removed emails.

Errors:

Status Code Message
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.

Update user settings

Update the settings for a user.

HTTP request

PUT /api/users/usr_4EidWRioGYbxe3xLD3mDPcY5/settings HTTP/1.1
Authorization: Bearer act_PBg3BS87NtTUewfupmwMvR7p.2VUXMySjp4qUGwwNHkgXYb2coNLzaoM1tefuezgv6NnP4ZTg2dZjiMs9wF8ETFvE
Content-Type: application/json
Content-Length: 154417

{
  "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                                {{#if notifierRoles}}\n                                <p>Vous avez été désigné {{notifierRoles}} du parapheur suivant: {{notification.workflowName}}.\n                                <br>\n                                Nous vous informons que le parapheur vient d'être démarré.</p>\n                                {{else}}\n                                <p>Le parapheur suivant vient d'être démarré:\n                                  <strong>{{notification.workflowName}}</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"
    }
  },
  "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"
    }
  },
  "coManagerAddedEmail" : {
    "fr" : {
      "subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été attribué sur un parapheur\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Visualiser le parapheur\n                                                                            &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"
    }
  },
  "coManagerRemovedEmail" : {
    "fr" : {
      "subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> Merci pour votre confiance.\n                                                                            <br> À bientôt.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n"
    }
  }
}

Path parameters:

/api/users/{userId}/settings

Parameter Description
userId The identifier of the user.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
preferredLocales Array The preferred locales.
approbationInviteEmail Object The translations for the approbation invite emails.
approbationUninviteEmail Object The translations for the approbation uninvite emails.
approbationRefusedEmail Object The translations for the approbation refusal notification emails.
approbationFinishedEmail Object The translations for the approbation finished notification emails.
signatureInviteEmail Object The translations for the signature invite emails.
signatureUninviteEmail Object The translations for the signature uninvite emails.
signatureRefusedEmail Object The translations for the signature refusal notification emails.
signatureFinishedEmail Object The translations for the signature finished notification emails.
workflowStartedEmail Object The translations for the workflow started notification emails.
workflowStoppedEmail Object The translations for the workflow stopped notification emails.
workflowFinishedEmail Object The translations for the workflow finished notification emails.
anonymizedUsersInStepEmail Object The translations for the anonymized users in step notification emails.
workflowFinishedDownloadLinkEmail Object The translations for the signed documents download emails.
commentCreatedEmail Object The translations for the comment created notification emails.
commentCreatedSecuredEmail Object The translations for the secured comment created notification emails.
coManagerAddedEmail Object The translations for the coManager has been added emails.
coManagerRemovedEmail Object The translations for the coManager has been removed emails.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_HnR6m5CVijweL5KfypCY57sD
ETag: "DFQejUR2DJQxkxAAWRUwA3dA"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 154417

{
  "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."
    }
  },
  "coManagerAddedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été attribué sur un parapheur\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Visualiser le parapheur\n                                                                            &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" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur"
    }
  },
  "coManagerRemovedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> Merci pour votre confiance.\n                                                                            <br> À bientôt.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur"
    }
  },
  "commentCreatedEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"https://www.lex-persona.com/email-logo.png\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Un commentaire vient d'être laissé\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Bonjour,</p>\n                                <p>{{notification.creatorName}} vient de laisser un commentaire dans le parapheur suivant :\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser le parapheur\n                                      &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                                {{#if notifierRoles}}\n                                <p>Vous avez été désigné {{notifierRoles}} du parapheur suivant: {{notification.workflowName}}.\n                                <br>\n                                Nous vous informons que le parapheur vient d'être démarré.</p>\n                                {{else}}\n                                <p>Le parapheur suivant vient d'être démarré:\n                                  <strong>{{notification.workflowName}}</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 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.
coManagerAddedEmail Object The translations for the coManager has been added emails.
coManagerRemovedEmail Object The translations for the coManager has been removed emails.

Errors:

Status Code Message
400 InvalidEmailTemplate An email template could not be parsed.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.

Retrieve workflow settings

Retrieve the settings for a workflow.

HTTP request

GET /api/workflows/wfl_8G74LJGvxKYHCdwAt1UQ4GyP/settings HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "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                                {{#if notifierRoles}}\n                                <p>You have been designated as {{notifierRoles}} of the following workflow: {{notification.workflowName}}.\n                                  <br>\n                                The workflow was just started.</p>\n                                {{else}}\n                                <p>The following workflow was just started:\n                                  <strong>{{notification.workflowName}}</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\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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                                {{#if notifierRoles}}\n                                <p>Vous avez été désigné {{notifierRoles}} du parapheur suivant: {{notification.workflowName}}.\n                                <br>\n                                Nous vous informons que le parapheur vient d'être démarré.</p>\n                                {{else}}\n                                <p>Le parapheur suivant vient d'être démarré:\n                                  <strong>{{notification.workflowName}}</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"
    }
  },
  "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"
    }
  },
  "coManagerAddedEmail" : {
    "en" : {
      "subject" : "The role of comanager has been assigned to you on a workflow",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                The role of comanager has been assigned to you on a workflow\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Hello,</p>\n                                                                <p>You have been designated as co-manager of the following workflow :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Review the workflow\n                                                                            &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>To view this workflow, please click on the button above or copy the following address and paste it into the address bar of your browser :\n                                                                </p>\n                                                                <p>\n                                                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                                                </p>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{/if}}\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> We thank you for your confidence.\n                                                                            <br> See you soon.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n"
    },
    "fr" : {
      "subject" : "Le rôle de cogestionnaire vous a été attribué sur un parapheur",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été attribué sur un parapheur\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous avez été désigné comme cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    {{#if notification.linkUrl}}\n                                                    <tr>\n                                                        <td width=\"1\"></td>\n                                                        <td align=\"center\">\n                                                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                                                <tr>\n                                                                    <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #1f8cdf;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                                                            Visualiser le parapheur\n                                                                            &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"
    }
  },
  "coManagerRemovedEmail" : {
    "en" : {
      "subject" : "The role of co-manager has been removed from you on a workflow",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                The role of co-manager has been removed from you on a workflow.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Hello,</p>\n                                                                <p>You are no longer co-manager of the following workflow :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> We thank you for your confidence.\n                                                                            <br> See you soon.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n"
    },
    "fr" : {
      "subject" : "Le rôle de cogestionnaire vous a été retiré sur un parapheur",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n        style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n    <tbody>\n    <tr>\n        <td align=\"center\">\n            <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n                <tbody>\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <!-- first Row with logo-->\n                                        <tr>\n                                            <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                                                align=\"center\">\n                                                <img border=\"0\"\n                                                     src=\"https://www.lex-persona.com/email-logo.png\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Lex Persona\" title=\"Lex Persona\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#104670; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                                                Le rôle de cogestionnaire vous a été retiré sur un parapheur.\n                                            </td>\n                                        </tr>\n                                        <!-- Third Row Body-->\n                                        <tr>\n                                            <td valign=\"top\" align=\"left\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr style=\"padding: 12px 0px 0px;\">\n                                                        <td width=\"40\"></td>\n                                                        <td>\n                                                            <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                                                  style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                                                <p>Bonjour,</p>\n                                                                <p>Vous n'êtes plus cogestionnaire du parapheur suivant :\n                                                                    <strong>{{notification.workflowName}}</strong>.</p>\n                                                                <br>\n                                                            </font>\n                                                        </td>\n                                                        <td width=\"40\"></td>\n                                                    </tr>\n                                                    <tr>\n                                                        <td valign=\"top\" align=\"left\">\n                                                            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                                <tbody>\n                                                                <tr>\n                                                                    <td valign=\"top\" align=\"left\"></td>\n                                                                </tr>\n                                                                </tbody>\n                                                            </table>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n                <!-- Fourth Row Card Footer-->\n                <tr>\n                    <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                               style=\"background-color:#fff\">\n                            <tbody>\n                            <tr>\n                                <td valign=\"top\" align=\"left\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                        <tbody>\n                                        <tr>\n                                            <td valign=\"top\" align=\"center\">\n                                                <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                                    <tbody>\n                                                    <tr>\n                                                        <td>\n                                                            <div\n                                                                    style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                                                       align=\"center\">\n                                                                    <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                                                        <td width=\"40\"></td>\n                                                                        <td>\n                                                                            <br> Merci pour votre confiance.\n                                                                            <br> À bientôt.\n                                                                            <br>\n                                                                            <br>\n                                                                        </td>\n                                                                        <td width=\"40\"></td>\n                                                                    </tr>\n                                                                </table>\n                                                            </div>\n                                                        </td>\n                                                    </tr>\n                                                    </tbody>\n                                                </table>\n                                            </td>\n                                        </tr>\n                                        </tbody>\n                                    </table>\n                                </td>\n                            </tr>\n                            </tbody>\n                        </table>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n</body>\n</html>\n"
    }
  }
}

Fields:

Path Type Description
approbationInviteEmail Object The translations for the approbation invite emails.
approbationUninviteEmail Object The translations for the approbation uninvite emails.
approbationRefusedEmail Object The translations for the approbation refusal notification emails.
approbationFinishedEmail Object The translations for the approbation finished notification emails.
signatureInviteEmail Object The translations for the signature invite emails.
signatureUninviteEmail Object The translations for the signature uninvite emails.
signatureRefusedEmail Object The translations for the signature refusal notification emails.
signatureFinishedEmail Object The translations for the signature finished notification emails.
workflowStartedEmail Object The translations for the workflow started notification emails.
workflowStoppedEmail Object The translations for the workflow stopped notification emails.
workflowFinishedEmail Object The translations for the workflow finished notification emails.
anonymizedUsersInStepEmail Object The translations for the anonymized users in step notification emails.
workflowFinishedDownloadLinkEmail Object The translations for the signed documents download emails.
commentCreatedEmail Object The translations for the comment created notification emails.
commentCreatedSecuredEmail Object The translations for the secured comment created notification emails.
coManagerAddedEmail Object The translations for the coManager has been added emails.
coManagerRemovedEmail Object The translations for the coManager has been removed emails.

Errors:

Status Code Message
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
404 WorkflowNotFound The specified workflow can not be found.

Signature profiles

Create signature profile

Create a new signature profile.

HTTP request

POST /api/tenants/ten_Dd3R8EjLoTYMd73hjqC7GAnX/signatureProfiles HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 10660

{
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Mystery",
  "documentType" : "pdf",
  "signatureType" : "pades",
  "forceScrollDocument" : true,
  "pdfVisibleSignatureMode" : "allowed",
  "pdfDefaultSignatureImage" : "iVBORw0KGgoAAAANSUhEUgAAAFgAAABYCAIAAAD+96djAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAAGYktHRAD/AP8A...",
  "userGriffOverrideEnabled" : true,
  "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.
pdfDefaultSignatureImage String optional The default image to be included in the signature image, in case of a PDF visible signature.
userGriffOverrideEnabled Boolean optional Allow user signature to be added, in case of a PDF visible signature.
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_8A1D2PaMaF1rEPjcw7f5ctvM
ETag: "3E9ys3NJxCfhgshBCgbZUmz6"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 10806

{
  "created" : 1740576022655,
  "documentType" : "pdf",
  "forceScrollDocument" : true,
  "id" : "sip_J5h9m8DBszvDPFxyEBB5Fu27",
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Mystery",
  "pdfDefaultSignatureImage" : "iVBORw0KGgoAAAANSUhEUgAAAFgAAABYCAIAAAD+96djAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAAGYktHRAD/AP8A...",
  "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_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740576022655,
  "userGriffOverrideEnabled" : true
}

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.
pdfDefaultSignatureImage String optional The default image to be included in the signature image, in case of a PDF visible signature.
userGriffOverrideEnabled Boolean optional Allow user signature to be added, in case of a PDF visible signature.
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_m9avtjGeaAnmuBzCtvFEZmHv HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Path parameters:

/api/signatureProfiles/{signatureProfileId}

Parameter Description
signatureProfileId The identifier of the signature profile.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

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

{
  "created" : 1740575447560,
  "documentType" : "pdf",
  "forceScrollDocument" : true,
  "id" : "sip_m9avtjGeaAnmuBzCtvFEZmHv",
  "isDefault" : false,
  "isDisabled" : false,
  "name" : "Comic/Graphic Novel",
  "pdfDefaultSignatureImage" : "iVBORw0KGgoAAAANSUhEUgAAAFgAAABYCAIAAAD+96djAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAAGYktHRAD/AP8A...",
  "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_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575447560,
  "userGriffOverrideEnabled" : true
}

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.
pdfDefaultSignatureImage String optional The default image to be included in the signature image, in case of a PDF visible signature.
userGriffOverrideEnabled Boolean optional Allow user signature to be added, in case of a PDF visible signature.
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_53Fa7gXvwAErLgGewtNywcSq HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "F9u6SJFb7RCd7RB7TDW9zDdj"
Content-Type: application/json
Content-Length: 1136

{
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Fable",
  "signatureType" : "pades",
  "forceScrollDocument" : true,
  "pdfVisibleSignatureMode" : "allowed",
  "pdfDefaultSignatureImage" : "Signé électroniquement par {{signerName}}\nLe {{date format='dd/MM/yyyy à HH:mm'}}{{#if signerOrganizationTitle}}\nFonction : {{signerOrganizationTitle}}{{/if}}{{#if signerOrganization}}\nSociété : {{signerOrganization}}{{/if}}",
  "userGriffOverrideEnabled" : true,
  "pdfSignatureImageText" : "Signé électroniquement par {{signerName}}\nLe {{date format='dd/MM/yyyy à HH:mm'}}{{#if signerOrganizationTitle}}\nFonction : {{signerOrganizationTitle}}{{/if}}{{#if signerOrganization}}\nSociété : {{signerOrganization}}{{/if}}",
  "pdfSignatureImageTextColor" : "#000000",
  "pdfSignatureImageTextSize" : 8.0,
  "pdfSignatureImageTextFont" : "Arial",
  "pdfSignatureImageWidth" : 200.0,
  "pdfSignatureImageHeight" : 100.0,
  "signaturePolicyId" : "1.2.3.4",
  "signaturePolicyDigestAlgorithmKey" : "SHA256",
  "signaturePolicyDigestValueBase64" : "123456789abcdef==",
  "signaturePolicyUri" : "http://www.pdf.lex/policy.pdf"
}

Path parameters:

/api/signatureProfiles/{signatureProfileId}

Parameter Description
signatureProfileId The identifier of the signature profile.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
isDefault Boolean optional Whether or not the signature profile is a default signature profile.
isDisabled Boolean optional Whether or not the signature profile is disabled.
name String optional The name of the signature profile.
signatureType String optional The type of signature applied by this signature profile. Possible values: pades, xades, xadesDetached, xadesDetachedManifest, cades, cadesDetached, helios.
forceScrollDocument Boolean optional Whether or not the signer/approver will be forced to read the document.
pdfVisibleSignatureMode String optional The mode of visible signature for the signature profile.
pdfDefaultSignatureImage String optional The default image to be included in the signature image, in case of a PDF visible signature.
userGriffOverrideEnabled Boolean optional Allow user signature to be added, in case of a PDF visible signature.
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_7z5v2s9mbBtsdnK64J4JpPZN
ETag: "Hq2kF6S3T5btgedZNrNmD2a2"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1308

{
  "created" : 1740576015792,
  "documentType" : "pdf",
  "forceScrollDocument" : true,
  "id" : "sip_53Fa7gXvwAErLgGewtNywcSq",
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Fable",
  "pdfDefaultSignatureImage" : "Signé électroniquement par {{signerName}}\nLe {{date format='dd/MM/yyyy à HH:mm'}}{{#if signerOrganizationTitle}}\nFonction : {{signerOrganizationTitle}}{{/if}}{{#if signerOrganization}}\nSociété : {{signerOrganization}}{{/if}}",
  "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_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740576015816,
  "userGriffOverrideEnabled" : true
}

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.
pdfDefaultSignatureImage String optional The default image to be included in the signature image, in case of a PDF visible signature.
userGriffOverrideEnabled Boolean optional Allow user signature to be added, in case of a PDF visible signature.
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=Comic%2FGraphic%20Novel&items.id=sip_m9avtjGeaAnmuBzCtvFEZmHv&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.isDefault The filter value(s) for the isDefault field.
items.isDisabled The filter value(s) for the isDisabled field.
items.name The filter value(s) for the name field.
items.documentType The filter value(s) for the documentType field.
items.signatureType The filter value(s) for the signatureType field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 11042

{
  "items" : [ {
    "created" : 1740575447560,
    "documentType" : "pdf",
    "forceScrollDocument" : true,
    "id" : "sip_m9avtjGeaAnmuBzCtvFEZmHv",
    "isDefault" : false,
    "isDisabled" : false,
    "name" : "Comic/Graphic Novel",
    "pdfDefaultSignatureImage" : "iVBORw0KGgoAAAANSUhEUgAAAFgAAABYCAIAAAD+96djAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAAGYktHRAD/AP8A...",
    "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_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575447560,
    "userGriffOverrideEnabled" : true
  } ],
  "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[].pdfDefaultSignatureImage String optional The default image to be included in the signature image, in case of a PDF visible signature.
items[].userGriffOverrideEnabled Boolean optional Allow user signature to be added, in case of a PDF visible signature.
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=Comic%2FGraphic%20Novel&items.id=sip_m9avtjGeaAnmuBzCtvFEZmHv&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 167

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.isDefault The filter value(s) for the isDefault field.
items.isDisabled The filter value(s) for the isDisabled field.
items.name The filter value(s) for the name field.
items.documentType The filter value(s) for the documentType field.
items.signatureType The filter value(s) for the signatureType field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_DJWJfsoN7ctv5N5iwGRUnYso
ETag: "CD7cPVxmCG9gMmbf7dFJjHZB"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 585

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740576024320,
  "expired" : 1740662424317,
  "exportOperation" : "createSignatureProfileExport",
  "id" : "exp_MiCbHcfWDqggK2ZBtTvxc4w4",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Comic%2FGraphic+Novel&items.id=sip_m9avtjGeaAnmuBzCtvFEZmHv&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740576024320,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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 YWRtaW46QlE1S2ZVRHlvY3dyTnlma3dqRG1tbTVv
Content-Type: application/json
Content-Length: 1292

{
  "domainName" : "gutmann.co",
  "idpType" : "google",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpScope" : "openid email profile",
  "idpClientId" : "1992",
  "idpClientSecret" : "NPWknJGTBFJnehcgbdsY1F4h",
  "logo" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "darkColor" : "#104670",
  "smtpSenderName" : "My application",
  "technicalContactUrl" : "https://support.lex-persona.com",
  "loginTokenTtl" : 3600000,
  "maxDocumentSize" : 10485760,
  "maxDocuments" : 200,
  "maxAttachments" : 10,
  "downloadLinkTokenValidityDays" : 90,
  "defaultCountry" : "FR",
  "allowCommentsInSteps" : false,
  "allowWatchers" : true,
  "defaultAllowComments" : false,
  "forceFlattenPdf" : false,
  "createUserOnLogin" : true,
  "createUserOnLoginGroupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "certificateEvidenceLanguage" : "en",
  "attachmentExtensions" : [ "pdf", "word" ],
  "lockDocumentsAfterFirstValidation" : false,
  "allowConsolidation" : true
}

Headers:

Name Description
Authorization Valid admin credentials.

Fields:

Path Type Description
domainName String The domain name of the tenant.
idpType String Identity provider type.
idpBaseUrl String Base URL for OpenID Connect based identity provider.
idpScope String Scope for OpenID Connect based identity provider.
idpClientId String Client ID for OpenID Connect based identity provider.
idpClientSecret String Client secret for OpenID Connect based identity provider.
organizationName String optional The organization name of the tenant.
logo String optional The logo image of the portal, as a data URI.
primaryColor String optional The primary color of the portal.
secondaryColor String optional The secondary color of the portal.
darkColor String optional The dark color of the portal.
smtpSenderName String optional The sender name for notification emails.
defaultCountry String optional The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR.
technicalContactUrl String optional The technical contact URL to be used in the portal.
loginTokenTtl Number optional The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes.
maxDocumentSize Number optional The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes.
maxDocuments Number optional The portal maximum authorized documents to sign. Note that the default value is 200.
maxAttachments Number optional The portal maximum authorized attachments. Note that the default value is 10.
downloadLinkTokenValidityDays Number optional Download link token expiration period in days. Note that the default value is 3650.
defaultAllowComments Boolean optional The default allow comments value in steps.
forceFlattenPdf Boolean optional Whether the existing signature fields are flattened on PDF uploads.
allowCommentsInSteps Boolean optional Whether or not the comments authorization are managed by the workflow manager.
allowWatchers Boolean optional Whether or not the watchers authorization are managed by the workflow manager.
createUserOnLogin Boolean optional Whether or not users are automatically created on first login.
createUserOnLoginGroupId String optional Selected Group ID when option to created user on first login selected.
certificateEvidenceLanguage String optional The language of the certificate of evidence.
attachmentExtensions Array optional The allowed file extensions for workflows attachments.
lockDocumentsAfterFirstValidation Boolean optional Whether documents should be locked after the first validation.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_PJdtHgTjsZ5oemvJ7mg5yD4g
ETag: "4FUt62cQVhVPHZdseBrPWHMw"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1280

{
  "allowCommentsInSteps" : false,
  "allowConsolidation" : true,
  "allowWatchers" : true,
  "allowedTenantStatus" : [ "active", "inactive", "trial" ],
  "attachmentExtensions" : [ "pdf", "word" ],
  "certificateEvidenceLanguage" : "en",
  "consentVersion" : "V2",
  "createUserOnLogin" : true,
  "createUserOnLoginGroupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "created" : 1740575995446,
  "darkColor" : "#104670",
  "defaultAllowComments" : false,
  "defaultCountry" : "FR",
  "defaultGroupId" : "grp_ANM1JGHnqeUBKueWgLq6jbRn",
  "domainName" : "gutmann.co",
  "downloadLinkTokenValidityDays" : 90,
  "forceFlattenPdf" : false,
  "id" : "ten_AGN1XkB78E2begiJSCax3qJb",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpClientId" : "1992",
  "idpClientSecret" : "****************",
  "idpScope" : "openid email profile",
  "idpType" : "google",
  "lockDocumentsAfterFirstValidation" : false,
  "loginTokenTtl" : 3600000,
  "logoResourceId" : "res_FXo3sG3jv3FU6MfELWU9tJZV",
  "maxAttachments" : 10,
  "maxDocumentSize" : 10485760,
  "maxDocuments" : 200,
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "smtpSenderName" : "My application",
  "technicalContactUrl" : "https://support.lex-persona.com",
  "tenantStatus" : "trial",
  "updated" : 1740575995446
}

Fields:

Path Type Description
id String The identifier of the tenant.
defaultGroupId String The identifier of the default group in the tenant.
domainName String The domain name of the tenant.
organizationName String optional The organization name of the tenant.
tenantStatus TenantStatus optional The status of the tenant.
idpType String Identity provider type.
idpBaseUrl String Base URL for OpenID Connect based identity provider.
idpScope String Scope for OpenID Connect based identity provider.
idpClientId String Client ID for OpenID Connect based identity provider.
idpClientSecret String Client secret for OpenID Connect based identity provider.
logoResourceId String optional The identifier of the logo image resource.
primaryColor String The primary color of the portal.
secondaryColor String The secondary color of the portal.
darkColor String The dark color of the portal.
smtpSenderName String The sender name for notification emails.
defaultCountry String The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR.
technicalContactUrl String The technical contact URL to be used in the portal.
loginTokenTtl Number The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes.
maxDocumentSize Number The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes.
maxDocuments Number The portal maximum authorized documents to sign. Note that the default value is 200.
maxAttachments Number The portal maximum authorized attachments. Note that the default value is 10.
downloadLinkTokenValidityDays Number Download link token expiration period in days. Note that the default value is 3650.
defaultAllowComments Boolean The default allow comments value in steps.
forceFlattenPdf Boolean Whether the existing signature fields are flattened on PDF uploads.
allowCommentsInSteps Boolean Whether or not the comments authorization are managed by the workflow manager.
allowWatchers Boolean Whether or not the watchers authorization are managed by the workflow manager.
createUserOnLogin Boolean Whether or not users are automatically created on first login.
createUserOnLoginGroupId kotlin.jvm.internal.StringCompanionObject@1ef0bcbd optional Selected Group ID when option to created user on first login selected.
allowedTenantStatus Array The statuses to which the tenant is authorized to switch.
attachmentExtensions Array The allowed file extensions for workflows attachments.
lockDocumentsAfterFirstValidation Boolean Whether documents should be locked after the first validation.
certificateEvidenceLanguage String The language of the certificate of evidence.
allowConsolidation Boolean Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidHexColor The provided color is not in hexadecimal format.
400 InvalidImageFormat The image format is not supported.
400 InvalidRequestField A request field has an incorrect value.
403 InvalidAdminCredentials The admin credentials are incorrect.

Retrieve tenant

Retrieve an existing tenant.

HTTP request

GET /api/tenants/ten_Dd3R8EjLoTYMd73hjqC7GAnX HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

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

Fields:

Path Type Description
id String The identifier of the tenant.
defaultGroupId String The identifier of the default group in the tenant.
domainName String The domain name of the tenant.
organizationName String optional The organization name of the tenant.
tenantStatus TenantStatus optional The status of the tenant.
idpType String Identity provider type.
idpBaseUrl String Base URL for OpenID Connect based identity provider.
idpScope String Scope for OpenID Connect based identity provider.
idpClientId String Client ID for OpenID Connect based identity provider.
idpClientSecret String Client secret for OpenID Connect based identity provider.
logoResourceId String optional The identifier of the logo image resource.
primaryColor String The primary color of the portal.
secondaryColor String The secondary color of the portal.
darkColor String The dark color of the portal.
smtpSenderName String The sender name for notification emails.
defaultCountry String The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR.
technicalContactUrl String The technical contact URL to be used in the portal.
loginTokenTtl Number The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes.
maxDocumentSize Number The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes.
maxDocuments Number The portal maximum authorized documents to sign. Note that the default value is 200.
maxAttachments Number The portal maximum authorized attachments. Note that the default value is 10.
downloadLinkTokenValidityDays Number Download link token expiration period in days. Note that the default value is 3650.
defaultAllowComments Boolean The default allow comments value in steps.
forceFlattenPdf Boolean Whether the existing signature fields are flattened on PDF uploads.
allowCommentsInSteps Boolean Whether or not the comments authorization are managed by the workflow manager.
allowWatchers Boolean Whether or not the watchers authorization are managed by the workflow manager.
createUserOnLogin Boolean Whether or not users are automatically created on first login.
createUserOnLoginGroupId kotlin.jvm.internal.StringCompanionObject@1ef0bcbd optional Selected Group ID when option to created user on first login selected.
allowedTenantStatus Array The statuses to which the tenant is authorized to switch.
attachmentExtensions Array The allowed file extensions for workflows attachments.
lockDocumentsAfterFirstValidation Boolean Whether documents should be locked after the first validation.
certificateEvidenceLanguage String The language of the certificate of evidence.
allowConsolidation Boolean Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.

Update tenant

Update an existing tenant.

HTTP request

PATCH /api/tenants/ten_4FZiwNAdHPuGp1AH2EMzeDyd HTTP/1.1
Authorization: Bearer act_2LW39oZE8nLJyyyYCh147gtt.3Gynmp7ZymsyAg9quq8dbiTmF6w3S9L6VvqbFRMFmMxAdE8XMf7wnbBi52pzrWvp
If-Match: "9UCBaNTdcyxZCXVyu8pEPTt5"
Content-Type: application/json
Content-Length: 1332

{
  "domainName" : "schumm.info",
  "organizationName" : "Charles SEM",
  "idpType" : "google",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpScope" : "openid email profile",
  "idpClientId" : "1992",
  "idpClientSecret" : "NPWknJGTBFJnehcgbdsY1F4h",
  "logo" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "darkColor" : "#104670",
  "smtpSenderName" : "My application",
  "technicalContactUrl" : "https://support.lex-persona.com",
  "loginTokenTtl" : 3600000,
  "maxDocumentSize" : 10485760,
  "maxDocuments" : 200,
  "maxAttachments" : 10,
  "downloadLinkTokenValidityDays" : 90,
  "defaultCountry" : "FR",
  "allowCommentsInSteps" : false,
  "allowWatchers" : false,
  "defaultAllowComments" : false,
  "forceFlattenPdf" : false,
  "createUserOnLogin" : true,
  "createUserOnLoginGroupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "certificateEvidenceLanguage" : "fr",
  "attachmentExtensions" : [ "pdf", "word" ],
  "lockDocumentsAfterFirstValidation" : false,
  "allowConsolidation" : true
}

Path parameters:

/api/tenants/{tenantId}

Parameter Description
tenantId The identifier of the tenant.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
domainName String optional The domain name of the tenant.
organizationName String optional The organization name of the tenant.
tenantStatus TenantStatus optional The status of the tenant.
idpType String optional Identity provider type.
idpBaseUrl String optional Base URL for OpenID Connect based identity provider.
idpScope String optional Scope for OpenID Connect based identity provider.
idpClientId String optional Client ID for OpenID Connect based identity provider.
idpClientSecret String optional Client secret for OpenID Connect based identity provider.
logo String optional The logo image of the portal, as a data URI.
primaryColor String optional The primary color of the portal.
secondaryColor String optional The secondary color of the portal.
darkColor String optional The dark color of the portal.
smtpSenderName String optional The sender name for notification emails.
defaultCountry String optional The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR.
technicalContactUrl String optional The technical contact URL to be used in the portal.
loginTokenTtl Number optional The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes.
maxDocumentSize Number optional The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes.
maxDocuments Number optional The portal maximum authorized documents to sign. Note that the default value is 200.
maxAttachments Number optional The portal maximum authorized attachments. Note that the default value is 10.
downloadLinkTokenValidityDays Number optional Download link token expiration period in days. Note that the default value is 3650.
defaultAllowComments Boolean optional The default allow comments value in steps.
forceFlattenPdf Boolean optional Whether the existing signature fields are flattened on PDF uploads.
allowCommentsInSteps Boolean optional Whether or not the comments authorization are managed by the workflow manager.
allowWatchers Boolean optional Whether or not the watchers authorization are managed by the workflow manager.
createUserOnLogin Boolean optional Whether or not users are automatically created on first login.
createUserOnLoginGroupId String optional Selected Group ID when option to created user on first login selected.
certificateEvidenceLanguage String optional The language of the certificate of evidence.
attachmentExtensions Array optional The allowed file extensions for workflows attachments.
lockDocumentsAfterFirstValidation Boolean optional Whether documents should be locked after the first validation.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_MjRSqhpfcCrg5hueNmLTeQJH
ETag: "7agAbr5xbA5hgd8LEAPb2mUX"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1362

{
  "allowCommentsInSteps" : false,
  "allowConsolidation" : true,
  "allowWatchers" : false,
  "allowedTenantStatus" : [ "active", "inactive", "trial" ],
  "attachmentExtensions" : [ "pdf", "word" ],
  "certificateEvidenceLanguage" : "fr",
  "consentVersion" : "V2",
  "createUserOnLogin" : true,
  "createUserOnLoginGroupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "created" : 1740575996438,
  "darkColor" : "#104670",
  "defaultAllowComments" : false,
  "defaultCountry" : "FR",
  "defaultGroupId" : "grp_5YtWoLK8R1aQ7nQBwHRFHYDf",
  "domainName" : "schumm.info",
  "downloadLinkTokenValidityDays" : 90,
  "forceFlattenPdf" : false,
  "id" : "ten_4FZiwNAdHPuGp1AH2EMzeDyd",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpClientId" : "1992",
  "idpClientSecret" : "****************",
  "idpScope" : "openid email profile",
  "idpType" : "google",
  "jobOperation" : "purgeTenantResource",
  "lockDocumentsAfterFirstValidation" : false,
  "loginTokenTtl" : 3600000,
  "logoResourceId" : "res_DtmErhp8cEvHeQ7FBmYLZjvV",
  "maxAttachments" : 10,
  "maxDocumentSize" : 10485760,
  "maxDocuments" : 200,
  "organizationName" : "Charles SEM",
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "smtpSenderName" : "My application",
  "technicalContactUrl" : "https://support.lex-persona.com",
  "tenantStatus" : "trial",
  "updated" : 1740575996566
}

Fields:

Path Type Description
id String The identifier of the tenant.
defaultGroupId String The identifier of the default group in the tenant.
domainName String The domain name of the tenant.
organizationName String optional The organization name of the tenant.
tenantStatus TenantStatus optional The status of the tenant.
idpType String Identity provider type.
idpBaseUrl String Base URL for OpenID Connect based identity provider.
idpScope String Scope for OpenID Connect based identity provider.
idpClientId String Client ID for OpenID Connect based identity provider.
idpClientSecret String Client secret for OpenID Connect based identity provider.
logoResourceId String optional The identifier of the logo image resource.
primaryColor String The primary color of the portal.
secondaryColor String The secondary color of the portal.
darkColor String The dark color of the portal.
smtpSenderName String The sender name for notification emails.
defaultCountry String The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR.
technicalContactUrl String The technical contact URL to be used in the portal.
loginTokenTtl Number The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes.
maxDocumentSize Number The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes.
maxDocuments Number The portal maximum authorized documents to sign. Note that the default value is 200.
maxAttachments Number The portal maximum authorized attachments. Note that the default value is 10.
downloadLinkTokenValidityDays Number Download link token expiration period in days. Note that the default value is 3650.
defaultAllowComments Boolean The default allow comments value in steps.
forceFlattenPdf Boolean Whether the existing signature fields are flattened on PDF uploads.
allowCommentsInSteps Boolean Whether or not the comments authorization are managed by the workflow manager.
allowWatchers Boolean Whether or not the watchers authorization are managed by the workflow manager.
createUserOnLogin Boolean Whether or not users are automatically created on first login.
createUserOnLoginGroupId kotlin.jvm.internal.StringCompanionObject@1ef0bcbd optional Selected Group ID when option to created user on first login selected.
allowedTenantStatus Array The statuses to which the tenant is authorized to switch.
attachmentExtensions Array The allowed file extensions for workflows attachments.
lockDocumentsAfterFirstValidation Boolean Whether documents should be locked after the first validation.
certificateEvidenceLanguage String The language of the certificate of evidence.
allowConsolidation Boolean Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidHexColor The provided color is not in hexadecimal format.
400 InvalidImageFormat The image format is not supported.
400 InvalidRequestField A request field has an incorrect value.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
409 EntityLocked The entity is being updated.
412 ConditionalUpdateFailed A condition failed in the update request.

Delete tenant

Delete an existing tenant. Admin only.

HTTP request

DELETE /admin/api/tenants/ten_4Kw9wUdPbvxrXwaP17UbjEAi HTTP/1.1
Authorization: Basic YWRtaW46QlE1S2ZVRHlvY3dyTnlma3dqRG1tbTVv
If-Match: "9nvWop9qyN5FeWSpnS1kx7Sj"

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_HRXGh7tNNtMkmoWtQWLeZi2b
ETag: "3wExHhatXLBoUS18ihV47S2R"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1236

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

Fields:

Path Type Description
id String The identifier of the tenant.
defaultGroupId String The identifier of the default group in the tenant.
domainName String The domain name of the tenant.
organizationName String optional The organization name of the tenant.
tenantStatus TenantStatus optional The status of the tenant.
idpType String Identity provider type.
idpBaseUrl String Base URL for OpenID Connect based identity provider.
idpScope String Scope for OpenID Connect based identity provider.
idpClientId String Client ID for OpenID Connect based identity provider.
idpClientSecret String Client secret for OpenID Connect based identity provider.
logoResourceId String optional The identifier of the logo image resource.
primaryColor String The primary color of the portal.
secondaryColor String The secondary color of the portal.
darkColor String The dark color of the portal.
smtpSenderName String The sender name for notification emails.
defaultCountry String The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR.
technicalContactUrl String The technical contact URL to be used in the portal.
loginTokenTtl Number The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes.
maxDocumentSize Number The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes.
maxDocuments Number The portal maximum authorized documents to sign. Note that the default value is 200.
maxAttachments Number The portal maximum authorized attachments. Note that the default value is 10.
downloadLinkTokenValidityDays Number Download link token expiration period in days. Note that the default value is 3650.
defaultAllowComments Boolean The default allow comments value in steps.
forceFlattenPdf Boolean Whether the existing signature fields are flattened on PDF uploads.
allowCommentsInSteps Boolean Whether or not the comments authorization are managed by the workflow manager.
allowWatchers Boolean Whether or not the watchers authorization are managed by the workflow manager.
createUserOnLogin Boolean Whether or not users are automatically created on first login.
createUserOnLoginGroupId kotlin.jvm.internal.StringCompanionObject@1ef0bcbd optional Selected Group ID when option to created user on first login selected.
allowedTenantStatus Array The statuses to which the tenant is authorized to switch.
attachmentExtensions Array The allowed file extensions for workflows attachments.
lockDocumentsAfterFirstValidation Boolean Whether documents should be locked after the first validation.
certificateEvidenceLanguage String The language of the certificate of evidence.
allowConsolidation Boolean Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
403 InvalidAdminCredentials The admin credentials are incorrect.
404 TenantNotFound The specified tenant can not be found.
409 EntityLocked The entity is being updated.
412 ConditionalUpdateFailed A condition failed in the update request.

Search tenants

Search in all the tenants. Admin only.

HTTP request

GET /admin/api/tenants?text=mclaughlin.net&items.id=ten_Dd3R8EjLoTYMd73hjqC7GAnX&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Basic YWRtaW46QlE1S2ZVRHlvY3dyTnlma3dqRG1tbTVv

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.domainName The filter value(s) for the domainName field.
items.tenantStatus The filter value(s) for the tenantStatus field.
items.organizationName The filter value(s) for the organizationName field.
items.jobOperation The filter value(s) for the jobOperation field.
items.jobErrorCode The filter value(s) for the jobErrorCode field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization Valid admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1358

{
  "items" : [ {
    "allowCommentsInSteps" : true,
    "allowConsolidation" : true,
    "allowWatchers" : true,
    "allowedTenantStatus" : [ "active", "inactive", "trial" ],
    "attachmentExtensions" : [ ],
    "certificateEvidenceLanguage" : "en",
    "consentVersion" : "V2",
    "createUserOnLogin" : true,
    "created" : 1740575446493,
    "darkColor" : "#104670",
    "defaultAllowComments" : true,
    "defaultCountry" : "FR",
    "defaultGroupId" : "grp_Cy3m34HxpLa3pej61RJcdACG",
    "domainName" : "mclaughlin.net",
    "downloadLinkTokenValidityDays" : 3650,
    "forceFlattenPdf" : true,
    "id" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "idpBaseUrl" : "https://accounts.google.com/",
    "idpClientId" : "1992",
    "idpClientSecret" : "****************",
    "idpScope" : "openid email profile",
    "idpType" : "google",
    "lockDocumentsAfterFirstValidation" : false,
    "loginTokenTtl" : 3600000,
    "logoResourceId" : "res_AEaSoFbFnAkaRw61f4Mg77BH",
    "maxAttachments" : 10,
    "maxDocumentSize" : 10485760,
    "maxDocuments" : 200,
    "primaryColor" : "#208cdf",
    "secondaryColor" : "#4ca3e5",
    "smtpSenderName" : "My application",
    "technicalContactUrl" : "https://support.lex-persona.com",
    "tenantStatus" : "trial",
    "updated" : 1740575446493
  } ],
  "itemsPerPage" : 50,
  "pageIndex" : 0,
  "totalItems" : 1
}

Fields:

Path Type Description
pageIndex Number The index of the page.
itemsPerPage Number The number of items per page.
totalItems Number The total number of items in all pages.
items Array The list of items in the page.
items[].id String The identifier of the tenant.
items[].defaultGroupId String The identifier of the default group in the tenant.
items[].domainName String The domain name of the tenant.
items[].organizationName String optional The organization name of the tenant.
items[].tenantStatus TenantStatus optional The status of the tenant.
items[].idpType String Identity provider type.
items[].idpBaseUrl String Base URL for OpenID Connect based identity provider.
items[].idpScope String Scope for OpenID Connect based identity provider.
items[].idpClientId String Client ID for OpenID Connect based identity provider.
items[].idpClientSecret String Client secret for OpenID Connect based identity provider.
items[].logoResourceId String optional The identifier of the logo image resource.
items[].primaryColor String The primary color of the portal.
items[].secondaryColor String The secondary color of the portal.
items[].darkColor String The dark color of the portal.
items[].smtpSenderName String The sender name for notification emails.
items[].defaultCountry String The default country for new users, in case it is not provided by the identity provider. If not specified, the default country is FR.
items[].technicalContactUrl String The technical contact URL to be used in the portal.
items[].loginTokenTtl Number The portal login token validity period in milliseconds. Note that the token minimum validity period is 10 minutes.
items[].maxDocumentSize Number The portal maximum authorized document size in bytes. Note that the default value is 10485760 bytes.
items[].maxDocuments Number The portal maximum authorized documents to sign. Note that the default value is 200.
items[].maxAttachments Number The portal maximum authorized attachments. Note that the default value is 10.
items[].downloadLinkTokenValidityDays Number Download link token expiration period in days. Note that the default value is 3650.
items[].defaultAllowComments Boolean The default allow comments value in steps.
items[].forceFlattenPdf Boolean Whether the existing signature fields are flattened on PDF uploads.
items[].allowCommentsInSteps Boolean Whether or not the comments authorization are managed by the workflow manager.
items[].allowWatchers Boolean Whether or not the watchers authorization are managed by the workflow manager.
items[].createUserOnLogin Boolean Whether or not users are automatically created on first login.
items[].createUserOnLoginGroupId kotlin.jvm.internal.StringCompanionObject@1ef0bcbd optional Selected Group ID when option to created user on first login selected.
items[].allowedTenantStatus Array The statuses to which the tenant is authorized to switch.
items[].attachmentExtensions Array The allowed file extensions for workflows attachments.
items[].lockDocumentsAfterFirstValidation Boolean Whether documents should be locked after the first validation.
items[].certificateEvidenceLanguage String The language of the certificate of evidence.
items[].allowConsolidation Boolean Indicates whether workflow consolidation is enabled or not.
items[].jobOperation String optional The job operation currently running.
items[].created Number The creation date of the entity.
items[].updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidFilterField A filter parameter has an incorrect field name.
400 InvalidFilterValue A filter parameter has an incorrect value.
400 InvalidSortByField The sortBy parameter has an incorrect field name.
403 InvalidAdminCredentials The admin credentials are incorrect.

Export tenants

Export a search in all the tenants. Admin only.

HTTP request

POST /admin/api/tenants/exports?text=mclaughlin.net&items.id=ten_Dd3R8EjLoTYMd73hjqC7GAnX&sortBy=items.id HTTP/1.1
Authorization: Basic YWRtaW46QlE1S2ZVRHlvY3dyTnlma3dqRG1tbTVv
Content-Type: application/json
Content-Length: 167

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.domainName The filter value(s) for the domainName field.
items.tenantStatus The filter value(s) for the tenantStatus field.
items.organizationName The filter value(s) for the organizationName field.
items.jobOperation The filter value(s) for the jobOperation field.
items.jobErrorCode The filter value(s) for the jobErrorCode field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization Valid admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_JPZdBq8PwhT4d4hseJamw28r
ETag: "E6XjzJNjAEUhz52MTbcAwAZh"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 501

{
  "adminUser" : "admin",
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740576003106,
  "expired" : 1740662403105,
  "exportOperation" : "createTenantExport",
  "id" : "exp_MYVhWDgPRncvSbBgHQku3YAv",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=mclaughlin.net&items.id=ten_Dd3R8EjLoTYMd73hjqC7GAnX&sortBy=items.id",
  "size" : 0,
  "totalItems" : 0,
  "updated" : 1740576003106
}

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_Dd3R8EjLoTYMd73hjqC7GAnX/users HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 813

{
  "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "isDisabled" : false,
  "email" : "angela.sipes3832@my-company.com",
  "picture" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
  "phoneNumber" : "+33 6 12 34 56 78",
  "comments" : "Dolorem voluptate nostrum ullam tempora qui.",
  "firstName" : "Lilou",
  "lastName" : "Bourgeois",
  "country" : "FR",
  "organizationTitles" : [ {
    "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
    "title" : "Dynamic Assurance Developpeur"
  } ],
  "subject" : "2f75e390-6f56-4952-baf6-d3e9ba7ff585"
}

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.
comments String optional The comments associated with the contact.
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_FZRABkc7yWCny9LStPgyXeQo
ETag: "AD9ivTufH8vfrGeRxSju7BES"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 910

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "comments" : "Dolorem voluptate nostrum ullam tempora qui.",
  "country" : "FR",
  "created" : 1740575606505,
  "email" : "angela.sipes3832@my-company.com",
  "firstName" : "Lilou",
  "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "usr_9GmuEQcdZFd9ECDLAg1NTPhn",
  "isDisabled" : false,
  "lastLogin" : 0,
  "lastName" : "Bourgeois",
  "name" : "Lilou Bourgeois",
  "organizationTitles" : [ {
    "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
    "title" : "Dynamic Assurance Developpeur"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_Jnx3fH4FiSraLJ9RHwYLjiQw",
  "signAllowed" : true,
  "subject" : "2f75e390-6f56-4952-baf6-d3e9ba7ff585",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575606505,
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ]
}

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.
comments String optional The comments associated with the contact.
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_5jmbWEirzyin4KJvzDVPqf7q HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "comments" : "Ut aut culpa porro non quia inventore.",
  "country" : "FR",
  "created" : 1740575448689,
  "email" : "ling.dare6185@my-company.com",
  "firstName" : "Chi",
  "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "isDisabled" : false,
  "lastLogin" : 1740575448799,
  "lastName" : "O'Hara",
  "name" : "Chi O'Hara",
  "organizationTitles" : [ {
    "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
    "title" : "Dynamic Operations Coordinateur"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "signAllowed" : true,
  "subject" : "e9b070b4-99a6-4d18-b209-b840615b451a",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575448802,
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ]
}

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.
comments String optional The comments associated with the contact.
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_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
ETag: "8BwiT2VeFHUbq3NNP2aui2dv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 905

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "comments" : "Ut aut culpa porro non quia inventore.",
  "country" : "FR",
  "created" : 1740575448689,
  "email" : "ling.dare6185@my-company.com",
  "firstName" : "Chi",
  "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "isDisabled" : false,
  "lastLogin" : 1740575448799,
  "lastName" : "O'Hara",
  "name" : "Chi O'Hara",
  "organizationTitles" : [ {
    "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
    "title" : "Dynamic Operations Coordinateur"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "signAllowed" : true,
  "subject" : "e9b070b4-99a6-4d18-b209-b840615b451a",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575448802,
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ]
}

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.
comments String optional The comments associated with the contact.
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_Bbvwo7s4qeYmGhKQ6ETn1jt1 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "CZRNFSWqvi12zdzG4UtZf2bg"
Content-Type: application/json
Content-Length: 830

{
  "groupId" : "grp_Cy3m34HxpLa3pej61RJcdACG",
  "isDisabled" : false,
  "email" : "donnie.wintheiser7637@my-company.com",
  "picture" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
  "phoneNumber" : "+33 6 12 34 56 78",
  "comments" : "Temporibus officiis veniam sunt voluptatem aliquid perferendis.",
  "firstName" : "Noah",
  "lastName" : "Marty",
  "country" : "FR",
  "organizationTitles" : [ {
    "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
    "title" : "National Research Ingenieur"
  } ],
  "subject" : "f2317865-1c01-497d-8aa8-31491e892bf1"
}

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.
comments String optional The comments associated with the contact.
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_LmeLyPTLyFYjpG5WZSmwyY52
ETag: "88WqT84HUAPHkaZRw2ZzNLwd"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 897

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "comments" : "Temporibus officiis veniam sunt voluptatem aliquid perferendis.",
  "country" : "FR",
  "created" : 1740575608631,
  "email" : "donnie.wintheiser7637@my-company.com",
  "firstName" : "Noah",
  "groupId" : "grp_Cy3m34HxpLa3pej61RJcdACG",
  "id" : "usr_Bbvwo7s4qeYmGhKQ6ETn1jt1",
  "isDisabled" : false,
  "jobOperation" : "refreshUserInfo",
  "lastLogin" : 0,
  "lastName" : "Marty",
  "name" : "Noah Marty",
  "organizationTitles" : [ {
    "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
    "title" : "National Research Ingenieur"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_A7nrMujDQCA3qvdUYvo92cap",
  "signAllowed" : true,
  "subject" : "f2317865-1c01-497d-8aa8-31491e892bf1",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575608672,
  "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.
comments String optional The comments associated with the contact.
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_5jmbWEirzyin4KJvzDVPqf7q/loginTokens HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/x-www-form-urlencoded

Path parameters:

/api/users/{userId}/loginTokens

Parameter Description
userId The identifier of the user.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_3GZbHu4VLKnfC2wARAAHa93x
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 370

{
  "created" : 1740575659565,
  "expired" : 1740579259565,
  "scope" : "portalUser",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "tokenValue" : "eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NDA1NzkyNTksInVzZXJJZCI6InVzcl81am1iV0Vpcnp5aW40S0p2ekRWUHFmN3EiLCJzY29wZSI6InBvcnRhbFV...",
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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

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_8suztr5LwP7LK4ABT6f1anPg
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_DBxYcsmxSKhtrB5L7YYthK74 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "87wL9iYQLK1TvefPv33mAFX8"

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_JqAL4wij2hUKtTK6GcNHSVHb
ETag: "GjV4qYcjW3xrJQiYMs4BJB2g"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 585

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "comments" : "",
  "country" : "",
  "created" : 1740575598134,
  "email" : "usr_DBxYcsmxSKhtrB5L7YYthK74@anonymized",
  "firstName" : "",
  "groupId" : "grp_Cy3m34HxpLa3pej61RJcdACG",
  "id" : "usr_DBxYcsmxSKhtrB5L7YYthK74",
  "isDisabled" : true,
  "jobOperation" : "purgeUserResource",
  "lastLogin" : 0,
  "lastName" : "",
  "name" : "",
  "organizationTitles" : [ ],
  "phoneNumber" : "",
  "signAllowed" : true,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575598179,
  "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.
comments String optional The comments associated with the contact.
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=Chi%20O%27Hara&items.id=usr_5jmbWEirzyin4KJvzDVPqf7q&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

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

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1037

{
  "items" : [ {
    "approveAllowed" : true,
    "comanageAllowed" : true,
    "comments" : "Ut aut culpa porro non quia inventore.",
    "country" : "FR",
    "created" : 1740575448689,
    "email" : "ling.dare6185@my-company.com",
    "firstName" : "Chi",
    "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
    "id" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
    "isDisabled" : false,
    "lastLogin" : 1740575448799,
    "lastName" : "O'Hara",
    "name" : "Chi O'Hara",
    "organizationTitles" : [ {
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "title" : "Dynamic Operations Coordinateur"
    } ],
    "phoneNumber" : "+33 6 12 34 56 78",
    "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
    "signAllowed" : true,
    "subject" : "e9b070b4-99a6-4d18-b209-b840615b451a",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575448802,
    "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ]
  } ],
  "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[].comments String optional The comments associated with the contact.
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=Chi%20O%27Hara&items.id=usr_5jmbWEirzyin4KJvzDVPqf7q&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 195

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.groupId The filter value(s) for the groupId field.
items.viewAuthorizedGroups The filter value(s) for the viewAuthorizedGroups field.
items.lastLogin The filter value(s) for the lastLogin field.
items.subject The filter value(s) for the subject field.
items.name The filter value(s) for the name field.
items.email The filter value(s) for the email field.
items.firstName The filter value(s) for the firstName field.
items.lastName The filter value(s) for the lastName field.
items.country The filter value(s) for the country field.
items.signAllowed The filter value(s) for the signAllowed field.
items.approveAllowed The filter value(s) for the approveAllowed field.
items.organizationTitles.organizationId The filter value(s) for the organizationTitles.organizationId field.
items.isDisabled The filter value(s) for the isDisabled field.
items.comanageAllowed The filter value(s) for the comanageAllowed field.
items.jobOperation The filter value(s) for the jobOperation field.
items.jobErrorCode The filter value(s) for the jobErrorCode field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_JhYkJPtKgEwSDik7hs2cPsWw
ETag: "4GzF8aLWwuvjXHLs34ZoG6z3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 592

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575595974,
  "expired" : 1740661995971,
  "exportOperation" : "createUserExport",
  "id" : "exp_5ksNkU2AGWSWg6tgbd58G26j",
  "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Chi+O%27Hara&items.id=usr_5jmbWEirzyin4KJvzDVPqf7q&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575595974,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_5jmbWEirzyin4KJvzDVPqf7q/webhooks HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 251

{
  "endpointUrl" : "https://my-company.com/E9nA7nEYTVrnnVkxAMWsdfLf",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "coManagerRemoved", "coManagerAdded", "workflowFinished" ]
}

Path parameters:

/api/users/{userId}/webhooks

Parameter Description
userId The identifier of the user.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
endpointUrl String The URL of the webhook endpoint.
notifiedEvents Array The type of events the webhook will be notified about.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_9gCGGGfQKPBMAMAa5mqzrwLk
ETag: "C1DD156q1LWuFEBAkzDh7t73"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 442

{
  "created" : 1740575468570,
  "endpointUrl" : "https://my-company.com/E9nA7nEYTVrnnVkxAMWsdfLf",
  "id" : "wbh_9GRYWmmUUDNrqw7LYR4gt5k7",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575468570,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_Dd3R8EjLoTYMd73hjqC7GAnX/webhooks HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 251

{
  "endpointUrl" : "https://my-company.com/P7JoSqrwekHy6xFckCFVQQ9v",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "coManagerRemoved", "coManagerAdded", "workflowFinished" ]
}

Path parameters:

/api/tenants/{tenantId}/webhooks

Parameter Description
tenantId The identifier of the tenant.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
endpointUrl String The URL of the webhook endpoint.
notifiedEvents Array The type of events the webhook will be notified about.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_EoWDuV6SNctaq3wVtKrq9PdN
ETag: "HT7DLddcCb1t7nQPghshKRZT"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 397

{
  "created" : 1740575467305,
  "endpointUrl" : "https://my-company.com/P7JoSqrwekHy6xFckCFVQQ9v",
  "id" : "wbh_6o2E19tEjYS1XFgoWhu8Bhk7",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575467305
}

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_53Bmfjrb2Vd6Z9CvYkTuvnb4 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "created" : 1740575448893,
  "endpointUrl" : "https://my-company.com/DKULG2P9VyH3RE3GDQCWLWya",
  "id" : "wbh_53Bmfjrb2Vd6Z9CvYkTuvnb4",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575463161,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_53Bmfjrb2Vd6Z9CvYkTuvnb4 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "GSyCHeSYs3FStSp7pnwYBHw5"
Content-Type: application/json
Content-Length: 251

{
  "endpointUrl" : "https://my-company.com/EhiQ5eZAuoPQSqeXjxavHbSB",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "coManagerRemoved", "coManagerAdded", "workflowFinished" ]
}

Path parameters:

/api/webhooks/{webhookId}

Parameter Description
webhookId The identifier of the webhook.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
endpointUrl String optional The URL of the webhook endpoint.
notifiedEvents Array optional The type of events the webhook will be notified about.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_6NuvFVWtwWDjmRMrqsKfom3U
ETag: "H3E4cADADaA24MuNJDHkwBjJ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 442

{
  "created" : 1740575448893,
  "endpointUrl" : "https://my-company.com/EhiQ5eZAuoPQSqeXjxavHbSB",
  "id" : "wbh_53Bmfjrb2Vd6Z9CvYkTuvnb4",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575460091,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_6NxJ6iZVN1MhE7UhxHcCZkYd HTTP/1.1
Authorization: Bearer act_Jbc46DHEuytyFNQaNgwX2q3D.KULPookYJZ9sQyNx9xYNxoinp3HXbiFsmZ3BznZ8r5DGz4meHBxXRF9YLFLBNuwr

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_5qUXihjUBvFeNHHgDKpPJQPA
ETag: "2p8FG1qYXzjmyuconkyL2Puw"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 442

{
  "created" : 1740575455619,
  "endpointUrl" : "https://my-company.com/BnstJbXEc79XarbC9Vc9kpz3",
  "id" : "wbh_6NxJ6iZVN1MhE7UhxHcCZkYd",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575455619,
  "userId" : "usr_JELN1MTSRC8xC3H11dtS4QTc"
}

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%2FK6jgbPfyWfAnDpSsDfXAkCy6&items.id=wbh_53Bmfjrb2Vd6Z9CvYkTuvnb4&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.userId The filter value(s) for the userId field.
items.endpointUrl The filter value(s) for the endpointUrl field.
items.notifiedEvents The filter value(s) for the notifiedEvents field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 540

{
  "items" : [ {
    "created" : 1740575448893,
    "endpointUrl" : "https://my-company.com/K6jgbPfyWfAnDpSsDfXAkCy6",
    "id" : "wbh_53Bmfjrb2Vd6Z9CvYkTuvnb4",
    "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575448893,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
  } ],
  "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_4uYcxbHJMpQ3f2U2oQjJChei HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "created" : 1740575450214,
  "eventType" : "workflowStarted",
  "id" : "wbe_4uYcxbHJMpQ3f2U2oQjJChei",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575514550,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "webhookId" : "wbh_53Bmfjrb2Vd6Z9CvYkTuvnb4",
  "workflowId" : "wfl_Gzj2qctfj6dXaci4oTU1yyoM"
}

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_53Bmfjrb2Vd6Z9CvYkTuvnb4&items.id=wbe_4uYcxbHJMpQ3f2U2oQjJChei&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.userId The filter value(s) for the userId field.
items.endpointUrl The filter value(s) for the endpointUrl field.
items.notifiedEvents The filter value(s) for the notifiedEvents field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 425

{
  "items" : [ {
    "created" : 1740575450214,
    "eventType" : "workflowStarted",
    "id" : "wbe_4uYcxbHJMpQ3f2U2oQjJChei",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575514550,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
    "webhookId" : "wbh_53Bmfjrb2Vd6Z9CvYkTuvnb4",
    "workflowId" : "wfl_Gzj2qctfj6dXaci4oTU1yyoM"
  } ],
  "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_5jmbWEirzyin4KJvzDVPqf7q/workflows HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 1511

{
  "name" : "Small Silk Chair",
  "description" : "2834 Quai de Seine, 48551 Toulouse",
  "steps" : [ {
    "stepType" : "signature",
    "recipients" : [ {
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "email" : "winfred.nicolas3820@my-company.com",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN",
      "phoneNumber" : "+33 6 12 34 56 78",
      "comments" : "A enim qui numquam tenetur.",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "country" : "FR",
      "preferredLocale" : "fr",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx"
    } ],
    "requiredRecipients" : 1,
    "validityPeriod" : 8553600000,
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "sendDownloadLink" : true,
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : true
  } ],
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "watchers" : [ {
    "userId" : "usr_HzDbmUcUSUXDhtYDT9NUvn35",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "email" : "cleo.goyette4156@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  } ],
  "allowConsolidation" : true
}

Path parameters:

/api/users/{userId}/workflows

Parameter Description
userId The identifier of the user the workflow belongs to.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
name String The name of the workflow.
description String optional The description of the workflow.
steps Array optional The steps of the workflow.
steps[].stepType String optional The type of the step, either signature or approval.
steps[].recipients Array optional The list of recipients who are requested to sign or approve the documents. Please note that using non-existent user contacts as recipients does not result in their automatic creation by the API.
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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String optional The first name of the recipient.
steps[].recipients[].lastName String optional The last name of the recipient.
steps[].recipients[].country String optional The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].requiredRecipients Number optional The number of recipients that are required to sign or approve the documents for the step to finish.
steps[].validityPeriod Number optional The period during which the step is valid. Minimum is 86400000. Maximum is 8553600000.
steps[].invitePeriod Number optional The period after which invites are resent. Minimum is 86400000. Maximum is 2592000000.
steps[].maxInvites Number optional The maximum number of invites to send to the recipients. Minimum is 0. Maximum is 99.
steps[].sendDownloadLink Boolean optional Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].allowComments Boolean optional Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean optional Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean optional Whether or not other recipients of the workflow are visible to the recipients in this step.
notifiedEvents Array optional The type of events the owner will receive notifications about.
watchers Array optional The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array optional The type of events the watcher will receive notifications about.
templateId String optional The identifier of the workflow template.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_5h41tpSdYip5rbdWYp37CqkW
ETag: "7hrnRcGgS1nrVgYRqaZnHUDJ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2424

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1740575779658,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "2834 Quai de Seine, 48551 Toulouse",
  "email" : "ling.dare6185@my-company.com",
  "firstName" : "Chi",
  "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "wfl_EQkuCrhkhFhsvEXCJV2Vg3rd",
  "lastName" : "O'Hara",
  "logs" : [ ],
  "name" : "Small Silk Chair",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : true,
    "id" : "stp_EaKBS9KRHg5vA76PWMWFkKYc",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "A enim qui numquam tenetur.",
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "country" : "FR",
      "email" : "winfred.nicolas3820@my-company.com",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
      "preferredLocale" : "fr",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575779658,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "viewAuthorizedUsers" : [ "usr_HzDbmUcUSUXDhtYDT9NUvn35" ],
  "watchers" : [ {
    "email" : "cleo.goyette4156@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_HzDbmUcUSUXDhtYDT9NUvn35"
  } ],
  "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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String The first name of the recipient.
steps[].recipients[].lastName String The last name of the recipient.
steps[].recipients[].country String The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
steps[].validityPeriod Number The period during which the step is valid.
steps[].invitePeriod Number The period after which invites are resent.
steps[].maxInvites Number The maximum number of invites to send to the recipients.
steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].isStarted Boolean Whether or not the step is started.
steps[].isFinished Boolean Whether or not the step is started.
steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
steps[].logs Array The logs of the step.
currentRecipientEmails Array The list of recipient emails currently invited to sign or approve.
currentRecipientUsers Array The list of recipient users currently invited to sign or approve.
notifiedEvents Array The type of events the owner will receive notifications about.
watchers Array The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers Array The list of users allowed to see the workflow and notified about the workflow events.
workflowStatus String The status of the workflow.
started Number optional The date the workflow was started for the first time.
progress Number The progress of the workflow.
templateId String optional The identifier of the workflow template.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
400 IncorrectStepOrder The steps order defined in the template is incorrect.
400 InvalidRequestField A request field has an incorrect value.
400 MandatoryStepMissing A step required in the template is missing.
400 MaxRecipientsReached The maximum number of recipients has been reached.
400 MaxWatchersReached The maximum number of watchers has been reached.
400 NoLayoutInWorkflow A workflow layout must be specified.
400 NoTemplateInWorkflow A workflow template must be specified.
400 RecipientInfoMissing A recipient in the request is missing identity information.
400 RecipientPhoneNumberRequired The specified consent page requires a recipient phone number.
400 RecipientUserRequired The specified consent page requires a recipient user ID.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 ConsentPageDisabled The specified consent page is disabled.
403 ConsentPageNotAllowed The specified consent page is not allowed by the template.
403 GroupNotAllowed The specified group is not allowed by the template.
403 LayoutNotAllowed The specified layout is not allowed by the template.
403 MissingBearerToken A bearer token is required.
403 OrganizationNotAllowed The selected organization is not allowed to this recipient.
403 RecipientNotAllowed The specified recipient is not allowed to sign or validate documents.
403 TemplateNotAllowed The selected template is not allowed.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserDisabled The specified user is disabled.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 ConsentPageNotFound The specified consent page can not be found.
404 UserNotFound The specified user can not be found.

Retrieve workflow

Retrieve an existing workflow.

HTTP request

GET /api/workflows/wfl_2eZXy8wJk2uPwDCV1DoQpPEh HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1740575475924,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "0 Passage de Montmorency, 44093 Le Tampon",
  "email" : "ling.dare6185@my-company.com",
  "firstName" : "Chi",
  "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "wfl_2eZXy8wJk2uPwDCV1DoQpPEh",
  "lastName" : "O'Hara",
  "logs" : [ {
    "commentId" : "com_7hLKwz15E5zw9gx8A8zq8QEf",
    "created" : 1740575476127,
    "operation" : "notifyCommentCreated"
  } ],
  "name" : "Ergonomic Wooden Shirt",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_LX8sx59juvGs2Ak3s1RPFbY8",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "A enim qui numquam tenetur.",
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "country" : "FR",
      "email" : "winfred.nicolas3820@my-company.com",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
      "preferredLocale" : "fr",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575476438,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "viewAuthorizedUsers" : [ "usr_HP4pwYuPiXD1M1fiXdy7nz9E" ],
  "watchers" : [ {
    "email" : "jody.schaefer6292@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_HP4pwYuPiXD1M1fiXdy7nz9E"
  } ],
  "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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String The first name of the recipient.
steps[].recipients[].lastName String The last name of the recipient.
steps[].recipients[].country String The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
steps[].validityPeriod Number The period during which the step is valid.
steps[].invitePeriod Number The period after which invites are resent.
steps[].maxInvites Number The maximum number of invites to send to the recipients.
steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].isStarted Boolean Whether or not the step is started.
steps[].isFinished Boolean Whether or not the step is started.
steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
steps[].logs Array The logs of the step.
currentRecipientEmails Array The list of recipient emails currently invited to sign or approve.
currentRecipientUsers Array The list of recipient users currently invited to sign or approve.
notifiedEvents Array The type of events the owner will receive notifications about.
watchers Array The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers Array The list of users allowed to see the workflow and notified about the workflow events.
workflowStatus String The status of the workflow.
started Number optional The date the workflow was started for the first time.
progress Number The progress of the workflow.
templateId String optional The identifier of the workflow template.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
404 WorkflowNotFound The specified workflow can not be found.

Update workflow

Update an existing workflow.

HTTP request

PATCH /api/workflows/wfl_3Ff3hBsPx1v9WfD1XzgKbRsx HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "DJ2ZydFs3PHqPF5wEM4SJZCw"
Content-Type: application/json
Content-Length: 1623

{
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "name" : "Intelligent Paper Chair",
  "description" : "Apt. 317, 916 Impasse Charlemagne, 59671 Colmar",
  "steps" : [ {
    "id" : "stp_KACQnrED7KwtaTj7Bm2pMU1o",
    "recipients" : [ {
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "email" : "winfred.nicolas3820@my-company.com",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN",
      "phoneNumber" : "+33 6 12 34 56 78",
      "comments" : "A enim qui numquam tenetur.",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "country" : "FR",
      "preferredLocale" : "fr",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx"
    } ],
    "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_53nS61ZKihv92HTusjn7sB4z",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "email" : "ulrike.braun1223@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. Please note that using non-existent user contacts as recipients does not result in their automatic creation by the API.
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[].comments String optional The comments associated with the contact.
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_CPGoutLmMuAzi9oJVhwKPQRd
ETag: "FqPF5jhwc6d3SeRChT8PtZ5d"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2503

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1740575788983,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "Apt. 317, 916 Impasse Charlemagne, 59671 Colmar",
  "email" : "ling.dare6185@my-company.com",
  "firstName" : "Chi",
  "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "wfl_3Ff3hBsPx1v9WfD1XzgKbRsx",
  "jobOperation" : "refreshWorkflowViewAuthorizedUsers",
  "lastName" : "O'Hara",
  "logs" : [ ],
  "name" : "Intelligent Paper Chair",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : true,
    "id" : "stp_KACQnrED7KwtaTj7Bm2pMU1o",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "A enim qui numquam tenetur.",
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "country" : "FR",
      "email" : "winfred.nicolas3820@my-company.com",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
      "preferredLocale" : "fr",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575789044,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "viewAuthorizedUsers" : [ "usr_53nS61ZKihv92HTusjn7sB4z" ],
  "watchers" : [ {
    "email" : "ulrike.braun1223@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_53nS61ZKihv92HTusjn7sB4z"
  } ],
  "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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String The first name of the recipient.
steps[].recipients[].lastName String The last name of the recipient.
steps[].recipients[].country String The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
steps[].validityPeriod Number The period during which the step is valid.
steps[].invitePeriod Number The period after which invites are resent.
steps[].maxInvites Number The maximum number of invites to send to the recipients.
steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].isStarted Boolean Whether or not the step is started.
steps[].isFinished Boolean Whether or not the step is started.
steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
steps[].logs Array The logs of the step.
currentRecipientEmails Array The list of recipient emails currently invited to sign or approve.
currentRecipientUsers Array The list of recipient users currently invited to sign or approve.
notifiedEvents Array The type of events the owner will receive notifications about.
watchers Array The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers Array The list of users allowed to see the workflow and notified about the workflow events.
workflowStatus String The status of the workflow.
started Number optional The date the workflow was started for the first time.
progress Number The progress of the workflow.
templateId String optional The identifier of the workflow template.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
400 IncorrectStepOrder The steps order defined in the template is incorrect.
400 InvalidRequestField A request field has an incorrect value.
400 MaxRecipientsReached The maximum number of recipients has been reached.
400 MaxWatchersReached The maximum number of watchers has been reached.
400 NoRecipientInStep Recipients are missing from workflow step.
400 RecipientInfoMissing A recipient in the request is missing identity information.
400 RecipientPhoneNumberRequired The specified consent page requires a recipient phone number.
403 ApprovalNotAllowed The specified recipient user is not allowed to approve workflows.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 ConsentPageDisabled The specified consent page is disabled.
403 ConsentPageNotAllowed The specified consent page is not allowed by the template.
403 GroupNotAllowed The specified group is not allowed by the template.
403 MissingBearerToken A bearer token is required.
403 NoDocumentToSignInWorkflow There is no document to sign in the specified workflow.
403 NoStepInWorkflow There is no step in the specified workflow.
403 OrganizationNotAllowed The selected organization is not allowed to this recipient.
403 RecipientNotAllowed The specified recipient is not allowed to sign or validate documents.
403 SignatureNotAllowed The specified recipient user is not allowed to sign workflows.
403 StepBlocked The current step is blocked.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserDisabled The specified user is disabled.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 ConsentPageNotFound The specified consent page can not be found.
404 UserNotFound The specified user can not be found.
404 WorkflowNotFound The specified workflow can not be found.
409 EntityLocked The entity is being updated.
412 ConditionalUpdateFailed A condition failed in the update request.

Archive workflow

Archive an existing workflow.

HTTP request

PATCH /api/workflows/wfl_FNY7ipCmwW1uxoSBBNfj9Y9m/archive HTTP/1.1
Authorization: Bearer act_KRaA2hsTfyqZWzbNfcQXbGik.52dVqUcb54ntCx3KC2Y1b9RZtBqcy5uf8h4HBG9VBGs2ukM6Kuisv24taBqydKJt

Path parameters:

/api/workflows/{workflowId}/archive

Parameter Description
workflowId The identifier of the workflow the comments belong to.

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[].comments String optional The comments associated with the contact.
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_Nb4wcoFZfCZP2Ait7JE3izQL
ETag: "Gmt474Z4ARSJT7pkWAPGhkhv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2545

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1730814956901,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "038 Quai Molière, 37830 Le Havre",
  "email" : "dirk.volkman8174@my-company.com",
  "firstName" : "Robt",
  "groupId" : "grp_ED1Ak6XrcJXqEAr5P1qgZcGS",
  "id" : "wfl_4fGyZrUwFBkXrqpehMQeeEHS",
  "jobOperation" : "refreshWorkflowViewAuthorizedUsers",
  "lastName" : "Russel",
  "logs" : [ ],
  "name" : "Enormous Leather Wallet",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_C8M4xLnFPru2FgWT19ZLLUJd",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : true,
    "id" : "stp_A6vhn6vmbSK21AZxi4Aoy7ks",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "Aut voluptas rerum.",
      "consentPageId" : "cop_CQWDC3NgjsfGrf9xPbh9eH2C",
      "country" : "FR",
      "email" : "ivette.cormier6606@my-company.com",
      "firstName" : "Lesley",
      "lastName" : "Reinger",
      "organizationId" : "org_FVoFKb6C4hWpR3n3mWf9dqR4",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_BFFZFvqV8gTcCDnCdknRb7Yi",
      "preferredLocale" : "fr",
      "userId" : "usr_PtpyD76pK3tVdxy9XRqQxgFN"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_3UsQSWtvzBuGy5kQL73EoBKU",
  "updated" : 1730814957107,
  "userId" : "usr_C7hAsutjwxyfBwoF9o9t946k",
  "viewAuthorizedGroups" : [ "grp_74ekbRojk256xgy59s2Q9tMp", "grp_ED1Ak6XrcJXqEAr5P1qgZcGS" ],
  "viewAuthorizedUsers" : [ "usr_3qvZP1mW1WnFrgivTkT4wopU" ],
  "watchers" : [ {
    "email" : "tawna.hermiston1058@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_3qvZP1mW1WnFrgivTkT4wopU"
  } ],
  "workflowStatus" : "archived"
}

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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String The first name of the recipient.
steps[].recipients[].lastName String The last name of the recipient.
steps[].recipients[].country String The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
steps[].validityPeriod Number The period during which the step is valid.
steps[].invitePeriod Number The period after which invites are resent.
steps[].maxInvites Number The maximum number of invites to send to the recipients.
steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].isStarted Boolean Whether or not the step is started.
steps[].isFinished Boolean Whether or not the step is started.
steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
steps[].logs Array The logs of the step.
currentRecipientEmails Array The list of recipient emails currently invited to sign or approve.
currentRecipientUsers Array The list of recipient users currently invited to sign or approve.
notifiedEvents Array The type of events the owner will receive notifications about.
watchers Array The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers Array The list of users allowed to see the workflow and notified about the workflow events.
workflowStatus String The status of the workflow.
started Number optional The date the workflow was started for the first time.
progress Number The progress of the workflow.
templateId String optional The identifier of the workflow template.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
403 InvalidWorkflowStatus The status of the workflow does not allow this operation.
404 WorkflowNotFound The specified workflow can not be found.

Duplicate workflow

Duplicate an existing workflow.

HTTP request

POST /api/workflows/wfl_JW6P8Zcyb2mYAumpzwAXwXPu/copy HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 1484

{
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "name" : "new Workflow",
  "description" : "Apt. 482, 84 Allée, Voie Zadkine, 67979 Béziers",
  "steps" : [ {
    "id" : "stp_3dSgf5fyJ74wMauSr3aHfdpa",
    "recipients" : [ {
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "email" : "winfred.nicolas3820@my-company.com",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN",
      "phoneNumber" : "+33 6 12 34 56 78",
      "comments" : "A enim qui numquam tenetur.",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "country" : "FR",
      "preferredLocale" : "fr",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx"
    } ],
    "requiredRecipients" : 1,
    "validityPeriod" : 8553600000,
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "sendDownloadLink" : true
  } ],
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "watchers" : [ {
    "userId" : "usr_HiwuA3JwUrTkqjcWGEdPhdQg",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "email" : "von.effertz7337@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[].comments String optional The comments associated with the contact.
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_GrCkMD3dfVjsW2DhHjfV1wSq
ETag: "5mx8p7UjWX96J6T4BjFsdTJ6"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2437

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1740575728274,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "Apt. 482, 84 Allée, Voie Zadkine, 67979 Béziers",
  "email" : "ling.dare6185@my-company.com",
  "firstName" : "Chi",
  "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "wfl_Ayi7U6iSggJ7NFi9n2VJEVPF",
  "lastName" : "O'Hara",
  "logs" : [ ],
  "name" : "new Workflow",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_3dSgf5fyJ74wMauSr3aHfdpa",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "A enim qui numquam tenetur.",
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "country" : "FR",
      "email" : "winfred.nicolas3820@my-company.com",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
      "preferredLocale" : "fr",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575728274,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "viewAuthorizedUsers" : [ "usr_HiwuA3JwUrTkqjcWGEdPhdQg" ],
  "watchers" : [ {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_HiwuA3JwUrTkqjcWGEdPhdQg"
  }, {
    "email" : "von.effertz7337@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  } ],
  "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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String The first name of the recipient.
steps[].recipients[].lastName String The last name of the recipient.
steps[].recipients[].country String The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
steps[].validityPeriod Number The period during which the step is valid.
steps[].invitePeriod Number The period after which invites are resent.
steps[].maxInvites Number The maximum number of invites to send to the recipients.
steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].isStarted Boolean Whether or not the step is started.
steps[].isFinished Boolean Whether or not the step is started.
steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
steps[].logs Array The logs of the step.
currentRecipientEmails Array The list of recipient emails currently invited to sign or approve.
currentRecipientUsers Array The list of recipient users currently invited to sign or approve.
notifiedEvents Array The type of events the owner will receive notifications about.
watchers Array The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers Array The list of users allowed to see the workflow and notified about the workflow events.
workflowStatus String The status of the workflow.
started Number optional The date the workflow was started for the first time.
progress Number The progress of the workflow.
templateId String optional The identifier of the workflow template.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidRequestField A request field has an incorrect value.
400 RecipientInfoMissing A recipient in the request is missing identity information.
400 RecipientPhoneNumberRequired The specified consent page requires a recipient phone number.
403 ApprovalNotAllowed The specified recipient user is not allowed to approve workflows.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 ConsentPageDisabled The specified consent page is disabled.
403 MissingBearerToken A bearer token is required.
403 OrganizationNotAllowed The selected organization is not allowed to this recipient.
403 SignatureNotAllowed The specified recipient user is not allowed to sign workflows.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 ConsentPageNotFound The specified consent page can not be found.
404 UserNotFound The specified user can not be found.
404 WorkflowNotFound The specified workflow can not be found.

Create workflow invite

Create an invite for a signer or an approver of an existing workflow.

HTTP request

POST /api/workflows/wfl_Gzj2qctfj6dXaci4oTU1yyoM/invite HTTP/1.1
Authorization: Bearer act_HxaW1AjdrD4ttu8bzuSfSu3q.3fso9Xx8RHrwrJgeCHHQRXE4MPGkKDGjZydnKWd66vhfoY2cE1VnFZQnZt5BJjNd
Content-Type: application/json
Content-Length: 61

{
  "recipientEmail" : "winfred.nicolas3820@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_6CgT25KAo8xE5t9EHTyiH7sn
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 362

{
  "inviteUrl" : "https://mclaughlin.net/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0FienRSa05vZmg4WDhBenhMd..."
}

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_PMoHYgxC47exGmaTj3sL5zjN/sendInvite HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 61

{
  "recipientEmail" : "winfred.nicolas3820@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_5fdLhUW1hDhck7zaYk9t5Jh4
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 362

{
  "inviteUrl" : "https://mclaughlin.net/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0M3QnZ4TmJCajZDSHZ4TFBnQ..."
}

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_KwLU5owsdo75D566erznSroP/refuse HTTP/1.1
Authorization: Bearer act_HxaW1AjdrD4ttu8bzuSfSu3q.3fso9Xx8RHrwrJgeCHHQRXE4MPGkKDGjZydnKWd66vhfoY2cE1VnFZQnZt5BJjNd
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_KGXwsEEG9hMFemf8KnY2y445
ETag: "ACBEUSQEgudpt84J9oaoNXcH"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 3172

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1740575722252,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "09 Place Saint-Dominique, 65738 Colmar",
  "email" : "ling.dare6185@my-company.com",
  "firstName" : "Chi",
  "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "wfl_KwLU5owsdo75D566erznSroP",
  "jobOperation" : "processWorkflow",
  "lastName" : "O'Hara",
  "logs" : [ ],
  "name" : "Heavy Duty Bronze Plate",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "progress" : 0,
  "started" : 1740575722349,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_EJ9JgyPy1uENP7bHqcemteMN",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : true,
    "logs" : [ {
      "created" : 1740575722349,
      "operation" : "start"
    }, {
      "created" : 1740575722349,
      "operation" : "notifyWorkflowStarted"
    }, {
      "created" : 1740575722670,
      "operation" : "invite",
      "recipientEmail" : "winfred.nicolas3820@my-company.com",
      "recipientUserId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
    }, {
      "created" : 1740575722884,
      "operation" : "refuse",
      "reason" : "I disagree.",
      "recipientEmail" : "winfred.nicolas3820@my-company.com",
      "recipientUserId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
    }, {
      "created" : 1740575722884,
      "operation" : "stop"
    } ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "A enim qui numquam tenetur.",
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "country" : "FR",
      "email" : "winfred.nicolas3820@my-company.com",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
      "preferredLocale" : "fr",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575722884,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "viewAuthorizedUsers" : [ "usr_JNKa4CesXts8ntQwDABGrEtN", "usr_KcLnEv8szhhh3EoYKjuK6oF6" ],
  "watchers" : [ {
    "email" : "sergio.kuhn2@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_KcLnEv8szhhh3EoYKjuK6oF6"
  } ],
  "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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String The first name of the recipient.
steps[].recipients[].lastName String The last name of the recipient.
steps[].recipients[].country String The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
steps[].validityPeriod Number The period during which the step is valid.
steps[].invitePeriod Number The period after which invites are resent.
steps[].maxInvites Number The maximum number of invites to send to the recipients.
steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].isStarted Boolean Whether or not the step is started.
steps[].isFinished Boolean Whether or not the step is started.
steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
steps[].logs Array The logs of the step.
currentRecipientEmails Array The list of recipient emails currently invited to sign or approve.
currentRecipientUsers Array The list of recipient users currently invited to sign or approve.
notifiedEvents Array The type of events the owner will receive notifications about.
watchers Array The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers Array The list of users allowed to see the workflow and notified about the workflow events.
workflowStatus String The status of the workflow.
started Number optional The date the workflow was started for the first time.
progress Number The progress of the workflow.
templateId String optional The identifier of the workflow template.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 WorkflowNotFound The specified workflow can not be found.

Delete workflow

Delete an existing workflow.

HTTP request

DELETE /api/workflows/wfl_9qKSkNFarKwGqZrPU5CbAg6U HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "rq82YhTzdCzc1oQzbKLaiRP8"

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_N4Dp5FtB2rx34WKwmLWQjV1m
ETag: "3boJcrJ9FMwJD6QYLKHcdhfK"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2483

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1740575754959,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "Apt. 941, 6 Rue Pierre Charron, 83877 Ivry-sur-Seine",
  "email" : "ling.dare6185@my-company.com",
  "firstName" : "Chi",
  "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "wfl_9qKSkNFarKwGqZrPU5CbAg6U",
  "jobOperation" : "purgeWorkflow",
  "lastName" : "O'Hara",
  "logs" : [ ],
  "name" : "Sleek Paper Keyboard",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_5Z4P9eHZ9AeUvKBTpRNpDSw4",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "A enim qui numquam tenetur.",
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "country" : "FR",
      "email" : "winfred.nicolas3820@my-company.com",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
      "preferredLocale" : "fr",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575754996,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "viewAuthorizedUsers" : [ "usr_7HuwhT1g7AosQausRjtRExg7" ],
  "watchers" : [ {
    "email" : "devona.harber469@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_7HuwhT1g7AosQausRjtRExg7"
  } ],
  "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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String The first name of the recipient.
steps[].recipients[].lastName String The last name of the recipient.
steps[].recipients[].country String The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
steps[].validityPeriod Number The period during which the step is valid.
steps[].invitePeriod Number The period after which invites are resent.
steps[].maxInvites Number The maximum number of invites to send to the recipients.
steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].isStarted Boolean Whether or not the step is started.
steps[].isFinished Boolean Whether or not the step is started.
steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
steps[].logs Array The logs of the step.
currentRecipientEmails Array The list of recipient emails currently invited to sign or approve.
currentRecipientUsers Array The list of recipient users currently invited to sign or approve.
notifiedEvents Array The type of events the owner will receive notifications about.
watchers Array The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers Array The list of users allowed to see the workflow and notified about the workflow events.
workflowStatus String The status of the workflow.
started Number optional The date the workflow was started for the first time.
progress Number The progress of the workflow.
templateId String optional The identifier of the workflow template.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 WorkflowNotFound The specified workflow can not be found.
409 EntityLocked The entity is being updated.
412 ConditionalUpdateFailed A condition failed in the update request.

Search workflows

Search in all the workflows.

HTTP request

GET /api/workflows?text=Ergonomic%20Wooden%20Shirt&items.id=wfl_2eZXy8wJk2uPwDCV1DoQpPEh&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

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

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 2775

{
  "items" : [ {
    "allowConsolidation" : true,
    "allowedCoManagerUsers" : [ ],
    "coManagerNotifiedEvents" : [ ],
    "created" : 1740575475924,
    "currentRecipientEmails" : [ ],
    "currentRecipientUsers" : [ ],
    "description" : "0 Passage de Montmorency, 44093 Le Tampon",
    "email" : "ling.dare6185@my-company.com",
    "firstName" : "Chi",
    "groupId" : "grp_Jsy1b2sZ4LMHa6viDXba9CFK",
    "id" : "wfl_2eZXy8wJk2uPwDCV1DoQpPEh",
    "lastName" : "O'Hara",
    "logs" : [ {
      "commentId" : "com_7hLKwz15E5zw9gx8A8zq8QEf",
      "created" : 1740575476127,
      "operation" : "notifyCommentCreated"
    } ],
    "name" : "Ergonomic Wooden Shirt",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
    "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
    "progress" : 0,
    "steps" : [ {
      "allowComments" : true,
      "hideAttachments" : false,
      "hideWorkflowRecipients" : false,
      "id" : "stp_LX8sx59juvGs2Ak3s1RPFbY8",
      "invitePeriod" : 86400000,
      "isFinished" : false,
      "isStarted" : false,
      "logs" : [ ],
      "maxInvites" : 5,
      "recipients" : [ {
        "comments" : "A enim qui numquam tenetur.",
        "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
        "country" : "FR",
        "email" : "winfred.nicolas3820@my-company.com",
        "firstName" : "Sherwood",
        "lastName" : "Flatley",
        "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
        "phoneNumber" : "+33 6 12 34 56 78",
        "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
        "preferredLocale" : "fr",
        "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
      } ],
      "requiredRecipients" : 1,
      "sendDownloadLink" : true,
      "stepType" : "signature",
      "validityPeriod" : 8553600000
    } ],
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575476438,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
    "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "viewAuthorizedUsers" : [ "usr_HP4pwYuPiXD1M1fiXdy7nz9E" ],
    "watchers" : [ {
      "email" : "jody.schaefer6292@my-company.com",
      "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
    }, {
      "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
      "userId" : "usr_HP4pwYuPiXD1M1fiXdy7nz9E"
    } ],
    "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[].comments String optional The comments associated with the contact.
items[].steps[].recipients[].firstName String The first name of the recipient.
items[].steps[].recipients[].lastName String The last name of the recipient.
items[].steps[].recipients[].country String The country of the user.
items[].steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
items[].steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
items[].steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
items[].steps[].validityPeriod Number The period during which the step is valid.
items[].steps[].invitePeriod Number The period after which invites are resent.
items[].steps[].maxInvites Number The maximum number of invites to send to the recipients.
items[].steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
items[].steps[].isStarted Boolean Whether or not the step is started.
items[].steps[].isFinished Boolean Whether or not the step is started.
items[].steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
items[].steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
items[].steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
items[].steps[].logs Array The logs of the step.
items[].currentRecipientEmails Array The list of recipient emails currently invited to sign or approve.
items[].currentRecipientUsers Array The list of recipient users currently invited to sign or approve.
items[].notifiedEvents Array The type of events the owner will receive notifications about.
items[].watchers Array The list of watchers of the workflow.
items[].watchers[].userId String optional The identifier of the user, in case the watcher is a user.
items[].watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
items[].watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
items[].watchers Array The list of users allowed to see the workflow and notified about the workflow events.
items[].workflowStatus String The status of the workflow.
items[].started Number optional The date the workflow was started for the first time.
items[].progress Number The progress of the workflow.
items[].templateId String optional The identifier of the workflow template.
items[].allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
items[].coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
items[].allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.
items[].jobOperation String optional The job operation currently running.
items[].created Number The creation date of the entity.
items[].updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidFilterField A filter parameter has an incorrect field name.
400 InvalidFilterValue A filter parameter has an incorrect value.
400 InvalidSortByField The sortBy parameter has an incorrect field name.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.

Export workflows

Export a search in all the workflows.

HTTP request

POST /api/workflows/exports?text=Ergonomic%20Wooden%20Shirt&items.id=wfl_2eZXy8wJk2uPwDCV1DoQpPEh&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 182

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.layoutId The filter value(s) for the layoutId field.
items.templateId The filter value(s) for the templateId field.
items.groupId The filter value(s) for the groupId field.
items.userId The filter value(s) for the userId field.
items.email The filter value(s) for the email field.
items.firstName The filter value(s) for the firstName field.
items.lastName The filter value(s) for the lastName field.
items.userHash The filter value(s) for the userHash field.
items.name The filter value(s) for the name field.
items.data1 The filter value(s) for the data1 field.
items.data2 The filter value(s) for the data2 field.
items.data3 The filter value(s) for the data3 field.
items.data4 The filter value(s) for the data4 field.
items.data5 The filter value(s) for the data5 field.
items.data6 The filter value(s) for the data6 field.
items.data7 The filter value(s) for the data7 field.
items.data8 The filter value(s) for the data8 field.
items.data9 The filter value(s) for the data9 field.
items.data10 The filter value(s) for the data10 field.
items.data11 The filter value(s) for the data11 field.
items.data12 The filter value(s) for the data12 field.
items.data13 The filter value(s) for the data13 field.
items.data14 The filter value(s) for the data14 field.
items.data15 The filter value(s) for the data15 field.
items.data16 The filter value(s) for the data16 field.
items.viewAuthorizedGroups The filter value(s) for the viewAuthorizedGroups field.
items.viewAuthorizedUsers The filter value(s) for the viewAuthorizedUsers field.
items.currentRecipientEmails The filter value(s) for the currentRecipientEmails field.
items.currentRecipientUsers The filter value(s) for the currentRecipientUsers field.
items.recipients.email The filter value(s) for the recipients.email field.
items.recipients.userId The filter value(s) for the recipients.userId field.
items.recipients.subject The filter value(s) for the recipients.subject field.
items.recipients.firstName The filter value(s) for the recipients.firstName field.
items.recipients.lastName The filter value(s) for the recipients.lastName field.
items.recipients.country The filter value(s) for the recipients.country field.
items.recipients.organizationId The filter value(s) for the recipients.organizationId field.
items.workflowStatus The filter value(s) for the workflowStatus field.
items.jobOperation The filter value(s) for the jobOperation field.
items.jobErrorCode The filter value(s) for the jobErrorCode field.
items.nextClean The filter value(s) for the nextClean field.
items.nextProcess The filter value(s) for the nextProcess field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
items.started The filter value(s) for the started field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_G15o9n6XnPAodDRXA4mG8TZc
ETag: "JByYZhFTVvprcqFD4heHWdYr"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 593

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575818106,
  "expired" : 1740662218104,
  "exportOperation" : "createWorkflowExport",
  "id" : "exp_JudCBuiPumJEt6k8XMXTxZ8k",
  "itemTemplate" : "{{id}},{{name}},{{json steps}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Ergonomic+Wooden+Shirt&items.id=wfl_2eZXy8wJk2uPwDCV1DoQpPEh&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575818106,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_2eZXy8wJk2uPwDCV1DoQpPEh/downloadEvidenceCertificate HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

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

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_2eZXy8wJk2uPwDCV1DoQpPEh/comments HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 137

{
  "parentId" : "com_7hLKwz15E5zw9gx8A8zq8QEf",
  "content" : "Reprehenderit consequatur ad cupiditate fuga eum.",
  "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_JkWu82RsSV85ALoDqfTGhVkx
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 525

{
  "content" : "Reprehenderit consequatur ad cupiditate fuga eum.",
  "created" : 1740575838374,
  "email" : "ling.dare6185@my-company.com",
  "firstName" : "Chi",
  "id" : "com_okkAipqaxHoedyDHLph9eNz9",
  "isPublic" : true,
  "lastName" : "O'Hara",
  "parentId" : "com_7hLKwz15E5zw9gx8A8zq8QEf",
  "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575838374,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "workflowId" : "wfl_2eZXy8wJk2uPwDCV1DoQpPEh"
}

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_FBC5SijFWnGDyUijWPq5haAM/comments HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

[ {
  "id" : "com_VXomFhEVNzGMM3GgHBgxJmGq",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "workflowId" : "wfl_FBC5SijFWnGDyUijWPq5haAM",
  "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN",
  "email" : "winfred.nicolas3820@my-company.com",
  "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
  "firstName" : "Sherwood",
  "lastName" : "Flatley",
  "content" : "Architecto cumque dolores cupiditate.",
  "isPublic" : true,
  "created" : 1740575827892,
  "updated" : 1740575827892
}, {
  "id" : "com_5y7anM2rkUvMgfWo9nhLxw6L",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "workflowId" : "wfl_FBC5SijFWnGDyUijWPq5haAM",
  "parentId" : "com_VXomFhEVNzGMM3GgHBgxJmGq",
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "email" : "ling.dare6185@my-company.com",
  "pictureResourceId" : "res_ZV2hett7rJQzGHLW76SBYJim",
  "firstName" : "Chi",
  "lastName" : "O'Hara",
  "content" : "Ut error deleniti laborum veritatis.",
  "isPublic" : true,
  "created" : 1740575828174,
  "updated" : 1740575828174
} ]

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_F3uVF3iTPjmsuhDifRun6Ps1/blobs HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
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_XwdGa5A6J454Xr4gPCirddTq",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "workflowId" : "wfl_F3uVF3iTPjmsuhDifRun6Ps1"
}

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_5TCTAeqW9Yv2ntK9Nvp7QwoK/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_m9avtjGeaAnmuBzCtvFEZmHv&unzip=false&pdf2pdfa=auto HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Disposition: attachment; filename="document.pdf"
Content-Type: application/pdf
Content-Length: 12341

%PDF-1.3
%���������
4 0 obj
<< /Length 5 0 R /Filter /FlateDecode >>
stream
xUϱ�0����G�kk9X5�č��D@0����Nb:��^�庢�
��X��c
...

Path parameters:

/api/workflows/{workflowId}/parts

Parameter Description
workflowId The identifier of the workflow.

Query parameters:

Parameter Description
unzip Whether or not zip archives should be unzipped.
pdf2pdfa Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments Whether or not documents should be created.
ignoreAttachments Whether or not attachments should be ignored.
signatureProfileId The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, attempts to find suitable signature profiles will be made.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_75PHyqt2ZtauUKCoWrbDBCqf
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1563

{
  "documents" : [ {
    "created" : 1740575475807,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "i0lTXGMrhFMlPXtPz6SxH0s0C1qwsvRd7bhbANoQ+RI=",
      "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_Jsy1b2sZ4LMHa6viDXba9CFK",
    "id" : "doc_2yLNFL1s7PTeu63GKJ4HjC7x",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "i0lTXGMrhFMlPXtPz6SxH0s0C1qwsvRd7bhbANoQ+RI=",
      "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_m9avtjGeaAnmuBzCtvFEZmHv",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575475807,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
    "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "viewAuthorizedUsers" : [ "usr_Pta8JSP9AQLnb8pwotRtSXio" ],
    "workflowId" : "wfl_5TCTAeqW9Yv2ntK9Nvp7QwoK",
    "workflowName" : "Incredible Copper Bag"
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "i0lTXGMrhFMlPXtPz6SxH0s0C1qwsvRd7bhbANoQ+RI=",
    "isOriginal" : true,
    "policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
    "size" : 18540
  } ]
}

Fields:

Path Type Description
parts Array The created parts.
parts[].filename String The filename of the part.
parts[].contentType String The content type of the part.
parts[].size Number The size of the part.
parts[].hash String The cryptographic hash of the part.
parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
ignoredAttachments Number The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true.
documents Array optional The created documents, if requested.
documents[].id String The identifier of the document.
documents[].tenantId String The identifier of the tenant the document belongs to.
documents[].groupId String The identifier of the group the document belongs to.
documents[].userId String The identifier of the user the document belongs to.
documents[].workflowId String The identifier of the workflow the document belongs to.
documents[].workflowName String The name of the workflow the document belongs to.
documents[].signatureProfileId String optional The signature profile to be used to sign the document. If not present, the document will be an attachment.
documents[].viewAuthorizedGroups Array The list of group IDs whose members are allowed to view the workflow the document belongs to.
documents[].viewAuthorizedUsers Array The list of user IDs who are allowed to view the workflow the document belongs to.
documents[].parts Array The created parts.
documents[].parts[].filename String The filename of the part.
documents[].parts[].contentType String The content type of the part.
documents[].parts[].size Number The size of the part.
documents[].parts[].hash String The cryptographic hash of the part.
documents[].parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
documents[].displayedParts Array The parts of the document to be displayed for final user.
documents[].displayedParts[].filename String The filename of the part to be displayed for final user.
documents[].displayedParts[].contentType String The content type of the part to be displayed for final user.
documents[].displayedParts[].hash String The cryptographic hash of the part to be displayed for final user.
documents[].displayedParts[].size Number The size of the part to be displayed for final user.
documents[].displayedParts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].displayedParts[].isOriginal Boolean optional Whether or not the part to be displayed for final user is an original or modified one.
documents[].pdfSignatureFields ArrayList optional In case of a PDF document, the list of signature fields the signers will have to fill.
documents[].created Number The creation date of the entity.
documents[].updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidPdf The uploaded PDF is invalid.
400 InvalidXml The uploaded XML is invalid.
400 InvalidZip The uploaded ZIP can not be unzipped.
400 MaxDocumentSizeExceeded Maximum document size exceeded.
400 PasswordProtectedPdf The uploaded PDF is password protected.
400 TemplateMaxAttachmentsReached The template maximum number of attachments has been reached.
400 TemplateMaxDocumentsReached The template maximum number of documents to sign has been reached.
400 TenantMaxAttachmentsReached The maximum number of attachments has been reached.
400 TenantMaxDocumentsReached The maximum number of documents to sign has been reached.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 InvalidWorkflowStatus The status of the workflow does not allow this operation.
403 MissingBearerToken A bearer token is required.
403 SignatureProfileDisabled The specified signature profile is disabled.
403 SignatureProfileNotAllowed The specified signature profile is not allowed for this document.
403 TemplateAttachmentsNotAllowed The attachments are not allowed by the template.
403 TenantAttachmentsNotAllowed The attachments are not allowed by the tenant.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 SignatureProfileNotFound The specified signature profile can not be found.
404 WorkflowNotFound The specified workflow can not be found.

Create parts from multipart

Create workflow parts from a multipart request.

HTTP request

POST /api/workflows/wfl_4vdM94fBgHW64Ah626R6g6eR/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_m9avtjGeaAnmuBzCtvFEZmHv&unzip=false&convertToPdf=true&pdf2pdfa=auto HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: multipart/form-data;boundary=wFEg3qngftEQa23bvQ-YnxYWMshad9N; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Length: 12545

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

--wFEg3qngftEQa23bvQ-YnxYWMshad9N--

Path parameters:

/api/workflows/{workflowId}/parts

Parameter Description
workflowId The identifier of the workflow.

Query parameters:

Parameter Description
unzip Whether or not zip archives should be unzipped.
convertToPdf Whether or not documents should be converted (when possible) to PDF after processing.
pdf2pdfa Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments Whether or not documents should be created.
ignoreAttachments Whether or not attachments should be ignored.
signatureProfileId The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, attempts to find suitable signature profiles will be made.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_HZwUPxXQ7fA7KpV6MWPQ35nE
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1560

{
  "documents" : [ {
    "created" : 1740575499653,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "6SsDmjuG2qTl0DbfygPAHJhFi+VADOyiei3aSB0+PXc=",
      "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_Jsy1b2sZ4LMHa6viDXba9CFK",
    "id" : "doc_P8y4iF7BmogNHJUHTjsLBVBj",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "6SsDmjuG2qTl0DbfygPAHJhFi+VADOyiei3aSB0+PXc=",
      "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_m9avtjGeaAnmuBzCtvFEZmHv",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575499653,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
    "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "viewAuthorizedUsers" : [ "usr_A8X68tZ2kFmbtkuxEq67yojG" ],
    "workflowId" : "wfl_4vdM94fBgHW64Ah626R6g6eR",
    "workflowName" : "Sleek Copper Pants"
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "6SsDmjuG2qTl0DbfygPAHJhFi+VADOyiei3aSB0+PXc=",
    "isOriginal" : true,
    "policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
    "size" : 18540
  } ]
}

Fields:

Path Type Description
parts Array The created parts.
parts[].filename String The filename of the part.
parts[].contentType String The content type of the part.
parts[].size Number The size of the part.
parts[].hash String The cryptographic hash of the part.
parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
ignoredAttachments Number The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true.
documents Array optional The created documents, if requested.
documents[].id String The identifier of the document.
documents[].tenantId String The identifier of the tenant the document belongs to.
documents[].groupId String The identifier of the group the document belongs to.
documents[].userId String The identifier of the user the document belongs to.
documents[].workflowId String The identifier of the workflow the document belongs to.
documents[].workflowName String The name of the workflow the document belongs to.
documents[].signatureProfileId String optional The signature profile to be used to sign the document. If not present, the document will be an attachment.
documents[].viewAuthorizedGroups Array The list of group IDs whose members are allowed to view the workflow the document belongs to.
documents[].viewAuthorizedUsers Array The list of user IDs who are allowed to view the workflow the document belongs to.
documents[].parts Array The created parts.
documents[].parts[].filename String The filename of the part.
documents[].parts[].contentType String The content type of the part.
documents[].parts[].size Number The size of the part.
documents[].parts[].hash String The cryptographic hash of the part.
documents[].parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
documents[].displayedParts Array The parts of the document to be displayed for final user.
documents[].displayedParts[].filename String The filename of the part to be displayed for final user.
documents[].displayedParts[].contentType String The content type of the part to be displayed for final user.
documents[].displayedParts[].hash String The cryptographic hash of the part to be displayed for final user.
documents[].displayedParts[].size Number The size of the part to be displayed for final user.
documents[].displayedParts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].displayedParts[].isOriginal Boolean optional Whether or not the part to be displayed for final user is an original or modified one.
documents[].pdfSignatureFields ArrayList optional In case of a PDF document, the list of signature fields the signers will have to fill.
documents[].created Number The creation date of the entity.
documents[].updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidPdf The uploaded PDF is invalid.
400 InvalidXml The uploaded XML is invalid.
400 InvalidZip The uploaded ZIP can not be unzipped.
400 MaxDocumentSizeExceeded Maximum document size exceeded.
400 PasswordProtectedPdf The uploaded PDF is password protected.
400 TemplateMaxAttachmentsReached The template maximum number of attachments has been reached.
400 TemplateMaxDocumentsReached The template maximum number of documents to sign has been reached.
400 TenantMaxAttachmentsReached The maximum number of attachments has been reached.
400 TenantMaxDocumentsReached The maximum number of documents to sign has been reached.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 InvalidWorkflowStatus The status of the workflow does not allow this operation.
403 MissingBearerToken A bearer token is required.
403 SignatureProfileDisabled The specified signature profile is disabled.
403 SignatureProfileNotAllowed The specified signature profile is not allowed for this document.
403 TemplateAttachmentsNotAllowed The attachments are not allowed by the template.
403 TenantAttachmentsNotAllowed The attachments are not allowed by the tenant.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 SignatureProfileNotFound The specified signature profile can not be found.
404 WorkflowNotFound The specified workflow can not be found.

Create parts from blobs

Create workflow parts from blobs.

HTTP request

POST /api/workflows/wfl_Hjew5r1QUzDm4dWQovAfbKFx/blobs/parts?createDocuments=true&ignoreAttachments=false&unzip=false&convertToPdf=true&signatureProfileId=sip_m9avtjGeaAnmuBzCtvFEZmHv&pdf2pdfa=force HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 210

{
  "parts" : [ {
    "filename" : "document.pdf",
    "contentType" : "application/pdf",
    "blobs" : [ "blb_CtXoDAaqpMsFTaQFM435ffv5", "blb_6ExXsqD29mkxnxtowx2Qpro3", "blb_wdqcEWBssoCkkCJn3nPnJij6" ]
  } ]
}

Path parameters:

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

Parameter Description
workflowId The identifier of the workflow.

Query parameters:

Parameter Description
unzip Whether or not zip archives should be unzipped.
convertToPdf Whether or not document should be converted (when possible) to PDF after processing.
pdf2pdfa Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments Whether or not documents should be created.
ignoreAttachments Whether or not attachments should be ignored.
signatureProfileId The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, an attempt to find suitable signature profiles will be made.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
parts Array The parts to create.
parts[].filename String The filename of the part.
parts[].contentType String The content type of the part.
parts[].blobs Array The sequence of blobs used to build the part.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_51NNfXpnMKL7JXqwFHgBJoL2
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1562

{
  "documents" : [ {
    "created" : 1740575491476,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "bhneD7RXp+RenGCo3aB/Z7jztZ65rtzTQp4Z88U0z34=",
      "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_Jsy1b2sZ4LMHa6viDXba9CFK",
    "id" : "doc_7iEsZwwV8eawrd7WqBUQNuSA",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "bhneD7RXp+RenGCo3aB/Z7jztZ65rtzTQp4Z88U0z34=",
      "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_m9avtjGeaAnmuBzCtvFEZmHv",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575491476,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
    "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "viewAuthorizedUsers" : [ "usr_3RcQJLCPafg6ehdYpVf67MD2" ],
    "workflowId" : "wfl_Hjew5r1QUzDm4dWQovAfbKFx",
    "workflowName" : "Ergonomic Steel Coat"
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "bhneD7RXp+RenGCo3aB/Z7jztZ65rtzTQp4Z88U0z34=",
    "isOriginal" : true,
    "policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
    "size" : 18540
  } ]
}

Fields:

Path Type Description
parts Array The created parts.
parts[].filename String The filename of the part.
parts[].contentType String The content type of the part.
parts[].size Number The size of the part.
parts[].hash String The cryptographic hash of the part.
parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
ignoredAttachments Number The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true.
documents Array optional The created documents, if requested.
documents[].id String The identifier of the document.
documents[].tenantId String The identifier of the tenant the document belongs to.
documents[].groupId String The identifier of the group the document belongs to.
documents[].userId String The identifier of the user the document belongs to.
documents[].workflowId String The identifier of the workflow the document belongs to.
documents[].workflowName String The name of the workflow the document belongs to.
documents[].signatureProfileId String optional The signature profile to be used to sign the document. If not present, the document will be an attachment.
documents[].viewAuthorizedGroups Array The list of group IDs whose members are allowed to view the workflow the document belongs to.
documents[].viewAuthorizedUsers Array The list of user IDs who are allowed to view the workflow the document belongs to.
documents[].parts Array The created parts.
documents[].parts[].filename String The filename of the part.
documents[].parts[].contentType String The content type of the part.
documents[].parts[].size Number The size of the part.
documents[].parts[].hash String The cryptographic hash of the part.
documents[].parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
documents[].displayedParts Array The parts of the document to be displayed for final user.
documents[].displayedParts[].filename String The filename of the part to be displayed for final user.
documents[].displayedParts[].contentType String The content type of the part to be displayed for final user.
documents[].displayedParts[].hash String The cryptographic hash of the part to be displayed for final user.
documents[].displayedParts[].size Number The size of the part to be displayed for final user.
documents[].displayedParts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].displayedParts[].isOriginal Boolean optional Whether or not the part to be displayed for final user is an original or modified one.
documents[].pdfSignatureFields ArrayList optional In case of a PDF document, the list of signature fields the signers will have to fill.
documents[].created Number The creation date of the entity.
documents[].updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidOfficeDocument Office document could not be converted to pdf
400 InvalidPdf The uploaded PDF is invalid.
400 InvalidXml The uploaded XML is invalid.
400 InvalidZip The uploaded ZIP can not be unzipped.
400 MaxDocumentSizeExceeded Maximum document size exceeded.
400 MaxDocumentSizeExceededByBlob Maximum document size exceeded by blobs.
400 PasswordProtectedPdf The uploaded PDF is password protected.
400 TemplateMaxAttachmentsReached The template maximum number of attachments has been reached.
400 TemplateMaxDocumentsReached The template maximum number of documents to sign has been reached.
400 TenantMaxAttachmentsReached The maximum number of attachments has been reached.
400 TenantMaxDocumentsReached The maximum number of documents to sign has been reached.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 InvalidWorkflowStatus The status of the workflow does not allow this operation.
403 MissingBearerToken A bearer token is required.
403 SignatureProfileDisabled The specified signature profile is disabled.
403 SignatureProfileNotAllowed The specified signature profile is not allowed for this document.
403 TemplateAttachmentsNotAllowed The attachments are not allowed by the template.
403 TenantAttachmentsNotAllowed The attachments are not allowed by the tenant.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 SignatureProfileNotFound The specified signature profile can not be found.
404 WorkflowBlobNotFound The specified workflow blob can not be found.
404 WorkflowNotFound The specified workflow can not be found.

Delete pending blobs

Delete pending blobs attached to the workflow.

HTTP request

DELETE /api/workflows/wfl_Ghg4ox8Mw2ZhatkRusU9NsjX/blobs HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "deletedBlobs" : [ "blb_A3m2xp3cdNsRDaTxwWCVnVnT", "blb_KQ6WjBPcCtkW9Uko4UC9bvqC", "blb_NNBMTes1j2U5eLNqqg4GGz3z" ]
}

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_BdQbz4iKrmHE3ouV9BmTNFd9/documents HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 508

{
  "parts" : [ {
    "filename" : "Document",
    "contentType" : "application/pdf",
    "size" : 18540,
    "hash" : "MIZqIFQRSmIbSBO0bNMJ/8RT/tunI05QxCjkj66mj5w=",
    "policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
    "isOriginal" : true
  } ],
  "signatureProfileId" : "sip_m9avtjGeaAnmuBzCtvFEZmHv",
  "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_F95hVZ1gZS1C9N2DWkqaQqFu
ETag: "GUpWjmhAJDZekkXKAGBCDJqK"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1296

{
  "created" : 1740575507449,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "MIZqIFQRSmIbSBO0bNMJ/8RT/tunI05QxCjkj66mj5w=",
    "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_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "doc_KN2FEifY8EyjtquguKSffBsb",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "MIZqIFQRSmIbSBO0bNMJ/8RT/tunI05QxCjkj66mj5w=",
    "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_m9avtjGeaAnmuBzCtvFEZmHv",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575507449,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "viewAuthorizedUsers" : [ "usr_5gGcuAUdWtHR4bFZK2smLY6K" ],
  "workflowId" : "wfl_BdQbz4iKrmHE3ouV9BmTNFd9",
  "workflowName" : "Rustic Wool Shoes"
}

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_MVmokEgqH8uEtkt3SzNcbjZb HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "created" : 1740575476007,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "v6bOtRu2Q2wqGq8bHsv4dwjhCjYx5wZt2NRDWaFBIVo=",
    "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_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "doc_MVmokEgqH8uEtkt3SzNcbjZb",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "v6bOtRu2Q2wqGq8bHsv4dwjhCjYx5wZt2NRDWaFBIVo=",
    "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_m9avtjGeaAnmuBzCtvFEZmHv",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575476055,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "viewAuthorizedUsers" : [ "usr_HP4pwYuPiXD1M1fiXdy7nz9E" ],
  "workflowId" : "wfl_2eZXy8wJk2uPwDCV1DoQpPEh",
  "workflowName" : "Ergonomic Wooden Shirt"
}

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_E7A3GdFczk7YxXato2ocKRb3 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "BXujAt3q3vyNs8eJDSXoworF"
Content-Type: application/json
Content-Length: 212

{
  "signatureProfileId" : "sip_m9avtjGeaAnmuBzCtvFEZmHv",
  "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_3sawE2Y8fxakzoeqXdmbyYbm
ETag: "FVgVL3qzdvkhTYrW1zRX5L3C"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1301

{
  "created" : 1740575541570,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "dVzRqiGsLtnelQRXSD240OthgdAEvLDMLaWF74+HqYg=",
    "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_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "doc_E7A3GdFczk7YxXato2ocKRb3",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "dVzRqiGsLtnelQRXSD240OthgdAEvLDMLaWF74+HqYg=",
    "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_m9avtjGeaAnmuBzCtvFEZmHv",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575541603,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "viewAuthorizedUsers" : [ "usr_HP4pwYuPiXD1M1fiXdy7nz9E" ],
  "workflowId" : "wfl_2eZXy8wJk2uPwDCV1DoQpPEh",
  "workflowName" : "Ergonomic Wooden Shirt"
}

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_KtpubfWruPRJZhMRcyw5vgpE HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "8fmhQc3F8cCWz2eJ39AqRwhZ"

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_BbJ64kHCvwy4U3RRtzACJ5rY
ETag: "8fmhQc3F8cCWz2eJ39AqRwhZ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1301

{
  "created" : 1740575518618,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "NdscZnbpgM49lUbyz80FLh+Bwk4E1XP5/r32iKGk3ak=",
    "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_Jsy1b2sZ4LMHa6viDXba9CFK",
  "id" : "doc_KtpubfWruPRJZhMRcyw5vgpE",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "NdscZnbpgM49lUbyz80FLh+Bwk4E1XP5/r32iKGk3ak=",
    "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_PXE8tfgrDwEgifYj9PXJR8xE",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575518651,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
  "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
  "viewAuthorizedUsers" : [ "usr_HP4pwYuPiXD1M1fiXdy7nz9E" ],
  "workflowId" : "wfl_2eZXy8wJk2uPwDCV1DoQpPEh",
  "workflowName" : "Ergonomic Wooden Shirt"
}

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_MVmokEgqH8uEtkt3SzNcbjZb/parts/bfa6ceb51bb6436c2a1aaf1b1ecbf87708e10a3631e7066dd8d44359a141215a HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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_2eZXy8wJk2uPwDCV1DoQpPEh/downloadDocuments HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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_MVmokEgqH8uEtkt3SzNcbjZb&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

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

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1453

{
  "items" : [ {
    "created" : 1740575476007,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "v6bOtRu2Q2wqGq8bHsv4dwjhCjYx5wZt2NRDWaFBIVo=",
      "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_Jsy1b2sZ4LMHa6viDXba9CFK",
    "id" : "doc_MVmokEgqH8uEtkt3SzNcbjZb",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "v6bOtRu2Q2wqGq8bHsv4dwjhCjYx5wZt2NRDWaFBIVo=",
      "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_m9avtjGeaAnmuBzCtvFEZmHv",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575476055,
    "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q",
    "viewAuthorizedGroups" : [ "grp_Cy3m34HxpLa3pej61RJcdACG", "grp_Jsy1b2sZ4LMHa6viDXba9CFK" ],
    "viewAuthorizedUsers" : [ "usr_HP4pwYuPiXD1M1fiXdy7nz9E" ],
    "workflowId" : "wfl_2eZXy8wJk2uPwDCV1DoQpPEh",
    "workflowName" : "Ergonomic Wooden Shirt"
  } ],
  "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_MVmokEgqH8uEtkt3SzNcbjZb&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 173

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.layoutId The filter value(s) for the layoutId field.
items.groupId The filter value(s) for the groupId field.
items.userId The filter value(s) for the userId field.
items.workflowId The filter value(s) for the workflowId field.
items.workflowHash The filter value(s) for the workflowHash field.
items.workflowName The filter value(s) for the workflowName field.
items.data1 The filter value(s) for the data1 field.
items.data2 The filter value(s) for the data2 field.
items.data3 The filter value(s) for the data3 field.
items.data4 The filter value(s) for the data4 field.
items.data5 The filter value(s) for the data5 field.
items.data6 The filter value(s) for the data6 field.
items.data7 The filter value(s) for the data7 field.
items.data8 The filter value(s) for the data8 field.
items.data9 The filter value(s) for the data9 field.
items.data10 The filter value(s) for the data10 field.
items.data11 The filter value(s) for the data11 field.
items.data12 The filter value(s) for the data12 field.
items.data13 The filter value(s) for the data13 field.
items.data14 The filter value(s) for the data14 field.
items.data15 The filter value(s) for the data15 field.
items.data16 The filter value(s) for the data16 field.
items.signatureProfileId The filter value(s) for the signatureProfileId field.
items.viewAuthorizedGroups The filter value(s) for the viewAuthorizedGroups field.
items.viewAuthorizedUsers The filter value(s) for the viewAuthorizedUsers field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_G3ZeZb8sP3Fy46ekCCnEAjWf
ETag: "AusKkdwr4xYSDWiCY1pJkaGv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 578

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575531095,
  "expired" : 1740661931093,
  "exportOperation" : "createWorkflowDocumentExport",
  "id" : "exp_LyWS6jy7UsMKP4m4CBE8owFy",
  "itemTemplate" : "{{id}},{{json parts}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Document&items.id=doc_MVmokEgqH8uEtkt3SzNcbjZb&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575531095,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_MVmokEgqH8uEtkt3SzNcbjZb/viewer HTTP/1.1
Authorization: Bearer act_HxaW1AjdrD4ttu8bzuSfSu3q.3fso9Xx8RHrwrJgeCHHQRXE4MPGkKDGjZydnKWd66vhfoY2cE1VnFZQnZt5BJjNd
Content-Type: application/json
Content-Length: 81

{
  "redirectUrl" : "https://schuppe.net/callback",
  "expired" : 1740661913618
}

Path parameters:

/api/documents/{documentId}/viewer

Parameter Description
documentId The identifier of the document.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
redirectUrl String optional The URL to redirect to when the viewer is closed.
expired Number optional The expiration date of the viewer.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_Gxw6jBDkkDtTVH4WXefPML3R
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 368

{
  "expired" : 1740661913618,
  "viewerUrl" : "https://mclaughlin.net/viewer#token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJ2aWV3ZXIiLCJkb2N1bWVudElkIjoiZG9jX01WbW9rRWdxSDh1RXRrdDNTek5jYmpaYiIsInJlZGlyZWN0V..."
}

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_Dd3R8EjLoTYMd73hjqC7GAnX/layouts HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 583

{
  "isDisabled" : false,
  "name" : "Small Rubber Chair",
  "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_Q1gM79uq7CQowEbbNfTvUzu1
ETag: "3SAsrkJsQyCJDQnppAJcuaYA"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 729

{
  "created" : 1740575593198,
  "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_MvbLqRpuRfmtF2nD4xiz7hTc",
  "isDisabled" : false,
  "name" : "Small Rubber Chair",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575593198
}

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_QL2PYqxswRb39rDdmBq17uNd HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "created" : 1740575454778,
  "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_QL2PYqxswRb39rDdmBq17uNd",
  "isDisabled" : false,
  "name" : "Fantastic Silk Gloves",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575454778
}

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_CkkcF9MYu6TKV6CAXwKuzBgd HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "EMRMhy4AC6zsP3xv2StJkir8"
Content-Type: application/json
Content-Length: 590

{
  "isDisabled" : false,
  "name" : "Intelligent Cotton 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_FTUZvLWpqsNLF33AmHATLHP7
ETag: "GDCywai75humiFnv1m2WEQtw"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 736

{
  "created" : 1740575585309,
  "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_CkkcF9MYu6TKV6CAXwKuzBgd",
  "isDisabled" : false,
  "name" : "Intelligent Cotton Wallet",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575585332
}

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=Ergonomic%20Bronze%20Gloves&items.id=lay_55mX9qRhLPp2GVvCfgcYX4pU&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.isDisabled The filter value(s) for the isDisabled field.
items.name The filter value(s) for the name field.
items.dataConfigurations.slot The filter value(s) for the dataConfigurations.slot field.
items.jobOperation The filter value(s) for the jobOperation field.
items.jobErrorCode The filter value(s) for the jobErrorCode field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 876

{
  "items" : [ {
    "created" : 1740575592432,
    "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_55mX9qRhLPp2GVvCfgcYX4pU",
    "isDisabled" : false,
    "name" : "Ergonomic Bronze Gloves",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575592432
  } ],
  "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=Fantastic%20Silk%20Gloves&items.id=lay_QL2PYqxswRb39rDdmBq17uNd&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 195

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.isDisabled The filter value(s) for the isDisabled field.
items.name The filter value(s) for the name field.
items.dataConfigurations.slot The filter value(s) for the dataConfigurations.slot field.
items.jobOperation The filter value(s) for the jobOperation field.
items.jobErrorCode The filter value(s) for the jobErrorCode field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_CkNcsGTxxqC3FEc3VXGLb12F
ETag: "7ryR6pqhcBjuSyfCj4jL44da"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 611

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575583176,
  "expired" : 1740661983173,
  "exportOperation" : "createWorkflowLayoutExport",
  "id" : "exp_KabaHHsVjG66p3JGkoHCbMHV",
  "itemTemplate" : "{{id}},{{name}},{{json dataConfigurations}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Fantastic+Silk+Gloves&items.id=lay_QL2PYqxswRb39rDdmBq17uNd&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575583176,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_Dd3R8EjLoTYMd73hjqC7GAnX/templates HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 2494

{
  "isDisabled" : false,
  "name" : "Sleek Marble Coat",
  "description" : "Apt. 024, 9125 Boulevard Bonaparte, 14728 Chambéry",
  "layoutSelectionMode" : "list",
  "allowedLayouts" : [ "lay_2HUpsqLwLLTS9emw6E6K1H2U" ],
  "maxWatchers" : 10,
  "steps" : [ {
    "stepType" : "signature",
    "recipientSelectionMode" : "list",
    "maxRecipients" : 10,
    "recipients" : [ {
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "email" : "winfred.nicolas3820@my-company.com",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN",
      "phoneNumber" : "+33 6 12 34 56 78",
      "comments" : "A enim qui numquam tenetur.",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "country" : "FR",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "preferredLocale" : "fr"
    } ],
    "allowedGroups" : [ ],
    "allowedConsentPages" : [ "cop_Q8GMMHyzFCoxNsGQbhvNAVZf" ],
    "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_NSDvaBbnhkyyweMSeWDttnaA",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "readonly" : false,
    "removable" : true,
    "email" : "calvin.lockman4164@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  } ],
  "allowedSignatureProfiles" : [ "sip_ASWjjNbfoTKqoZEGLvie9Tw4" ],
  "documentSelectionMode" : "any",
  "maxDocuments" : 10,
  "maxAttachments" : 20,
  "coManagerSelectionMode" : "none",
  "allowedCoManagerUsers" : [ ],
  "coManagerUsersModifiable" : true,
  "coManagerCanEditCoManager" : false,
  "allowedCoManagerGroups" : [ ],
  "allowConsolidation" : true
}

Path parameters:

/api/tenants/{tenantId}/templates

Parameter Description
tenantId The identifier of the tenant the workflow template belongs to.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
name String The name of the workflow template.
description String optional The description of the workflow template.
isDisabled Boolean Whether or not the workflow template is disabled.
layoutSelectionMode String optional Possible values: list, listOrNull, any or anyOrNull.
allowedLayouts Array optional The list of workflow layouts allowed to be used in the workflow.
maxWatchers Number optional The maximum number of watchers.
steps Array optional The steps of the workflow template.
steps[].stepType String optional The type of the step, either signature or approval.
steps[].recipientSelectionMode String optional Possible values: list, any or group.
steps[].allowedGroups Array optional The list of groups of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is group.
steps[].allowedConsentPages Array optional The list of consent pages allowed to be used in the step.
steps[].recipients Array optional The list of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is list or any. Please note that using non-existent user contacts as recipients does not result in their automatic creation by the API.
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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String optional The first name of the recipient.
steps[].recipients[].lastName String optional The last name of the recipient.
steps[].recipients[].country String optional The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].maxRecipients Number optional The maximum number of recipients in the step. Minimum is 1. Maximum is 99.
steps[].requiredRecipients Number optional The number of recipients that are required to sign or approve the documents for the step to finish. Minimum is 1. Maximum is maxRecipients.
steps[].validityPeriod Number optional The period during which the step is valid. Minimum is 86400000. Maximum is 8553600000.
steps[].invitePeriod Number optional The period after which invites are resent. Minimum is 86400000. Maximum is 2592000000.
steps[].maxInvites Number optional The maximum number of invites to send to the recipients. Minimum is 0. Maximum is 99.
steps[].sendDownloadLink Boolean optional Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].readonly Boolean optional Whether or not the step is read-only.
steps[].removable Boolean optional Whether or not the step is removable.
steps[].allowComments Boolean optional Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean optional Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean optional Whether or not other recipients of the workflow are visible to the recipients in this step.
notifiedEvents Array optional The type of events the owner will receive notifications about.
notifiedEventsReadonly Boolean optional Whether or not the notified events are read-only.
watchers Array optional The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers[].readonly Boolean optional Whether or not the watcher is read-only.
watchers[].removable Boolean optional Whether or not the watcher is removable.
allowedSignatureProfiles Array optional The list of signature profiles allowed for signing documents.
documentSelectionMode String optional Possible values: list or any.
maxDocuments Number optional The maximum number of documents to sign.
maxAttachments Number optional The maximum number of attachments.
coManagerSelectionMode String optional Possible values: none, list, any or anyOrNull.
allowedCoManagerGroups Array optional The list of comanager groups allowed to be assigned as workflow comanagers.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerUsersModifiable Boolean optional Whether or not the comanager notified events are modifiable.
coManagerCanEditCoManager Boolean optional Whether or not the co-manager events are modifiable by a co-manager.
coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
coManagerNotifiedEventsReadonly Boolean optional Whether or not the comanager notified events are read-only.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_2hVL3ZxPDxxxrh4JnphXqahh
ETag: "BSKgwZFdGdAsFjGEFkKGBPjR"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2711

{
  "allowConsolidation" : true,
  "allowedCoManagerGroups" : [ ],
  "allowedCoManagerUsers" : [ ],
  "allowedLayouts" : [ "lay_2HUpsqLwLLTS9emw6E6K1H2U" ],
  "allowedSignatureProfiles" : [ "sip_ASWjjNbfoTKqoZEGLvie9Tw4" ],
  "coManagerCanEditCoManager" : false,
  "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "coManagerNotifiedEventsReadonly" : false,
  "coManagerSelectionMode" : "none",
  "coManagerUsersModifiable" : true,
  "created" : 1740575988821,
  "description" : "Apt. 024, 9125 Boulevard Bonaparte, 14728 Chambéry",
  "documentSelectionMode" : "any",
  "id" : "wtm_NZEUMvozLLx5N6QJGA6FsAvt",
  "isDisabled" : false,
  "layoutSelectionMode" : "list",
  "maxAttachments" : 10,
  "maxDocuments" : 10,
  "maxWatchers" : 10,
  "name" : "Sleek Marble Coat",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "notifiedEventsReadonly" : false,
  "steps" : [ {
    "allowComments" : true,
    "allowedConsentPages" : [ ],
    "allowedGroups" : [ ],
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_7WWgVs8ehAe98vPAsiRreGUD",
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "maxRecipients" : 1,
    "readonly" : false,
    "recipientSelectionMode" : "list",
    "recipients" : [ {
      "comments" : "A enim qui numquam tenetur.",
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "country" : "FR",
      "email" : "winfred.nicolas3820@my-company.com",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
      "preferredLocale" : "fr",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
    } ],
    "removable" : true,
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575988821,
  "watchers" : [ {
    "email" : "calvin.lockman4164@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_NSDvaBbnhkyyweMSeWDttnaA"
  } ]
}

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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String optional The first name of the recipient.
steps[].recipients[].lastName String optional The last name of the recipient.
steps[].recipients[].country String optional The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].allowedConsentPages Array The list of consent pages allowed to be used in the step.
steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
steps[].validityPeriod Number The period during which the step is valid.
steps[].invitePeriod Number The period after which invites are resent.
steps[].maxInvites Number The maximum number of invites to send to the recipients.
steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].readonly Boolean Whether or not the step is read-only.
steps[].removable Boolean Whether or not the step is removable.
steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
notifiedEvents Array The type of events the owner will receive notifications about.
notifiedEventsReadonly Boolean Whether or not the notified events are read-only.
watchers Array The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers[].readonly Boolean Whether or not the watcher is read-only.
watchers[].removable Boolean Whether or not the watcher is removable.
allowedSignatureProfiles Array The list of signature profiles allowed for signing documents.
documentSelectionMode String Possible values: list or any.
maxDocuments Number The maximum number of documents to sign.
maxAttachments Number The maximum number of attachments.
coManagerSelectionMode String Possible values: none, list, any or anyOrNull.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerCanEditCoManager Boolean Whether or not the co-manager events are modifiable by a co-manager.
coManagerUsersModifiable Boolean Whether or not the comanager notified events are modifiable.
coManagerNotifiedEvents Array The type of events the comanager will receive notifications about.
coManagerNotifiedEventsReadonly Boolean Whether or not the comanager notified events are read-only.
allowedCoManagerGroups Array optional The list of comanager groups allowed to be assigned as workflow comanagers.
allowConsolidation Boolean Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidRequestField A request field has an incorrect value.
400 NoRecipientInStep Recipients are missing from workflow step.
400 RecipientInfoMissing A recipient in the request is missing identity information.
400 RecipientPhoneNumberRequired The specified consent page requires a recipient phone number.
400 RecipientUserRequired The specified consent page requires a recipient user ID.
403 ApprovalNotAllowed The specified recipient user is not allowed to approve workflows.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 ConsentPageDisabled The specified consent page is disabled.
403 GroupDisabled The specified group is disabled.
403 MissingBearerToken A bearer token is required.
403 OrganizationNotAllowed The selected organization is not allowed to this recipient.
403 SignatureNotAllowed The specified recipient user is not allowed to sign workflows.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserDisabled The specified user is disabled.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 ConsentPageNotFound The specified consent page can not be found.
404 GroupNotFound The specified group can not be found.
404 SignatureProfileNotFound The specified signature profile can not be found.
404 UserNotFound The specified user can not be found.
404 WorkflowLayoutNotFound The specified workflow layout can not be found.

Retrieve workflow template

Retrieve an existing workflow template.

HTTP request

GET /api/templates/wtm_PMok7SRE63iPmYsAwkUz1v2u HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "allowConsolidation" : true,
  "allowedCoManagerGroups" : [ ],
  "allowedCoManagerUsers" : [ ],
  "allowedLayouts" : [ "lay_Q7Y3RpSc1Heb7k4vb377LMar" ],
  "allowedSignatureProfiles" : [ "sip_c1e4QUdrdvv13wgm6y3sVUqD" ],
  "coManagerCanEditCoManager" : false,
  "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "coManagerNotifiedEventsReadonly" : false,
  "coManagerSelectionMode" : "none",
  "coManagerUsersModifiable" : true,
  "created" : 1740575454416,
  "description" : "7 étage, 110 Place Vaneau, 90091 Orléans",
  "documentSelectionMode" : "any",
  "id" : "wtm_PMok7SRE63iPmYsAwkUz1v2u",
  "isDisabled" : false,
  "layoutSelectionMode" : "list",
  "maxAttachments" : 5,
  "maxDocuments" : 10,
  "maxWatchers" : 6,
  "name" : "Incredible Cotton Coat",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "notifiedEventsReadonly" : false,
  "steps" : [ {
    "allowComments" : true,
    "allowedConsentPages" : [ ],
    "allowedGroups" : [ ],
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_6wAksHKaoHav9HXbU57RxBqk",
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "maxRecipients" : 1,
    "readonly" : false,
    "recipientSelectionMode" : "list",
    "recipients" : [ {
      "comments" : "A enim qui numquam tenetur.",
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "country" : "FR",
      "email" : "winfred.nicolas3820@my-company.com",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
      "preferredLocale" : "fr",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
    } ],
    "removable" : true,
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575454416,
  "watchers" : [ {
    "email" : "kesha.schmitt1153@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_Kdtv8kBiuhAANPvEyxRPN2Mb"
  } ]
}

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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String optional The first name of the recipient.
steps[].recipients[].lastName String optional The last name of the recipient.
steps[].recipients[].country String optional The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].allowedConsentPages Array The list of consent pages allowed to be used in the step.
steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
steps[].validityPeriod Number The period during which the step is valid.
steps[].invitePeriod Number The period after which invites are resent.
steps[].maxInvites Number The maximum number of invites to send to the recipients.
steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].readonly Boolean Whether or not the step is read-only.
steps[].removable Boolean Whether or not the step is removable.
steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
notifiedEvents Array The type of events the owner will receive notifications about.
notifiedEventsReadonly Boolean Whether or not the notified events are read-only.
watchers Array The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers[].readonly Boolean Whether or not the watcher is read-only.
watchers[].removable Boolean Whether or not the watcher is removable.
allowedSignatureProfiles Array The list of signature profiles allowed for signing documents.
documentSelectionMode String Possible values: list or any.
maxDocuments Number The maximum number of documents to sign.
maxAttachments Number The maximum number of attachments.
coManagerSelectionMode String Possible values: none, list, any or anyOrNull.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerCanEditCoManager Boolean Whether or not the co-manager events are modifiable by a co-manager.
coManagerUsersModifiable Boolean Whether or not the comanager notified events are modifiable.
coManagerNotifiedEvents Array The type of events the comanager will receive notifications about.
coManagerNotifiedEventsReadonly Boolean Whether or not the comanager notified events are read-only.
allowedCoManagerGroups Array optional The list of comanager groups allowed to be assigned as workflow comanagers.
allowConsolidation Boolean Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 WorkflowTemplateNotFound The specified workflow template can not be found.

Update workflow template

Update an existing workflow template.

HTTP request

PATCH /api/templates/wtm_PvknX8brwD8AbmJ3NWt7u9aZ HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "De86r8upf74cS91cko3R8WFo"
Content-Type: application/json
Content-Length: 2537

{
  "isDisabled" : false,
  "name" : "Heavy Duty Steel Bench",
  "description" : "4 étage, 865 Place du Faubourg-Saint-Denis, 36593 Aix-en-Provence",
  "layoutSelectionMode" : "listOrNull",
  "allowedLayouts" : [ "lay_KF5P65W9UagPtVdnPAasZgST" ],
  "maxWatchers" : 10,
  "steps" : [ {
    "id" : "stp_78SCjjoR83ghhxMCyybqSMGX",
    "recipientSelectionMode" : "list",
    "maxRecipients" : 10,
    "recipients" : [ {
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "email" : "winfred.nicolas3820@my-company.com",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN",
      "phoneNumber" : "+33 6 12 34 56 78",
      "comments" : "A enim qui numquam tenetur.",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "country" : "FR",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "preferredLocale" : "fr"
    } ],
    "allowedGroups" : [ ],
    "allowedConsentPages" : [ "cop_2k1JWxtBhoUV6Fd9QzJ8dxaP" ],
    "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_HSW2yTdpyLMsiXD49pc9wuuS",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "readonly" : false,
    "removable" : true,
    "email" : "nikki.terry6512@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  } ],
  "allowedSignatureProfiles" : [ "sip_FsEELTdFMhTAJnNVsG6jckoa" ],
  "documentSelectionMode" : "any",
  "maxDocuments" : 10,
  "maxAttachments" : 15,
  "coManagerSelectionMode" : "anyOrNull",
  "allowedCoManagerUsers" : [ ],
  "coManagerUsersModifiable" : true,
  "coManagerCanEditCoManager" : false,
  "allowedCoManagerGroups" : [ ],
  "allowConsolidation" : false
}

Path parameters:

/api/templates/{templateId}

Parameter Description
templateId The identifier of the workflow template.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
name String optional The name of the workflow template.
description String optional The description of the workflow template.
isDisabled Boolean Whether or not the workflow template is disabled.
layoutSelectionMode String optional Possible values: list, listOrNull, any or anyOrNull.
allowedLayouts Array optional The list of workflow layouts allowed to be used in the workflow.
maxWatchers Number optional The maximum number of watchers.
steps Array optional The steps of the workflow template.
steps[].id String optional The identifier if the step.
steps[].recipientSelectionMode String optional Possible values: list, any or group
steps[].allowedGroups Array optional The list of groups of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is group.
steps[].allowedConsentPages Array optional The list of consent pages allowed to be used in the step.
steps[].recipients Array optional The list of recipients who are requested to sign or approve the documents, in case the recipientSelectionMode is list or any. Please note that using non-existent user contacts as recipients does not result in their automatic creation by the API.
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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String optional The first name of the recipient.
steps[].recipients[].lastName String optional The last name of the recipient.
steps[].recipients[].country String optional The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].maxRecipients Number optional The maximum number of recipients in the step. Minimum is 1. Maximum is 99.
steps[].requiredRecipients Number optional The number of recipients that are required to sign or approve the documents for the step to finish. Minimum is 1. Maximum is maxRecipients.
steps[].validityPeriod Number optional The period during which the step is valid. Minimum is 86400000. Maximum is 8553600000.
steps[].invitePeriod Number optional The period after which invites are resent. Minimum is 86400000. Maximum is 2592000000.
steps[].maxInvites Number optional The maximum number of invites to send to the recipients. Minimum is 0. Maximum is 99.
steps[].sendDownloadLink Boolean optional Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].readonly Boolean optional Whether or not the step is read-only.
steps[].removable Boolean optional Whether or not the step is removable.
steps[].allowComments Boolean optional Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean optional Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean optional Whether or not other recipients of the workflow are visible to the recipients in this step.
notifiedEvents Array optional The type of events the owner will receive notifications about.
notifiedEventsReadonly Boolean optional Whether or not the notified events are read-only.
watchers Array optional The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers[].readonly Boolean optional Whether or not the watcher is read-only.
watchers[].removable Boolean optional Whether or not the watcher is removable.
allowedSignatureProfiles Array optional The list of signature profiles allowed for signing documents.
documentSelectionMode String optional Possible values: list or any.
maxDocuments Number optional The maximum number of documents to signe
maxAttachments Number optional The maximum number of attachments.
coManagerSelectionMode String optional Possible values: none, list, any or anyOrNull.
allowedCoManagerGroups Array optional The list of comanager groups allowed to be assigned as workflow comanagers.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerUsersModifiable Boolean optional Whether or not the comanager notified events are modifiable.
coManagerCanEditCoManager Boolean optional Whether or not the co-manager events are modifiable by a co-manager.
coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
coManagerNotifiedEventsReadonly Boolean optional Whether or not the comanager notified events are read-only.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_BiF5bHqwaW7vNCjLRNuaKLYb
ETag: "5WDVD8g5gWTpbrzToLq65VT3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2741

{
  "allowConsolidation" : false,
  "allowedCoManagerGroups" : [ ],
  "allowedCoManagerUsers" : [ ],
  "allowedLayouts" : [ "lay_KF5P65W9UagPtVdnPAasZgST" ],
  "allowedSignatureProfiles" : [ "sip_FsEELTdFMhTAJnNVsG6jckoa" ],
  "coManagerCanEditCoManager" : false,
  "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "coManagerNotifiedEventsReadonly" : false,
  "coManagerSelectionMode" : "anyOrNull",
  "coManagerUsersModifiable" : true,
  "created" : 1740575977506,
  "description" : "4 étage, 865 Place du Faubourg-Saint-Denis, 36593 Aix-en-Provence",
  "documentSelectionMode" : "any",
  "id" : "wtm_PvknX8brwD8AbmJ3NWt7u9aZ",
  "isDisabled" : false,
  "layoutSelectionMode" : "listOrNull",
  "maxAttachments" : 10,
  "maxDocuments" : 10,
  "maxWatchers" : 10,
  "name" : "Heavy Duty Steel Bench",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "notifiedEventsReadonly" : false,
  "steps" : [ {
    "allowComments" : true,
    "allowedConsentPages" : [ ],
    "allowedGroups" : [ ],
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_78SCjjoR83ghhxMCyybqSMGX",
    "invitePeriod" : 86400000,
    "maxInvites" : 10,
    "maxRecipients" : 1,
    "readonly" : false,
    "recipientSelectionMode" : "list",
    "recipients" : [ {
      "comments" : "A enim qui numquam tenetur.",
      "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
      "country" : "FR",
      "email" : "winfred.nicolas3820@my-company.com",
      "firstName" : "Sherwood",
      "lastName" : "Flatley",
      "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
      "preferredLocale" : "fr",
      "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
    } ],
    "removable" : true,
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000
  } ],
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575977655,
  "watchers" : [ {
    "email" : "nikki.terry6512@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_HSW2yTdpyLMsiXD49pc9wuuS"
  } ]
}

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[].comments String optional The comments associated with the contact.
steps[].recipients[].firstName String optional The first name of the recipient.
steps[].recipients[].lastName String optional The last name of the recipient.
steps[].recipients[].country String optional The country of the user.
steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
steps[].allowedConsentPages Array The list of consent pages allowed to be used in the step.
steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
steps[].validityPeriod Number The period during which the step is valid.
steps[].invitePeriod Number The period after which invites are resent.
steps[].maxInvites Number The maximum number of invites to send to the recipients.
steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
steps[].readonly Boolean Whether or not the step is read-only.
steps[].removable Boolean Whether or not the step is removable.
steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
notifiedEvents Array The type of events the owner will receive notifications about.
notifiedEventsReadonly Boolean Whether or not the notified events are read-only.
watchers Array The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers[].readonly Boolean Whether or not the watcher is read-only.
watchers[].removable Boolean Whether or not the watcher is removable.
allowedSignatureProfiles Array The list of signature profiles allowed for signing documents.
documentSelectionMode String Possible values: list or any.
maxDocuments Number The maximum number of documents to sign.
maxAttachments Number The maximum number of attachments.
coManagerSelectionMode String Possible values: none, list, any or anyOrNull.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerCanEditCoManager Boolean Whether or not the co-manager events are modifiable by a co-manager.
coManagerUsersModifiable Boolean Whether or not the comanager notified events are modifiable.
coManagerNotifiedEvents Array The type of events the comanager will receive notifications about.
coManagerNotifiedEventsReadonly Boolean Whether or not the comanager notified events are read-only.
allowedCoManagerGroups Array optional The list of comanager groups allowed to be assigned as workflow comanagers.
allowConsolidation Boolean Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidRequestField A request field has an incorrect value.
400 NoRecipientInStep Recipients are missing from workflow step.
400 RecipientInfoMissing A recipient in the request is missing identity information.
400 RecipientPhoneNumberRequired The specified consent page requires a recipient phone number.
403 ApprovalNotAllowed The specified recipient user is not allowed to approve workflows.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 ConsentPageDisabled The specified consent page is disabled.
403 GroupDisabled The specified group is disabled.
403 MissingBearerToken A bearer token is required.
403 OrganizationNotAllowed The selected organization is not allowed to this recipient.
403 SignatureNotAllowed The specified recipient user is not allowed to sign workflows.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserDisabled The specified user is disabled.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 ConsentPageNotFound The specified consent page can not be found.
404 GroupNotFound The specified group can not be found.
404 SignatureProfileNotFound The specified signature profile can not be found.
404 UserNotFound The specified user can not be found.
404 WorkflowLayoutNotFound The specified workflow layout can not be found.
404 WorkflowTemplateNotFound The specified workflow template can not be found.
412 ConditionalUpdateFailed A condition failed in the update request.

Search workflow templates

Search in all workflow templates.

HTTP request

GET /api/templates?text=Incredible%20Cotton%20Coat&items.id=wtm_PMok7SRE63iPmYsAwkUz1v2u&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

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

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 2920

{
  "items" : [ {
    "allowConsolidation" : true,
    "allowedCoManagerGroups" : [ ],
    "allowedCoManagerUsers" : [ ],
    "allowedLayouts" : [ "lay_Q7Y3RpSc1Heb7k4vb377LMar" ],
    "allowedSignatureProfiles" : [ "sip_c1e4QUdrdvv13wgm6y3sVUqD" ],
    "coManagerCanEditCoManager" : false,
    "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
    "coManagerNotifiedEventsReadonly" : false,
    "coManagerSelectionMode" : "none",
    "coManagerUsersModifiable" : true,
    "created" : 1740575454416,
    "description" : "7 étage, 110 Place Vaneau, 90091 Orléans",
    "documentSelectionMode" : "any",
    "id" : "wtm_PMok7SRE63iPmYsAwkUz1v2u",
    "isDisabled" : false,
    "layoutSelectionMode" : "list",
    "maxAttachments" : 5,
    "maxDocuments" : 10,
    "maxWatchers" : 6,
    "name" : "Incredible Cotton Coat",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
    "notifiedEventsReadonly" : false,
    "steps" : [ {
      "allowComments" : true,
      "allowedConsentPages" : [ ],
      "allowedGroups" : [ ],
      "hideAttachments" : false,
      "hideWorkflowRecipients" : false,
      "id" : "stp_6wAksHKaoHav9HXbU57RxBqk",
      "invitePeriod" : 86400000,
      "maxInvites" : 5,
      "maxRecipients" : 1,
      "readonly" : false,
      "recipientSelectionMode" : "list",
      "recipients" : [ {
        "comments" : "A enim qui numquam tenetur.",
        "consentPageId" : "cop_5TY7evwt7j1o8LXDtGGybtnw",
        "country" : "FR",
        "email" : "winfred.nicolas3820@my-company.com",
        "firstName" : "Sherwood",
        "lastName" : "Flatley",
        "organizationId" : "org_6it6k5mJFhxEdsLUQjG4EuYx",
        "phoneNumber" : "+33 6 12 34 56 78",
        "pictureResourceId" : "res_5DQSNSsT5smiLX2v6NmH8b14",
        "preferredLocale" : "fr",
        "userId" : "usr_JNKa4CesXts8ntQwDABGrEtN"
      } ],
      "removable" : true,
      "requiredRecipients" : 1,
      "sendDownloadLink" : true,
      "stepType" : "signature",
      "validityPeriod" : 8553600000
    } ],
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575454416,
    "watchers" : [ {
      "email" : "kesha.schmitt1153@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_Kdtv8kBiuhAANPvEyxRPN2Mb"
    } ]
  } ],
  "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[].comments String optional The comments associated with the contact.
items[].steps[].recipients[].firstName String optional The first name of the recipient.
items[].steps[].recipients[].lastName String optional The last name of the recipient.
items[].steps[].recipients[].country String optional The country of the user.
items[].steps[].recipients[].organizationId String optional The identifier of the organization used to sign for.
items[].steps[].recipients[].preferredLocale String optional The preferred locale for the notification emails sent to the recipient.
items[].steps[].allowedConsentPages Array The list of consent pages allowed to be used in the step.
items[].steps[].requiredRecipients Number The number of recipients that are required to sign or approve the documents for the step to finish.
items[].steps[].validityPeriod Number The period during which the step is valid.
items[].steps[].invitePeriod Number The period after which invites are resent.
items[].steps[].maxInvites Number The maximum number of invites to send to the recipients.
items[].steps[].sendDownloadLink Boolean Whether or not the signers or the approvers will receive a link to download the signed documents once the workflow is finished.
items[].steps[].readonly Boolean Whether or not the step is read-only.
items[].steps[].removable Boolean Whether or not the step is removable.
items[].steps[].allowComments Boolean Whether or not the recipients of the step are authorized to view and create comments.
items[].steps[].hideAttachments Boolean Whether or not the attachments are displayed to the recipients of the step.
items[].steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
items[].notifiedEvents Array The type of events the owner will receive notifications about.
items[].notifiedEventsReadonly Boolean Whether or not the notified events are read-only.
items[].watchers Array The list of watchers of the workflow.
items[].watchers[].userId String optional The identifier of the user, in case the watcher is a user.
items[].watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
items[].watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
items[].watchers[].readonly Boolean Whether or not the watcher is read-only.
items[].watchers[].removable Boolean Whether or not the watcher is removable.
items[].allowedSignatureProfiles Array The list of signature profiles allowed for signing documents.
items[].documentSelectionMode String Possible values: list or any.
items[].maxDocuments Number The maximum number of documents to sign.
items[].maxAttachments Number The maximum number of attachments.
items[].coManagerSelectionMode String Possible values: none, list, any or anyOrNull.
items[].allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
items[].coManagerCanEditCoManager Boolean Whether or not the co-manager events are modifiable by a co-manager.
items[].coManagerUsersModifiable Boolean Whether or not the comanager notified events are modifiable.
items[].coManagerNotifiedEvents Array The type of events the comanager will receive notifications about.
items[].coManagerNotifiedEventsReadonly Boolean Whether or not the comanager notified events are read-only.
items[].allowedCoManagerGroups Array optional The list of comanager groups allowed to be assigned as workflow comanagers.
items[].allowConsolidation Boolean Indicates whether workflow consolidation is enabled or not.
items[].jobOperation String optional The job operation currently running.
items[].created Number The creation date of the entity.
items[].updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidFilterField A filter parameter has an incorrect field name.
400 InvalidFilterValue A filter parameter has an incorrect value.
400 InvalidSortByField The sortBy parameter has an incorrect field name.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.

Export workflow templates

Export a search in all signature profiles.

HTTP request

POST /api/templates/exports?text=Incredible%20Cotton%20Coat&items.id=wtm_PMok7SRE63iPmYsAwkUz1v2u&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 182

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.name The filter value(s) for the name field.
items.isDisabled The filter value(s) for the isDisabled field.
items.steps.id The filter value(s) for the steps.id field.
items.recipients.email The filter value(s) for the recipients.email field.
items.recipients.userId The filter value(s) for the recipients.userId field.
items.recipients.subject The filter value(s) for the recipients.subject field.
items.recipients.firstName The filter value(s) for the recipients.firstName field.
items.recipients.lastName The filter value(s) for the recipients.lastName field.
items.recipients.country The filter value(s) for the recipients.country field.
items.recipients.organizationId The filter value(s) for the recipients.organizationId field.
items.nextClean The filter value(s) for the nextClean field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_5zRNVUbVo8Hebn7Va739iYme
ETag: "63uNxgpiUJ6jDRNnb6VXp8ij"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 601

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575985715,
  "expired" : 1740662385713,
  "exportOperation" : "createWorkflowTemplateExport",
  "id" : "exp_FVRM9n4hTRhTACGQwPSbXYJb",
  "itemTemplate" : "{{id}},{{name}},{{json steps}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Incredible+Cotton+Coat&items.id=wtm_PMok7SRE63iPmYsAwkUz1v2u&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575985715,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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_H1csC5csJxCBipxxsWRUrozN/blobs HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
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_65v472VGqZDxAVZPEvFT4VR1
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 198

{
  "hash" : "obcUcumzUOJsClVDv/jHTNefKTRlTJULnZx4dfOrx+I=",
  "id" : "blb_K8rb7ykdTWMWVAhdhYnMrjv3",
  "templateId" : "wtm_H1csC5csJxCBipxxsWRUrozN",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX"
}

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_FV62ikJUkdY71RN8YTLr3Adg/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_m9avtjGeaAnmuBzCtvFEZmHv&unzip=false&pdf2pdfa=auto&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Disposition: attachment; filename="document.pdf"
Content-Type: application/pdf
Content-Length: 12341

%PDF-1.3
%���������
4 0 obj
<< /Length 5 0 R /Filter /FlateDecode >>
stream
xUϱ�0����G�kk9X5�č��D@0����Nb:��^�庢�
��X��c
...

Path parameters:

/api/templates/{templateId}/parts

Parameter Description
templateId The identifier of the workflow template.

Query parameters:

Parameter Description
unzip Whether or not zip archives should be unzipped.
pdf2pdfa Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments Whether or not documents should be created.
readonly Whether or not the created documents should be read-only.
removable Whether or not the created documents should be removable.
ignoreAttachments Whether or not attachments should be ignored.
signatureProfileId The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, attempts to find suitable signature profiles will be made.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_7ZhD6EYJpsHNu77CKFwNfcW8
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1309

{
  "documents" : [ {
    "created" : 1740575570750,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "lw0krwyESrsNoVGBx+8X9ZiL32JrSjkVs/p4xfjiM8M=",
      "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_GdHamydPHzf5zKvzQuXSWC4Y",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "lw0krwyESrsNoVGBx+8X9ZiL32JrSjkVs/p4xfjiM8M=",
      "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_m9avtjGeaAnmuBzCtvFEZmHv",
    "templateId" : "wtm_FV62ikJUkdY71RN8YTLr3Adg",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575570750
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "lw0krwyESrsNoVGBx+8X9ZiL32JrSjkVs/p4xfjiM8M=",
    "isOriginal" : true,
    "policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
    "size" : 18540
  } ]
}

Fields:

Path Type Description
parts Array The created parts.
parts[].filename String The filename of the part.
parts[].contentType String The content type of the part.
parts[].size Number The size of the part.
parts[].hash String The cryptographic hash of the part.
parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
documents Array optional The created documents, if requested.
documents[].id String The identifier of the document.
documents[].tenantId String The identifier of the tenant the document belongs to.
documents[].templateId String The identifier of the workflow template the document belongs to.
documents[].signatureProfileId String optional The signature profile to be used to sign the document. If not present, the document will be an attachment.
documents[].readonly Boolean Whether or not the document is read-only.
documents[].removable Boolean Whether or not the document is removable.
ignoredAttachments Number The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true.
documents[].parts Array The created parts.
documents[].parts[].filename String The filename of the part.
documents[].parts[].contentType String The content type of the part.
documents[].parts[].size Number The size of the part.
documents[].parts[].hash String The cryptographic hash of the part.
documents[].parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
documents[].displayedParts Array The parts of the document to be displayed for final user.
documents[].displayedParts[].filename String The filename of the part to be displayed for final user.
documents[].displayedParts[].contentType String The content type of the part to be displayed for final user.
documents[].displayedParts[].hash String The cryptographic hash of the part to be displayed for final user.
documents[].displayedParts[].size Number The size of the part to be displayed for final user.
documents[].displayedParts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].displayedParts[].isOriginal Boolean optional Whether or not the part to be displayed for final user is an original or modified one.
documents[].pdfSignatureFields ArrayList optional In case of a PDF document, the list of signature fields the signers will have to fill.
documents[].created Number The creation date of the entity.
documents[].updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidPdf The uploaded PDF is invalid.
400 InvalidXml The uploaded XML is invalid.
400 InvalidZip The uploaded ZIP can not be unzipped.
400 MaxDocumentSizeExceeded Maximum document size exceeded.
400 PasswordProtectedPdf The uploaded PDF is password protected.
400 TenantMaxAttachmentsReached The maximum number of attachments has been reached.
400 TenantMaxDocumentsReached The maximum number of documents to sign has been reached.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 SignatureProfileDisabled The specified signature profile is disabled.
403 SignatureProfileNotAllowed The specified signature profile is not allowed for this document.
403 TenantAttachmentsNotAllowed The attachments are not allowed by the tenant.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 SignatureProfileNotFound The specified signature profile can not be found.
404 WorkflowTemplateNotFound The specified workflow template can not be found.

Create template parts from multipart

Create workflow template parts from a multipart request.

HTTP request

POST /api/templates/wtm_B9FgrEwc4sHqyQ1jZwF3KzPA/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_m9avtjGeaAnmuBzCtvFEZmHv&unzip=false&pdf2pdfa=auto&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: multipart/form-data;boundary=D1DVyZef1T8HW-eVvvkzBowmTiYz4KGrh-kI0Ijm; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Length: 12563

--D1DVyZef1T8HW-eVvvkzBowmTiYz4KGrh-kI0Ijm
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
...

--D1DVyZef1T8HW-eVvvkzBowmTiYz4KGrh-kI0Ijm--

Path parameters:

/api/templates/{templateId}/parts

Parameter Description
templateId The identifier of the workflow template.

Query parameters:

Parameter Description
unzip Whether or not zip archives should be unzipped.
pdf2pdfa Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments Whether or not documents should be created.
readonly Whether or not the created documents should be read-only.
removable Whether or not the created documents should be removable.
ignoreAttachments Whether or not attachments should be ignored.
signatureProfileId The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, attempts to find suitable signature profiles will be made.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_9sijz68KwfcHEci5aTnTWBWq
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1309

{
  "documents" : [ {
    "created" : 1740575564810,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "CGVR3ipivCRMPYUP5US+DN2rShf2O1y/r2KRazJYOyQ=",
      "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_EZz8YWwdTiYiCcaDBPyHCzGR",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "CGVR3ipivCRMPYUP5US+DN2rShf2O1y/r2KRazJYOyQ=",
      "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_m9avtjGeaAnmuBzCtvFEZmHv",
    "templateId" : "wtm_B9FgrEwc4sHqyQ1jZwF3KzPA",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575564810
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "CGVR3ipivCRMPYUP5US+DN2rShf2O1y/r2KRazJYOyQ=",
    "isOriginal" : true,
    "policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
    "size" : 18540
  } ]
}

Fields:

Path Type Description
parts Array The created parts.
parts[].filename String The filename of the part.
parts[].contentType String The content type of the part.
parts[].size Number The size of the part.
parts[].hash String The cryptographic hash of the part.
parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
documents Array optional The created documents, if requested.
documents[].id String The identifier of the document.
documents[].tenantId String The identifier of the tenant the document belongs to.
documents[].templateId String The identifier of the workflow template the document belongs to.
documents[].signatureProfileId String optional The signature profile to be used to sign the document. If not present, the document will be an attachment.
documents[].readonly Boolean Whether or not the document is read-only.
documents[].removable Boolean Whether or not the document is removable.
ignoredAttachments Number The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true.
documents[].parts Array The created parts.
documents[].parts[].filename String The filename of the part.
documents[].parts[].contentType String The content type of the part.
documents[].parts[].size Number The size of the part.
documents[].parts[].hash String The cryptographic hash of the part.
documents[].parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
documents[].displayedParts Array The parts of the document to be displayed for final user.
documents[].displayedParts[].filename String The filename of the part to be displayed for final user.
documents[].displayedParts[].contentType String The content type of the part to be displayed for final user.
documents[].displayedParts[].hash String The cryptographic hash of the part to be displayed for final user.
documents[].displayedParts[].size Number The size of the part to be displayed for final user.
documents[].displayedParts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].displayedParts[].isOriginal Boolean optional Whether or not the part to be displayed for final user is an original or modified one.
documents[].pdfSignatureFields ArrayList optional In case of a PDF document, the list of signature fields the signers will have to fill.
documents[].created Number The creation date of the entity.
documents[].updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidPdf The uploaded PDF is invalid.
400 InvalidXml The uploaded XML is invalid.
400 InvalidZip The uploaded ZIP can not be unzipped.
400 MaxDocumentSizeExceeded Maximum document size exceeded.
400 PasswordProtectedPdf The uploaded PDF is password protected.
400 TenantMaxAttachmentsReached The maximum number of attachments has been reached.
400 TenantMaxDocumentsReached The maximum number of documents to sign has been reached.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 SignatureProfileDisabled The specified signature profile is disabled.
403 SignatureProfileNotAllowed The specified signature profile is not allowed for this document.
403 TenantAttachmentsNotAllowed The attachments are not allowed by the tenant.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 SignatureProfileNotFound The specified signature profile can not be found.
404 WorkflowTemplateNotFound The specified workflow template can not be found.

Create template parts from blobs

Create workflow template parts from blobs.

HTTP request

POST /api/templates/wtm_5kG7iaYYeV4GkwJYezMroayb/blobs/parts?createDocuments=true&ignoreAttachments=false&unzip=false&signatureProfileId=sip_m9avtjGeaAnmuBzCtvFEZmHv&pdf2pdfa=force&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 210

{
  "parts" : [ {
    "filename" : "document.pdf",
    "contentType" : "application/pdf",
    "blobs" : [ "blb_8unG8yUVCVmwEmt7HG1eEiAS", "blb_EnU5CjQHqmX7Wqr3RvSHMwaX", "blb_N3xMJXN4HXraF6XghVu7r7AS" ]
  } ]
}

Path parameters:

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

Parameter Description
templateId The identifier of the workflow template.

Query parameters:

Parameter Description
unzip Whether or not zip archives should be unzipped.
pdf2pdfa Whether or not convert pdf files to PDF/A. Possible values: disabled, forced, auto. If not specified, the default is auto.
createDocuments Whether or not documents should be created.
readonly Whether or not the created documents should be read-only.
removable Whether or not the created documents should be removable.
ignoreAttachments Whether or not attachments should be ignored.
signatureProfileId The signature profile to be used to sign the created documents. If empty, the created documents will be attachments. If not provided, attempts to find suitable signature profiles will be made.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
parts Array The parts to create.
parts[].filename String The filename of the part.
parts[].contentType String The content type of the part.
parts[].blobs Array The sequence of blobs used to build the part.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_8tsEFiY5bGVgZ5msXcFgrksC
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1309

{
  "documents" : [ {
    "created" : 1740575576572,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "/S+9qmDeEUClcbkOy9QbgxBPLDRpXq8hXToLTrV6mx8=",
      "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_7jVcRdcbyNxX5bAuv7Q2UzM2",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "/S+9qmDeEUClcbkOy9QbgxBPLDRpXq8hXToLTrV6mx8=",
      "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_m9avtjGeaAnmuBzCtvFEZmHv",
    "templateId" : "wtm_5kG7iaYYeV4GkwJYezMroayb",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575576572
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "/S+9qmDeEUClcbkOy9QbgxBPLDRpXq8hXToLTrV6mx8=",
    "isOriginal" : true,
    "policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
    "size" : 18540
  } ]
}

Fields:

Path Type Description
parts Array The created parts.
parts[].filename String The filename of the part.
parts[].contentType String The content type of the part.
parts[].size Number The size of the part.
parts[].hash String The cryptographic hash of the part.
parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
documents Array optional The created documents, if requested.
documents[].id String The identifier of the document.
documents[].tenantId String The identifier of the tenant the document belongs to.
documents[].templateId String The identifier of the workflow template the document belongs to.
documents[].signatureProfileId String optional The signature profile to be used to sign the document. If not present, the document will be an attachment.
documents[].readonly Boolean Whether or not the document is read-only.
documents[].removable Boolean Whether or not the document is removable.
ignoredAttachments Number The number of attachments that were ignored, in case the createDocuments and the ignoreAttachments flags are true.
documents[].parts Array The created parts.
documents[].parts[].filename String The filename of the part.
documents[].parts[].contentType String The content type of the part.
documents[].parts[].size Number The size of the part.
documents[].parts[].hash String The cryptographic hash of the part.
documents[].parts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].parts[].isOriginal Boolean optional Whether or not the part is an original or modified one.
documents[].displayedParts Array The parts of the document to be displayed for final user.
documents[].displayedParts[].filename String The filename of the part to be displayed for final user.
documents[].displayedParts[].contentType String The content type of the part to be displayed for final user.
documents[].displayedParts[].hash String The cryptographic hash of the part to be displayed for final user.
documents[].displayedParts[].size Number The size of the part to be displayed for final user.
documents[].displayedParts[].policyUri URI optional The PDF access URL corresponding to the signature policy. Without specified value, the default signature policy access URL will be applied.
documents[].displayedParts[].isOriginal Boolean optional Whether or not the part to be displayed for final user is an original or modified one.
documents[].pdfSignatureFields ArrayList optional In case of a PDF document, the list of signature fields the signers will have to fill.
documents[].created Number The creation date of the entity.
documents[].updated Number The last modification date of the entity.

Errors:

Status Code Message
400 InvalidPdf The uploaded PDF is invalid.
400 InvalidXml The uploaded XML is invalid.
400 InvalidZip The uploaded ZIP can not be unzipped.
400 MaxDocumentSizeExceeded Maximum document size exceeded.
400 MaxDocumentSizeExceededByBlob Maximum document size exceeded by blobs.
400 PasswordProtectedPdf The uploaded PDF is password protected.
400 TenantMaxAttachmentsReached The maximum number of attachments has been reached.
400 TenantMaxDocumentsReached The maximum number of documents to sign has been reached.
403 AuthenticatedUserDisabled The authenticated user is disabled.
403 MissingBearerToken A bearer token is required.
403 SignatureProfileDisabled The specified signature profile is disabled.
403 SignatureProfileNotAllowed The specified signature profile is not allowed for this document.
403 TenantAttachmentsNotAllowed The attachments are not allowed by the tenant.
403 TenantInactive The tenant is inactive and does not allow any operations.
403 UserGroupDisabled The group of the specified user is disabled.
403 UserNotAllowed The authenticated user is not allowed to perform this operation.
404 SignatureProfileNotFound The specified signature profile can not be found.
404 WorkflowTemplateBlobNotFound The specified template blob can not be found.
404 WorkflowTemplateNotFound The specified workflow template can not be found.

Delete pending template blobs

Delete pending blobs attached to the template.

HTTP request

DELETE /api/templates/wtm_5NAUzPvJY6BX5W99pW8qao5f/blobs HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "deletedBlobs" : [ "blb_6w6ANSqaXRQ3fJHXEJfHAjyX", "blb_BdrWw4fr3oM7UuJ3rudqFvbw", "blb_L9qJt2fa4m3TiL6V4LyHh5PY" ]
}

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_KcDehzqQFrVmMMz6Mh7Ra6eo/templateDocuments HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 552

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

{
  "created" : 1740575700296,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "szu1DgaAwDs6qzNns05Xs0ViSObJdFfEFRi6S+kWWOw=",
    "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_2ZGj6Us5uie6Bezpd1fWZJMH",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "szu1DgaAwDs6qzNns05Xs0ViSObJdFfEFRi6S+kWWOw=",
    "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_m9avtjGeaAnmuBzCtvFEZmHv",
  "templateId" : "wtm_KcDehzqQFrVmMMz6Mh7Ra6eo",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575700296
}

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_LEXYy9jQKjS2ED6iNDq17wPq HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

{
  "created" : 1740575454604,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "jKuZkCCGJngabKdr/m+Xrg+SLP1OG1T7DgqS4XYtlJM=",
    "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_LEXYy9jQKjS2ED6iNDq17wPq",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "jKuZkCCGJngabKdr/m+Xrg+SLP1OG1T7DgqS4XYtlJM=",
    "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_m9avtjGeaAnmuBzCtvFEZmHv",
  "templateId" : "wtm_PMok7SRE63iPmYsAwkUz1v2u",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575454694
}

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_GtNsjcQ7J3xTegmFi7SB28XD HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "23EUToBKuLdcsvUN9VGwa2oT"
Content-Type: application/json
Content-Length: 256

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

{
  "created" : 1740575681248,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "S2e0FiMmrokUa9hbUuHcwk3SY1RT2YSUWO41zzKgWjk=",
    "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_GtNsjcQ7J3xTegmFi7SB28XD",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "S2e0FiMmrokUa9hbUuHcwk3SY1RT2YSUWO41zzKgWjk=",
    "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_m9avtjGeaAnmuBzCtvFEZmHv",
  "templateId" : "wtm_PMok7SRE63iPmYsAwkUz1v2u",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575681280
}

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_3B5wK4oShY33Ws36TsWBZStp HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
If-Match: "HdBvnyrAhYVgXmggkD7Lihoa"

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

{
  "created" : 1740575705528,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "ZumnRABiRMd4VoCa4Au4jHUKxe1BB4LhYPBj4g3iNfs=",
    "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_3B5wK4oShY33Ws36TsWBZStp",
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "ZumnRABiRMd4VoCa4Au4jHUKxe1BB4LhYPBj4g3iNfs=",
    "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_m9avtjGeaAnmuBzCtvFEZmHv",
  "templateId" : "wtm_PMok7SRE63iPmYsAwkUz1v2u",
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "updated" : 1740575705554
}

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_LEXYy9jQKjS2ED6iNDq17wPq/parts/8cab9990208626781a6ca76bfe6f97ae0f922cfd4e1b54fb0e0a92e1762d94... HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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_PMok7SRE63iPmYsAwkUz1v2u/downloadDocuments HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

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

PK���iZZ���������������Document�|wTTK�/9*A������A$J���!��$��s�HRr���sT���x�������{�}������UW�ޫj�{�(����Yٱh������
...

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_LEXYy9jQKjS2ED6iNDq17wPq&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.templateId The filter value(s) for the templateId field.
items.signatureProfileId The filter value(s) for the signatureProfileId field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.
itemsPerPage The number of items per page to retrieve. Maximum is 50.
pageIndex The index of the page to retrieve.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1198

{
  "items" : [ {
    "created" : 1740575454604,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "jKuZkCCGJngabKdr/m+Xrg+SLP1OG1T7DgqS4XYtlJM=",
      "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_LEXYy9jQKjS2ED6iNDq17wPq",
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "jKuZkCCGJngabKdr/m+Xrg+SLP1OG1T7DgqS4XYtlJM=",
      "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_m9avtjGeaAnmuBzCtvFEZmHv",
    "templateId" : "wtm_PMok7SRE63iPmYsAwkUz1v2u",
    "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
    "updated" : 1740575454694
  } ],
  "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_LEXYy9jQKjS2ED6iNDq17wPq&sortBy=items.id HTTP/1.1
Authorization: Bearer act_3m4v7pjSKxnkB6EkTnnNHcxH.5idK11DWZTkxjQtSN5nwEoqZygTvGbCJYXVsncvdy9X7r1A6PeBZcKXeu43tsQUz
Content-Type: application/json
Content-Length: 173

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

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.tenantId The filter value(s) for the tenantId field.
items.templateId The filter value(s) for the templateId field.
items.signatureProfileId The filter value(s) for the signatureProfileId field.
items.created The filter value(s) for the created field.
items.updated The filter value(s) for the updated field.
sortBy The field used to sort the search result.
sortOrder The sort order of the search result.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
contentType String optional The content type of the export.
beforeItems String optional In case of a single file export, the text to be added before the exported items.
afterItems String optional In case of a single file export, the text to be added after the exported items.
betweenItems String optional In case of a single file export, the text to be added between the exported items.
itemTemplate String optional The template to be applied on each exported item. If not provided, each item will be serialized to JSON.
expired Number optional The expiration date of the export.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_CboPeN8rouTodX4Ge39Rz1hF
ETag: "3g8R3J32S37MrTrUMkNa9gbM"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 586

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1740575676820,
  "expired" : 1740662076818,
  "exportOperation" : "createWorkflowTemplateDocumentExport",
  "id" : "exp_K4mDWSQ6gNi5e6tPuUdnLZ8h",
  "itemTemplate" : "{{id}},{{json parts}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Document&items.id=wtd_LEXYy9jQKjS2ED6iNDq17wPq&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_Dd3R8EjLoTYMd73hjqC7GAnX",
  "totalItems" : 0,
  "updated" : 1740575676820,
  "userId" : "usr_5jmbWEirzyin4KJvzDVPqf7q"
}

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.