Workflow Manager – Documentation – v1.16.4-RC2
Introduction Operation guide Integration guide
API reference

Introduction

Schema

  • Structured data are sent and received as JSON.
  • All timestamps are returned in milliseconds since January 1, 1970.

Errors

All error responses have a code field so that your client can tell what the problem is.

Error response

HTTP/1.1 404 Not Found
Content-Type: application/json;charset=UTF-8
Content-Length: 111

{
  "status" : 404,
  "error" : "Not Found",
  "message" : "Request not found.",
  "code" : "RequestNotFound"
}

Fields:

Path Type Description
status Number The HTTP status code.
error String The HTTP status message.
message String The error message.
code String The error code.

Version

Obtain the version of the application.

HTTP request

GET /api/version HTTP/1.1

Here is how you can make the HTTP request:

$ curl 'https://workflow-manager/api/version' -i -X GET

HTTP response

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

"sgs-wm-webapp:1.16.4-RC2"

Here is what you should get as a response:

"sgs-wm-webapp:1.16.4-RC2"

Access tokens

Create access token

Create a user access token.

HTTP request

POST /api/users/usr_JJSUF2dgMiibE2USNkXuyA2P/accessTokens HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 89

{
  "name" : "Thor Luther",
  "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_K6nyEAnugsR9BhSBfuHegS7z
ETag: "98dD6zFAgpMA7sxtMajby5wa"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 394

{
  "authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ],
  "created" : 1750774594226,
  "id" : "act_JBL8tNj7uNJkecbSrfikXSVv",
  "name" : "Thor Luther",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "tokenValue" : "act_JBL8tNj7uNJkecbSrfikXSVv.HsFa3nNvifWU62tVoXKhBaf6zQuXteTWdpWKXV4urSx2Mu11VvosntTg7Z4Zd1u2",
  "updated" : 1750774594226,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_AHKqVoDngM6Yj9KWhKqCWJkK HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "authorizedIpRanges" : [ ],
  "created" : 1750774344897,
  "id" : "act_AHKqVoDngM6Yj9KWhKqCWJkK",
  "name" : "Ima Hogg",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "tokenValue" : "****************",
  "updated" : 1750774344897,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_LicBuhqQSpNm7n8xZmAUe9Rr HTTP/1.1
Authorization: Bearer act_LicBuhqQSpNm7n8xZmAUe9Rr.49S4fjYtmnbmp723Xf9bVEVeAi7hCSGAEUnoEH9JpKWWrTLeWRHikAeaDThYPoun
If-Match: "EV6R7tuN76nxSHE9U9DSow7A"
Content-Type: application/json
Content-Length: 100

{
  "name" : "Sarah Doctorinthehouse",
  "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_71uHotd9jMJTtHdDwELHNGBy
ETag: "6Nz74NgwKmejwbucXBv7p76A"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 328

{
  "authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ],
  "created" : 1750774585279,
  "id" : "act_LicBuhqQSpNm7n8xZmAUe9Rr",
  "name" : "Sarah Doctorinthehouse",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "tokenValue" : "****************",
  "updated" : 1750774585315,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_4vvvAbqwis8gsccuLakXriXs HTTP/1.1
Authorization: Bearer act_4vvvAbqwis8gsccuLakXriXs.5aKk1bBxbz4iUQauUh9Cxen6UvWqghHtrZh319HPhttnrVk1LRkDprSMUPgrfGvH

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

{
  "authorizedIpRanges" : [ ],
  "created" : 1750774595811,
  "id" : "act_4vvvAbqwis8gsccuLakXriXs",
  "name" : "Raynor Schein",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "tokenValue" : "****************",
  "updated" : 1750774595811,
  "userId" : "usr_2UCvvidwkcXCkJzVVwzhZiiy"
}

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_AHKqVoDngM6Yj9KWhKqCWJkK&items.id=act_AHKqVoDngM6Yj9KWhKqCWJkK&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "items" : [ {
    "authorizedIpRanges" : [ ],
    "created" : 1750774344897,
    "id" : "act_AHKqVoDngM6Yj9KWhKqCWJkK",
    "name" : "Ima Hogg",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "tokenValue" : "****************",
    "updated" : 1750774344897,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
  } ],
  "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.

Archiver

Create archiver

Create an archiver. Admin only. Experimental API (subject to change).

HTTP request

POST /experimental/admin/api/tenants/ten_3N8xS9FnQrEA6KS7fVDXTep8/archivers HTTP/1.1
Authorization: Basic YWRtaW46RmpVRW5zc0pRWjg4TVJ3ODVWSnh2b1pG
Content-Type: application/json
Content-Length: 399

{
  "name" : "Carl Arm",
  "description" : "Voluptatem non dolores quis vel ipsa.",
  "archivingSolution" : "cecuritySae",
  "clientId" : "5y8Vi8VWshAguvHrhSsMAMyV",
  "clientSecret" : "955DJEtszk4N5QjAdN1NNjdQ",
  "accountName" : "My application",
  "baseUrl" : "https://my-company.com/archiver/FC2jZ2vef9mkPyCRV86RyCAJ",
  "endpointAuthenticate" : "/authenticate",
  "endpointUpload" : "/upload"
}

Path parameters:

/experimental/admin/api/tenants/{tenantId}/archivers

Parameter Description
tenantId The identifier of the tenant.

Headers:

Name Description
Authorization Valid admin credentials.

Fields:

Path Type Description
archivingSolution String The archiving solution to use. Possible values : cecuritySae.
name String The name of the archiving solution.
description String The description of the archiving solution.
clientId String The client ID to use for authentication to the archiving solution.
clientSecret String The client secret to use for authentication to the archiving solution.
accountName String optional The account name associated to the archiving solution.
baseUrl String The base URL used to communicate with the archiving solution.
endpointAuthenticate String The endpoint used to be authenticated to the archiving solution.
endpointUpload String The endpoint used to upload content to the archiving solution.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_AFxTSx7EiCRMuJcLk44jRYhc
ETag: "6PDTdg8LfsddAGNCJAXHrDJe"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 545

{
  "accountName" : "My application",
  "archivingSolution" : "cecuritySae",
  "baseUrl" : "https://my-company.com/archiver/FC2jZ2vef9mkPyCRV86RyCAJ",
  "clientId" : "5y8Vi8VWshAguvHrhSsMAMyV",
  "clientSecret" : "955DJEtszk4N5QjAdN1NNjdQ",
  "created" : 1750774978324,
  "description" : "Voluptatem non dolores quis vel ipsa.",
  "endpointAuthenticate" : "/authenticate",
  "endpointUpload" : "/upload",
  "id" : "arc_JD5ndn5GrroyAQhdgz1CzfnF",
  "name" : "Carl Arm",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774978324
}

Fields:

Path Type Description
id String The identifier of the archiver.
tenantId String The identifier of the tenant the archiver belongs to.
name String The name of the archiving solution.
description String The description of the archiving solution.
archivingSolution String The archiving solution to use. Possible values : cecuritySae.
clientId String The client ID to use for authentication to the archiving solution.
clientSecret String The client secret to use for authentication to the archiving solution.
accountName String optional The account name associated to the archiving solution.
baseUrl String The base URL used to communicate with the archiving solution.
endpointAuthenticate String The endpoint used to be authenticated to the archiving solution.
endpointUpload String The endpoint used to upload content to the archiving solution.
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 InvalidAdminCredentials The admin credentials are incorrect.

Retrieve archiver

Retrieve an existing archiver. Admin only. Experimental API (subject to change).

HTTP request

GET /experimental/admin/api/archivers/arc_9sNeExj1YvHYmbQnKqfQdHBL HTTP/1.1
Authorization: Basic YWRtaW46RmpVRW5zc0pRWjg4TVJ3ODVWSnh2b1pG

Path parameters:

/experimental/admin/api/archivers/{archiverId}

Parameter Description
archiverId The identifier of the archiver.

Headers:

Name Description
Authorization Valid admin credentials.

HTTP response

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

{
  "accountName" : "Integrated context-sensitive secured line",
  "archivingSolution" : "cecuritySae",
  "baseUrl" : "https://my-company.com/archiver/LbnW6RoBhoD16d67KMF4BUg3",
  "clientId" : "GkCtVtUFn9fpDV2kVAiNmQKT",
  "clientSecret" : "LH6u6bqQLSPvfFg4JgumGy2E",
  "created" : 1750774977458,
  "description" : "Eos corporis porro quibusdam voluptates.",
  "endpointAuthenticate" : "/authenticate",
  "endpointUpload" : "/upload",
  "id" : "arc_9sNeExj1YvHYmbQnKqfQdHBL",
  "name" : "Skip Stone",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774977458
}

Fields:

Path Type Description
id String The identifier of the archiver.
tenantId String The identifier of the tenant the archiver belongs to.
name String The name of the archiving solution.
description String The description of the archiving solution.
archivingSolution String The archiving solution to use. Possible values : cecuritySae.
clientId String The client ID to use for authentication to the archiving solution.
clientSecret String The client secret to use for authentication to the archiving solution.
accountName String optional The account name associated to the archiving solution.
baseUrl String The base URL used to communicate with the archiving solution.
endpointAuthenticate String The endpoint used to be authenticated to the archiving solution.
endpointUpload String The endpoint used to upload content to the archiving solution.
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 ArchiverNotFound The specified archiver can not be found.

Update archiver

Update an existing archiver. Admin only. Experimental API (subject to change).

HTTP request

PATCH /experimental/admin/api/archivers/arc_9sNeExj1YvHYmbQnKqfQdHBL HTTP/1.1
Authorization: Basic YWRtaW46RmpVRW5zc0pRWjg4TVJ3ODVWSnh2b1pG
If-Match: "vSxUi9APP9h5gpeWdJqUGWud"
Content-Type: application/json
Content-Length: 424

{
  "name" : "Homan Provement",
  "description" : "Ipsum beatae velit.",
  "clientId" : "7hJQN9znTj9id5nnJFgfTZKE",
  "clientSecret" : "E9werfpTSfpj46XHLzNpvFbC",
  "accountName" : "Multi-layered methodical artificial intelligence",
  "baseUrl" : "https://my-company.com/79wFbfFHq9DktLhZvJCtReUP",
  "endpointAuthenticate" : "/authenticate/2kTmX6zwAN4dk286Xa1pvFeH",
  "endpointUpload" : "/upload/Fts5EoMJuue3Ps3tGQggKisn"
}

Path parameters:

/experimental/admin/api/archivers/{archiverId}

Parameter Description
archiverId The identifier of the archiver.

Headers:

Name Description
Authorization Valid admin credentials.

Fields:

Path Type Description
name String The name of the archiving solution.
description String The description of the archiving solution.
archivingSolution ArchivingSolution optional The archiving solution to use. Possible values : cecuritySae.
clientId String optional The client ID to use for authentication to the archiving solution.
clientSecret String optional The client secret to use for authentication to the archiving solution.
accountName String optional The account name associated to the archiving solution.
baseUrl String optional The base URL used to communicate with the archiving solution.
endpointAuthenticate String optional The endpoint used to be authenticated to the archiving solution.
endpointUpload String optional The endpoint used to upload content to the archiving solution.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_MXebz7ZJiQqEigKGv6VA19ef
ETag: "4a64YJWtDGX1x54uoJb9211b"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 609

{
  "accountName" : "Multi-layered methodical artificial intelligence",
  "archivingSolution" : "cecuritySae",
  "baseUrl" : "https://my-company.com/79wFbfFHq9DktLhZvJCtReUP",
  "clientId" : "7hJQN9znTj9id5nnJFgfTZKE",
  "clientSecret" : "E9werfpTSfpj46XHLzNpvFbC",
  "created" : 1750774977458,
  "description" : "Ipsum beatae velit.",
  "endpointAuthenticate" : "/authenticate/2kTmX6zwAN4dk286Xa1pvFeH",
  "endpointUpload" : "/upload/Fts5EoMJuue3Ps3tGQggKisn",
  "id" : "arc_9sNeExj1YvHYmbQnKqfQdHBL",
  "name" : "Homan Provement",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774978898
}

Fields:

Path Type Description
id String The identifier of the archiver.
tenantId String The identifier of the tenant the archiver belongs to.
name String The name of the archiving solution.
description String The description of the archiving solution.
archivingSolution String The archiving solution to use. Possible values : cecuritySae.
clientId String The client ID to use for authentication to the archiving solution.
clientSecret String The client secret to use for authentication to the archiving solution.
accountName String optional The account name associated to the archiving solution.
baseUrl String The base URL used to communicate with the archiving solution.
endpointAuthenticate String The endpoint used to be authenticated to the archiving solution.
endpointUpload String The endpoint used to upload content to the archiving solution.
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 InvalidAdminCredentials The admin credentials are incorrect.
404 ArchiverNotFound The specified archiver can not be found.
409 EntityLocked The entity is being updated.
412 ConditionalUpdateFailed A condition failed in the update request.

Delete archiver

Delete an existing archiver. Admin only. Experimental API (subject to change).

HTTP request

DELETE /experimental/admin/api/archivers/arc_2qepwBBHwosCNHayhqZ9BYN5 HTTP/1.1
Authorization: Basic YWRtaW46RmpVRW5zc0pRWjg4TVJ3ODVWSnh2b1pG

Path parameters:

/experimental/admin/api/archivers/{archiverId}

Parameter Description
archiverId The identifier of the archiver.

Headers:

Name Description
Authorization Valid admin credentials.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_HHMWnb7WdF6E5ka6HuR27KBz
ETag: "8TUk1xUBezhHFuPiD4vtFbdA"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 569

{
  "accountName" : "Multi-tiered tangible strategy",
  "archivingSolution" : "cecuritySae",
  "baseUrl" : "https://my-company.com/archiver/Pj8J5kkvYMcNNrhPnCVGh2y5",
  "clientId" : "78rAA1SDb7xhWJBA6DbhJGLE",
  "clientSecret" : "KcvLe94TKUQ9Rrd5kY3DpRmy",
  "created" : 1750774976642,
  "description" : "Sit expedita et id corporis ducimus.",
  "endpointAuthenticate" : "/authenticate",
  "endpointUpload" : "/upload",
  "id" : "arc_2qepwBBHwosCNHayhqZ9BYN5",
  "name" : "Brook Lynn Bridge",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774976642
}

Fields:

Path Type Description
id String The identifier of the archiver.
tenantId String The identifier of the tenant the archiver belongs to.
name String The name of the archiving solution.
description String The description of the archiving solution.
archivingSolution String The archiving solution to use. Possible values : cecuritySae.
clientId String The client ID to use for authentication to the archiving solution.
clientSecret String The client secret to use for authentication to the archiving solution.
accountName String optional The account name associated to the archiving solution.
baseUrl String The base URL used to communicate with the archiving solution.
endpointAuthenticate String The endpoint used to be authenticated to the archiving solution.
endpointUpload String The endpoint used to upload content to the archiving solution.
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 ArchiverNotFound The specified archiver can not be found.

Search archivers

Search in all the archivers. Admin only. Experimental API (subject to change).

HTTP request

GET /experimental/admin/api/archivers?text=Ron%20A.%20Muck&items.id=arc_ML6rzkCDYjtdeRNnGUhsx3dJ&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Basic YWRtaW46RmpVRW5zc0pRWjg4TVJ3ODVWSnh2b1pG

Query parameters:

Parameter Description
text The text to search.
items.id The filter value(s) for the id field.
items.name The filter value(s) for the name field.
items.tenantId The filter value(s) for the tenantId field.
items.archivingSolution The filter value(s) for the archivingSolution field.
items.accountName The filter value(s) for the accountName field.
items.baseUrl The filter value(s) for the baseUrl field.
items.endpointAuthenticate The filter value(s) for the endpointAuthenticate field.
items.endpointUpload The filter value(s) for the endpointUpload 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: 670

{
  "items" : [ {
    "accountName" : "Optional logistical process improvement",
    "archivingSolution" : "cecuritySae",
    "baseUrl" : "https://my-company.com/archiver/DGcbVEJPycnnfrzr6HzvnWZS",
    "clientId" : "P2q3WUxVT1z3ZqHbmfUqgTmH",
    "clientSecret" : "HknK8VsnLgwHfEUwhQBHntZn",
    "created" : 1750774978075,
    "description" : "Hic fugiat aliquam quia.",
    "endpointAuthenticate" : "/authenticate",
    "endpointUpload" : "/upload",
    "id" : "arc_ML6rzkCDYjtdeRNnGUhsx3dJ",
    "name" : "Ron A. Muck",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774978075
  } ],
  "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 archiver.
items[].tenantId String The identifier of the tenant the archiver belongs to.
items[].name String The name of the archiving solution.
items[].description String The description of the archiving solution.
items[].archivingSolution String The archiving solution to use. Possible values : cecuritySae.
items[].clientId String The client ID to use for authentication to the archiving solution.
items[].clientSecret String The client secret to use for authentication to the archiving solution.
items[].accountName String optional The account name associated to the archiving solution.
items[].baseUrl String The base URL used to communicate with the archiving solution.
items[].endpointAuthenticate String The endpoint used to be authenticated to the archiving solution.
items[].endpointUpload String The endpoint used to upload content to the archiving solution.
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.

Bookmarks

Create bookmark

Create a user bookmark.

HTTP request

POST /api/users/usr_JJSUF2dgMiibE2USNkXuyA2P/bookmarks HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 167

{
  "name" : "Marsha Mellow",
  "searchOperation" : "searchUsers",
  "searchQuery" : "text=alfred.kertzmann3269@my-company.com&items.id=usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_6GCeg4UPsLVGgMQuNCGJEq4S
ETag: "9RqobR8Nripe5r8GXBdRdrfw"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 360

{
  "created" : 1750774776317,
  "id" : "bom_Cq2Fa8Xqp5cWrSBotcKbpiP8",
  "name" : "Marsha Mellow",
  "searchOperation" : "searchUsers",
  "searchQuery" : "text=alfred.kertzmann3269%40my-company.com&items.id=usr_JJSUF2dgMiibE2USNkXuyA2P",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774776317,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_FV5djknaS9CJ42XanvdCRo81 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "created" : 1750774777357,
  "id" : "bom_FV5djknaS9CJ42XanvdCRo81",
  "name" : "George Washington Sleptier",
  "searchOperation" : "searchUsers",
  "searchQuery" : "items.id=usr_JJSUF2dgMiibE2USNkXuyA2P",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774777357,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_3M6cYepdNUDevFi3hkDVx15X HTTP/1.1
Authorization: Bearer act_6snNNv6BZRPLruaeBhz4AoCz.UJqV7rfFNBweC8LAELpoJGvHF8dkKfSKcoz566SZeTsZG6BWbqunMZz2qvpLsUGt

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_9RgdVVyb6nd1f34ykihhXf3U
ETag: "31rUJq7P8TiWNGH1qHiuhFH8"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 314

{
  "created" : 1750774778640,
  "id" : "bom_3M6cYepdNUDevFi3hkDVx15X",
  "name" : "Harry Legg",
  "searchOperation" : "searchUsers",
  "searchQuery" : "items.id=usr_42oD61sJ3UiotE2wUpi2Fs8z",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774778640,
  "userId" : "usr_42oD61sJ3UiotE2wUpi2Fs8z"
}

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=Rita%20Booke&items.id=bom_FV5djknaS9CJ42XanvdCRo81&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "items" : [ {
    "created" : 1750774779970,
    "id" : "bom_FV5djknaS9CJ42XanvdCRo81",
    "name" : "Rita Booke",
    "searchOperation" : "searchUsers",
    "searchQuery" : "items.id=usr_JJSUF2dgMiibE2USNkXuyA2P",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774779970,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
  } ],
  "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_3N8xS9FnQrEA6KS7fVDXTep8/consentPages HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 915

{
  "isDisabled" : false,
  "name" : "Magenta",
  "stepType" : "signature",
  "authenticateUser" : true,
  "clientId" : "clt01",
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "sharedPassphrase" : "5ra3XGjQbepg4aNNAgTFuq5o",
  "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",
  "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 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_7DpkVrqgEqCS3muwy21PRN28
ETag: "4CPQjZe761sAK1qgwTJX45Xt"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 703

{
  "allowOrganization" : true,
  "authenticateUser" : true,
  "clientId" : "clt01",
  "created" : 1750774876492,
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "hideDownloads" : false,
  "hideMobileQrCode" : true,
  "id" : "cop_6EH8hd9BEEXxbKcTwy1Hg9Db",
  "isCountryRequired" : true,
  "isDisabled" : false,
  "logoResourceId" : "res_AYzhY5TCzzitmkqg2h9i2qTr",
  "name" : "Magenta",
  "primaryColor" : "#208cdf",
  "sharedPassphrase" : "****************",
  "signingMode" : "server",
  "stepType" : "signature",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "updated" : 1750774876492,
  "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 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_FsX5fowk6PBFcU91xL5Ka4Vt HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "allowOrganization" : true,
  "authenticateUser" : false,
  "clientId" : "clt01",
  "created" : 1750774340689,
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "hideDownloads" : false,
  "hideMobileQrCode" : true,
  "id" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
  "isCountryRequired" : false,
  "isDisabled" : false,
  "logoResourceId" : "res_Hbkwb2pJCZF2oqQmFLhE4aDx",
  "name" : "Marron",
  "primaryColor" : "#208cdf",
  "sharedPassphrase" : "****************",
  "signingMode" : "server",
  "stepType" : "signature",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "updated" : 1750774340689,
  "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 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_9kD82o5eD9Ytpjg8ngQs7oiB HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "CDtTJPwK3wHjnFyxHQSgJmLY"
Content-Type: application/json
Content-Length: 887

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

{
  "allowOrganization" : true,
  "authenticateUser" : true,
  "clientId" : "clt01",
  "created" : 1750774885049,
  "emUrl" : "https://evidence-manager.lex-persona.com/",
  "hideDownloads" : false,
  "hideMobileQrCode" : false,
  "id" : "cop_9kD82o5eD9Ytpjg8ngQs7oiB",
  "isCountryRequired" : true,
  "isDisabled" : false,
  "jobOperation" : "purgeConsentPageResource",
  "logoResourceId" : "res_DooEMUQFfaYYEWihniZJCrMd",
  "name" : "Argent",
  "primaryColor" : "#208cdf",
  "sharedPassphrase" : "****************",
  "signingMode" : "server",
  "stepType" : "signature",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
  "updated" : 1750774885139,
  "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 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=Marron&items.id=cop_FsX5fowk6PBFcU91xL5Ka4Vt&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "items" : [ {
    "allowOrganization" : true,
    "authenticateUser" : false,
    "clientId" : "clt01",
    "created" : 1750774340689,
    "emUrl" : "https://evidence-manager.lex-persona.com/",
    "hideDownloads" : false,
    "hideMobileQrCode" : true,
    "id" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
    "isCountryRequired" : false,
    "isDisabled" : false,
    "logoResourceId" : "res_Hbkwb2pJCZF2oqQmFLhE4aDx",
    "name" : "Marron",
    "primaryColor" : "#208cdf",
    "sharedPassphrase" : "****************",
    "signingMode" : "server",
    "stepType" : "signature",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "tsaUrl" : "https://tsa.sunnystamp.com/tsa",
    "updated" : 1750774340689,
    "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 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=Marron&items.id=cop_FsX5fowk6PBFcU91xL5Ka4Vt&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 190

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

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_7psdTW384ExPwssLhUvjA9oX
ETag: "2Gu9zCyfQ72NMBtXJvanExKX"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 588

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774880717,
  "expired" : 1750861280715,
  "exportOperation" : "createConsentPageExport",
  "id" : "exp_8vS6KFdvHMC2wYPGoELg7Hst",
  "itemTemplate" : "{{id}},{{name}},{{json keystoreTypes}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Marron&items.id=cop_FsX5fowk6PBFcU91xL5Ka4Vt&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774880717,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_JJSUF2dgMiibE2USNkXuyA2P/contacts HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 229

{
  "email" : "cira.bergstrom7092@my-company.com",
  "phoneNumber" : "+33 6 12 34 56 78",
  "comments" : "Blanditiis dolorem et itaque aspernatur id hic aut.",
  "firstName" : "Louna",
  "lastName" : "Lucas",
  "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_NSH9qnSxeGycXrZR8rP9c62N
ETag: "8bCyTZbdfAaK5dCXuvRhm2n5"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 446

{
  "comments" : "Blanditiis dolorem et itaque aspernatur id hic aut.",
  "country" : "FR",
  "created" : 1750774855479,
  "email" : "cira.bergstrom7092@my-company.com",
  "firstName" : "Louna",
  "id" : "con_G2UaoghDbMBDWMDtG5UTbNYG",
  "lastName" : "Lucas",
  "name" : "Louna Lucas",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774855479,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_KTRe2t3QZm8tNmDRVJyXe79r HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "comments" : "Quaerat inventore assumenda.",
  "country" : "FR",
  "created" : 1750774854350,
  "email" : "hans.hahn7356@my-company.com",
  "firstName" : "Lola",
  "id" : "con_KTRe2t3QZm8tNmDRVJyXe79r",
  "lastName" : "Rivière",
  "name" : "Lola Rivière",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774854350,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_GSFd5yQT7PkVSeMaEfvbp1s5 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "DdGZ8Z7nesPZaksFPUf9uu6S"
Content-Type: application/json
Content-Length: 197

{
  "email" : "bud.macejkovic9195@my-company.com",
  "phoneNumber" : "+33 6 12 34 56 78",
  "comments" : "A ut sint minima.",
  "firstName" : "Noémie",
  "lastName" : "Royer",
  "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_Le5KuqYYvfZCuedqTrcW34J6
ETag: "DT8NMC5XN9W2ddaiRMqv22h1"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 416

{
  "comments" : "A ut sint minima.",
  "country" : "FR",
  "created" : 1750774857079,
  "email" : "bud.macejkovic9195@my-company.com",
  "firstName" : "Noémie",
  "id" : "con_GSFd5yQT7PkVSeMaEfvbp1s5",
  "lastName" : "Royer",
  "name" : "Noémie Royer",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774857110,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_9o6nAgT9oUU7xD3o2DBr4fZ6 HTTP/1.1
Authorization: Bearer act_AaNbP8Y6ijcFERVfKxn4m73y.srynAuozdwj3xxMV54wN7Z2VJTSwo2qeRFxp4nuXkGWugcsumJQMXkEzNSyjyEP1

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_6B2FjuS2k52zT3GN6Qbm8FSX
ETag: "GAz7YGGJKgGoFUjUaYWxoDiF"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 448

{
  "comments" : "Repellat voluptas ex placeat eius nemo ea.",
  "country" : "FR",
  "created" : 1750774864856,
  "email" : "hong.kling521@my-company.com",
  "firstName" : "Charlotte",
  "id" : "con_9o6nAgT9oUU7xD3o2DBr4fZ6",
  "lastName" : "Blanchard",
  "name" : "Charlotte Blanchard",
  "phoneNumber" : "+33 6 12 34 56 78",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774864856,
  "userId" : "usr_DBr2FQxWp7dgxbX49kogz5MA"
}

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=shirley.mcdermott8427%40my-company.com&items.id=con_CeUYwgT8Por2QgZ4Zf6GJiTk&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "items" : [ {
    "comments" : "Debitis et voluptas.",
    "country" : "FR",
    "created" : 1750774866471,
    "email" : "shirley.mcdermott8427@my-company.com",
    "firstName" : "Hugo",
    "id" : "con_CeUYwgT8Por2QgZ4Zf6GJiTk",
    "lastName" : "Dubois",
    "name" : "Hugo Dubois",
    "phoneNumber" : "+33 6 12 34 56 78",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774866471,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
  } ],
  "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=Lola%20Rivi%C3%A8re&items.id=con_KTRe2t3QZm8tNmDRVJyXe79r&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 167

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

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_MHkzYErsct7KrZHgvfiba83Q
ETag: "9eQHPEw71u4uXDPN89mpPAhj"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 572

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774868886,
  "expired" : 1750861268883,
  "exportOperation" : "createContactExport",
  "id" : "exp_6TADWQeXNH6R3HGwi1vZjniv",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Lola+Rivi%C3%A8re&items.id=con_KTRe2t3QZm8tNmDRVJyXe79r&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774868886,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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

Path parameters:

/api/exports/{exportId}

Parameter Description
exportId The identifier of the export.

HTTP response

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

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774831428,
  "expired" : 1750861231425,
  "exportOperation" : "createUserExport",
  "id" : "exp_G3Jc4o5fwkuds5aJsMDS69Um",
  "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774831428,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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

usr_JJSUF2dgMiibE2USNkXuyA2P,Coleman Wilkinson,"[{""organizationId"":""org_Lmj4tzvawb8iUTGwCnWAL2iQ"",""title"":""Customer Applications Producteur""}]"
usr_CPAgkyybbD8QMHRJjfRcQ4Pg,Jose Kutch,[]
usr_5NS6DGPXchfgvY65mmCfGAgp,Tasia Johnson,[]
usr_FSwKLXAYRp9sntij3uhQNSrD,Sandy Jaskolski,[]
usr_4JkvZbBD2vXmafAKVSDXKRhm,Vince Powlowski,[]
usr_ERB6CdHkJDV5tdKLPc7wGitA,Bennie Hilll,[]
usr_E8gXDdWkHf9uUW3G33jPsfpC,Kristopher Kovacek,[]
usr_JiZbGCBVUn9fKpfyvoBZhim2,Warner Smith,[]
usr_Gh8AsWxinLiBJb4GeirtTmNF,Robby Zemlak,[]
usr_FY6EFyF2KtxcfaGsdu1Sb4bQ,Arlie Barton,[]
usr_AD2uyfY6VuHLc8eGv9k73tPA,Amira Hauck,[]
usr_N6TtE4nVbx1KpfjGw1w3m43C,Chance Raynor,[]
usr_LgxCbpCCeEqqQnbC57mEgqda,Ramon Flatley,[]
usr_FqgoN9x5K7xks55T6AUiBzW3,Keira Homenick,[]
usr_9tAHPRZB3juRuoCmGTiYN8K9,Madelaine Stehr,[]
usr_8AA3Pbo6G4tRJudsi6JVPMkk,Barton Rolfson,[]
usr_Cf5ALQsxs8Np4v5vS1XMeHkw,Jacquelin Blanda,[]
usr_MiUKWHtjPh9smYQAAnstNCR5,Cecila Hackett,[]
usr_PZbi2DZ88KdhtVyjRYKqvNTf,Donette Strosin,[]
usr_N3aAe1tpkGb9sVZ3WKXhFtBu,Toccara Oberbrunner,[]
usr_8PyTNGagLohqWQPEve7ASU7P,Matt McKenzie,[]
usr_6ejZPyRRzstPhTgmdrUEAfmL,Dominique Boyer,[]
usr_7XqLmjKHkHxAd1Z7VrpXNaM7,Tobias Littel,[]
usr_NEGEh9Wkm7KW3eMBK8C4pJyW,Dyan Schmitt,[]
usr_41oUXrjL2W3EmBd7skkC63Pg,Leena Swaniawski,[]
usr_Fq17eDgducBAP8E3Hh3MmX3E,Wallace Leannon,[]
usr_HCVjVD6kLhwYiVuMhvvqZsBm,Lyndia Ferry,[]
usr_FD53wpu6xL7SdVPNxw7ZNswR,Shaquana Schamberger,[]
usr_FQthUqLxf6kzqB9mhNWYqWvd,Noe Mosciski,[]
usr_LNFDbDkD2no6og8hm6Pa4dG2,Buster Spinka,[]
usr_4b424UD6nhNanFNSRSN5Uk4s,Noel Champlin,[]
usr_2yW9cLhJdu81NrNJCLQR5ysJ,Roy Bergstrom,[]
usr_EwRoGSYwwszVD3aRD1ird1fh,Fannie Hoppe,[]
usr_E1i7qoe4mV31pCUj2dKyac7X,Sina Kunze,[]
usr_2YxNDr7TQBfuB6KsbdgBF1Qx,Adria Berge,[]
usr_2mkRXtqsEMGgerfSskygS1P4,Mitch Davis,[]
usr_3C8SBGjvP4Aegreow1Y79gK7,Eden Swift,[]
usr_5bJtR2DYZnsQ4VkLJREXKA8w,Brian Wiza,[]
usr_JkxaHMSirdavfvVDgy4NXu92,Jacinta Casper,[]
usr_KUQhH4GXr7ZHWkivnuUujbRu,Misti Shanahan,[]
usr_AEZBEnHZkD4vEhypvw4eXSvP,Eleonora Wolff,[]
usr_7WTCLvNNsNkuWqyMTu6uUKnm,Minerva Reynolds,[]
usr_KH1X48QPL8dqVQq2raDWFXkz,Samuel Wilkinson,[]
usr_7udjbavSWkg7omEVCdE8zDct,Bell Swift,[]
usr_ANhfwDFbP6AwEt2wZ6P7n17c,Marylin Ebert,[]
usr_Hmn7gucQvYYtTxqQebXEMf1H,Sherryl Lebsack,[]
usr_3JZQXg46u1n23ntqr5rXo56c,Christopher Daugherty,[]
usr_E1pWfQDcf5bvcarVbz6g8LZ1,Myrta Gusikowski,[]
usr_Lco6KWPLwL1mTjZr8a5ruxxg,Clarita Hand,[]
usr_LkBpxMf2iCwoUC2JCVWzGFw5,Carey Quigley,[]
usr_2GfcyZyx2tuajpepMu48hVDR,Caleb Vandervort,[]
usr_GmdTbWpp6A5MvaJMbZx6529L,Clarita Gislason,[]
usr_BpWyj5AEk8eJ2zibhkPhFCMY,Corrin Beatty,[]
usr_BGrNaRW6bUxzFXsTmjYhU5uq,Stephani Von,[]
usr_JqbEMXV9vBgEU1bc96uw9rqd,Kacie Lindgren,[]
usr_52M7dscKPQWJoT5t5Nci4Erk,Wiley Langosh,[]
usr_DrXv9mZYXWMZf6V5pwk9GtSk,Cliff Runolfsson,[]
usr_QJqsgedScTKUR2kHLD9sEGjs,Theron Schmitt,[]
usr_JVj48gP8GE1DtS537aQCrqTD,Filiberto Renner,[]
usr_JVQehSS1NAk8SMBu9NDAawQZ,Brock Jenkins,[]
usr_42oD61sJ3UiotE2wUpi2Fs8z,Archie Hodkiewicz,[]
usr_8aPvENdZm8eW1HfMNrHLBwCR,Porfirio Ward,[]
usr_JGonu4GVZ6hYN1vJCVkkSZFB,Elanor Orn,[]
usr_28qRE5LpdR5uGyZ2kXSw6qEw,Sylvester Schamberger,[]
usr_4qoZKBS5a2qd147vDPQPhAYX,Leana Cruickshank,[]
usr_DovKwFjdnofSgFBVce987miA,Shon Lueilwitz,[]
usr_Pjz9hHnzwk5DBUzUjc2mjzBC,Michael Heidenreich,[]
usr_7zC2Rq3BdsLWVaXnPjUy7GRe,Danyell Kuvalis,[]
usr_4ayeVkoEzhYguaERRRBtewgC,Darryl Blanda,[]
usr_7kKGPYaAXj4C2ApbKZxYqqnR,Elisabeth Adams,[]
usr_LMKwjjvybeMETUnd8tzxkhEd,Sidney Beatty,[]
usr_DUnDVVSQX42BurJbP6TQQVgw,Rob Hirthe,[]
usr_6ktjkzQkhVirq5QqRh3VWcZ8,Hiroko Wiegand,[]
usr_VubCGx4aAHGusorBjwWh4YZs,Usha Frami,[]
usr_D1x25xh4zcLuu6k3yj9iNVh5,Ashlea Little,[]
usr_LJUTHFiCpBRsjb8JJDbQA1rC,Shala Bradtke,[]
usr_B1hKp7Y4viKxwdTYcs9WSPTx,Rikki Funk,[]
usr_Q6YAgQdoYRuN2tcC6GRNsD2K,Enid Jacobson,[]
usr_A9a1BG5FDEWPGGUD3oavUbSE,Wally Dare,[]
usr_AWod4esNcbAxjkbwwm7BcKZ7,Valentin Feeney,[]
usr_Q3k7QiYGgjTi2fXPQHihwQ2q,Melinda Spencer,[]
usr_C1VbJ2ubzpFCeCQ7sYhuNYyG,Wendy Mertz,[]
usr_L8KPEauPN5ofqxvVvRxVP96e,Gail Haley,[]
usr_DA9zD9ivBVVzR29kaC9TNJWM,Willy Kilback,[]
usr_BvXfDoGRFsJKcYszRTpskfuL,Eldon Bailey,[]
usr_5FZbgyXtkjwQD1UBc2qczWFq,Ahmed Casper,[]
usr_PtgCd8YKXf7m1Qk3yJNmsoeV,Larissa Osinski,[]
usr_KpvJANc8tZsPnsj2Ed97S9iR,Moshe Rath,[]
usr_Acn1tYz6e3veBNr5xXcBjbhA,Juli Oberbrunner,[]
usr_D8G7KADAdLfwpr6vc5EV1gaV,Benedict Leuschke,[]
usr_6QV6RNs4hqr9N53HTumNpocx,Shara Klein,[]
usr_NpL292p5YLLxrt1HUs4MWuJ4,Grover Schaefer,[]
usr_KD7NdunFxYBYGj8PNNr66mEe,Brant Muller,[]
usr_MBUa2WwZ5BqaZQyb6smiD7MF,Kasey Bergstrom,[]
usr_3yfkYGEQYaW1sHyz3aF4NMJi,Wilbert Jenkins,[]
usr_7rJgsyXTx7vy49Rhj4tggUoh,Mike Lubowitz,[]
usr_HKAB3kKgkgQ74um2WwcepQkL,Suzanna Trantow,[]
usr_NK755U8zVAVWj8RwLzEXjn19,Sammie Herzog,[]
usr_AfKh5qkhZQJmyVmLbwbXURwD,Margareta Wuckert,[]
usr_7HcDn8idXGL9dvtaAfaiqSrb,Cary Purdy,[]
usr_ARMm3kkSsYcePLoKmrmuGBa6,Laquita Denesik,[]
usr_h2xP4y4NfPZDzefYHYUefuCm,Ocie Jakubowski,[]
usr_FEQBnAmJeozWKea494LdGFt4,Carter Sporer,[]
usr_JEg8LgeLsoaWw65yjVzuxMox,Carlyn Tromp,[]
usr_MDucCPfvrbLAapPuePsMJ4aw,Pat Wolff,[]
usr_3S1wSwXJHsG8SQbdNNkQj7xb,Carmel Bins,[]
usr_BZx3BcqjgcN7n8yPmjJN6WUi,Nakia Bartell,[]
usr_8seYGBepyZVdWMrs7ArvchVA,Catrina Williamson,[]
usr_NA2DLbisSa2yXJX64s2xu9eZ,Stephenie Metz,[]
usr_MVm9JY4wExAPgpASzVGs85Ao,Rocco Kovacek,[]
usr_CgD4MpPk1RJVeUaqtu8JJYMt,Adelaide Gaylord,[]
usr_GyXMwzDEDhuRSn5o1afL3zZD,Johnny Considine,[]
usr_QEhJs3GJyYajhB8S86enBXxL,Jacqueline Mohr,[]
usr_PnupBUEx4curjsXxejXqTyCS,Mark Pfeffer,[]
usr_LVANmPztrHYVQE7rWV4kZoz5,Theo Renner,[]
usr_3H4MjxFxcEJEHNV4B8Fo3Kjy,Ward Fay,[]
usr_HgWcDG6s6JGABBjcJr3KHeJX,Dorian Ullrich,[]
usr_MTDw9V8xz4qggWSLvoGprjPr,Shayla Watsica,[]
usr_8xbgomy9GRcGCmnRt1iRshuw,Roger Mayer,[]
usr_HypnC4FBEzghRiD55xSDgbk2,Francisco Leannon,[]
usr_PbQLf2aGivpS6iNgBZBXuQCy,Lance Mertz,[]
usr_3Y5HBzU5CyVYmUjSVnGmb7dC,Norman Brekke,[]
usr_8yGSa3TFpQoWjW3dxYwBgA15,Andria Prosacco,[]
usr_KWi8b3kT6etsBbGcvime4yad,Domingo Kozey,[]
usr_N8kRxCssEmYqK5xufHPY1ENw,Waltraud Sporer,[]
usr_Hnde3n4Z1E7nuNpFtUMqwFGt,Robt Murray,[]
usr_BcE8ViCpLnY76Ejz31kkdvxx,Sydney Pollich,[]
usr_3G7DYHYFzrYuGob9BHXQDh6q,Brendon Kertzmann,[]
usr_Arrg1m6xxG2Gk5deQg9cmr3N,Yasmin Schimmel,[]
usr_4JpK9qLRhTWAz1A49NZGf9J9,Nicholas D'Amore,[]
usr_Mv2bdKFnhrJy9ZXoyUYsQNFu,Josh Terry,[]
usr_5iMBzjZt6bpAGT6XDYJLVnyj,Ward Nader,[]
usr_Gfh23BguSaJA4YvECMRAvVpU,Marlana Douglas,[]
usr_7SMGFVVznEtrQUoZwbEBt9fT,Hedy Turcotte,[]
usr_65sWbKacNuD82uyXpxJQhNAq,Season Gorczany,[]
usr_F4H9LE6Z7ftutMu5twsuqdGE,Junior Okuneva,[]
usr_Eo82wooxqP93KnJbVSnRZ5e1,Samuel Wehner,[]
usr_9WnXiBT4bR2tbwUDSqBH4tqs,Allie Fadel,[]
usr_44uttw9JSXeQL1PrQAi8Z7qm,Alesha Considine,[]
usr_Lakuc6K3JMprLVZ2bFESWdgQ,Raymundo Parker,[]
usr_GqcqF3zVSgZJrmvSu766hqtn,Krystle Donnelly,[]
usr_Cy7fBEs8iVmPmHiXM6gHaWme,Soon Ritchie,[]
usr_4W8d6LC8YcdidJrTWjuwg6ry,Mauricio Brekke,[]
usr_K1Ya5WS8gvMnTjPbPco3X9yA,Kasandra Kuvalis,[]
usr_FEzDjJcvwL31e14uMnLW8jrf,Tana Stehr,[]
usr_MynAPk1AQgbqzaBiufpRQ7yj,Delmer Hand,[]
usr_79dJD1rZ4cKe3rUtMHzgpWPo,Angle Langworth,[]
usr_FSBXMM6CMrmKD623hStm4bHR,Emmett Ondricka,[]
usr_GWz3ZPmpiX2kq7DoPqcS11uQ,Georgene Kuhn,[]
usr_9WpqGCdYTPgYKZv3o5LPPL1C,Sonia Mann,[]
usr_5DXKu2hAv7EEgYebnGLHajvk,Evangeline Braun,[]
usr_35JdXmVS2DzERUDtvmfqyEA9,Emanuel Streich,[]
usr_Cgi2k2dQ77wyBNGm7z95ajQg,Chi O'Conner,[]
usr_26rga3nubPUpeBVZSLvy61DU,Anton Williamson,[]
usr_JAkQ4Nc9UMvnRz23iaUENT2v,Alicia Barton,[]
usr_CHxoyXJUTJUHCAGUSs1T8eNb,Granville Littel,[]
usr_KyuJjqeNMPFrS3yndcQy63Hv,Ryann Buckridge,[]
usr_KVrafi651rYVpqJTb3QNg4cP,Monica Homenick,[]
usr_DtJzyp5LTfs8jQ933X7Lkxtu,Seth Johnston,[]
usr_PXH9kimtNbe34riS5L7Pj5cs,Noriko Wintheiser,[]
usr_BHMcVFscM8TyxqWYrnV2c7Yg,Muoi Armstrong,[]
usr_JkXQBGYeq96DtEMmFbwyaUBm,Angella Bergstrom,[]
usr_7KkNznkhApzLhM3purHStp7s,Monte Leannon,[]
usr_APQuRH9sKm3Cs1obqzECaCVm,Walter Macejkovic,[]
usr_5gjKvwGdS9ssPHS2C4qpoW1f,Octavio Kshlerin,[]
usr_GjuU2VjukyhvMPKdMv5hBagG,Shanda Baumbach,[]
usr_FJaHchua2xJxtzD2fZRJBrpy,Bronwyn Von,[]
usr_8cUxysSuu2AiPS3Ya4LatT6J,Carmelo Rolfson,[]
usr_6PkdMeJY32426CueCbppEpot,Myles Roberts,[]
usr_636ipux4PfNK2zmG1hMpZFVo,Kari Wisoky,[]
usr_Dhv2R7KV2ged7NsKmr9y4KLw,Isaiah Prosacco,[]
usr_Hkv2WVk24NsHRGMqtozGrBoD,Merlin Kuhn,[]
usr_4mbgxYc9d3E1kLbZ9iB1MTa6,Gertie Ziemann,[]
usr_5tgja2CEErLuedceiibQRJnc,Hildegard Kunde,[]
usr_QGCx7fNMi7LsWwHynthccWw8,Kenneth Zieme,[]
usr_Ftfx1y8zRDXHQrrj4ZXawn4J,Sheldon Gaylord,[]
usr_6np2fd6j5oneqd3cTfBigQRQ,Noe Smitham,[]
usr_Lp8K6iSSh2XarqYf7GEmRdip,Ian Cassin,[]
usr_CscFEwsKozmNm1iLDVn2QXfA,Wanda Hodkiewicz,[]
usr_42LaGNMXPJ2mW4B8732M9nJT,Mandie Lesch,[]
usr_9ZedQRLyEY1yfkk6HvmSaEYD,Michael Nienow,[]
usr_H1o65p8nsG5kEPwQWwUzDwh6,Jack Lehner,[]
usr_A2H9JdobaQCbQ72JcgBYdHDj,Murray Goldner,[]
usr_7KNGp5bT7drneFRCiY5JS37u,Virgil Daniel,[]
usr_MNZwkxexuYsdApZUPqsfXJ3h,Deloris Fahey,[]
usr_3i5KaruFAYrTfX5m3yiBSD2D,Shara Crist,[]
usr_491tZfhx1bTTZDfAyemFdMPr,Cole Harvey,[]
usr_FPaXYdXw8hvo8MuG9mHj5HT6,Forrest Pagac,[]
usr_9ArzmfdhVFADseX2tYRjve3h,Corene Kling,[]
usr_3eYeTWqW2EgkXbskNsHHLzhg,Booker Davis,[]
usr_6RdFqurEVDorhpbZyzxn7w6N,Lynelle Schulist,[]
usr_HfHA7fx5QB8F4YkzPb5dxQns,Rosalie Cassin,[]
usr_DRy4gMEnqmffSYxxSjEp9pWf,Azzie Hintz,[]
usr_6if9drfhNdM3Pcgj4t11U7z3,Ranee Davis,[]
usr_ryHfn2NnU88Uhagsx57sU6Hm,Jimmie Russel,[]
usr_7bch8qoqP6AuD8ogY3CSSaXX,Jonah Ledner,[]
usr_D5q3mwQXoWL7ViUBYSLyX2Wx,Jacquelynn Grant,[]
usr_5Y4nFo5Uk4JSBw4zfTZQ62MB,Tomas Armstrong,[]
usr_95o4KQHZ36cHH4pmGJtc7Afb,Landon Mueller,[]
usr_FAdrtU7RMLYJF2KtWGjUW9NK,Melodee McGlynn,[]
usr_9eTYDbnb3vKiUg4WKznsTzJB,Dorotha Gutkowski,[]
usr_2iGM9MNHqntdwoBWnf3duxQM,Daron Anderson,[]
usr_J3Bn7eKb7CxY14ScJCqWiJc7,Tijuana Green,[]
usr_N76r1MMQEAWedaBKsNVrrDyc,Alayna Gleason,[]
usr_BaLp5U4Fa5jVzyaG2XD1uQyU,Whitney Blanda,[]
usr_NcHa1rPyXJMDUoNUqehCMDY3,Dorsey Willms,[]
usr_NymAjfGuwQiFXJTzh3gCuZhW,Ezra Gaylord,[]
usr_6sZLRyvSakL924QMqnTfXTYo,Belva Schuster,[]
usr_Yy9PXFALvbtZDLA7RkzpCxBX,Glen Cronin,[]
usr_834DPR2JJBdQdt4NMw9Z7AGt,Buford Jakubowski,[]
usr_FyXhNWefDHPz1YjYaZ17xp3J,Oscar Rogahn,[]
usr_KZiKu44MiLziezkQavDN7FYX,Karin Fisher,[]
usr_NhARHqq9t3JBu8mrW3fN2rq7,Albert Bechtelar,[]
usr_K8vEyA7C3Pphe1C1D6TGCpoj,Cindie Wisozk,[]
usr_HmP88sdiLai1nwRcoUoAu7Xt,Blake Crona,[]
usr_JRmgnc4aypGf1dVHj6Kr4YgL,Taisha Donnelly,[]
usr_9KbUfeDH2eu72zvwgGNE2VSh,Cole Walker,[]
usr_2ZzfBxeqrUTNV49eXywgYj96,Edra Sawayn,[]
usr_PYPQPWBndLDbhm33fapysTtr,Olen Jones,[]
usr_DeATZirMUeUFVWqEw2FszujF,Many Bogan,[]
usr_PWhHjDdRaQrzf5HAq9Raraxw,Adam Oberbrunner,[]
usr_MNJJh2G4kMUAmD9fhf3nA6UN,Jeanelle Rohan,[]
usr_LVrTNTHx1ENFhUbs3D5VkKau,Lenora West,[]
usr_3JRXSiD3jeEyayRYWHR9KwMQ,Loree Hickle,[]
usr_4t3oiMQ816e8MREnSDcjRuvu,Leonardo Waters,[]
usr_Gt5G7X9b5GKsesr6pDnGhZk1,Major Harber,[]
usr_KsB8oayfaqM11buinqkzdQT4,Dwight Bailey,[]
usr_EZUVHVTUC5SKmuT3biTvXjgr,Fern Beatty,[]
usr_JQF8ffhDVqxBMygPJaNr8xjx,Mira DuBuque,[]
usr_CiYLegFYfQuBHK9F6fwRznRZ,Tristan Balistreri,[]
usr_ChJz85ft2SThLKxLSFVa133z,Marge Weissnat,[]
usr_ERzK7Uxj1E1BgReq1QjBaqUo,Brett Durgan,[]
usr_JymdaAkQDsxNnvCzgwgEvjKE,Ivan Jones,[]
usr_8sWeAumfMZfw1fvmardrxRLt,Wilbur Cartwright,[]
usr_BeXrEsmC5CjvF4k3tADCZL6D,Xavier Feil,[]
usr_5JNdeqd9VVVmxRt8rVViN3P6,Kevin Mosciski,[]
usr_LJg2w1mn1r3LfmgZ2ajLu1wo,Alaine Dickens,[]
usr_PcaNREaK5wuZbmYMxkjF3MHu,Manuela Goldner,[]
usr_2En6QQhvv23Lcj8irSjHdy9B,Dahlia Kiehn,[]
usr_HknGww28uYjhw8SYV5gpZyhg,Loretta Howe,[]
usr_QGGduR8U4YpRtZsgfujPqrtY,Vikki Rath,[]
usr_5e2dUZhbsjEdieJycswD16YN,Maybelle West,[]
usr_LVCeb4DqWKVVzoLGA5hzc2cD,Carlota Schiller,[]
usr_AMAhrHo9QFDgjnmZRJU2HVhS,Jordan Boyer,[]
usr_8AK9ZHYg1uM59GHekz1cqJ9S,Princess Williamson,[]
usr_GPaRPRg7QAtvpLQ4V9xh43HY,Ha Yost,[]
usr_PPfABmF4oYsgSrGwXV9Xf9Mp,Augustine Leuschke,[]
usr_3vA5amfJuteBy152Gug6V69g,Danyelle Stamm,[]
usr_DE5sLvCA6B4YrB61Ypz11HA3,Aileen Kutch,[]
usr_7XETn7BuUTDhb1zRXn4TezeT,Delmer Dietrich,[]
usr_LhXXb5jKDpveVTPUTgktZsRg,Olympia Wolff,[]
usr_knfNxNiCsa2Xrnin7ttqbgNz,Lincoln Gorczany,[]
usr_5BEpbFC4NtLoSYPBd3qStcg3,Thanh Herman,[]
usr_DPwH3PmZFzMTpKtVxZXvgsDs,Jacinto Bins,[]
usr_2njmSh6Eu5nfCcN8ZE76Vx2C,Val Gerhold,[]
usr_QC9i45Z1zJHKsut3c12B3Hec,Lawrence Lynch,[]
usr_HE3vCZeeGdCZLV5ETJs21peZ,Fausto Adams,[]
usr_PiFpA9B68TKkzRRF9LCbSkZS,Sergio Ortiz,[]
usr_7wpGsWC6cTNAvg4h5Ax3w768,Vernia Morissette,[]
usr_9zsjFY4BLgwLiF222WHDyLPG,Amado Gleason,[]
usr_2SJStka4zmo5xJALEXjcZ3Ra,Ferne Hilpert,[]
usr_Cq6LDcWjRXvddqCkeXnczVmg,Josiah Kihn,[]
usr_JPGzv53BQJuXc6y4MK6kdrgg,Grace Lowe,[]
usr_6R8QxG2daumgZAW52pQcnPWw,Toya Prohaska,[]
usr_4dEXb48deaiC9BBy4J6u4WN6,Tanner Heaney,[]
usr_PSwcn3iCHNi2h8Z8M84T7eKu,Mitch Daniel,[]
usr_KMSkfw8Yy9XsGUG9sbxDgUXZ,Nam Simonis,[]
usr_SuCQVKqd8DPQNdr2UuHykm9z,Indira Boehm,[]
usr_3QePEBgLFWnW6MLvFz4eRkxP,Arlena Dare,[]
usr_DDHNy8d1FSo7TyrDkpnZjkuF,Carlos Weissnat,[]
usr_PJrzX2vXwNX2nynAuFVLqhf9,Racquel Boehm,[]
usr_J7ZFzsCSyssL5Rp1xquy4Ax8,Minh Little,[]
usr_7FdELnTj362DoGjhjDkSMJJT,Suellen Morar,[]
usr_9jV68kP9YfkhiueGqgZJEhWj,Ezekiel Carroll,[]
usr_DeW6D2fuiQrkMDJ3dXTvMiU5,Loris Stoltenberg,[]
usr_27kwAoPuEfDAo4vroqQgA5Xu,Chas Torphy,[]
usr_GjYKzBYRefExMswUVRaKKfHt,Nancey Rath,[]
usr_9yGpycdTjMtAZNTmNyf61AWt,Julian Hilpert,[]
usr_2LVUHq1K3ya2YrJ8zrNxMMXi,Angie Bayer,[]
usr_9D5PyePM8QHaUpNa7FSeKcw2,Lyman Marvin,[]
usr_9vqvUQebnKAPr78RSYeZakcw,Kandis Wyman,[]
usr_EkDmLGiJPymDpAQMrZCrJEw3,Jayna Kling,[]
usr_ARMN1bx1W6aoq36czRLxF4Wg,Ronnie Little,[]
usr_8rfSt8YZuUWbnwVsTHPhjHi9,Doreatha Waters,[]
usr_6muEsz5L8gogA5b9ZSCJDCBJ,Sherril Vandervort,[]
usr_HW1XntJXGvMrqRgfqLM5LBbt,Robt Gutmann,[]
usr_5ZirKRnnC6FCVUZfUjipAR4p,Trinidad Metz,[]
usr_2XPcsoEyAccFg2n2sdEshLUZ,Wynell Bartoletti,[]
usr_9ZXGUX1WhreuYSJ9WTEa4qeW,Takisha Lemke,[]
usr_AQ1zxKdoWXwTd9aa82MFxrFR,Mauro Bahringer,[]
usr_2E44hEHeQ2UjFeiZdWUnh24b,Racquel Hoppe,[]
usr_HW7VeP4Wowq1vQAJWVySyFQM,Josephine Dickens,[]
usr_HqsCbm2fcEAkVjvr1q8Z8bTV,Damien Ferry,[]
usr_BbJKPpdXUnsJ7hB6sAXYS8Ux,Cole Bernier,[]
usr_8R6BgdDCZpu7QdpPKuviTPmt,Lessie Morar,[]
usr_9xTeLoaN9BbcEjkgGM7fwazE,Cedrick Leffler,[]
usr_2c9PzWGasG6fopAmbbJMyr2s,Jena Rutherford,[]
usr_FXECnxvAaAd7HcTZauae8Xeq,Oliver McCullough,[]
usr_2rRqRUx2W1nXQi4EhdCyMvVt,Melisa Emmerich,[]
usr_FQyrW81JVZh1W8aZAhsxh6cs,Geralyn Hane,[]
usr_GKMiP4DKNFBEopqU9ngSN5HR,Buck Nicolas,[]
usr_59P1dp9bqMZ1tnC3cAdVuVfQ,Brady Rohan,[]
usr_DFA7XTpstnC2A4nvo6JFTaYm,Linsey Pfannerstill,[]
usr_6xmFPZKHTqohFgQCbJqMJCE6,Agueda Hudson,[]
usr_673FV6eK2wpVNSD1aKH44PkM,Cornelius Kling,[]
usr_NSw1MvAuKWg7gGwsg8U7h7R3,Lisbeth Buckridge,[]
usr_4RWPbuVdr2B2R2mK1No3abc6,Geralyn Kuphal,[]
usr_4TotQChveCGvvMnTAxfeHxpf,Maryanna Gusikowski,[]
usr_CPd2GB9zs6MubDUXEG675FtQ,Merlin Rogahn,[]
usr_3WMQ9kidtu5Z4eRbEWGWG4WU,Geoffrey O'Keefe,[]
usr_NQMmGTzM7N4R7trybAH1hj2F,Hassan Keebler,[]
usr_Jk3sCh1d3r1uBSHMLtwpXs6F,Deshawn Runolfsdottir,[]
usr_4JbaR689BEsCoE3v3ZWdPpEy,Merrilee Frami,[]
usr_CHkpe7z1Qcf96Y5kJKQnqcrj,Grover Will,[]
usr_Q9oJBXnKyjQho5Vh7uaLNacH,Truman Berge,[]
usr_BqjG5QcedCaDALaAYqKeVw3r,Una Greenfelder,[]
usr_ENGLZFKYcDcvsUwpVck3hk3K,Bennett Gusikowski,[]
usr_NZth8rPqJkjR8dJyQ6gipA2a,Kareem O'Keefe,[]
usr_BiJNYUBkWfiRrfmfhjkkTUve,Jorge Mertz,"[{""organizationId"":""org_Lmj4tzvawb8iUTGwCnWAL2iQ"",""title"":""Customer Functionality Producteur""}]"
usr_2sbM9WREyWCAxMbQtgZsUqgD,Mallie Lueilwitz,[]
usr_GrVg1P2rvFyJosdPriMz5Rrr,Monserrate Miller,[]
usr_JBWHQwVJBueJWA45QqDvGpt9,Broderick Hammes,[]
usr_7bP1wTEpHxsNe6vruejzRNgL,Loyd Torp,[]
usr_D7e5Mw7WDzBUfjdzEUXtFNk8,Agnus Wilkinson,[]
usr_GEYyh2jFpo5TDZMHgetPeZyH,Kacy Bins,[]
usr_41ZsvQ9gDfC2Pg6yM2ZcBCwu,Wiley Windler,[]
usr_C77FxedhppXpR2cvH4bgjJJC,Wyatt Mraz,[]
usr_BxSPNmub4k56pAZtzcZ9vgcB,Alejandro Johnston,[]
usr_H5WEagGWgzYdfavBbG3T5Tpd,Shon Halvorson,[]
usr_886prtbMGAnptrLbyDomsrFp,Sandee Homenick,[]
usr_28T7naMdJTX866RNB6nAwDzt,Kum Oberbrunner,[]
usr_LkU1cVZ1B7ewza9VkYuaBGzz,Arnulfo Bruen,[]
usr_7mz8imkn1AKCgYJ1Yi65E2c3,Elwood Kerluke,[]
usr_MxEGBSx6qDyxsxCAiXWLsGsg,Shalon Brekke,[]
usr_48NNNErHsDeb8f7NsHi2LXX1,Magnolia D'Amore,[]
usr_DGbhaX1Mz9wUrUY5JCJtgCx5,Norma Doyle,[]
usr_HJerLd2oQhWYjYWSJFrZj95A,Louisa Shields,[]
usr_JczJMNa9rz5VXuu3VZRUGYBo,Elizabeth Hauck,[]
usr_ELTo3zSgbNoSdonNPBZkyn4m,Loris Ortiz,[]
usr_F68efyJGL1d5D1Kz7YGdsrch,Duncan O'Hara,[]
usr_GHGXFnx4ENTNdJucXC4dj2J8,Angla Hagenes,[]
usr_6st7V6wquXS8iynuAdu9sPES,Clarence Ernser,[]
usr_KTWp6yTFpoS49GQbBnmcyxu7,Mayra Bergnaum,[]
usr_KaitcaEYtHFQAfrXwnQKryih,Fredda Zboncak,[]
usr_8ekEHRnyAJH9wjgU4M6L8ZDP,Gabrielle Bradtke,[]
usr_KApfGatyGjE3RwtSqdHPz3y2,Stephen Braun,[]
usr_JYzRAu7A9eTsXzAkP9DmbMDW,Quinton Schamberger,[]
usr_KuZRgon6fX7HbkqV3EQDeEnV,Barry Schmeler,[]
usr_NwJNcbziwjBnVP6SCHyE79rf,Ernestina Ferry,[]
usr_4H9AVN7iLcDRnTRvGjHY1x5F,Corrine Sauer,[]
usr_MUHu45snjqXLm5gk7V7DLXGn,Hisako Gerlach,[]
usr_23sRJ6EyKigSZpz2c4Q5PVpb,Debbra Mann,[]
usr_J9UFB3uffujDHGMkQGRy4jZ3,Dana Nicolas,[]
usr_JENTLJaQTjiQbacRcqX5j1dw,Jack Harris,[]
usr_KjzeoQZXnhMq5fepQbXRihkF,Aleisha Kub,[]
usr_Gqx5UfCS1HrpGBKuXozWxmtc,Flo DuBuque,[]
usr_9HSjvCWpfQJ8CeGXZ4MtfUZJ,Chrissy Ortiz,[]
usr_DsmxqwieuXjigXwTH55cFRWc,Cherrie Donnelly,[]
usr_68NN4uUe3iWuNKr761qBMz7j,Phil Grimes,[]
usr_KaKwWfHdw9m49jFAzNhEekVU,Marvin Emard,[]
usr_6Qeo4iYfo9MjCtUurHqzQsPC,Irene Feil,[]
usr_AQg6Wiz3VSjfpJCjAAEYGcz8,Juliann Ziemann,[]
usr_DDoTroQYd83FeWdik9FFHtC6,Alexander Kilback,[]
usr_GqLffjr3aXqYhN2m7TMkUp2Z,Jarrod Kris,[]
usr_N4G5ks6XhUWi61JinQvwVKjL,Gilbert Vandervort,[]
usr_29NboeyntAnY7R8Z1gjyuCcy,Casey Heaney,[]
usr_ExoMHDEbzLWApheotpFNK8YM,Dwight Boehm,[]
usr_D1KHRfzSyML5cryTKXAmPWz6,Eldridge Crist,[]
usr_HizQ6i4RqxiScDi9mgqZLmvG,Freddie Spinka,[]
usr_6c9YeMM4SC7x68tETWP7cSk7,Leroy Bradtke,[]
usr_KBab4REFeV263HNcdZrS7kkU,Arturo Runolfsdottir,[]
usr_9RdoyphzKYpmfJpzsJ3Daz9N,Vikki Schmidt,[]
usr_NaDmM9Zkd3DooWv3pLLAYsWQ,Alfred Stokes,[]
usr_3VNtvvR9UGWzwGP1fA1UmeS2,Consuela Senger,[]
usr_HQy55Vjp75WwsxuCwAA141sV,Sonny Carroll,[]
usr_4Wkcbmv1EyoxAvAzrSt6E26G,Joella Schneider,[]
usr_NGaC4KU52xGFd78dqBNZ57uT,Emmitt Roob,[]
usr_8P8HXNnFG5tcRXFHY99LQvp1,Emmitt Bergnaum,[]
usr_6nWN1UbForiFFUt4t6PQ8zAS,Jamar Hane,[]
usr_Cu9fLvzR7kTv24M4HiLmBTAD,Martin Windler,[]
usr_LJMr7jo2SefnUdGpFv32DsF2,Lita Kohler,[]
usr_hJrSQBHvdXWV15JANjJ6DFjd,Lilliana Sipes,[]
usr_BxrThKFSexuk7ZXJCQ5cXjUn,Ignacio Steuber,[]
usr_2LR7vjmufbc8UDQPosQZkboC,Luis Hoppe,[]
usr_BFXdaSFdtKG2TWAUBNoC723D,Katelynn Shanahan,[]
usr_KuxsqdNjk2XL8GyVSncVyeBE,Emogene Dooley,[]
usr_BurUDufQ6jkc7iRk5mxTvkkS,Weston Rice,[]
usr_JpmmmFu2Qz4J3dHJrWbM1nPc,Lane Franecki,[]
usr_7xHc58Wrv9kByGfyRg7frzqB,Stacy Watsica,[]
usr_8iEt8HtGuFRnqEb6Pgp3L5gS,Manuel Toy,[]
usr_EiQAsN7xHSYQ4Xj8xKqruLbh,Lyn Steuber,[]
usr_JbMYNiE3NrSe4Z7RiJX51E7m,Cheri Rice,[]
usr_3F2meeda2X8i95mGfNF8Qwnz,Leonardo Schuppe,[]
usr_5W3pCFdPJLV6KFXcHcDxNfjU,Roger Ondricka,[]
usr_4aMnukmcxdXJJBpZ1yL3pXqK,Wilhelmina Beahan,[]
usr_MwKRGojhhGCX6bLqYEuQHVsU,Anjelica Kub,[]
usr_LeNwrsM5jwYBUjbx7G4yW3GD,Donnie Funk,[]
usr_ExNvdcSMhimT8cvpsTsxyrDq,Laurel Anderson,[]
usr_NPjk8uqYf3tBz3Kauc74QLyi,Darryl Krajcik,[]
usr_GJzy3CTm1orEACnEPN6xLoT2,Toshiko Bergstrom,[]
usr_3FTPKPi3XuNVWGHBXjq2p9em,Aldo Reinger,[]
usr_DCwohmNBZULLy8TZiP3idvxd,Omar Murray,[]
usr_HZMN8E2utXDZfVuDQ15NYCY9,Jesus Hyatt,[]
usr_2UCvvidwkcXCkJzVVwzhZiiy,Mai Jakubowski,[]
usr_LCTzcp2WhWmniS8aa8GVRdoc,Korey Fadel,"[{""organizationId"":""org_Lmj4tzvawb8iUTGwCnWAL2iQ"",""title"":""Dynamic Quality Producteur""}]"
usr_75LoTJga7wyMseQeANEZzvoL,Harley Goodwin,[]
usr_LCWFwDn7mYEmLQC6tov2gGPa,Nicky Mayert,[]
usr_P76c5QvFP4XPDZMF1TRw4kHt,Valentine Dickens,[]
usr_UrJ6pZKpJVqtZE5rTKrwEyBr,Luis Fritsch,[]
usr_KHCkzog4ibtzkz9n8VXeVpcr,Deshawn Fisher,[]
usr_3Ur1pwcWiop4NidnvRfC6Vzc,Quintin Ledner,[]
usr_CthWmw4qr12JdoqZdGTzUMK1,,[]
usr_N6hUx5JKddYEMKh6oVt9EA21,,[]
usr_3t28gaB8Rnw6kGMbS8g3TnDS,,[]
usr_HABUaAzEnDtF6MePd1AtMHd2,,[]
usr_H9CBtSBjoEaKU7Vk1eXZF1Ny,Gilberto Stamm,[]
usr_4u4MtLugcvsk37mvQAzEvNof,Roderick Rolfson,[]
usr_6ZVb2eaBxwtF9DpG26Zccxu5,Terrence Walker,[]
usr_6HosenDUfSTHc1gs9hqjWbbZ,Ira Johnston,[]
usr_Mp12dKcA2BeFYHV6p5mrCLXJ,Nilda Muller,[]
usr_CmZtEkzpkoxSAKvmLCSmmoFm,Christena Crist,[]
usr_Dw89iVJAymAVrq2DAgY6Fp4T,Reinaldo Roob,[]
usr_LDtWhVpvsiG4wzNndFy5yYoK,Damion Beatty,[]
usr_G96WhvWQyJ4kmtgZDCtqp2VU,Shavon Smith,[]
usr_Q4ZbCU1CA7AidDC7UGCNWMUZ,Tula Bartell,[]
usr_JyUaMgibw8vR5SgiFvU6KpSg,Milda Ullrich,[]
usr_Nn1k6dZxKj6E6rT9ag1uATyo,Jeramy Purdy,[]
usr_FXySAorJqi1Xd97Gp6LnqSVq,Neil Leannon,[]
usr_1oJCwJ2cRzdCJfNbo42ECPBS,Paige Murazik,[]
usr_A9zNmypWaZZm4MwA1W7J8jEf,Ashlyn Strosin,[]
usr_FX8UosQJwwBJ1ZLVesnKVi2n,Marion Johnson,[]
usr_JQGDW7v2nK9fwXqpGvEHggcq,Moshe Kassulke,[]
usr_Pb6R8fTaRbNMYN1NnrNGxiWs,Faith O'Connell,[]
usr_8JBWf9Kr65GgE5x4unb7rruo,Coleman Lehner,[]
usr_7BcD429wrao6XSQTXETu3FXM,Ronnie Von,[]
usr_9gKue6meqaBWaPvrM4Ckr4Jq,Rosalina Konopelski,[]
usr_7JbXZj3U3GvHc1FczpenwRgE,Joane Lemke,[]
usr_F8vmDA2r6zEU94PXYhTPZoTn,Hubert Purdy,[]
usr_Auz5EncBUxxYBZ77G1mQHw6D,Nicholas Waters,[]
usr_xQXPUkPmbzGxDvUri5pyPv6q,Leesa Haley,[]
usr_J7gDZyXSqrzePRwSv4hDQyUi,Chas Paucek,[]
usr_vbEB2LKofApTQdfWscXb3sJz,Pamela Metz,[]
usr_NraPVukFXNF9VNjv5KcgLf4e,Norris Hammes,[]
usr_DR6BTyBehfRJf8htASoaa767,Nathanael Schuppe,[]
usr_L7jtTn1k2SiDvMkYEmEiU4sM,Kara Purdy,[]
usr_LPsuQjvYXLTxz5HbGjjRNoFr,Randy Walker,[]
usr_MfVXk24ogZjpAaWGi2TNdN14,Bethanie Kreiger,[]
usr_JMddspXLdXHDBYTF5LdrrDqW,George Gottlieb,[]
usr_NKbhAroFqGsUiCqNKn2ibqj6,Moshe Kuhn,[]
usr_FqLnX9uaL6WfoWfoGJbinJ9x,Layne Williamson,[]
usr_CaKjpfbBJiqmEiyCraZLkPGv,Loan Kertzmann,[]
usr_FkWfgz52gWkV31FfSZbYyBDw,Yanis Lacroix,"[{""organizationId"":""org_Lmj4tzvawb8iUTGwCnWAL2iQ""}]"
usr_4MBX4VHuecsEMuez6sfFeSxn,Mathéo Thomas,[]
usr_8VF6SQ64zDhkTNxFqbFGovGY,Valentin Carre,[]
usr_ECPZRnhYwcUBq2VCfUkpVGKf,Sarah Dupuy,[]
usr_DzRY7CF3Z6yRxpn9LGQNUJZM,Nathan Adam,[]
usr_DaMEUorkPfz3jPBLWkf517Lj,Lina Colin,[]
usr_GPPV3LomakW1Tm837FErmWvw,Ashlyn Moore,[]
usr_JTc7RL6exBUeCHfsRFAkBn3G,Manon Berger,"[{""organizationId"":""org_Lmj4tzvawb8iUTGwCnWAL2iQ"",""title"":""Lead Functionality Architecte""}]"
usr_ARc6WaAXZ2SgRhtnK5Sn5kBr,Brant Feest,[]
usr_ML87Ni2nWaL3yKc5F66xVnEF,Zoe Lemaire,"[{""organizationId"":""org_Lmj4tzvawb8iUTGwCnWAL2iQ""}]"
usr_KmRfzb3KDCPAeFDhdcQMaKzC,Katherin Carter,[]
usr_4MAts5taetK1u3cKCxUdvcuF,Minta Okuneva,[]
usr_3Mm7S3EHBQCJ5rUHZmyRQ5Pg,Esmeralda Volkman,[]
usr_BmVWzeewi6uqv4sf3ZqQzRmR,Noémie Rousseau,[]
usr_BReaoK3itQWxPWSg16Qzs5pS,Marie Dubois,"[{""organizationId"":""org_Lmj4tzvawb8iUTGwCnWAL2iQ"",""title"":""Direct Quality Assistant""}]"
usr_LTuofDbbLW1uLuSmLtxHwYLD,Kina Schimmel,[]
usr_EzZ1wNJykedSBrpDbX2xGXFj,Napoleon Gutmann,[]
usr_P6txQiTUs7spHM1uW2NvJFfg,Vance Price,[]
usr_K6BqSx6USBJzu4cX5ySx6pvA,Rolando Kohler,[]
usr_L9AoxL6qEyL9ttV72a9pFKYo,Elissa Hoeger,[]
usr_3Whf4tk5Ece9vHEksnveYbWL,Takako Kessler,[]
usr_GUVW7FjnWaPqn9DfkjqhJffM,Guillermo Yundt,[]
usr_HHb59Xzo4JL16tQ84kjDRAuE,Cortez Brakus,[]
usr_FatX1eZf1boCmAsPwGX78VBq,Bobby Flatley,[]
usr_JE3FRyM8nC6jiHyM5KB5VEEr,Domonique Hand,[]
usr_GVUf5S1uT8c98BFZUSF8nPUK,Robbie Thompson,[]
usr_NT7x8sDfAwAQK1cpfQ1NkMzu,Pierre Hirthe,[]
usr_6jbwKbY74ASi74K7T3a9Qat1,Stan Greenholt,[]
usr_3F2WJJEBqRojox3JXMJ8Jk1a,Jon Hilpert,[]
usr_H5ifHo5hNB7TJFxmiMjCwDvz,Carlos Kiehn,[]
usr_EFikyhJ1wQCBAR5VfogGc3nG,Jimmy Greenholt,[]
usr_NBgtrTQdQS5ifxLFV41FebKZ,Shawana Sipes,[]
usr_AADwUWL8kAH9drLv3m52Mc2k,Gisele Blanda,[]
usr_KWgU9dincfpFjBggjzTeVarM,Wes Dickinson,[]
usr_2GNQS9nP6sujoZYpkkXJMBzT,Henriette Wyman,[]
usr_9UnCcqAEtHNVGK9Yt7yYz5f6,Rolland Witting,[]
usr_CgGpGK918B44geuczWkhFAKZ,Gustavo Johnston,[]
usr_7sKGRFE22d4G8jiN8j1H1Ntv,Sherley Stamm,[]
usr_GKf3ezFFxDskRxp9DnQoTcQS,Lamar Donnelly,[]
usr_DhPcs9p77bQSgbu9vGmx6p4M,Reynaldo McClure,[]
usr_Q66gUg1cAC2aNkUtpuLYJLVQ,Sonny Fisher,[]
usr_nR7gCzr4YtFi6uDSZAqNP6W7,Kayla Rath,[]
usr_Jw2Avkrb9JwBVBxzKofvWKZ9,Logan Osinski,[]
usr_4SFtDySyJercEhkdcQg7H1Rk,Rolland Mitchell,[]
usr_HCrur7JFQQq93QXc4PQ2bKAp,Leon Morissette,[]
usr_8swmvFCgVJoYDDTUPDvHKaRs,Ashly Simonis,[]
usr_FswhesSXcez1YyQXfmfDNBof,Jeremiah Treutel,[]
usr_Kzj496AmhDuLAwpRt69TNRKH,Alfonzo Ziemann,[]
usr_NXc48iRJ6CccRgqMFcrAkBQ6,Arlie Halvorson,[]
usr_DZqJciZRwKSsiMsc9Rr3TVZ8,Jody Goldner,[]
usr_9xLv9WmzSSmzg3K2qLTcVJkw,Alexis Hagenes,[]
usr_hGJxR6Hmzyf1TCgKVRncVDUP,Jean Barrows,[]
usr_CQvMbLY5DqV3t2YK8P58JimL,Linwood Franecki,[]
usr_DK8M4dUNV8nTkxx84qKXWqoH,Cameron Wolff,[]
usr_7jqZRL15e9XUjvWuUU6KZyG4,Pennie Kemmer,[]
usr_4wVgWpiGQ69LHceCET9qd9Jm,Jamar Borer,[]
usr_9xsAcWCYGUyhyCM5QPB3aNfm,Raul Conroy,[]
usr_PUHF48pCTtKYocyZzue8ravZ,Clint Huel,[]
usr_BgAtC8nd6s9qZL3q1heaDShz,Daine Veum,[]
usr_LUMHmur1EY9X9uhNnp7hMWhJ,Jan Schneider,[]
usr_EQy6LSGgH6hxijxaL5hPFfwt,Jaimie Emard,[]
usr_EBRxZ6q7UD41R1RiPdotJyy5,Mahalia Parisian,[]
usr_51uvhxGHjDrkCtGNfsw8tYev,Apryl Predovic,[]
usr_6PL1J4AJMuJLYjfko3U28vLe,Colene Block,[]
usr_F1Wu5XzqyCbHpnuHHe4G5yTs,Robyn Crist,[]
usr_FA4TCbt6gy1V54P5eXArcLe9,Marcos Lueilwitz,[]
usr_CvW7XTizf8DJy4N6hVMgFpgE,Ezequiel Bernhard,[]
usr_2bGTnVbttsEJxkgdV1RC2Biu,Janett Reynolds,[]
usr_An2A8UnrzifiwmUH1TLpQ1UE,Madison O'Keefe,[]
usr_MmyYvn8oxkZuA4c9eBETkUnY,Theresia Botsford,[]
usr_AmAHuiKLdc2Fn8M8jKTrChn9,Loretta Bradtke,[]
usr_2WNWT3KTLpYXyiaLSRH5tzmJ,Percy Wiza,[]
usr_26V8KT1pSK8FL5Ac9KRKx5ji,Marvin Kemmer,[]
usr_Q2SeaSSsWzYT8xLw3wR43xQs,Merrill Ankunding,[]
usr_5fXwnaprZ4L3Q7QcQh3nvzve,Floyd Hilpert,[]
usr_NwqPuNrpSeZe8qNUG1y4PKQF,Rubin Kozey,[]
usr_Cm6wmjZQRZYfQWdkcby9NfsR,Waldo Rempel,[]
usr_AtPSLe5dXAwi8Y1jvcgGpQnN,Rubin Legros,[]
usr_FwRLVaRVcYvFsrJSkGDAaHom,Nakita Lynch,[]
usr_DQZ2sqssqX1wPHgrJkUV83Sf,Cassondra O'Connell,[]
usr_8ZMoFC5nDiQLPE37tLwPbPGd,Porfirio King,[]
usr_7AWnkwq3K4xABZmT9kDf7GNw,Shawnna Collins,[]
usr_CK4ayYP6u3KPUkK1x3GnwCMo,Bess Weissnat,[]
usr_PusCBfYkkCbE8t2gN4QtsZR7,Jolyn Hyatt,[]
usr_89s1kSLWHU5ZP3tyTUjF8yrD,Tawanna Cormier,[]
usr_TCeyQK5PnCYyrDJj27gY2UNr,Aretha Kirlin,[]
usr_Af7kVeuXNRNBEEUCjC64C9eC,Ross Mayert,[]
usr_Aur1UMMvWsrip2WR4nSaftA7,Jacquelyn O'Kon,[]
usr_HJcZucvWC56jLFCVjkHBCeKN,Freddie Brown,[]
usr_2S1P6sqDUszC1GqyL4hU6w45,Ilene Stiedemann,[]
usr_Dfte8pRffeJ7qx8me7niMGb1,Elton Leannon,[]
usr_FgRGs9HLefaYZJ9GgstkKaUU,Sal Nader,[]
usr_4VJz3NxxjN6v86KcN5uVjmio,Karima Brakus,[]
usr_GqePNpHyejVPAJhaWmFsin7P,Miriam Koepp,[]
usr_D2fz6EE8EFMrK4i775QjHnYL,Lincoln Gutmann,[]
usr_J9ogSr6XrfEWitAieoBFPx4Z,Donnie Lakin,[]
usr_5x2VEwirEVhPMna1qBVBqxGU,Jacki Schiller,[]
usr_3FTu6KAeRnawGqtgVLjddggx,Carmelia Hartmann,[]
usr_5ANJ6spCcafyP6fhP6cB2Zio,Brunilda Keebler,[]
usr_JqiwD3kbSbPpPveEdXuPMXYB,Bernardo Senger,[]
usr_Lpndjjvw2UuBBqnyffL4e3xa,Viola Walter,[]
usr_AKGf27KtqDmMECXhKQUfkCoQ,Haley Treutel,[]
usr_DauvuV4g9kdqg7bNiUJMFE6K,Angelo Murazik,[]
usr_83k6NeAeSeYzAoo8S81AzKyL,Sharilyn Casper,[]
usr_GN5K6cWmBBGyAmqJntQ2uFcf,Clarice Botsford,[]
usr_87j995yKiwE8uBrPDaQykf5R,Yasmine Robel,[]
usr_49Et7ZJ8vshugGMm1m2arxhH,Chance Feest,[]
usr_8uB3TdDu7owNDTDdAUteDv83,Brady Wunsch,[]
usr_2spev2d15aafGyRAkUYd6gY3,Mary Jacobson,[]
usr_JxgJyNcTmQjgJhjAbHZRuWJ9,Clayton Nitzsche,[]
usr_8hoDN6FeRgT4bBMS1DMqzUGs,Chelsie Bergstrom,[]
usr_NGy9aGhuJZYZoWB5Fn5nrYyJ,Jack Kuphal,[]
usr_A5pMsGoVDUcaXxcnVruaVDgB,Reid Koelpin,[]
usr_FSbtoKjSz6Xr7YWqKLgmVRas,Ngan Toy,[]
usr_2miUXB3mmZBnvLSF8QCPbJ6w,Chet Mayert,[]
usr_NTMSSec7phBPkd3RtiAtXtNP,Nathaniel Larson,[]
usr_9btocNuC7M9JZqvXzmiVjBaC,Loyd Kuvalis,[]
usr_6Ry1qGV7RDY8A7WMPUxjL7sQ,Bruna Gislason,[]
usr_BMMJN7dETTrpQ3CKxnnMt7Jv,Federico McClure,[]
usr_9j2tM2E5tzsuDEQV9GVc8vLz,Marty Ankunding,[]
usr_JqzBbnxXDZZWnz7EKAu51ApY,Leo Daniel,[]
usr_E5kZ1bQrsi2GSZs8VFexECbg,Hiroko Ward,[]
usr_DwQPDiG5peX3mwhCUDx7FTZu,Tracie Crist,[]
usr_AomZgV91GNZ6JXRjj29jYjk2,Juliann Mayer,[]
usr_2LFjPDYpn1LosTMz6vKPT9Cv,Mayme Mitchell,[]
usr_6vpseXRA3RZUpoyZXhS4H8RK,Joni D'Amore,[]
usr_3pQ9oZdPdzq5pLbKkww3vfmk,Norberto Mueller,[]
usr_2efKKPNfdaKZ2vomTM2bWgBC,Corey Sauer,[]
usr_EF5dhoB2kB8gkt2xgJareLco,Williemae Wunsch,[]
usr_77e69NuHnDy82DMZN8zfyoDR,Julio Wyman,[]
usr_BEsmzfoTZhQMWfX6uGm62VK5,Isidro Medhurst,[]
usr_DamT1FLkRncskgYkrTkPcfkM,Hiram Grimes,[]
usr_JuaPqP9UVMMzVG5rzUcerjZg,Nathan Kunze,[]
usr_PftFCjJRocniu7Fqm9mXXoFN,Eldridge Pacocha,[]
usr_BbdWY8acCsj2CGjPR9pVEFkG,Rodrick Cartwright,[]
usr_E7mc37QheMCEsaLE5cojaWVw,Eldon Labadie,[]
usr_3bHMZUBCYpsAqoTPmJ1HzjKv,Sharron Rohan,[]
usr_JNHDGRMMM6yZVyHXXwPgzUSi,Mac Lowe,[]
usr_3rGFuWWRFT66tiGCuKLH6tcb,Ashlie Cassin,[]
usr_G5vGhMpT2UnD61MESqomwBsb,Brice Ziemann,[]
usr_BnDAvNDk69MErchswRCHNhP3,Galina Tromp,[]
usr_52atnQKND4FbdqseGTRZtdoM,Timmy Huel,[]
usr_KfQ3au82cFxSdgpW5jpkDfCu,Seymour Pouros,[]
usr_Pb8DhCRVVwwoqkJ2UbW5eMAE,Danny Stamm,[]
usr_ZFugx8pYPwRdsdvz62m4VQ6y,Alicia Bergstrom,[]
usr_8e6BzBH63K5mqkWdrGUjHBA3,Todd Grady,[]
usr_LFCu7jae5QYB3HNHnan3K8bM,Yoko Pfannerstill,[]
usr_AYdF1x9d2b9tnCUtqavXV9DT,Damian Mertz,[]
usr_PKxotTV9yNoZiYm7wxyY3fiw,Joanne Trantow,[]
usr_KniChb4bHtvxHc1TULCSS1aA,Celinda Harris,[]
usr_KeLBYHkbDDDfHcM63ooD2Yzz,Ryan Robel,[]
usr_EYZKRXckXJ7S8mMkjYeAcbXp,Marian Spinka,[]
usr_2ksK1A9WE9ARFrUfAgXm3VyB,Donnell Hackett,[]
usr_7qBXNzt91Qjw9jooE4NWGGWm,Clarita Hamill,[]
usr_J525BKVMGdsBrMcDyqc567Wj,Lindsey Bahringer,[]
usr_F3kdmPfJiopbrvdBSsoY2Jmt,Nadia White,[]
usr_8odYSY9Bf7DLKF8ztnCSr9r6,Elvis Quitzon,[]
usr_5mFgjkZpBnmme1xBzDQHTAR9,Felix Cassin,[]
usr_KLa5HPYwmBvwfM1UAHZXsA4x,Adela Bosco,[]
usr_7EbGgyk8MxMQSbwzc7surzCD,Roland VonRueden,[]
usr_Dzc5aCvtiiNhErjyASBjY79q,Nickolas O'Reilly,[]
usr_NaFxMffxBfYAkfDZhCmAyhHW,Carter Kovacek,[]
usr_4gaiD7D5N9VpiMa9viYLwMe8,Wanita Greenholt,[]
usr_D2jxK1avQkkAzYD7sJyqHoWE,Onita Oberbrunner,[]
usr_EQQfQ1TDnBeduFr96DankL1y,Lauryn Romaguera,[]
usr_HHLnojLmnZzjRTsDNM3PgAcd,Tyrell Waters,[]
usr_KJ5tXe8bUx4Wm859V2TawL2A,Kara McLaughlin,[]
usr_5hWnqFWrNztPygQVLeg1AsgR,Otto Swift,[]
usr_JGGskHupRY8M1snpCrgR9WBf,Willow Schoen,[]
usr_6CwbmEKvtbQBp55fG4yBbyZt,Fatimah Mills,[]
usr_Htag2qJoDDLYNFwbbASBtBXr,Shantell Abshire,[]
usr_BxwEVzPXAcYC6w7ygR9mqH6Y,Horacio Heathcote,[]
usr_6ojK31oshcpTFKorAH3Z7ZdG,Zola Parker,[]
usr_Jk3BAPRhap9aLHauGSpAzsJs,Cornell Daniel,[]
usr_78ah3EXyJ1dZT7QTNsgCrKv1,Buena Shields,[]
usr_Hb9kDDAMyFCoaYimkD1ETYD9,Antonietta Dibbert,[]
usr_J6jGv2Wd8R7ecqMZC7XeZ4s2,Lashanda Effertz,[]
usr_SZHjDFhnvXKKNoAS2mDEqzev,Tyrone Johnson,[]
usr_EDSx19Ho539GDEKVwbQjrLi2,Darren Ritchie,[]
usr_AqpA6etNenMHowtgPxn3vjco,Santos Hudson,[]
usr_9cERVnd4jJewry6hmQZCyhXn,Cassey Tillman,[]
usr_8dfbdSf38AGjz29N5wU3suoe,Nelly Monahan,[]
usr_Ha3QWQgSkiTq57kvGohATdjZ,Venetta Kirlin,[]
usr_G2agJYJZd7X12hha1iWLf3Qq,Tabitha Leuschke,[]
usr_Q3dV15ftZcezR4aban359ZRx,Toney Kirlin,[]
usr_3gFLftdonZz97scFxf89mAS5,Elisa Langworth,[]
usr_CYNhVDYWUpuknUnR1jtXMti1,Everett Bailey,[]
usr_Mbhd75yoJ9583GftEtC1cKrE,Spencer Flatley,[]
usr_9M7DRY3ugjpT9Yxa4D7ut56X,Patricia Kshlerin,[]
usr_2gAR6SJBRhLRQAdBrNhKiu8D,Lon Konopelski,[]
usr_CwSr5Pd2q6ihX8N5qxj1fr4B,Charmaine Leffler,[]
usr_Kt83hyDd8gKox3Qh8htUa7ns,Danilo Jerde,[]
usr_DoaxnRH8XtHYK8pZJqEjc2fq,Yuki MacGyver,[]
usr_2KMywf8NrNLuk3zQP2rKxRmm,Santo Langosh,[]
usr_7Ea2AAJ7f5pBb28tWnyrqkUx,Dianna Tillman,[]
usr_D7iFjqfFVNAXaiPh8FRaqW6j,Shonna Bode,[]
usr_5Zn6XnDmG8XRpLeCtUg8a75z,Charis Koelpin,[]
usr_2c9wTBBRSWYYTAhqizKzQWJr,Rosella Waelchi,[]
usr_CBZsti7FNU2Hd3AcRzxExD8k,Carroll Kuphal,[]
usr_3hJTLphLtJo6JdTaGYkJz7Jd,Minna Kshlerin,[]
usr_4DXFULu6A116zjF7uv3mPgNP,Booker Rosenbaum,[]
usr_HWrv8THtKABG2WqyGgkoJUqv,Julian Huels,[]
usr_BXNxTspAhHZCBCTztbfFwNBf,Weldon Morissette,[]
usr_Cn11Q2M7MYrcegab7dKD4VeL,Fermin Beier,[]
usr_PqgzxTQ1FnkL3baZTWQxP6hS,Evan Prohaska,[]
usr_EFJjDA7wS2smim9hJJXMP8tK,Tandy Langosh,[]
usr_Mas1Mae5Wz2sWCanQYrGNHSk,Rachelle Denesik,[]
usr_FTComm3oaNkxS2f1FxPiJMUx,Javier Jacobs,[]
usr_PtvUfjH3GZn1vZXJVnKTFSJ9,Ariel Ernser,[]
usr_NA9k2oUmzG1FwZZftg2998mC,Sal Zieme,[]
usr_PJNAyzfKBdc9rUB6s7Bdoay3,Floyd Leuschke,[]
usr_NFuZhQDjwYnuKu9vbEqMUz85,Garfield MacGyver,[]
usr_Mdu22JiqQRRnRHWLf4UjjLHe,Eldon Moen,[]
usr_M2iYTZfcXzTpEtDD6xNNTc6X,Celia Trantow,[]
usr_5fpGeUPFzXbPFFXzXK4tWgiy,Ernesto Farrell,[]
usr_EBMxCuyxxnJKb1EMR2dzde5U,Emmy Lueilwitz,[]
usr_GRLCvefmQwyxNxJYeR7Zwgkc,Paulina Pacocha,[]
usr_MMAzizKkvec6SLdFm8ahyXPJ,Ernesto Tremblay,[]
usr_C17oM5Z8bkKJXru1oCcVBzJx,Reyna Gibson,[]
usr_4piqivhUFZjSQ923whnRpGUS,Ellsworth Erdman,[]
usr_KSnqnJtN91m5s3sHvPAjeYyQ,Clarence Langworth,[]
usr_FSTegZm7uCtp1xLTKvJXE4P6,Chu Boyle,[]
usr_H3VEqQJSmvjEntd2BbXTpJXg,Wes Mraz,[]
usr_7QYunvsAPNmyRbGRH9tTMXyt,Michel Green,[]
usr_4YjUgjeAhsoE126vmLFejuZx,Wilbur White,[]
usr_JXLNmRqSVQsjcbmK1ZMBS4Q9,Karl Kessler,[]
usr_LTDRJzgr6jy6TWycnctVhgZx,Waldo Lynch,[]
usr_9boqB2HBp56C7fgnYQD6P6kq,Kami Fahey,[]
usr_GejAHER6b58i3gVvB4jFa1Su,Wilburn McCullough,[]
usr_B8gFKZGzAmPiz7tP8pdNNA7t,Gary Cummings,[]
usr_CPs2M9AEJwJcqkLzBK2JZJMr,Kerry Runolfsdottir,[]
usr_Bghxz6kKAmYLJgUMbQ2gqVSk,Avery Von,[]
usr_4hxXN41F54C5RVH7x8hbZZG9,Sondra Ritchie,[]
usr_2ATxRu4Hr96MZNguquw8Hr1b,Rosita Jacobi,[]
usr_CKydRaxy6Bs9c9b2qfRHB6U8,Millard Marquardt,[]
usr_JAW28YSaHAsFWN4nG8vFSBYA,Damian Braun,[]
usr_Mg8q9223urxFLzEJ45xXNWYi,Ernest Jacobs,[]
usr_LUFWogUGcc7TGPTUDV2oSoCa,Avery Leuschke,[]
usr_4xU1dN13b6apRtaDtV1Tcf8y,Aide Mayer,[]
usr_eY9XBi3KXpA6FTyR1Swdq9Yg,Tarsha Weissnat,[]
usr_AicBmTjKMcbJV5kUJV8r8DzP,Laurena Barrows,[]
usr_Ci9PRVquV497uq2ECAM7yzDN,Latrice Bode,[]
usr_ApdWcDeiEByaaQvnGDFVWAJ6,Lonny Mills,[]
usr_6n7csFTBWATXpuZ8853N5JLw,Aubrey Balistreri,[]
usr_5YhJtsF7q3rAmrpLYHGJ4hTN,Arnette Streich,[]
usr_4ASA37Y4NwyYG5WRTzRz6ykj,Chance Kilback,[]
usr_3ENu6wRgtEZg6Q8Sp88BKk3U,Brenton Schmidt,[]
usr_5HouCa4QhcRcEPqXPg6zpfeW,Jeanice Ratke,[]
usr_EwQSiEDR3SPBwUyZ4pkyTJE8,Lanora Kertzmann,[]
usr_FkkCdomY4ncFPqY6HCiwPEh3,Elsie Bogan,[]
usr_P2C7oX12q9npBCuuZYSUkUGL,Vernon Erdman,[]
usr_CCLU3vPGBTgExGLY4USk2mrg,Brady Terry,[]
usr_6JVDK1sXevyrKZeUspaKM6ci,Ruthanne Bahringer,[]
usr_JuKZGM9PVkTUbM2R6KE9mbYp,Melodee Gerhold,[]
usr_BDYBaXmFWWyPTnUactao1Uk9,Gale Howell,[]
usr_Jkjv7BBPPDU12UfKMuJRnXYW,Stacy Funk,[]
usr_FchP1n4h84c9FWqE8Sr1vTXg,Neal Collier,[]
usr_KqeMNVifp8EjGf4Ucetuaofq,Layne Mraz,[]
usr_LKDP1wQ8ZGJn7jm7nHgXhNdJ,Johana Douglas,[]
usr_6ob3hZYFz12DqXGmT3M8SXyq,Tod Klein,[]
usr_QKqBZ78h38JsGyrtcihBCGz2,Elvin Morar,[]
usr_JuPHtzMRprabiUW8mzRiKLC1,Chi Grimes,[]
usr_5E8xGvojst1LTtfVXiN8sXG9,Melina Miller,[]
usr_8p9ab4ssCshTMpYucZc2t8Fx,Jeanelle Morissette,[]
usr_MAvQJpjzuDt4Fv14HNcvFcmZ,Ira Pagac,[]
usr_7iLdjhkm5XrVV8TRrakCZgCj,Jesse Lang,[]
usr_8MmEHSPc3MbbEBFXkkNnZvX4,Barton Rutherford,[]
usr_APSEFmAbLDvJNtz4icp3YhEg,Tonita Bruen,[]
usr_NuFRnk3114Ype54A1aKpLr74,Blake Hane,[]
usr_9nkkDhkyxhHkPfGgLKRryZBB,Lisa Kemmer,[]
usr_CesCrM3WGzeEUjNgMFWJyo3x,Major Bahringer,[]
usr_DYVP6wcfDu4DR9a8nLNqUEqm,Weldon Mertz,[]
usr_CX8p9PQxZ7oDaXNfVoAFRq9Q,Manda Becker,[]
usr_HQMooGhbR3YCvqba8VMQ98h6,Michell Hudson,[]
usr_MzDm8YsvXMCoenJsyd4hesfu,Taryn Smith,[]
usr_AKh9thMLESrzXcrpggP2vDmX,Dario Satterfield,[]
usr_HNFJ61thPrQ1CuR9R8bxMHDx,Olen Legros,[]
usr_JcXhy9SZPc1CSEnE6Rf6GwmC,Ward Stoltenberg,[]
usr_A5aDpYXbSpg9gV4xSAUzftGa,Lou Kris,[]
usr_FdUJNtwPaQa1HeB53kcN236s,Huey Spinka,[]
usr_922Btk8FnpPa87k45nr17pmS,Dewey Effertz,[]
usr_Nyr7J5Mw3itKbFcrzFUhe1qz,Celeste Graham,"[{""organizationId"":""org_Lmj4tzvawb8iUTGwCnWAL2iQ"",""title"":""Legacy Creative Directeur""}]"
usr_AMFR7a2SdPf1T2refkYc1vRe,Roderick Reichert,"[{""organizationId"":""org_Lmj4tzvawb8iUTGwCnWAL2iQ"",""title"":""Internal Accounts Manager""}]"

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_J6m421zmtfUYFK7uuk9WMDb6 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "9EWegrDmb3pctnGVz9BD3BuZ"

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

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774840449,
  "expired" : 1750861240447,
  "exportOperation" : "createUserExport",
  "id" : "exp_J6m421zmtfUYFK7uuk9WMDb6",
  "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
  "jobOperation" : "purgeExport",
  "searchQuery" : "",
  "size" : 34809,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 733,
  "updated" : 1750774841244,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_EQ8ay9gBqRKx5gNJ8315kq8Z&items.id=exp_EQ8ay9gBqRKx5gNJ8315kq8Z&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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" : 1750774851580,
    "expired" : 1750861251577,
    "exportOperation" : "createUserExport",
    "id" : "exp_EQ8ay9gBqRKx5gNJ8315kq8Z",
    "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
    "jobOperation" : "exportEntities",
    "searchQuery" : "",
    "size" : 0,
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "totalItems" : 0,
    "updated" : 1750774851580,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
  } ],
  "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_3tB9ABKqRrwPMZbUvw4eK6Wf&items.id=exp_3tB9ABKqRrwPMZbUvw4eK6Wf&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 167

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

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_EnxmTt1RheQbnEGczB627hk9
ETag: "6LwpxodE5SVcKUxJbrh3woca"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 582

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774831305,
  "expired" : 1750861231303,
  "exportOperation" : "createExportExport",
  "id" : "exp_AAD9oYpCrqe6yQFvnXjxprL3",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=exp_3tB9ABKqRrwPMZbUvw4eK6Wf&items.id=exp_3tB9ABKqRrwPMZbUvw4eK6Wf&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774831305,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_3N8xS9FnQrEA6KS7fVDXTep8/groups HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 1429

{
  "name" : "Reactive executive extranet",
  "description" : "6 étage, 3573 Place de Presbourg, 21910 Dijon",
  "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_GL8T4KT2ugZhkpdr1NRV9AaY" ],
  "layoutSelectionMode" : "listOrNull",
  "allowedLayouts" : [ "lay_MC2V7R2SwRgBfXCCDvbYCcsi" ],
  "createUserAuthorizedGroups" : [ ],
  "updateUserAuthorizedGroups" : [ ],
  "deleteUserAuthorizedGroups" : [ ],
  "viewUserAuthorizedGroups" : [ ],
  "createWorkflowAuthorizedGroups" : [ ],
  "updateWorkflowAuthorizedGroups" : [ ],
  "deleteWorkflowAuthorizedGroups" : [ ],
  "viewWorkflowAuthorizedGroups" : [ ],
  "groupedInvitations" : {
    "mode" : "disabled",
    "activeDays" : [ "1", "2", "3", "4", "5" ],
    "sendingSlots" : [ {
      "time" : "08:00",
      "zone" : "Europe/Paris"
    }, {
      "time" : "17:00",
      "zone" : "Europe/Paris"
    } ],
    "nextCheck" : 1750774557660,
    "lastSend" : 1750774557660
  }
}

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.
groupedInvitations.mode String optional Whether or not the users inside that group should receive their notification one by one or grouped.
groupedInvitations.activeDays Array optional The days of the week when grouped invitations should be sent.
groupedInvitations.sendingSlots Array optional The sending slots days during which the grouped invitations should be sent. Contains time and zone properties.
groupedInvitations.sendingSlots[].time String optional The time when grouped invitations should be sent. The time is in HH:mm format.
groupedInvitations.sendingSlots[].zone String optional The zone name associated to the time when grouped invitations should be sent. Examples : Europe/Paris, Europe/London, America/New_York.
groupedInvitations.nextCheck Number optional The next time grouped invitations will be checked for this group.
groupedInvitations.lastSend Number optional The last time grouped invitations has been sent for this group.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_3WH8Z4Q5N6dT8866e1oWrHff
ETag: "ALCVZtnRByXRpPDykUn81Ujm"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1533

{
  "allowedLayouts" : [ "lay_MC2V7R2SwRgBfXCCDvbYCcsi" ],
  "allowedTemplates" : [ "wtm_GL8T4KT2ugZhkpdr1NRV9AaY" ],
  "createUserAuthorizedGroups" : [ ],
  "createWorkflowAuthorizedGroups" : [ ],
  "created" : 1750774557664,
  "deleteUserAuthorizedGroups" : [ ],
  "deleteWorkflowAuthorizedGroups" : [ ],
  "description" : "6 étage, 3573 Place de Presbourg, 21910 Dijon",
  "groupedInvitations" : {
    "activeDays" : [ "1", "2", "3", "4", "5" ],
    "mode" : "disabled",
    "sendingSlots" : [ {
      "time" : "08:00",
      "zone" : "Europe/Paris"
    }, {
      "time" : "17:00",
      "zone" : "Europe/Paris"
    } ]
  },
  "hideWorkflowRecipients" : false,
  "id" : "grp_NNV9DvAgAKTz4PM89fSHKnTz",
  "isDefault" : false,
  "isDisabled" : false,
  "layoutSelectionMode" : "listOrNull",
  "name" : "Reactive executive extranet",
  "templateSelectionMode" : "list",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updateUserAuthorizedGroups" : [ ],
  "updateWorkflowAuthorizedGroups" : [ ],
  "updated" : 1750774557664,
  "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.
groupedInvitations.mode String optional Whether or not the users inside that group should receive their notification one by one or grouped.
groupedInvitations.activeDays Array optional The days of the week when grouped invitations should be sent.
groupedInvitations.sendingSlots Array optional The sending slots days during which the grouped invitations should be sent. Contains time and zone properties.
groupedInvitations.sendingSlots[].time String optional The time when grouped invitations should be sent. The time is in HH:mm format.
groupedInvitations.sendingSlots[].zone String optional The zone name associated to the time when grouped invitations should be sent. Examples : Europe/Paris, Europe/London, America/New_York.
groupedInvitations.nextCheck Number optional The next time grouped invitations will be checked for this group.
groupedInvitations.lastSend Number optional The last time grouped invitations has been sent for 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_3tjnsjQNsBe3AmFjPMkUmsqG HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "allowedLayouts" : [ ],
  "allowedTemplates" : [ ],
  "createUserAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "createWorkflowAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "created" : 1750774342421,
  "deleteUserAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "deleteWorkflowAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "description" : "3 Avenue de la Bûcherie, 10606 Calais",
  "groupedInvitations" : {
    "activeDays" : [ "1", "2", "3", "4", "5" ],
    "mode" : "disabled",
    "sendingSlots" : [ {
      "time" : "08:00",
      "zone" : "Europe/Paris"
    }, {
      "time" : "17:00",
      "zone" : "Europe/Paris"
    } ]
  },
  "hideWorkflowRecipients" : false,
  "id" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "isDefault" : false,
  "isDisabled" : false,
  "layoutSelectionMode" : "anyOrNull",
  "name" : "Enhanced client-server methodology",
  "templateSelectionMode" : "anyOrNull",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updateUserAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "updateWorkflowAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "updated" : 1750774342421,
  "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_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "viewWorkflowAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ]
}

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.
groupedInvitations.mode String optional Whether or not the users inside that group should receive their notification one by one or grouped.
groupedInvitations.activeDays Array optional The days of the week when grouped invitations should be sent.
groupedInvitations.sendingSlots Array optional The sending slots days during which the grouped invitations should be sent. Contains time and zone properties.
groupedInvitations.sendingSlots[].time String optional The time when grouped invitations should be sent. The time is in HH:mm format.
groupedInvitations.sendingSlots[].zone String optional The zone name associated to the time when grouped invitations should be sent. Examples : Europe/Paris, Europe/London, America/New_York.
groupedInvitations.nextCheck Number optional The next time grouped invitations will be checked for this group.
groupedInvitations.lastSend Number optional The last time grouped invitations has been sent for 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_K9op8RHeG8yMcrejt5dXMBpc HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "8CLdiXaqJa5tvWcxLFWH27tK"
Content-Type: application/json
Content-Length: 1433

{
  "name" : "Adaptive grid-enabled projection",
  "description" : "6003 Quai de la Harpe, 28088 Vénissieux",
  "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_PBsJ22KQSsC9g9yg2yhrcess" ],
  "layoutSelectionMode" : "anyOrNull",
  "allowedLayouts" : [ "lay_NJLFadDQWMLivxzujcJ8YzGV" ],
  "createUserAuthorizedGroups" : [ ],
  "updateUserAuthorizedGroups" : [ ],
  "deleteUserAuthorizedGroups" : [ ],
  "viewUserAuthorizedGroups" : [ ],
  "createWorkflowAuthorizedGroups" : [ ],
  "updateWorkflowAuthorizedGroups" : [ ],
  "deleteWorkflowAuthorizedGroups" : [ ],
  "viewWorkflowAuthorizedGroups" : [ ],
  "groupedInvitations" : {
    "mode" : "disabled",
    "activeDays" : [ "1", "2", "3", "4", "5" ],
    "sendingSlots" : [ {
      "time" : "08:00",
      "zone" : "Europe/Paris"
    }, {
      "time" : "17:00",
      "zone" : "Europe/Paris"
    } ],
    "nextCheck" : 1750774565265,
    "lastSend" : 1750774565265
  }
}

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.
groupedInvitations.mode String optional Whether or not the users inside that group should receive their notification one by one or grouped.
groupedInvitations.activeDays Array optional The days of the week when grouped invitations should be sent.
groupedInvitations.sendingSlots Array optional The sending slots days during which the grouped invitations should be sent. Contains time and zone properties.
groupedInvitations.sendingSlots[].time String optional The time when grouped invitations should be sent. The time is in HH:mm format.
groupedInvitations.sendingSlots[].zone String optional The zone name associated to the time when grouped invitations should be sent. Examples : Europe/Paris, Europe/London, America/New_York.
groupedInvitations.nextCheck Number optional The next time grouped invitations will be checked for this group.
groupedInvitations.lastSend Number optional The last time grouped invitations has been sent for this group.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_8QmQMhWfJtunYi1Q3oi7zSSc
ETag: "Gqs4QoFvEQGNr8ougoqjEeNr"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1565

{
  "allowedLayouts" : [ ],
  "allowedTemplates" : [ "wtm_PBsJ22KQSsC9g9yg2yhrcess" ],
  "createUserAuthorizedGroups" : [ ],
  "createWorkflowAuthorizedGroups" : [ ],
  "created" : 1750774565227,
  "deleteUserAuthorizedGroups" : [ ],
  "deleteWorkflowAuthorizedGroups" : [ ],
  "description" : "6003 Quai de la Harpe, 28088 Vénissieux",
  "groupedInvitations" : {
    "activeDays" : [ "1", "2", "3", "4", "5" ],
    "mode" : "disabled",
    "sendingSlots" : [ {
      "time" : "08:00",
      "zone" : "Europe/Paris"
    }, {
      "time" : "17:00",
      "zone" : "Europe/Paris"
    } ]
  },
  "hideWorkflowRecipients" : false,
  "id" : "grp_K9op8RHeG8yMcrejt5dXMBpc",
  "isDefault" : false,
  "isDisabled" : false,
  "jobOperation" : "refreshWorkflowsViewAuthorizedGroups",
  "layoutSelectionMode" : "anyOrNull",
  "name" : "Adaptive grid-enabled projection",
  "templateSelectionMode" : "listOrNull",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updateUserAuthorizedGroups" : [ ],
  "updateWorkflowAuthorizedGroups" : [ ],
  "updated" : 1750774565276,
  "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.
groupedInvitations.mode String optional Whether or not the users inside that group should receive their notification one by one or grouped.
groupedInvitations.activeDays Array optional The days of the week when grouped invitations should be sent.
groupedInvitations.sendingSlots Array optional The sending slots days during which the grouped invitations should be sent. Contains time and zone properties.
groupedInvitations.sendingSlots[].time String optional The time when grouped invitations should be sent. The time is in HH:mm format.
groupedInvitations.sendingSlots[].zone String optional The zone name associated to the time when grouped invitations should be sent. Examples : Europe/Paris, Europe/London, America/New_York.
groupedInvitations.nextCheck Number optional The next time grouped invitations will be checked for this group.
groupedInvitations.lastSend Number optional The last time grouped invitations has been sent for 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_GDvz3EwjCbwT7nnyjt8wg5va HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "4hXvUhEDQ5LibMiHhAUB66x9"

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_3LjqJggSBhqUEqjVfcks31DA
ETag: "TA22qGUG241nSc2fujoCyyZr"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2020

{
  "allowedLayouts" : [ ],
  "allowedTemplates" : [ ],
  "createUserAuthorizedGroups" : [ "grp_8oDjbwPeNZvZKPMy292EJNBP", "grp_GDvz3EwjCbwT7nnyjt8wg5va" ],
  "createWorkflowAuthorizedGroups" : [ "grp_8oDjbwPeNZvZKPMy292EJNBP", "grp_GDvz3EwjCbwT7nnyjt8wg5va" ],
  "created" : 1750774574644,
  "deleteUserAuthorizedGroups" : [ "grp_8oDjbwPeNZvZKPMy292EJNBP", "grp_GDvz3EwjCbwT7nnyjt8wg5va" ],
  "deleteWorkflowAuthorizedGroups" : [ "grp_8oDjbwPeNZvZKPMy292EJNBP", "grp_GDvz3EwjCbwT7nnyjt8wg5va" ],
  "description" : "82 Quai de l'Abbaye, 96620 Montpellier",
  "groupedInvitations" : {
    "activeDays" : [ "1", "2", "3", "4", "5" ],
    "mode" : "disabled",
    "sendingSlots" : [ {
      "time" : "08:00",
      "zone" : "Europe/Paris"
    }, {
      "time" : "17:00",
      "zone" : "Europe/Paris"
    } ]
  },
  "hideWorkflowRecipients" : false,
  "id" : "grp_GDvz3EwjCbwT7nnyjt8wg5va",
  "isDefault" : false,
  "isDisabled" : false,
  "jobOperation" : "purgeGroup",
  "layoutSelectionMode" : "anyOrNull",
  "name" : "User-centric well-modulated standardization",
  "templateSelectionMode" : "anyOrNull",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updateUserAuthorizedGroups" : [ "grp_8oDjbwPeNZvZKPMy292EJNBP", "grp_GDvz3EwjCbwT7nnyjt8wg5va" ],
  "updateWorkflowAuthorizedGroups" : [ "grp_8oDjbwPeNZvZKPMy292EJNBP", "grp_GDvz3EwjCbwT7nnyjt8wg5va" ],
  "updated" : 1750774574717,
  "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_8oDjbwPeNZvZKPMy292EJNBP", "grp_GDvz3EwjCbwT7nnyjt8wg5va" ],
  "viewWorkflowAuthorizedGroups" : [ "grp_8oDjbwPeNZvZKPMy292EJNBP", "grp_GDvz3EwjCbwT7nnyjt8wg5va" ]
}

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.
groupedInvitations.mode String optional Whether or not the users inside that group should receive their notification one by one or grouped.
groupedInvitations.activeDays Array optional The days of the week when grouped invitations should be sent.
groupedInvitations.sendingSlots Array optional The sending slots days during which the grouped invitations should be sent. Contains time and zone properties.
groupedInvitations.sendingSlots[].time String optional The time when grouped invitations should be sent. The time is in HH:mm format.
groupedInvitations.sendingSlots[].zone String optional The zone name associated to the time when grouped invitations should be sent. Examples : Europe/Paris, Europe/London, America/New_York.
groupedInvitations.nextCheck Number optional The next time grouped invitations will be checked for this group.
groupedInvitations.lastSend Number optional The last time grouped invitations has been sent for 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=Enhanced%20client-server%20methodology&items.id=grp_3tjnsjQNsBe3AmFjPMkUmsqG&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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.
items.groupedInvitations.mode The filter value(s) for the groupedInvitations.mode field.
items.groupedInvitations.activeDays The filter value(s) for the groupedInvitations.activeDays field.
items.groupedInvitations.sendingSlots The filter value(s) for the groupedInvitations.sendingSlots field.
items.groupedInvitations.nextCheck The filter value(s) for the groupedInvitations.nextCheck 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: 2128

{
  "items" : [ {
    "allowedLayouts" : [ ],
    "allowedTemplates" : [ ],
    "createUserAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "createWorkflowAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "created" : 1750774342421,
    "deleteUserAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "deleteWorkflowAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "description" : "3 Avenue de la Bûcherie, 10606 Calais",
    "groupedInvitations" : {
      "activeDays" : [ "1", "2", "3", "4", "5" ],
      "mode" : "disabled",
      "sendingSlots" : [ {
        "time" : "08:00",
        "zone" : "Europe/Paris"
      }, {
        "time" : "17:00",
        "zone" : "Europe/Paris"
      } ]
    },
    "hideWorkflowRecipients" : false,
    "id" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
    "isDefault" : false,
    "isDisabled" : false,
    "layoutSelectionMode" : "anyOrNull",
    "name" : "Enhanced client-server methodology",
    "templateSelectionMode" : "anyOrNull",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updateUserAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "updateWorkflowAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "updated" : 1750774342421,
    "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_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "viewWorkflowAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ]
  } ],
  "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[].groupedInvitations.mode String optional Whether or not the users inside that group should receive their notification one by one or grouped.
items[].groupedInvitations.activeDays Array optional The days of the week when grouped invitations should be sent.
items[].groupedInvitations.sendingSlots Array optional The sending slots days during which the grouped invitations should be sent. Contains time and zone properties.
items[].groupedInvitations.sendingSlots[].time String optional The time when grouped invitations should be sent. The time is in HH:mm format.
items[].groupedInvitations.sendingSlots[].zone String optional The zone name associated to the time when grouped invitations should be sent. Examples : Europe/Paris, Europe/London, America/New_York.
items[].groupedInvitations.nextCheck Number optional The next time grouped invitations will be checked for this group.
items[].groupedInvitations.lastSend Number optional The last time grouped invitations has been sent for 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=Enhanced%20client-server%20methodology&items.id=grp_3tjnsjQNsBe3AmFjPMkUmsqG&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 186

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

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.
items.groupedInvitations.mode The filter value(s) for the groupedInvitations.mode field.
items.groupedInvitations.activeDays The filter value(s) for the groupedInvitations.activeDays field.
items.groupedInvitations.sendingSlots The filter value(s) for the groupedInvitations.sendingSlots field.
items.groupedInvitations.nextCheck The filter value(s) for the groupedInvitations.nextCheck 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_NVy5JB86aCvbK1cvBXzpdvXU
ETag: "EPhvzkGmhdfjE6jjrBNcojsn"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 606

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774551906,
  "expired" : 1750860951902,
  "exportOperation" : "createGroupExport",
  "id" : "exp_6cqrvVUWnCevi2wm8vhHxTVc",
  "itemTemplate" : "{{id}},{{name}},{{json userRoles}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Enhanced+client-server+methodology&items.id=grp_3tjnsjQNsBe3AmFjPMkUmsqG&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774551906,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_6HcWKbJS3wzT6aSddjnDbj8t&items.id=log_6HcWKbJS3wzT6aSddjnDbj8t&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "items" : [ {
    "appVersion" : "sgs-wm-webapp:1.16.4-RC2",
    "created" : 1750774943499,
    "duration" : 2,
    "entityId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
    "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_3tjnsjQNsBe3AmFjPMkUmsqG",
    "id" : "log_6HcWKbJS3wzT6aSddjnDbj8t",
    "operation" : "updateUser",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774943499,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
    "variables" : {
      "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
      "httpRequest" : "PATCH /api/users/usr_JJSUF2dgMiibE2USNkXuyA2P\nX-Forwarded-For: 127.0.0.1\nWebTestClient-Request-Id: 9315\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_CmADumFbrNCXcyi3ajQBH6S6&items.id=log_CmADumFbrNCXcyi3ajQBH6S6&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 191

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

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_C7FkoFXyDUyVTG24inQYtafa
ETag: "FcSfAp5XPRYhJBvfdDoBJvmA"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 603

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774942103,
  "expired" : 1750861342101,
  "exportOperation" : "createLogExport",
  "id" : "exp_JcKUpECCmmDVmYVkEQw6VAjN",
  "itemTemplate" : "{{id}},{{operation}},{{json variables}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=log_CmADumFbrNCXcyi3ajQBH6S6&items.id=log_CmADumFbrNCXcyi3ajQBH6S6&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774942103,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_A4BEeiQtJ7rSYq4n7H2A3bkM/dataMapping HTTP/1.1
Authorization: Bearer act_N8pnrNUXgFC2Lad13dUGAPf7.4C4oDFKGrrSuYV8WtMNt8zqsk37HiT5cwkruPKjVrY8ncRvHoc1w1MtwZ4HbvaWF

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_DN8tn8RnroDhaRfAbKjv1zeW/dataMapping HTTP/1.1
Authorization: Bearer act_JW7vwxN4ZnsYwR4rV6wAeX1r.54D34ns16di2m7aNV5jLEccrXUtzWNi8Nj8X4hB5Cg2s7nwmpATnFFUNY3iZRpq6
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_HAZaZjhz9D9gxGS7Rqy45kh8
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_4rq6TubKCCsFyDcHSEMZg9Fw HTTP/1.1
Authorization: Bearer act_BkzTWr2wkP5ArAaVkARLKP9x.3ycDKe1PfDTgPJaqJGFPQMB5BvA42cb5FESREposGQGcJeq8iV1uKCtwDYGYbKP4

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

{
  "created" : 1750774813581,
  "creator" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "creatorName" : "Coleman Wilkinson",
  "creatorPictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "eventType" : "recipientInvite",
  "id" : "not_4rq6TubKCCsFyDcHSEMZg9Fw",
  "isUnread" : true,
  "linkUrl" : "https://kris.biz/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0pBMlU3azg2ZVNEcWg0ZGM1O...",
  "preferredLocale" : "fr",
  "sendingState" : "sent",
  "stepType" : "signature",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774813629,
  "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz",
  "workflowId" : "wfl_MBbTcyodJFTvASjPxcwSQ4PR",
  "workflowName" : "Sleek Bronze 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.
sendingState String optional The current sending state of the notification. Should be : pending, sending, sent
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_DMHQKchJighXUJPnD3G3UzAM HTTP/1.1
Authorization: Bearer act_BkzTWr2wkP5ArAaVkARLKP9x.3ycDKe1PfDTgPJaqJGFPQMB5BvA42cb5FESREposGQGcJeq8iV1uKCtwDYGYbKP4
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_Hy6D46ErkWU67YCPBpDewjBV
ETag: "61DdX28XDPSErhGidMSjvjUN"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 961

{
  "created" : 1750774822091,
  "creator" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "creatorName" : "Coleman Wilkinson",
  "creatorPictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "eventType" : "recipientInvite",
  "id" : "not_DMHQKchJighXUJPnD3G3UzAM",
  "isUnread" : false,
  "linkUrl" : "https://kris.biz/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX1FCTU5qQW9RYURyOE04QlRVN...",
  "preferredLocale" : "fr",
  "sendingState" : "sent",
  "stepType" : "signature",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774822177,
  "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz",
  "workflowId" : "wfl_CKMQb9GTR6kGZhifb7YwhZNX",
  "workflowName" : "Aerodynamic Rubber Plate"
}

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.
sendingState String optional The current sending state of the notification. Should be : pending, sending, sent
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_H4B3QWiRDAqirNyxFqSHp9zc&items.id=not_3YwdYGVYKBJkcLJU85KWqU1d&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_BkzTWr2wkP5ArAaVkARLKP9x.3ycDKe1PfDTgPJaqJGFPQMB5BvA42cb5FESREposGQGcJeq8iV1uKCtwDYGYbKP4

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.
items.sendingState The filter value(s) for the sendingState 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: 1078

{
  "items" : [ {
    "created" : 1750774696148,
    "creator" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
    "creatorName" : "Coleman Wilkinson",
    "creatorPictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
    "eventType" : "recipientInvite",
    "id" : "not_3YwdYGVYKBJkcLJU85KWqU1d",
    "isUnread" : true,
    "linkUrl" : "https://kris.biz/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0dCZlVzVkphSE1UNTFjSGVtM...",
    "preferredLocale" : "fr",
    "sendingState" : "sent",
    "stepType" : "signature",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774696220,
    "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz",
    "workflowId" : "wfl_H4B3QWiRDAqirNyxFqSHp9zc",
    "workflowName" : "Aerodynamic Concrete Knife"
  } ],
  "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[].sendingState String optional The current sending state of the notification. Should be : pending, sending, sent
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_KkvKKLDXUacLgmiB8RD2cjs4&items.id=not_6r74831BkiLjbBgYqjZiAHWc HTTP/1.1
Authorization: Bearer act_BkzTWr2wkP5ArAaVkARLKP9x.3ycDKe1PfDTgPJaqJGFPQMB5BvA42cb5FESREposGQGcJeq8iV1uKCtwDYGYbKP4
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.
items.sendingState The filter value(s) for the sendingState 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_3N8xS9FnQrEA6KS7fVDXTep8/organizations HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 151

{
  "name" : "Martin SA",
  "organizationIdentifier" : "FR8345904353",
  "additionalInfo" : "9 étage, 85 Impasse du Chat-qui-Pêche, 37805 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_2r3tZrB3ix1b6Vef14vgLtAc
ETag: "6g7eTXR6egJ3aLNw8RzWmpPC"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 297

{
  "additionalInfo" : "9 étage, 85 Impasse du Chat-qui-Pêche, 37805 Le Havre",
  "created" : 1750774545299,
  "id" : "org_58Jyvyd9r8wNTS6Vkt3Q9phB",
  "name" : "Martin SA",
  "organizationIdentifier" : "FR8345904353",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774545299
}

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_Lmj4tzvawb8iUTGwCnWAL2iQ HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "additionalInfo" : "Apt. 303, 0 Allée, Voie Lepic, 43815 Marseille",
  "created" : 1750774341940,
  "id" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
  "name" : "Aubert SCOP",
  "organizationIdentifier" : "FR4542158859",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774341940
}

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_NGkCXoVBq72YJFrRNu1JBa1Y HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "Cb1dAsouQgGPFHQzsM4eFSWH"
Content-Type: application/json
Content-Length: 144

{
  "name" : "Robin et Robert",
  "organizationIdentifier" : "FR8753078095",
  "additionalInfo" : "Apt. 949, 47 Impasse Lepic, 41073 Bordeaux"
}

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_7gPfjomZXGZhvREUCRg8VHyD
ETag: "6uRXDzMgqVNfT9X8EKSUvv9f"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 290

{
  "additionalInfo" : "Apt. 949, 47 Impasse Lepic, 41073 Bordeaux",
  "created" : 1750774535540,
  "id" : "org_NGkCXoVBq72YJFrRNu1JBa1Y",
  "name" : "Robin et Robert",
  "organizationIdentifier" : "FR8753078095",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774535570
}

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_Cj15FRFYMPMUzPMmnq2LkZm8 HTTP/1.1
Authorization: Bearer act_8CYN6tASo67S9pjQLzvHuqu8.1MHDgyX8MVNyuFAtCYo8TXuUoZvtJ31vuX6HdLDp4icSVCej8DEiAxhDkZ3s9rM1
If-Match: "HihmYMDzwF9dBAzEBQ5pzbxs"

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_ATg7dBo9DrLUJcMTLuzZ9xwy
ETag: "FDgum3akjZyqZarWHsDu21Ez"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 330

{
  "additionalInfo" : "9 Passage Du Sommerard, 45445 Toulouse",
  "created" : 1750774548300,
  "id" : "org_Cj15FRFYMPMUzPMmnq2LkZm8",
  "jobOperation" : "purgeOrganization",
  "name" : "Carpentier et Lucas",
  "organizationIdentifier" : "FR8619711591",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774548342
}

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=Garnier%20et%20Perrin&items.id=org_3jWYFwYSD6CrDRfGRKNVhceE&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "items" : [ {
    "additionalInfo" : "317 Allée, Voie de Montmorency, 92090 Vénissieux",
    "created" : 1750774546717,
    "id" : "org_3jWYFwYSD6CrDRfGRKNVhceE",
    "name" : "Garnier et Perrin",
    "organizationIdentifier" : "FR2147408348",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774546717
  } ],
  "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=Aubert%20SCOP&items.id=org_Lmj4tzvawb8iUTGwCnWAL2iQ&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 167

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

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_4vn2cShqGQEB9YTtyyznG25n
ETag: "CKbNwWJ1mEK6eae5j5v8m17y"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 571

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774544246,
  "expired" : 1750860944242,
  "exportOperation" : "createOrganizationExport",
  "id" : "exp_HhEFNrVQNT9co4aGdAjtdj54",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Aubert+SCOP&items.id=org_Lmj4tzvawb8iUTGwCnWAL2iQ&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774544246,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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

{
  "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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                          Neue Validierungsanfrage\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>{{notification.creatorName}} fordert Sie auf, das/die Dokument(e) des nächsten Paraphier-Tools zu validieren:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                       Das/die Dokument(e) anzeigen\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Um diese(s) Dokument(e) zu validieren, klicken Sie bitte auf den \n                                  Button unten oder fügen Sie die nachfolgende Adresse im Adressfeld \n                                  Ihres Browsers ein:\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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>HINWEIS: </strong>\n                    Diese E-Mail enthält einen persönlichen Sicherheitslink, der {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}}\n                     Tage gültig ist und den Sie auf keinen Fall an andere weitergeben dürfen.\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" : "Neue Genehmigungsanfrage von e-Parapheur."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Ihre Validierung ist nicht mehr erforderlich \n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>Ihre Validierung ist auf dem nächsten Paraphier-Tool nicht mehr erforderlich:\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> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n      </table>\n    </td>\n  </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Ihre Validierung ist nicht mehr erforderlich."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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é."
    }
  },
  "multiInviteEmail" : {
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Summary of your validation and signature requests\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font 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>You have received {{notificationCount}} new validation or signature requests.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      View requests\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  To view these requests, click on the above button or copy the following address and past it into 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" : "Summary of your signature or validation requests."
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Récapitulatif de vos demandes de validation et 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>Vous avez reçu {{notificationCount}} nouvelle(s) demande(s) de validation ou de signature.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser les demandes\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Afin de visualiser ces demandes, veuillez cliquer sur le bouton\n                                  ci-dessus ou copier l'adresse suivante et la coller dans la barre\n                                  d'adresse de votre navigateur :\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Merci pour votre confiance.\n                                      <br> À bientôt.\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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" : "Récapitulatif de vos demandes de signature ou de validation."
    }
  },
  "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Neue Unterzeichnungsanfrage\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>{{notification.creatorName}} fordert Sie auf, das/die Dokument(e) \n                                  des nächsten Paraphier-Tools zu unterzeichnen:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Das/die Dokument(e) anzeigen \n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Um diese(s) Dokument(e) zu unterzeichnen, klicken Sie bitte auf den Button \n                                  unten oder fügen Sie die nachfolgende Adresse im Adressfeld Ihres Browsers ein:\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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>HINWEIS: </strong>\n                    Diese E-Mail enthält einen persönlichen Sicherheitslink, der {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}}\n                     Tage gültig ist und den Sie auf keinen Fall an andere weitergeben dürfen.\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" : "Neue Signaturanfrage auf e-Parapheur."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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 Goodflag."
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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>Guten Tag,</p>\n                                <p>Ihre Unterschrift ist auf dem nächsten Paraphier-Tool nicht mehr erforderlich: \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> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n      </table>\n    </td>\n  </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Ihre Unterschrift ist nicht mehr erforderlich."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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.
multiInviteEmail Object The translations for the invite for signature or approbation of multiple workflow emails.
rolesTranslationInEmail Object The translation of users roles.

Retrieve tenant settings

Retrieve the settings for a tenant.

HTTP request

GET /api/tenants/ten_E9kRTSkiwq5TYtj965cXfa7X/settings HTTP/1.1
Authorization: Bearer act_QCwpyyetUA3cwhAQMgPTaDoz.38x3GGX78DFqffxN7QKq3hkddHkBA4JvZ1ALVM1iG4HveKE92oA6qAXCaEJBdBcp

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

{
  "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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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é."
    }
  },
  "multiInviteEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Récapitulatif de vos demandes de validation et 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>Vous avez reçu {{notificationCount}} nouvelle(s) demande(s) de validation ou de signature.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser les demandes\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Afin de visualiser ces demandes, veuillez cliquer sur le bouton\n                                  ci-dessus ou copier l'adresse suivante et la coller dans la barre\n                                  d'adresse de votre navigateur :\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Merci pour votre confiance.\n                                      <br> À bientôt.\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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" : "Récapitulatif de vos demandes de signature ou de validation."
    }
  },
  "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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.
multiInviteEmail Object The translations for the invite for signature or approbation of multiple workflow 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_3N8xS9FnQrEA6KS7fVDXTep8/appliedSettings HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                          Neue Validierungsanfrage\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>{{notification.creatorName}} fordert Sie auf, das/die Dokument(e) des nächsten Paraphier-Tools zu validieren:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                       Das/die Dokument(e) anzeigen\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Um diese(s) Dokument(e) zu validieren, klicken Sie bitte auf den \n                                  Button unten oder fügen Sie die nachfolgende Adresse im Adressfeld \n                                  Ihres Browsers ein:\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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>HINWEIS: </strong>\n                    Diese E-Mail enthält einen persönlichen Sicherheitslink, der {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}}\n                     Tage gültig ist und den Sie auf keinen Fall an andere weitergeben dürfen.\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" : "Neue Genehmigungsanfrage von e-Parapheur."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Ihre Validierung ist nicht mehr erforderlich \n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>Ihre Validierung ist auf dem nächsten Paraphier-Tool nicht mehr erforderlich:\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> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n      </table>\n    </td>\n  </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Ihre Validierung ist nicht mehr erforderlich."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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é."
    }
  },
  "multiInviteEmail" : {
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Summary of your validation and signature requests\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font 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>You have received {{notificationCount}} new validation or signature requests.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      View requests\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  To view these requests, click on the above button or copy the following address and past it into 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" : "Summary of your signature or validation requests."
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Récapitulatif de vos demandes de validation et 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>Vous avez reçu {{notificationCount}} nouvelle(s) demande(s) de validation ou de signature.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser les demandes\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Afin de visualiser ces demandes, veuillez cliquer sur le bouton\n                                  ci-dessus ou copier l'adresse suivante et la coller dans la barre\n                                  d'adresse de votre navigateur :\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Merci pour votre confiance.\n                                      <br> À bientôt.\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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" : "Récapitulatif de vos demandes de signature ou de validation."
    }
  },
  "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Neue Unterzeichnungsanfrage\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>{{notification.creatorName}} fordert Sie auf, das/die Dokument(e) \n                                  des nächsten Paraphier-Tools zu unterzeichnen:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Das/die Dokument(e) anzeigen \n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Um diese(s) Dokument(e) zu unterzeichnen, klicken Sie bitte auf den Button \n                                  unten oder fügen Sie die nachfolgende Adresse im Adressfeld Ihres Browsers ein:\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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>HINWEIS: </strong>\n                    Diese E-Mail enthält einen persönlichen Sicherheitslink, der {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}}\n                     Tage gültig ist und den Sie auf keinen Fall an andere weitergeben dürfen.\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" : "Neue Signaturanfrage auf e-Parapheur."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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 Goodflag."
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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>Guten Tag,</p>\n                                <p>Ihre Unterschrift ist auf dem nächsten Paraphier-Tool nicht mehr erforderlich: \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> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n      </table>\n    </td>\n  </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Ihre Unterschrift ist nicht mehr erforderlich."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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.
multiInviteEmail Object The translations for the invite for signature or approbation of multiple workflow 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_8uR6PDTnkC8YtPa78RobZ4v6/settings HTTP/1.1
Authorization: Bearer act_Bp4ueEoA9SkELXAGqGCAk1h2.4xxX6CbkhkVGVteCDCBXWYiEoq1rCQT9JrtM3N48dTZcxbkCAFVmUQEnKXVZvhdg
Content-Type: application/json
Content-Length: 163936

{
  "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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"
    }
  },
  "multiInviteEmail" : {
    "fr" : {
      "subject" : "Récapitulatif de vos demandes de signature ou de validation.",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Récapitulatif de vos demandes de validation et 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>Vous avez reçu {{notificationCount}} nouvelle(s) demande(s) de validation ou de signature.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser les demandes\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Afin de visualiser ces demandes, veuillez cliquer sur le bouton\n                                  ci-dessus ou copier l'adresse suivante et la coller dans la barre\n                                  d'adresse de votre navigateur :\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Merci pour votre confiance.\n                                      <br> À bientôt.\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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"
    }
  },
  "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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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.
multiInviteEmail Object The translations for the invite for signature or approbation of multiple workflow emails.
rolesTranslationInEmail Object The translation of users roles.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_Hc3KPx2BBJZM9Xyzj2V4GEAe
ETag: "DH4fZje4a22sTKPwWV1sA3Cv"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 163936

{
  "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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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é."
    }
  },
  "multiInviteEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Récapitulatif de vos demandes de validation et 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>Vous avez reçu {{notificationCount}} nouvelle(s) demande(s) de validation ou de signature.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser les demandes\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Afin de visualiser ces demandes, veuillez cliquer sur le bouton\n                                  ci-dessus ou copier l'adresse suivante et la coller dans la barre\n                                  d'adresse de votre navigateur :\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Merci pour votre confiance.\n                                      <br> À bientôt.\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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" : "Récapitulatif de vos demandes de signature ou de validation."
    }
  },
  "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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.
multiInviteEmail Object The translations for the invite for signature or approbation of multiple workflow 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_ESJFyghX39shLc34pxmehZ2c/settings HTTP/1.1
Authorization: Bearer act_37cJ79DETYLghUBSW5dyQgpc.kzrGCJwfmArz86buSvHSbTZkdUboH2uN2CAZf9wcx3rKsPAGsJSTSheE3k2ADzkX

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

{
  "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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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é."
    }
  },
  "multiInviteEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Récapitulatif de vos demandes de validation et 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>Vous avez reçu {{notificationCount}} nouvelle(s) demande(s) de validation ou de signature.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser les demandes\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Afin de visualiser ces demandes, veuillez cliquer sur le bouton\n                                  ci-dessus ou copier l'adresse suivante et la coller dans la barre\n                                  d'adresse de votre navigateur :\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Merci pour votre confiance.\n                                      <br> À bientôt.\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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" : "Récapitulatif de vos demandes de signature ou de validation."
    }
  },
  "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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.
multiInviteEmail Object The translations for the invite for signature or approbation of multiple workflow 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_JJSUF2dgMiibE2USNkXuyA2P/appliedSettings HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                          Neue Validierungsanfrage\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>{{notification.creatorName}} fordert Sie auf, das/die Dokument(e) des nächsten Paraphier-Tools zu validieren:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                       Das/die Dokument(e) anzeigen\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Um diese(s) Dokument(e) zu validieren, klicken Sie bitte auf den \n                                  Button unten oder fügen Sie die nachfolgende Adresse im Adressfeld \n                                  Ihres Browsers ein:\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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>HINWEIS: </strong>\n                    Diese E-Mail enthält einen persönlichen Sicherheitslink, der {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}}\n                     Tage gültig ist und den Sie auf keinen Fall an andere weitergeben dürfen.\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" : "Neue Genehmigungsanfrage von e-Parapheur."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Ihre Validierung ist nicht mehr erforderlich \n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>Ihre Validierung ist auf dem nächsten Paraphier-Tool nicht mehr erforderlich:\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> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n      </table>\n    </td>\n  </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Ihre Validierung ist nicht mehr erforderlich."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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é."
    }
  },
  "multiInviteEmail" : {
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Summary of your validation and signature requests\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font 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>You have received {{notificationCount}} new validation or signature requests.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      View requests\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  To view these requests, click on the above button or copy the following address and past it into 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" : "Summary of your signature or validation requests."
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Récapitulatif de vos demandes de validation et 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>Vous avez reçu {{notificationCount}} nouvelle(s) demande(s) de validation ou de signature.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser les demandes\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Afin de visualiser ces demandes, veuillez cliquer sur le bouton\n                                  ci-dessus ou copier l'adresse suivante et la coller dans la barre\n                                  d'adresse de votre navigateur :\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Merci pour votre confiance.\n                                      <br> À bientôt.\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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" : "Récapitulatif de vos demandes de signature ou de validation."
    }
  },
  "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Neue Unterzeichnungsanfrage\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>{{notification.creatorName}} fordert Sie auf, das/die Dokument(e) \n                                  des nächsten Paraphier-Tools zu unterzeichnen:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Das/die Dokument(e) anzeigen \n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Um diese(s) Dokument(e) zu unterzeichnen, klicken Sie bitte auf den Button \n                                  unten oder fügen Sie die nachfolgende Adresse im Adressfeld Ihres Browsers ein:\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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>HINWEIS: </strong>\n                    Diese E-Mail enthält einen persönlichen Sicherheitslink, der {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}}\n                     Tage gültig ist und den Sie auf keinen Fall an andere weitergeben dürfen.\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" : "Neue Signaturanfrage auf e-Parapheur."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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 Goodflag."
    },
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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>Guten Tag,</p>\n                                <p>Ihre Unterschrift ist auf dem nächsten Paraphier-Tool nicht mehr erforderlich: \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> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n      </table>\n    </td>\n  </tr>\n</table>\n</body>\n</html>\n",
      "subject" : "Ihre Unterschrift ist nicht mehr erforderlich."
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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.
multiInviteEmail Object The translations for the invite for signature or approbation of multiple workflow 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_48feiQ3xojHSxTrcHok2f5zZ/settings HTTP/1.1
Authorization: Bearer act_JCurdVGdAu4YQ3ZaE6YLHd4B.CtYJsF43BppF1UXhrGyY1YeiSM87b1jVUWDzxFGh6pSuG6pMNNecZcvnA3CyeEZe
Content-Type: application/json
Content-Length: 163746

{
  "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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"
    }
  },
  "multiInviteEmail" : {
    "fr" : {
      "subject" : "Récapitulatif de vos demandes de signature ou de validation.",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Récapitulatif de vos demandes de validation et 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>Vous avez reçu {{notificationCount}} nouvelle(s) demande(s) de validation ou de signature.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser les demandes\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Afin de visualiser ces demandes, veuillez cliquer sur le bouton\n                                  ci-dessus ou copier l'adresse suivante et la coller dans la barre\n                                  d'adresse de votre navigateur :\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Merci pour votre confiance.\n                                      <br> À bientôt.\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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"
    }
  },
  "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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.
multiInviteEmail Object The translations for the invite for signature or approbation of multiple workflow emails.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_Hit7DeSQ7HoJdxHEKMacsLrZ
ETag: "DvngtH4mBmxEiNWbta674ktd"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 163746

{
  "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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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é."
    }
  },
  "multiInviteEmail" : {
    "fr" : {
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Récapitulatif de vos demandes de validation et 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>Vous avez reçu {{notificationCount}} nouvelle(s) demande(s) de validation ou de signature.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser les demandes\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Afin de visualiser ces demandes, veuillez cliquer sur le bouton\n                                  ci-dessus ou copier l'adresse suivante et la coller dans la barre\n                                  d'adresse de votre navigateur :\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Merci pour votre confiance.\n                                      <br> À bientôt.\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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" : "Récapitulatif de vos demandes de signature ou de validation."
    }
  },
  "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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.
multiInviteEmail Object The translations for the invite for signature or approbation of multiple workflow 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_LxhkiDt5mfZHM1pGJFp9sLrF/settings HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "approbationInviteEmail" : {
    "de" : {
      "subject" : "Neue Genehmigungsanfrage von 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                          Neue Validierungsanfrage\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>{{notification.creatorName}} fordert Sie auf, das/die Dokument(e) des nächsten Paraphier-Tools zu validieren:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                       Das/die Dokument(e) anzeigen\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Um diese(s) Dokument(e) zu validieren, klicken Sie bitte auf den \n                                  Button unten oder fügen Sie die nachfolgende Adresse im Adressfeld \n                                  Ihres Browsers ein:\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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>HINWEIS: </strong>\n                    Diese E-Mail enthält einen persönlichen Sicherheitslink, der {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}}\n                     Tage gültig ist und den Sie auf keinen Fall an andere weitergeben dürfen.\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"
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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" : {
    "de" : {
      "subject" : "Ihre Validierung ist nicht mehr erforderlich.",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Ihre Validierung ist nicht mehr erforderlich \n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>Ihre Validierung ist auf dem nächsten Paraphier-Tool nicht mehr erforderlich:\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> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n      </table>\n    </td>\n  </tr>\n</table>\n</body>\n</html>\n"
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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" : {
    "de" : {
      "subject" : "Neue Signaturanfrage auf 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Neue Unterzeichnungsanfrage\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <p>Guten Tag,</p>\n                                <p>{{notification.creatorName}} fordert Sie auf, das/die Dokument(e) \n                                  des nächsten Paraphier-Tools zu unterzeichnen:\n                                  <strong>{{notification.workflowName}}</strong>.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Das/die Dokument(e) anzeigen \n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Um diese(s) Dokument(e) zu unterzeichnen, klicken Sie bitte auf den Button \n                                  unten oder fügen Sie die nachfolgende Adresse im Adressfeld Ihres Browsers ein:\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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>HINWEIS: </strong>\n                    Diese E-Mail enthält einen persönlichen Sicherheitslink, der {{durationToDays duration=step.validityPeriod singular='jour' plural='jours' zero='moins de 24 heures'}}\n                     Tage gültig ist und den Sie auf keinen Fall an andere weitergeben dürfen.\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"
    },
    "en" : {
      "subject" : "New signature request from Goodflag.",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       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" : {
    "de" : {
      "subject" : "Ihre Unterschrift ist nicht mehr erforderlich.",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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>Guten Tag,</p>\n                                <p>Ihre Unterschrift ist auf dem nächsten Paraphier-Tool nicht mehr erforderlich: \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> Vielen Dank für Ihr Vertrauen.\n                                      <br> Bis bald!\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n      </table>\n    </td>\n  </tr>\n</table>\n</body>\n</html>\n"
    },
    "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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"
    }
  },
  "multiInviteEmail" : {
    "en" : {
      "subject" : "Summary of your signature or validation requests.",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Summary of your validation and signature requests\n                      </td>\n                    </tr>\n                    <!-- Third Row Body-->\n                    <tr>\n                      <td valign=\"top\" align=\"left\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr style=\"padding: 12px 0px 0px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font 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>You have received {{notificationCount}} new validation or signature requests.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      View requests\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  To view these requests, click on the above button or copy the following address and past it into 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" : "Récapitulatif de vos demandes de signature ou de validation.",
      "content" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <meta name=\"format-detection\" content=\"telephone=no\">\n</head>\n<body\n    style=\"background-color:#f4f5f6;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 17px; color:#202124;\">\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#f4f5f6\"\n       style=\"background-color:#f4f5f6\">\n  <tbody>\n  <tr>\n    <td align=\"center\">\n      <table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:600px;max-width:600px\">\n        <tbody>\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <!-- first Row with logo-->\n                    <tr>\n                      <td valign=\"top\" style=\"padding-top: 15px;padding-bottom: 15px;\"\n                          align=\"center\">\n                        <img border=\"0\"\n                             src=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; color: #ffffff; font-size: 22px; padding: 15px; font-weight: 500;\">\n                        Récapitulatif de vos demandes de validation et 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>Vous avez reçu {{notificationCount}} nouvelle(s) demande(s) de validation ou de signature.</p>\n                                <br>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{#if notification.linkUrl}}\n                          <tr>\n                            <td width=\"1\"></td>\n                            <td align=\"center\">\n                              <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n                                <tr>\n                                  <td style=\"padding: 12px 18px 12px 18px; border-radius:5px; background-color: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-size: 18px; font-family: Helvetica, Arial, sans-serif; font-weight: 500; color: #ffffff; text-decoration: none; display: inline-block;\">\n                                      Visualiser les demandes\n                                      &rarr;\n                                    </a>\n                                  </td>\n                                </tr>\n                              </table>\n                            </td>\n                          </tr>\n                          <tr style=\"padding: 0px 0px 12px;\">\n                            <td width=\"40\"></td>\n                            <td>\n                              <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n                                    style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n                                <br>\n                                <p>\n                                  Afin de visualiser ces demandes, veuillez cliquer sur le bouton\n                                  ci-dessus ou copier l'adresse suivante et la coller dans la barre\n                                  d'adresse de votre navigateur :\n                                </p>\n                                <p>\n                                  <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n                                </p>\n                              </font>\n                            </td>\n                            <td width=\"40\"></td>\n                          </tr>\n                          {{/if}}\n                          <tr>\n                            <td valign=\"top\" align=\"left\">\n                              <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                                <tbody>\n                                <tr>\n                                  <td valign=\"top\" align=\"left\"></td>\n                                </tr>\n                                </tbody>\n                              </table>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                      </td>\n                    </tr>\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!-- Fourth Row Card Footer-->\n        <tr>\n          <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n                   style=\"background-color:#fff\">\n              <tbody>\n              <tr>\n                <td valign=\"top\" align=\"left\">\n                  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tbody>\n                    <tr>\n                      <td valign=\"top\" align=\"center\">\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                          <tbody>\n                          <tr>\n                            <td>\n                              <div\n                                  style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n                                <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n                                       align=\"center\">\n                                  <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n                                    <td width=\"40\"></td>\n                                    <td>\n                                      <br> Merci pour votre confiance.\n                                      <br> À bientôt.\n                                      <br>\n                                      <br>\n                                    </td>\n                                    <td width=\"40\"></td>\n                                  </tr>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </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"
    }
  },
  "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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\" style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\" width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\" style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                             style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                             width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                      </td>\n                    </tr>\n                    <!-- Second Row -->\n                    <tr>\n                      <td align=\"center\"\n                          style=\"background-color:#342a5e; 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: #201BD9;\"\n                                      align=\"center\">\n                                    <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                       style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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: #201BD9;\"\n                                                                        align=\"center\">\n                                                                        <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\"\n                                                                           style=\"font-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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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=\"{{emailLogoRes}}\"\n                                                     style=\"max-width: 260px;border-width:0;border-style:solid;padding: 15px 0;\"\n                                                     width=\"260\" alt=\"Goodflag\" title=\"Goodflag\">\n                                            </td>\n                                        </tr>\n                                        <!-- Second Row -->\n                                        <tr>\n                                            <td align=\"center\"\n                                                style=\"background-color:#342a5e; 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.
multiInviteEmail Object The translations for the invite for signature or approbation of multiple workflow 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_3N8xS9FnQrEA6KS7fVDXTep8/signatureProfiles HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 10663

{
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Fairy tale",
  "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_Hr8QCPbscz6DVZ5rpPFGUFYY
ETag: "FEWvvUeMGX17woviaWoZRavT"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 10809

{
  "created" : 1750774954138,
  "documentType" : "pdf",
  "forceScrollDocument" : true,
  "id" : "sip_9L67np4dRDZK7B7wGZpYBS3u",
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Fairy tale",
  "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_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774954138,
  "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_CwJX4ZWNj5YRUdWxh8vsFWYJ HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "created" : 1750774341307,
  "documentType" : "pdf",
  "forceScrollDocument" : true,
  "id" : "sip_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "isDefault" : false,
  "isDisabled" : false,
  "name" : "Fanfiction",
  "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_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774341307,
  "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_AS8Hkb13nZG4E78Kmqsxg1k1 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "95sXLs6QyGr4KbCJ2wd7UZPn"
Content-Type: application/json
Content-Length: 1148

{
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Suspense/Thriller",
  "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_G2FPZptBGwsKoDYs9dMT7XLA
ETag: "3QtywwFrF9ktskJ5tMk11mtG"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1320

{
  "created" : 1750774946069,
  "documentType" : "pdf",
  "forceScrollDocument" : true,
  "id" : "sip_AS8Hkb13nZG4E78Kmqsxg1k1",
  "isDefault" : true,
  "isDisabled" : false,
  "name" : "Suspense/Thriller",
  "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_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774946121,
  "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=Fanfiction&items.id=sip_CwJX4ZWNj5YRUdWxh8vsFWYJ&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "items" : [ {
    "created" : 1750774341307,
    "documentType" : "pdf",
    "forceScrollDocument" : true,
    "id" : "sip_CwJX4ZWNj5YRUdWxh8vsFWYJ",
    "isDefault" : false,
    "isDisabled" : false,
    "name" : "Fanfiction",
    "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_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774341307,
    "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=Fanfiction&items.id=sip_CwJX4ZWNj5YRUdWxh8vsFWYJ&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 167

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

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_P7pbKim8dwvS5bQbLEnoWGHC
ETag: "9FGNR2PUytrridZ3gFwW5ND7"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 574

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774956086,
  "expired" : 1750861356083,
  "exportOperation" : "createSignatureProfileExport",
  "id" : "exp_7cjnRDcAx7dw1Suz8B96QqVp",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Fanfiction&items.id=sip_CwJX4ZWNj5YRUdWxh8vsFWYJ&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774956086,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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 YWRtaW46RmpVRW5zc0pRWjg4TVJ3ODVWSnh2b1pG
Content-Type: application/json
Content-Length: 1293

{
  "domainName" : "gerhold.com",
  "idpType" : "google",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpScope" : "openid email profile",
  "idpClientId" : "8440",
  "idpClientSecret" : "BVXEf2m2eHo2RY29LSjcLVrX",
  "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_3tjnsjQNsBe3AmFjPMkUmsqG",
  "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_JC9Q5pyQy9ejWPgwYXtBzBHy
ETag: "8gtgC9Wim8TCGSWZeDaWD3xx"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1352

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

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@7dfea2e2 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.
activateExternalArchive Boolean Indicates if evidence files are uploaded in an external archive system when the workflow is archived.
allowExternalArchive Boolean Indicates if the tenant is allowed to upload in an external archive system .
externalArchivingParameters class com.lexpersona.sgs.wm.api.tenants.ExternalArchivingParameters optional Parameters for the external archiving of archived workflow.
externalArchivingParameters.archivingSolution class com.lexpersona.sgs.wm.api.archiver.ArchivingSolution optional Archiving solution used to archive workflow. Possible values: cecuritySae.
externalArchivingParameters.filesToArchive ArrayList optional Targeted files to archive. Possible values: evidenceFiles.
externalArchivingParameters.metadata ArrayList optional Metadata to associate with the archived workflow.
externalArchivingParameters.metadata[].name String optional Metadata name to associate with the archived workflow.
externalArchivingParameters.metadata[].value String optional Metadata value to associate with the archived workflow. Values available are: {{workflowName}}, {{workflowId}}, {{archivedAt}} (date + time in ISO 8601 format)
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_3N8xS9FnQrEA6KS7fVDXTep8 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

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

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@7dfea2e2 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.
activateExternalArchive Boolean Indicates if evidence files are uploaded in an external archive system when the workflow is archived.
allowExternalArchive Boolean Indicates if the tenant is allowed to upload in an external archive system .
externalArchivingParameters class com.lexpersona.sgs.wm.api.tenants.ExternalArchivingParameters optional Parameters for the external archiving of archived workflow.
externalArchivingParameters.archivingSolution class com.lexpersona.sgs.wm.api.archiver.ArchivingSolution optional Archiving solution used to archive workflow. Possible values: cecuritySae.
externalArchivingParameters.filesToArchive ArrayList optional Targeted files to archive. Possible values: evidenceFiles.
externalArchivingParameters.metadata ArrayList optional Metadata to associate with the archived workflow.
externalArchivingParameters.metadata[].name String optional Metadata name to associate with the archived workflow.
externalArchivingParameters.metadata[].value String optional Metadata value to associate with the archived workflow. Values available are: {{workflowName}}, {{workflowId}}, {{archivedAt}} (date + time in ISO 8601 format)
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_F7xDqZBVhPoCZDh22MuiiEuv HTTP/1.1
Authorization: Bearer act_47XyZZCE8mkeQS7zw6gKrGk1.33uVJBDeY2RCJaq6NhNBxxCEBxmTKxSkNVVyALSDRABnsgypFvHyVPo2s5aXLDsf
If-Match: "VsrETxjnPQ7ZeYwjH2g6DRxK"
Content-Type: application/json
Content-Length: 1370

{
  "domainName" : "schmeler.io",
  "organizationName" : "Olivier EURL",
  "idpType" : "google",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpScope" : "openid email profile",
  "idpClientId" : "8440",
  "idpClientSecret" : "BVXEf2m2eHo2RY29LSjcLVrX",
  "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_3tjnsjQNsBe3AmFjPMkUmsqG",
  "certificateEvidenceLanguage" : "fr",
  "attachmentExtensions" : [ "pdf", "word" ],
  "lockDocumentsAfterFirstValidation" : false,
  "allowConsolidation" : true,
  "activateExternalArchive" : false
}

Path parameters:

/api/tenants/{tenantId}

Parameter Description
tenantId The identifier of the tenant.

Headers:

Name Description
Authorization A valid access token or admin credentials.

Fields:

Path Type Description
domainName String optional The domain name of the tenant.
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.
activateExternalArchive Boolean Indicates if evidence files are uploaded in an external archive system when the workflow is archived.
externalArchivingParameters class com.lexpersona.sgs.wm.api.tenants.ExternalArchivingParameters optional Parameters for the external archiving of archived workflow.
externalArchivingParameters.archivingSolution class com.lexpersona.sgs.wm.api.archiver.ArchivingSolution optional Archiving solution used to archive workflow. Possible values: cecuritySae.
externalArchivingParameters.filesToArchive ArrayList optional Targeted files to archive. Possible values: evidenceFiles.
externalArchivingParameters.metadata ArrayList optional Metadata to associate with the archived workflow.
externalArchivingParameters.metadata[].name String optional Metadata name to associate with the archived workflow.
externalArchivingParameters.metadata[].value String optional Metadata value to associate with the archived workflow.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_AHrMnnSnN7KG1PUzcouYNyG7
ETag: "FP6qVeGbYJ3SmsudY2QPvQTG"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1496

{
  "activateExternalArchive" : false,
  "allowCommentsInSteps" : false,
  "allowConsolidation" : true,
  "allowExternalArchive" : false,
  "allowWatchers" : false,
  "allowedTenantStatus" : [ "active", "inactive", "trial" ],
  "attachmentExtensions" : [ "pdf", "word" ],
  "certificateEvidenceLanguage" : "fr",
  "consentVersion" : "V2",
  "createUserOnLogin" : true,
  "createUserOnLoginGroupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "created" : 1750774924439,
  "darkColor" : "#104670",
  "defaultAllowComments" : false,
  "defaultCountry" : "FR",
  "defaultGroupId" : "grp_NymSNUBT8dbTFgGcxW3EmBnM",
  "domainName" : "schmeler.io",
  "downloadLinkTokenValidityDays" : 90,
  "externalArchivingParameters" : {
    "metadata" : [ ]
  },
  "forceFlattenPdf" : false,
  "id" : "ten_F7xDqZBVhPoCZDh22MuiiEuv",
  "idpBaseUrl" : "https://accounts.google.com/",
  "idpClientId" : "8440",
  "idpClientSecret" : "****************",
  "idpScope" : "openid email profile",
  "idpType" : "google",
  "jobOperation" : "purgeTenantResource",
  "lockDocumentsAfterFirstValidation" : false,
  "loginTokenTtl" : 3600000,
  "logoResourceId" : "res_ACgfBG3nN8sb9thkmB2qK6wj",
  "maxAttachments" : 10,
  "maxDocumentSize" : 10485760,
  "maxDocuments" : 200,
  "organizationName" : "Olivier EURL",
  "primaryColor" : "#208cdf",
  "secondaryColor" : "#4ca3e5",
  "smtpSenderName" : "My application",
  "technicalContactUrl" : "https://support.lex-persona.com",
  "tenantStatus" : "trial",
  "updated" : 1750774924589
}

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@7dfea2e2 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.
activateExternalArchive Boolean Indicates if evidence files are uploaded in an external archive system when the workflow is archived.
allowExternalArchive Boolean Indicates if the tenant is allowed to upload in an external archive system .
externalArchivingParameters class com.lexpersona.sgs.wm.api.tenants.ExternalArchivingParameters optional Parameters for the external archiving of archived workflow.
externalArchivingParameters.archivingSolution class com.lexpersona.sgs.wm.api.archiver.ArchivingSolution optional Archiving solution used to archive workflow. Possible values: cecuritySae.
externalArchivingParameters.filesToArchive ArrayList optional Targeted files to archive. Possible values: evidenceFiles.
externalArchivingParameters.metadata ArrayList optional Metadata to associate with the archived workflow.
externalArchivingParameters.metadata[].name String optional Metadata name to associate with the archived workflow.
externalArchivingParameters.metadata[].value String optional Metadata value to associate with the archived workflow. Values available are: {{workflowName}}, {{workflowId}}, {{archivedAt}} (date + time in ISO 8601 format)
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_HbssXdH2QcRtxrSRVN3S78C7 HTTP/1.1
Authorization: Basic YWRtaW46RmpVRW5zc0pRWjg4TVJ3ODVWSnh2b1pG
If-Match: "DVoJPePxkQvvtFVd3FSv2Myw"

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_7uQxWcSjrfsxodqCHraNMxjk
ETag: "CvBbdubKKbDZ4kpJGH6D19Bw"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1307

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

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@7dfea2e2 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.
activateExternalArchive Boolean Indicates if evidence files are uploaded in an external archive system when the workflow is archived.
allowExternalArchive Boolean Indicates if the tenant is allowed to upload in an external archive system .
externalArchivingParameters class com.lexpersona.sgs.wm.api.tenants.ExternalArchivingParameters optional Parameters for the external archiving of archived workflow.
externalArchivingParameters.archivingSolution class com.lexpersona.sgs.wm.api.archiver.ArchivingSolution optional Archiving solution used to archive workflow. Possible values: cecuritySae.
externalArchivingParameters.filesToArchive ArrayList optional Targeted files to archive. Possible values: evidenceFiles.
externalArchivingParameters.metadata ArrayList optional Metadata to associate with the archived workflow.
externalArchivingParameters.metadata[].name String optional Metadata name to associate with the archived workflow.
externalArchivingParameters.metadata[].value String optional Metadata value to associate with the archived workflow. Values available are: {{workflowName}}, {{workflowId}}, {{archivedAt}} (date + time in ISO 8601 format)
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=kris.biz&items.id=ten_3N8xS9FnQrEA6KS7fVDXTep8&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Basic YWRtaW46RmpVRW5zc0pRWjg4TVJ3ODVWSnh2b1pG

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

{
  "items" : [ {
    "activateExternalArchive" : false,
    "allowCommentsInSteps" : true,
    "allowConsolidation" : true,
    "allowExternalArchive" : false,
    "allowWatchers" : true,
    "allowedTenantStatus" : [ "active", "inactive", "trial" ],
    "attachmentExtensions" : [ ],
    "certificateEvidenceLanguage" : "en",
    "consentVersion" : "V2",
    "createUserOnLogin" : true,
    "created" : 1750774340269,
    "darkColor" : "#104670",
    "defaultAllowComments" : true,
    "defaultCountry" : "FR",
    "defaultGroupId" : "grp_8oDjbwPeNZvZKPMy292EJNBP",
    "domainName" : "kris.biz",
    "downloadLinkTokenValidityDays" : 3650,
    "forceFlattenPdf" : true,
    "id" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "idpBaseUrl" : "https://accounts.google.com/",
    "idpClientId" : "8440",
    "idpClientSecret" : "****************",
    "idpScope" : "openid email profile",
    "idpType" : "google",
    "lockDocumentsAfterFirstValidation" : false,
    "loginTokenTtl" : 3600000,
    "logoResourceId" : "res_7SYVRY12Uhgt1hBXkg6nZfA5",
    "maxAttachments" : 10,
    "maxDocumentSize" : 10485760,
    "maxDocuments" : 200,
    "primaryColor" : "#208cdf",
    "secondaryColor" : "#4ca3e5",
    "smtpSenderName" : "My application",
    "technicalContactUrl" : "https://support.lex-persona.com",
    "tenantStatus" : "trial",
    "updated" : 1750774340269
  } ],
  "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@7dfea2e2 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[].activateExternalArchive Boolean Indicates if evidence files are uploaded in an external archive system when the workflow is archived.
items[].allowExternalArchive Boolean Indicates if the tenant is allowed to upload in an external archive system .
items[].externalArchivingParameters class com.lexpersona.sgs.wm.api.tenants.ExternalArchivingParameters optional Parameters for the external archiving of archived workflow.
items[].externalArchivingParameters.archivingSolution class com.lexpersona.sgs.wm.api.archiver.ArchivingSolution optional Archiving solution used to archive workflow. Possible values: cecuritySae.
items[].externalArchivingParameters.filesToArchive ArrayList optional Targeted files to archive. Possible values: evidenceFiles.
items[].externalArchivingParameters.metadata ArrayList optional Metadata to associate with the archived workflow.
items[].externalArchivingParameters.metadata[].name String optional Metadata name to associate with the archived workflow.
items[].externalArchivingParameters.metadata[].value String optional Metadata value to associate with the archived workflow. Values available are: {{workflowName}}, {{workflowId}}, {{archivedAt}} (date + time in ISO 8601 format)
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=kris.biz&items.id=ten_3N8xS9FnQrEA6KS7fVDXTep8&sortBy=items.id HTTP/1.1
Authorization: Basic YWRtaW46RmpVRW5zc0pRWjg4TVJ3ODVWSnh2b1pG
Content-Type: application/json
Content-Length: 167

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

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_7J2mRs7p1Jr9mYP8zgJwGU9X
ETag: "77LtuXLu1QAdDwe8tQMPAuyz"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 495

{
  "adminUser" : "admin",
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774931179,
  "expired" : 1750861331178,
  "exportOperation" : "createTenantExport",
  "id" : "exp_KdkBU6kTw7tANygrs14QbuB7",
  "itemTemplate" : "{{id}},{{name}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=kris.biz&items.id=ten_3N8xS9FnQrEA6KS7fVDXTep8&sortBy=items.id",
  "size" : 0,
  "totalItems" : 0,
  "updated" : 1750774931179
}

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_3N8xS9FnQrEA6KS7fVDXTep8/users HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 800

{
  "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "isDisabled" : false,
  "email" : "jeanice.marquardt751@my-company.com",
  "picture" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
  "phoneNumber" : "+33 6 12 34 56 78",
  "comments" : "Et eos quibusdam ut beatae eveniet.",
  "firstName" : "Marie",
  "lastName" : "Dubois",
  "country" : "FR",
  "organizationTitles" : [ {
    "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
    "title" : "Direct Quality Assistant"
  } ],
  "subject" : "e6cbf224-e0a3-4978-b81f-f7a0a0fdb2c3"
}

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_EMUUrpXrfHRxXXvSMrjtQpnh
ETag: "62iCL7UkAzQhbjuacy73d2x9"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 933

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "comments" : "Et eos quibusdam ut beatae eveniet.",
  "country" : "FR",
  "created" : 1750774520334,
  "email" : "jeanice.marquardt751@my-company.com",
  "firstName" : "Marie",
  "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "usr_BReaoK3itQWxPWSg16Qzs5pS",
  "isDisabled" : false,
  "lastLogin" : 0,
  "lastName" : "Dubois",
  "name" : "Marie Dubois",
  "organizationTitles" : [ {
    "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
    "title" : "Direct Quality Assistant"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_GzbX4PFXnQJpn94NKwegPZpn",
  "signAllowed" : true,
  "subject" : "e6cbf224-e0a3-4978-b81f-f7a0a0fdb2c3",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774520334,
  "userGroupedInvitationsMode" : true,
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ]
}

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
userGroupedInvitationsMode Boolean optional Whether or not the user wants to receive grouped notification according to group settings
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_JJSUF2dgMiibE2USNkXuyA2P HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "comments" : "Ut ratione harum ut.",
  "country" : "FR",
  "created" : 1750774342498,
  "email" : "alfred.kertzmann3269@my-company.com",
  "firstName" : "Coleman",
  "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "isDisabled" : false,
  "lastLogin" : 1750774342618,
  "lastName" : "Wilkinson",
  "name" : "Coleman Wilkinson",
  "organizationTitles" : [ {
    "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
    "title" : "Customer Applications Producteur"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "signAllowed" : true,
  "subject" : "9ec52ca6-5a94-4406-b5ea-888dd4e64afb",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774342620,
  "userGroupedInvitationsMode" : true,
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ]
}

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
userGroupedInvitationsMode Boolean optional Whether or not the user wants to receive grouped notification according to group settings
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_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

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

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "comments" : "Ut ratione harum ut.",
  "country" : "FR",
  "created" : 1750774342498,
  "email" : "alfred.kertzmann3269@my-company.com",
  "firstName" : "Coleman",
  "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "isDisabled" : false,
  "lastLogin" : 1750774342618,
  "lastName" : "Wilkinson",
  "name" : "Coleman Wilkinson",
  "organizationTitles" : [ {
    "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
    "title" : "Customer Applications Producteur"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "signAllowed" : true,
  "subject" : "9ec52ca6-5a94-4406-b5ea-888dd4e64afb",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774342620,
  "userGroupedInvitationsMode" : true,
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ]
}

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
userGroupedInvitationsMode Boolean optional Whether or not the user wants to receive grouped notification according to group settings
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_JTc7RL6exBUeCHfsRFAkBn3G HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "BRcLADopAD7wffU7N55PbATR"
Content-Type: application/json
Content-Length: 796

{
  "groupId" : "grp_8oDjbwPeNZvZKPMy292EJNBP",
  "isDisabled" : false,
  "email" : "angelo.heathcote4254@my-company.com",
  "picture" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
  "phoneNumber" : "+33 6 12 34 56 78",
  "comments" : "Hic animi in quia dolorem.",
  "firstName" : "Manon",
  "lastName" : "Berger",
  "country" : "FR",
  "organizationTitles" : [ {
    "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
    "title" : "Lead Functionality Architecte"
  } ],
  "subject" : "69d71b52-b23c-46cb-a82c-4f640173c53a"
}

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_KUR8wJiNMCjhhehbBgW5PYcb
ETag: "ApFFBz6NRMDVGeY9S9HzFMKB"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 904

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "comments" : "Hic animi in quia dolorem.",
  "country" : "FR",
  "created" : 1750774522710,
  "email" : "angelo.heathcote4254@my-company.com",
  "firstName" : "Manon",
  "groupId" : "grp_8oDjbwPeNZvZKPMy292EJNBP",
  "id" : "usr_JTc7RL6exBUeCHfsRFAkBn3G",
  "isDisabled" : false,
  "jobOperation" : "refreshUserInfo",
  "lastLogin" : 0,
  "lastName" : "Berger",
  "name" : "Manon Berger",
  "organizationTitles" : [ {
    "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
    "title" : "Lead Functionality Architecte"
  } ],
  "phoneNumber" : "+33 6 12 34 56 78",
  "pictureResourceId" : "res_PjvQPfLFqj6TgByx7ERqJXgY",
  "signAllowed" : true,
  "subject" : "69d71b52-b23c-46cb-a82c-4f640173c53a",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774522757,
  "userGroupedInvitationsMode" : true,
  "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
userGroupedInvitationsMode Boolean optional Whether or not the user wants to receive grouped notification according to group settings
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_JJSUF2dgMiibE2USNkXuyA2P/loginTokens HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
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_NWFxi4DYXUSjcrVam4Nh7VN3
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 370

{
  "created" : 1750774582162,
  "expired" : 1750778182162,
  "scope" : "portalUser",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "tokenValue" : "eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NTA3NzgxODIsInVzZXJJZCI6InVzcl9KSlNVRjJkZ01paWJFMlVTTmtYdXlBMlAiLCJzY29wZSI6InBvcnRhbFV...",
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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

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_664HYnYzkis81UAbFPAYvtyF
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_HABUaAzEnDtF6MePd1AtMHd2 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "9xLQGMJXfGwQah68QaNuyiYa"

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_54WHnfmQBaeiGqs1SoqbCAjQ
ETag: "5TbnEQG8rhYsU9HszDSsb1r2"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 624

{
  "approveAllowed" : true,
  "comanageAllowed" : true,
  "comments" : "",
  "country" : "",
  "created" : 1750774511967,
  "email" : "usr_HABUaAzEnDtF6MePd1AtMHd2@anonymized",
  "firstName" : "",
  "groupId" : "grp_8oDjbwPeNZvZKPMy292EJNBP",
  "id" : "usr_HABUaAzEnDtF6MePd1AtMHd2",
  "isDisabled" : true,
  "jobOperation" : "purgeUserResource",
  "lastLogin" : 0,
  "lastName" : "",
  "name" : "",
  "organizationTitles" : [ ],
  "phoneNumber" : "",
  "signAllowed" : true,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774512006,
  "userGroupedInvitationsMode" : true,
  "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
userGroupedInvitationsMode Boolean optional Whether or not the user wants to receive grouped notification according to group settings
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=Coleman%20Wilkinson&items.id=usr_JJSUF2dgMiibE2USNkXuyA2P&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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.
items.userGroupedInvitationsMode The filter value(s) for the userGroupedInvitationsMode 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: 1082

{
  "items" : [ {
    "approveAllowed" : true,
    "comanageAllowed" : true,
    "comments" : "Ut ratione harum ut.",
    "country" : "FR",
    "created" : 1750774342498,
    "email" : "alfred.kertzmann3269@my-company.com",
    "firstName" : "Coleman",
    "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
    "id" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
    "isDisabled" : false,
    "lastLogin" : 1750774342618,
    "lastName" : "Wilkinson",
    "name" : "Coleman Wilkinson",
    "organizationTitles" : [ {
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "title" : "Customer Applications Producteur"
    } ],
    "phoneNumber" : "+33 6 12 34 56 78",
    "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
    "signAllowed" : true,
    "subject" : "9ec52ca6-5a94-4406-b5ea-888dd4e64afb",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774342620,
    "userGroupedInvitationsMode" : true,
    "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ]
  } ],
  "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[].userGroupedInvitationsMode Boolean optional Whether or not the user wants to receive grouped notification according to group settings
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=Coleman%20Wilkinson&items.id=usr_JJSUF2dgMiibE2USNkXuyA2P&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 195

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

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.
items.userGroupedInvitationsMode The filter value(s) for the userGroupedInvitationsMode 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_9pEVQxdLdJYRjpwAvag8e2vD
ETag: "6XrXiZvFSCBHu6eimXjKudon"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 597

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774509923,
  "expired" : 1750860909920,
  "exportOperation" : "createUserExport",
  "id" : "exp_NyyYh9TVb2PYzSJxLEJgpU2g",
  "itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Coleman+Wilkinson&items.id=usr_JJSUF2dgMiibE2USNkXuyA2P&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774509923,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_JJSUF2dgMiibE2USNkXuyA2P/webhooks HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 251

{
  "endpointUrl" : "https://my-company.com/Nkhepv9XggPJsQrsDToTpVKm",
  "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_McPs3HUi5FUppA6K7hmJ4hMz
ETag: "7Gh8X1Wh62bKicAYgDbh7P1W"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 467

{
  "created" : 1750774363716,
  "customHeaders" : { },
  "endpointUrl" : "https://my-company.com/Nkhepv9XggPJsQrsDToTpVKm",
  "id" : "wbh_2s7rm5Uz3Jjj8hmYgXiUoALe",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774363716,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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.
customHeaders Object optional A list of custom headers, each containing a key and a value.
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_3N8xS9FnQrEA6KS7fVDXTep8/webhooks HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 251

{
  "endpointUrl" : "https://my-company.com/LRbtve5JyC3PGzpNiEuEuQnF",
  "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_DccwvSB2DLk4NHBFDF2atsNx
ETag: "4QtBvyrsLGg1WTX6zmEAYydm"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 422

{
  "created" : 1750774362369,
  "customHeaders" : { },
  "endpointUrl" : "https://my-company.com/LRbtve5JyC3PGzpNiEuEuQnF",
  "id" : "wbh_5YJeeBWstMYdjNsEzMrJphq4",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774362369
}

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.
customHeaders Object optional A list of custom headers, each containing a key and a value.
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_4X5ngyUKozPqjXKuxvJL9Poa HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "created" : 1750774342727,
  "customHeaders" : {
    "X-Test-Header" : "TestValue"
  },
  "endpointUrl" : "https://my-company.com/9wYtBg3oABAumWJgCNUGeBu7",
  "id" : "wbh_4X5ngyUKozPqjXKuxvJL9Poa",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774358131,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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.
customHeaders Object optional A list of custom headers, each containing a key and a value.
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_4X5ngyUKozPqjXKuxvJL9Poa HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "3JMUZkjiH2kADupecNR5Hvnz"
Content-Type: application/json
Content-Length: 312

{
  "endpointUrl" : "https://my-company.com/9V4o6K7K5gg9MxXdq71CzLVb",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "coManagerRemoved", "coManagerAdded", "workflowFinished" ],
  "customHeaders" : {
    "X-Test-Header" : "TestValue"
  }
}

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.
customHeaders Object optional A map of custom headers with key-value pairs.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_9eLYkCsYcLqPZ5caJpgGEcFm
ETag: "DavvCDBn4gKi1PJTMxAb9tUV"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 503

{
  "created" : 1750774342727,
  "customHeaders" : {
    "X-Test-Header" : "TestValue"
  },
  "endpointUrl" : "https://my-company.com/9V4o6K7K5gg9MxXdq71CzLVb",
  "id" : "wbh_4X5ngyUKozPqjXKuxvJL9Poa",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774355049,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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.
customHeaders Object optional A list of custom headers, each containing a key and a value.
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_99nNdiA9mhEV7RMLc556LB8X HTTP/1.1
Authorization: Bearer act_9EtYckc67ykcHV8v6fuP9MS3.T9jhJgXZsyLsQ3txk4xpnfwgHxFDDdEKNDjwtEW17VFrhVEAPLbpDZyqdX5bnUFj

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_6L4xH6LYxHu2ppGXBPHWFxnL
ETag: "7zPwpdTXZxoqEpjmrCof4A9N"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 467

{
  "created" : 1750774349672,
  "customHeaders" : { },
  "endpointUrl" : "https://my-company.com/6P6DirzxoM6LBEwtN9Em3QAm",
  "id" : "wbh_99nNdiA9mhEV7RMLc556LB8X",
  "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774349672,
  "userId" : "usr_HNFJ61thPrQ1CuR9R8bxMHDx"
}

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.
customHeaders Object optional A list of custom headers, each containing a key and a value.
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%2FAA2HhRJL2DkZzVdmcxDYLAU8&items.id=wbh_4X5ngyUKozPqjXKuxvJL9Poa&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "items" : [ {
    "created" : 1750774342727,
    "customHeaders" : { },
    "endpointUrl" : "https://my-company.com/AA2HhRJL2DkZzVdmcxDYLAU8",
    "id" : "wbh_4X5ngyUKozPqjXKuxvJL9Poa",
    "notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774342727,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
  } ],
  "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[].customHeaders Object optional A list of custom headers, each containing a key and a value.
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_8WyQeZBztqT2bAGAyJhub4Mv HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "created" : 1750774344162,
  "eventType" : "workflowStarted",
  "id" : "wbe_8WyQeZBztqT2bAGAyJhub4Mv",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774402553,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "webhookId" : "wbh_4X5ngyUKozPqjXKuxvJL9Poa",
  "workflowId" : "wfl_H4B3QWiRDAqirNyxFqSHp9zc"
}

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_4X5ngyUKozPqjXKuxvJL9Poa&items.id=wbe_8WyQeZBztqT2bAGAyJhub4Mv&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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" : 1750774344162,
    "eventType" : "workflowStarted",
    "id" : "wbe_8WyQeZBztqT2bAGAyJhub4Mv",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774402553,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
    "webhookId" : "wbh_4X5ngyUKozPqjXKuxvJL9Poa",
    "workflowId" : "wfl_H4B3QWiRDAqirNyxFqSHp9zc"
  } ],
  "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_JJSUF2dgMiibE2USNkXuyA2P/workflows HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 1561

{
  "name" : "Fantastic Iron Computer",
  "description" : "Apt. 904, 2985 Avenue d'Argenteuil, 86575 Toulouse",
  "steps" : [ {
    "stepType" : "signature",
    "recipients" : [ {
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "email" : "marcell.rath338@my-company.com",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz",
      "phoneNumber" : "+33 6 12 34 56 78",
      "comments" : "Commodi rem sunt.",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "country" : "FR",
      "preferredLocale" : "fr",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ"
    } ],
    "requiredRecipients" : 1,
    "validityPeriod" : 8553600000,
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "sendDownloadLink" : true,
    "allowComments" : true,
    "hideAttachments" : false,
    "viewConfidentialAttachments" : true,
    "hideWorkflowRecipients" : true
  } ],
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "watchers" : [ {
    "userId" : "usr_7XETn7BuUTDhb1zRXn4TezeT",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "email" : "edmund.hoeger2495@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[].viewConfidentialAttachments Boolean optional Whether or not the confidential 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_Jart4je7auDhLxzu1aqngwBA
ETag: "GsM79A2mRj5wDh5mfuAv7995"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2488

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1750774702121,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "Apt. 904, 2985 Avenue d'Argenteuil, 86575 Toulouse",
  "email" : "alfred.kertzmann3269@my-company.com",
  "firstName" : "Coleman",
  "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "wfl_7zb77foZCioPWMHoqzcgDb9F",
  "lastName" : "Wilkinson",
  "logs" : [ ],
  "name" : "Fantastic Iron Computer",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : true,
    "id" : "stp_3Nn5GYdMXz5E4awv2ViWYW5w",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "Commodi rem sunt.",
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "country" : "FR",
      "email" : "marcell.rath338@my-company.com",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
      "preferredLocale" : "fr",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000,
    "viewConfidentialAttachments" : true
  } ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774702121,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "viewAuthorizedUsers" : [ "usr_7XETn7BuUTDhb1zRXn4TezeT" ],
  "watchers" : [ {
    "email" : "edmund.hoeger2495@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_7XETn7BuUTDhb1zRXn4TezeT"
  } ],
  "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[].viewConfidentialAttachments Boolean Whether or not the confidential 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_Am27nkLLvbPc1rKaJNV5sxPx HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1750774371201,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "8 Allée, Voie de la Chaussée-d'Antin, 74605 Saint-Denis",
  "email" : "alfred.kertzmann3269@my-company.com",
  "firstName" : "Coleman",
  "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "wfl_Am27nkLLvbPc1rKaJNV5sxPx",
  "lastName" : "Wilkinson",
  "logs" : [ {
    "commentId" : "com_AaiXsBEZPBwPwqbuT26jHaYX",
    "created" : 1750774371457,
    "operation" : "notifyCommentCreated"
  } ],
  "name" : "Lightweight Paper Lamp",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_7ppcz7gU2JZDSEHNLqqtpEMs",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "Commodi rem sunt.",
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "country" : "FR",
      "email" : "marcell.rath338@my-company.com",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
      "preferredLocale" : "fr",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000,
    "viewConfidentialAttachments" : true
  } ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774371802,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "viewAuthorizedUsers" : [ "usr_8MmEHSPc3MbbEBFXkkNnZvX4" ],
  "watchers" : [ {
    "email" : "arnetta.hamill1111@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_8MmEHSPc3MbbEBFXkkNnZvX4"
  } ],
  "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[].viewConfidentialAttachments Boolean Whether or not the confidential 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_AT7LXcezDVvatbdCtKibccDB HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "FvQvXHgZT3AX26mnbfSe7sJt"
Content-Type: application/json
Content-Length: 1653

{
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "name" : "Aerodynamic Copper Shirt",
  "description" : "5 étage, 901 Allée, Voie des Rosiers, 78727 Metz",
  "steps" : [ {
    "id" : "stp_DVJ6q9rLEJg32XQAUmKvWUz8",
    "recipients" : [ {
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "email" : "marcell.rath338@my-company.com",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz",
      "phoneNumber" : "+33 6 12 34 56 78",
      "comments" : "Commodi rem sunt.",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "country" : "FR",
      "preferredLocale" : "fr",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ"
    } ],
    "requiredRecipients" : 1,
    "validityPeriod" : 8553600000,
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "sendDownloadLink" : true,
    "allowComments" : true,
    "hideAttachments" : false,
    "viewConfidentialAttachments" : true,
    "hideWorkflowRecipients" : true
  } ],
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "allowedCoManagerUsers" : [ ],
  "watchers" : [ {
    "userId" : "usr_MNZwkxexuYsdApZUPqsfXJ3h",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "email" : "abdul.walker7577@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[].viewConfidentialAttachments Boolean optional Whether or not the confidential 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_2cDWxRes2bsWe38xio5cJd3i
ETag: "HrQ9uy99V5NbtTP3hQ4zc85N"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2547

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1750774714937,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "5 étage, 901 Allée, Voie des Rosiers, 78727 Metz",
  "email" : "alfred.kertzmann3269@my-company.com",
  "firstName" : "Coleman",
  "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "wfl_AT7LXcezDVvatbdCtKibccDB",
  "jobOperation" : "refreshWorkflowViewAuthorizedUsers",
  "lastName" : "Wilkinson",
  "logs" : [ ],
  "name" : "Aerodynamic Copper Shirt",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : true,
    "id" : "stp_DVJ6q9rLEJg32XQAUmKvWUz8",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "Commodi rem sunt.",
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "country" : "FR",
      "email" : "marcell.rath338@my-company.com",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
      "preferredLocale" : "fr",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000,
    "viewConfidentialAttachments" : true
  } ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774715008,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "viewAuthorizedUsers" : [ "usr_MNZwkxexuYsdApZUPqsfXJ3h" ],
  "watchers" : [ {
    "email" : "abdul.walker7577@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_MNZwkxexuYsdApZUPqsfXJ3h"
  } ],
  "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[].viewConfidentialAttachments Boolean Whether or not the confidential 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[].viewConfidentialAttachments Boolean optional Whether or not the confidential 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,
    "viewConfidentialAttachments" : true,
    "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[].viewConfidentialAttachments Boolean optional Whether or not the confidential 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.
externalArchiveStatus String The status of the external Archiving.
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_Lmh9aFbpFfkQoLqEGy6mik88/copy HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 1464

{
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "name" : "new Workflow",
  "description" : "6 étage, 3 Avenue de Paris, 61000 Mérignac",
  "steps" : [ {
    "id" : "stp_KCrKDEWZs7uctZkdeY7qzjc8",
    "recipients" : [ {
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "email" : "marcell.rath338@my-company.com",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz",
      "phoneNumber" : "+33 6 12 34 56 78",
      "comments" : "Commodi rem sunt.",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "country" : "FR",
      "preferredLocale" : "fr",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ"
    } ],
    "requiredRecipients" : 1,
    "validityPeriod" : 8553600000,
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "sendDownloadLink" : true
  } ],
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "watchers" : [ {
    "userId" : "usr_4RWPbuVdr2B2R2mK1No3abc6",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "email" : "milton.lemke4551@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_CLTpvxMYDHMYvR6BwWnG2mir
ETag: "6Fi8Z8zmKtCterYoxFoKcU6p"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2473

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1750774656861,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "6 étage, 3 Avenue de Paris, 61000 Mérignac",
  "email" : "alfred.kertzmann3269@my-company.com",
  "firstName" : "Coleman",
  "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "wfl_BEdj8M3SHdyvAScHbA6LUX6o",
  "lastName" : "Wilkinson",
  "logs" : [ ],
  "name" : "new Workflow",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_KCrKDEWZs7uctZkdeY7qzjc8",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "Commodi rem sunt.",
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "country" : "FR",
      "email" : "marcell.rath338@my-company.com",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
      "preferredLocale" : "fr",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000,
    "viewConfidentialAttachments" : true
  } ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774656861,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "viewAuthorizedUsers" : [ "usr_4RWPbuVdr2B2R2mK1No3abc6" ],
  "watchers" : [ {
    "email" : "milton.lemke4551@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_4RWPbuVdr2B2R2mK1No3abc6"
  } ],
  "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[].viewConfidentialAttachments Boolean Whether or not the confidential 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_H4B3QWiRDAqirNyxFqSHp9zc/invite HTTP/1.1
Authorization: Bearer act_BkzTWr2wkP5ArAaVkARLKP9x.3ycDKe1PfDTgPJaqJGFPQMB5BvA42cb5FESREposGQGcJeq8iV1uKCtwDYGYbKP4
Content-Type: application/json
Content-Length: 57

{
  "recipientEmail" : "marcell.rath338@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_E6SeSX1rBPzX4DmDZHbL6xS5
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 388

{
  "inviteUrl" : "https://kris.biz/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0dCZlVzVkphSE1UNTFjSGVtM..."
}

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_9h7TrgbvMcgQTsgr5Yp7hyya/sendInvite HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 57

{
  "recipientEmail" : "marcell.rath338@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_DFhiRVFYdtUKRZX27zy3CaPS
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 388

{
  "inviteUrl" : "https://kris.biz/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0NHN1dOQmZEZUVyTjNnRHNjU..."
}

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_9fpdfBysbWggU7S1npbK7mQB/refuse HTTP/1.1
Authorization: Bearer act_BkzTWr2wkP5ArAaVkARLKP9x.3ycDKe1PfDTgPJaqJGFPQMB5BvA42cb5FESREposGQGcJeq8iV1uKCtwDYGYbKP4
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_NbjmgjAnvq8WE4JE7fRq1SLS
ETag: "3NgcjyCMbdY7Fc3HV4rjPXC3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 3212

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1750774650936,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "392 Rue Joubert, 86785 Béziers",
  "email" : "alfred.kertzmann3269@my-company.com",
  "firstName" : "Coleman",
  "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "wfl_9fpdfBysbWggU7S1npbK7mQB",
  "jobOperation" : "processWorkflow",
  "lastName" : "Wilkinson",
  "logs" : [ ],
  "name" : "Intelligent Plastic Computer",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "progress" : 0,
  "started" : 1750774651047,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_2iDPPWckM4LgzoyHZkt5U4yN",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : true,
    "logs" : [ {
      "created" : 1750774651047,
      "operation" : "start"
    }, {
      "created" : 1750774651047,
      "operation" : "notifyWorkflowStarted"
    }, {
      "created" : 1750774651269,
      "operation" : "invite",
      "recipientEmail" : "marcell.rath338@my-company.com",
      "recipientUserId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
    }, {
      "created" : 1750774651336,
      "operation" : "refuse",
      "reason" : "I disagree.",
      "recipientEmail" : "marcell.rath338@my-company.com",
      "recipientUserId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
    }, {
      "created" : 1750774651336,
      "operation" : "stop"
    } ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "Commodi rem sunt.",
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "country" : "FR",
      "email" : "marcell.rath338@my-company.com",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
      "preferredLocale" : "fr",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000,
    "viewConfidentialAttachments" : true
  } ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774651336,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "viewAuthorizedUsers" : [ "usr_GrVg1P2rvFyJosdPriMz5Rrr", "usr_Nyr7J5Mw3itKbFcrzFUhe1qz" ],
  "watchers" : [ {
    "email" : "guadalupe.lubowitz8824@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_GrVg1P2rvFyJosdPriMz5Rrr"
  } ],
  "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[].viewConfidentialAttachments Boolean Whether or not the confidential 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_A2EGnbZdg8qP9K8gTNqvy2ZM HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "9VzfjNKHo4jmVn8BDsDYa9WB"

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_HKD8T75MfiJ3QGyrb3gcmiTU
ETag: "B4BLzxsmWa1edgMdQFRbQkqb"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2524

{
  "allowConsolidation" : true,
  "allowedCoManagerUsers" : [ ],
  "coManagerNotifiedEvents" : [ ],
  "created" : 1750774677543,
  "currentRecipientEmails" : [ ],
  "currentRecipientUsers" : [ ],
  "description" : "2 étage, 4029 Impasse de la Paix, 52667 Lille",
  "email" : "alfred.kertzmann3269@my-company.com",
  "firstName" : "Coleman",
  "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "wfl_A2EGnbZdg8qP9K8gTNqvy2ZM",
  "jobOperation" : "purgeWorkflow",
  "lastName" : "Wilkinson",
  "logs" : [ ],
  "name" : "Synergistic Concrete Coat",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "progress" : 0,
  "steps" : [ {
    "allowComments" : true,
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_3LZjpWc8dU9NQwCEwiYTXY77",
    "invitePeriod" : 86400000,
    "isFinished" : false,
    "isStarted" : false,
    "logs" : [ ],
    "maxInvites" : 5,
    "recipients" : [ {
      "comments" : "Commodi rem sunt.",
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "country" : "FR",
      "email" : "marcell.rath338@my-company.com",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
      "preferredLocale" : "fr",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
    } ],
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000,
    "viewConfidentialAttachments" : true
  } ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774677581,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "viewAuthorizedUsers" : [ "usr_2LVUHq1K3ya2YrJ8zrNxMMXi" ],
  "watchers" : [ {
    "email" : "hipolito.huels4999@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
    "userId" : "usr_2LVUHq1K3ya2YrJ8zrNxMMXi"
  } ],
  "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[].viewConfidentialAttachments Boolean Whether or not the confidential attachments are displayed to the recipients of the step.
steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
steps[].logs Array The logs of the step.
currentRecipientEmails Array The list of recipient emails currently invited to sign or approve.
currentRecipientUsers Array The list of recipient users currently invited to sign or approve.
notifiedEvents Array The type of events the owner will receive notifications about.
watchers Array The list of watchers of the workflow.
watchers[].userId String optional The identifier of the user, in case the watcher is a user.
watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
watchers Array The list of users allowed to see the workflow and notified about the workflow events.
workflowStatus String The status of the workflow.
started Number optional The date the workflow was started for the first time.
progress Number The progress of the workflow.
templateId String optional The identifier of the workflow template.
allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.
jobOperation String optional The job operation currently running.
created Number The creation date of the entity.
updated Number The last modification date of the entity.

Errors:

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

Search workflows

Search in all the workflows.

HTTP request

GET /api/workflows?text=Lightweight%20Paper%20Lamp&items.id=wfl_Am27nkLLvbPc1rKaJNV5sxPx&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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.
items.externalArchiveStatus The filter value(s) for the externalArchiveStatus 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: 2834

{
  "items" : [ {
    "allowConsolidation" : true,
    "allowedCoManagerUsers" : [ ],
    "coManagerNotifiedEvents" : [ ],
    "created" : 1750774371201,
    "currentRecipientEmails" : [ ],
    "currentRecipientUsers" : [ ],
    "description" : "8 Allée, Voie de la Chaussée-d'Antin, 74605 Saint-Denis",
    "email" : "alfred.kertzmann3269@my-company.com",
    "firstName" : "Coleman",
    "groupId" : "grp_3tjnsjQNsBe3AmFjPMkUmsqG",
    "id" : "wfl_Am27nkLLvbPc1rKaJNV5sxPx",
    "lastName" : "Wilkinson",
    "logs" : [ {
      "commentId" : "com_AaiXsBEZPBwPwqbuT26jHaYX",
      "created" : 1750774371457,
      "operation" : "notifyCommentCreated"
    } ],
    "name" : "Lightweight Paper Lamp",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
    "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
    "progress" : 0,
    "steps" : [ {
      "allowComments" : true,
      "hideAttachments" : false,
      "hideWorkflowRecipients" : false,
      "id" : "stp_7ppcz7gU2JZDSEHNLqqtpEMs",
      "invitePeriod" : 86400000,
      "isFinished" : false,
      "isStarted" : false,
      "logs" : [ ],
      "maxInvites" : 5,
      "recipients" : [ {
        "comments" : "Commodi rem sunt.",
        "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
        "country" : "FR",
        "email" : "marcell.rath338@my-company.com",
        "firstName" : "Celeste",
        "lastName" : "Graham",
        "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
        "phoneNumber" : "+33 6 12 34 56 78",
        "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
        "preferredLocale" : "fr",
        "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
      } ],
      "requiredRecipients" : 1,
      "sendDownloadLink" : true,
      "stepType" : "signature",
      "validityPeriod" : 8553600000,
      "viewConfidentialAttachments" : true
    } ],
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774371802,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
    "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "viewAuthorizedUsers" : [ "usr_8MmEHSPc3MbbEBFXkkNnZvX4" ],
    "watchers" : [ {
      "email" : "arnetta.hamill1111@my-company.com",
      "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
    }, {
      "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
      "userId" : "usr_8MmEHSPc3MbbEBFXkkNnZvX4"
    } ],
    "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[].viewConfidentialAttachments Boolean Whether or not the confidential attachments are displayed to the recipients of the step.
items[].steps[].hideWorkflowRecipients Boolean Whether or not other recipients of the workflow are visible to the recipients in this step.
items[].steps[].logs Array The logs of the step.
items[].currentRecipientEmails Array The list of recipient emails currently invited to sign or approve.
items[].currentRecipientUsers Array The list of recipient users currently invited to sign or approve.
items[].notifiedEvents Array The type of events the owner will receive notifications about.
items[].watchers Array The list of watchers of the workflow.
items[].watchers[].userId String optional The identifier of the user, in case the watcher is a user.
items[].watchers[].email String optional The email address of the watcher, in case the watcher is not a user.
items[].watchers[].notifiedEvents Array The type of events the watcher will receive notifications about.
items[].watchers Array The list of users allowed to see the workflow and notified about the workflow events.
items[].workflowStatus String The status of the workflow.
items[].started Number optional The date the workflow was started for the first time.
items[].progress Number The progress of the workflow.
items[].templateId String optional The identifier of the workflow template.
items[].allowedCoManagerUsers Array optional The list of comanagers allowed to be assigned as workflow comanagers.
items[].coManagerNotifiedEvents Array optional The type of events the comanager will receive notifications about.
items[].allowConsolidation Boolean optional Indicates whether workflow consolidation is enabled or not.
items[].jobOperation String optional The job operation currently running.
items[].created Number The creation date of the entity.
items[].updated Number The last modification date of the entity.

Errors:

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

Export workflows

Export a search in all the workflows.

HTTP request

POST /api/workflows/exports?text=Lightweight%20Paper%20Lamp&items.id=wfl_Am27nkLLvbPc1rKaJNV5sxPx&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 182

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

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.
items.externalArchiveStatus The filter value(s) for the externalArchiveStatus 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_HJieJr3GinvuxV2iVRn4yXzL
ETag: "2BM4EzUYKBjKuH48zvmpFwnJ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 593

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774743350,
  "expired" : 1750861143348,
  "exportOperation" : "createWorkflowExport",
  "id" : "exp_DcnAQ57NxinoBxjZpfqKL9am",
  "itemTemplate" : "{{id}},{{name}},{{json steps}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Lightweight+Paper+Lamp&items.id=wfl_Am27nkLLvbPc1rKaJNV5sxPx&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774743350,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_Am27nkLLvbPc1rKaJNV5sxPx/downloadEvidenceCertificate HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

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

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_Am27nkLLvbPc1rKaJNV5sxPx/comments HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 139

{
  "parentId" : "com_AaiXsBEZPBwPwqbuT26jHaYX",
  "content" : "Saepe sunt modi voluptatem vel aliquid expedita et.",
  "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_DMArLXYJRx6zGqbMdqzTYDjt
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 541

{
  "content" : "Saepe sunt modi voluptatem vel aliquid expedita et.",
  "created" : 1750774762766,
  "email" : "alfred.kertzmann3269@my-company.com",
  "firstName" : "Coleman",
  "id" : "com_PcNvi3QQqkN5q6RNh9zEFzJT",
  "isPublic" : true,
  "lastName" : "Wilkinson",
  "parentId" : "com_AaiXsBEZPBwPwqbuT26jHaYX",
  "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774762766,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "workflowId" : "wfl_Am27nkLLvbPc1rKaJNV5sxPx"
}

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_2FxBz37x4igsp8Pg73r4VsE2/comments HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

[ {
  "id" : "com_83L45WM4YXRoBDRo3nfkJyJU",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "workflowId" : "wfl_2FxBz37x4igsp8Pg73r4VsE2",
  "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz",
  "email" : "marcell.rath338@my-company.com",
  "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
  "firstName" : "Celeste",
  "lastName" : "Graham",
  "content" : "Et fuga perspiciatis.",
  "isPublic" : true,
  "created" : 1750774752199,
  "updated" : 1750774752199
}, {
  "id" : "com_MAwiRBvVn2WsjmmWk9Bk8HAN",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "workflowId" : "wfl_2FxBz37x4igsp8Pg73r4VsE2",
  "parentId" : "com_83L45WM4YXRoBDRo3nfkJyJU",
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "email" : "alfred.kertzmann3269@my-company.com",
  "pictureResourceId" : "res_EZuunHtcfZTn9PzFeDPjjNvS",
  "firstName" : "Coleman",
  "lastName" : "Wilkinson",
  "content" : "Repellendus incidunt sunt veritatis cum vero.",
  "isPublic" : true,
  "created" : 1750774752484,
  "updated" : 1750774752484
} ]

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_4S6rE9YbenYwZdUVgc7AkhqJ/blobs HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
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_5GBjmA4dcbXLy9fGeAJV24Hi",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "workflowId" : "wfl_4S6rE9YbenYwZdUVgc7AkhqJ"
}

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_QDSD8ayApq3Ff3fFhdSXsJhk/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_CwJX4ZWNj5YRUdWxh8vsFWYJ&unzip=false&pdf2pdfa=auto HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
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_MjjWUuZPWU2ZiGqSPtdAqac7
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1612

{
  "documents" : [ {
    "confidentiality" : false,
    "created" : 1750774371057,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "jejXPl4p1m7rxH2Gze0ey9FHw7iccIn0X9W+Vwsc8sA=",
      "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_3tjnsjQNsBe3AmFjPMkUmsqG",
    "id" : "doc_73WBGtHoPuZ6XG3ZFnAqaibC",
    "orderIndex" : 1,
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "jejXPl4p1m7rxH2Gze0ey9FHw7iccIn0X9W+Vwsc8sA=",
      "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774371057,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
    "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "viewAuthorizedUsers" : [ "usr_APSEFmAbLDvJNtz4icp3YhEg" ],
    "workflowId" : "wfl_QDSD8ayApq3Ff3fFhdSXsJhk",
    "workflowName" : "Rustic Copper Bag"
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "jejXPl4p1m7rxH2Gze0ey9FHw7iccIn0X9W+Vwsc8sA=",
    "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[].confidentiality Boolean The privacy status of attachments.
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[].orderIndex Number optional The order index is used to customize the display order of documents.
documents[].subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.
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_N3WtD3SCsRtB8yRLgMtRiYkx/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_CwJX4ZWNj5YRUdWxh8vsFWYJ&unzip=false&convertToPdf=true&pdf2pdfa=auto HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: multipart/form-data;boundary=y9gVpSd--GJtpucc171v6sZ6OusJDvoscTZO; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Length: 12555

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

--y9gVpSd--GJtpucc171v6sZ6OusJDvoscTZO--

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

{
  "documents" : [ {
    "confidentiality" : false,
    "created" : 1750774397721,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "goDYWCm/STYfYY6dqf/yX1nL1zM0kAnM4r9krt/5Z58=",
      "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_3tjnsjQNsBe3AmFjPMkUmsqG",
    "id" : "doc_5kjpfwrqYYG75RCqyph1AoVo",
    "orderIndex" : 1,
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "goDYWCm/STYfYY6dqf/yX1nL1zM0kAnM4r9krt/5Z58=",
      "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774397721,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
    "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "viewAuthorizedUsers" : [ "usr_EFJjDA7wS2smim9hJJXMP8tK" ],
    "workflowId" : "wfl_N3WtD3SCsRtB8yRLgMtRiYkx",
    "workflowName" : "Ergonomic Steel Computer"
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "goDYWCm/STYfYY6dqf/yX1nL1zM0kAnM4r9krt/5Z58=",
    "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[].confidentiality Boolean The privacy status of attachments.
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[].orderIndex Number optional The order index is used to customize the display order of documents.
documents[].subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.
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_NR1DMVKQzRQwABjqVMegXbBC/blobs/parts?createDocuments=true&ignoreAttachments=false&unzip=false&convertToPdf=true&signatureProfileId=sip_CwJX4ZWNj5YRUdWxh8vsFWYJ&pdf2pdfa=force HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 210

{
  "parts" : [ {
    "filename" : "document.pdf",
    "contentType" : "application/pdf",
    "blobs" : [ "blb_9dSjZTdvm3W4nvnp1EyYvNyk", "blb_3X1J94oYDoxaq7AfAZb6MNr5", "blb_GSbx4DurBC1dPgywy4xooNn3" ]
  } ]
}

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

{
  "documents" : [ {
    "confidentiality" : false,
    "created" : 1750774387370,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "YVzzb0+1yeLuaOYxS6j8HdOHdPi74j2huiD1Q/o7Auo=",
      "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_3tjnsjQNsBe3AmFjPMkUmsqG",
    "id" : "doc_5vkNybLWidhMh2CNqYhdg4Qh",
    "orderIndex" : 1,
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "YVzzb0+1yeLuaOYxS6j8HdOHdPi74j2huiD1Q/o7Auo=",
      "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774387370,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
    "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "viewAuthorizedUsers" : [ "usr_2ATxRu4Hr96MZNguquw8Hr1b" ],
    "workflowId" : "wfl_NR1DMVKQzRQwABjqVMegXbBC",
    "workflowName" : "Aerodynamic Paper Plate"
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "YVzzb0+1yeLuaOYxS6j8HdOHdPi74j2huiD1Q/o7Auo=",
    "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[].confidentiality Boolean The privacy status of attachments.
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[].orderIndex Number optional The order index is used to customize the display order of documents.
documents[].subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.
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_5y7dzB9vNDHrzsdDxDoC8SS7/blobs HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "deletedBlobs" : [ "blb_PYPCJXLujdNefmbHDGzZqTsT", "blb_FrUbq17fW2jA1iocA2sFmvGf", "blb_9RgbBoAegu3jmN6qNLEjbRUs" ]
}

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_MPbnemNBfZoH9dQeHTbuR1Nq/documents HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 581

{
  "parts" : [ {
    "filename" : "Document",
    "contentType" : "application/pdf",
    "size" : 18540,
    "hash" : "KXA5ZTM6yNK8XXqogpiDnzW2zYibGM8kovmONOeotww=",
    "policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
    "isOriginal" : true
  } ],
  "signatureProfileId" : "sip_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "pdfSignatureFields" : [ {
    "imagePage" : -1,
    "imageX" : 390.0,
    "imageY" : 710.0,
    "imageWidth" : 150.0,
    "imageHeight" : 80.0
  } ],
  "confidentiality" : false,
  "orderIndex" : 10,
  "subOrderIndex" : 5
}

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.
confidentiality Boolean optional The privacy status of attachments.
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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_2JdX1M9dQxHbGP6kWyUFEmAy
ETag: "Cw5P3T6bRY3gnDx2djEhYpQL"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1377

{
  "confidentiality" : false,
  "created" : 1750774409099,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "KXA5ZTM6yNK8XXqogpiDnzW2zYibGM8kovmONOeotww=",
    "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_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "doc_PHxF5ZdKqB6fSm4DvjH1q8nf",
  "orderIndex" : 10,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "KXA5ZTM6yNK8XXqogpiDnzW2zYibGM8kovmONOeotww=",
    "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "subOrderIndex" : 5,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774409099,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "viewAuthorizedUsers" : [ "usr_G2agJYJZd7X12hha1iWLf3Qq" ],
  "workflowId" : "wfl_MPbnemNBfZoH9dQeHTbuR1Nq",
  "workflowName" : "Intelligent Iron Keyboard"
}

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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.
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.
confidentiality Boolean optional The privacy status of attachments.
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_3r52TpdqowXf1fePcQ5wKoVY HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "confidentiality" : false,
  "created" : 1750774371301,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "5nseUM2PvUs6Ev2QeXsErB6cJ3e+ZGfEd3/jDJ3oJbY=",
    "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_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "doc_3r52TpdqowXf1fePcQ5wKoVY",
  "orderIndex" : 1,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "5nseUM2PvUs6Ev2QeXsErB6cJ3e+ZGfEd3/jDJ3oJbY=",
    "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774422458,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "viewAuthorizedUsers" : [ "usr_8MmEHSPc3MbbEBFXkkNnZvX4" ],
  "workflowId" : "wfl_Am27nkLLvbPc1rKaJNV5sxPx",
  "workflowName" : "Lightweight Paper Lamp"
}

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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.
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.
confidentiality Boolean optional The privacy status of attachments.
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_NM1HeKTPYgSN6mtTm8zThFPo HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "DcK73gsWQxsSwM8VGekp4C44"
Content-Type: application/json
Content-Length: 285

{
  "signatureProfileId" : "sip_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "pdfSignatureFields" : [ {
    "imagePage" : -1,
    "imageX" : 390.0,
    "imageY" : 710.0,
    "imageWidth" : 150.0,
    "imageHeight" : 80.0
  } ],
  "confidentiality" : false,
  "orderIndex" : 10,
  "subOrderIndex" : 5
}

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.
confidentiality Boolean optional The privacy status of attachments.
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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_AMAP1UaRWLa9v8n3YaiRpjSo
ETag: "GVr5fi4zXnQUEYKZExj6zRPM"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1373

{
  "confidentiality" : false,
  "created" : 1750774448985,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "JxkUozVQb0Vexnb++JEaO6Na4xn+jLEhFh2UTiXqWVs=",
    "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_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "doc_NM1HeKTPYgSN6mtTm8zThFPo",
  "orderIndex" : 2,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "JxkUozVQb0Vexnb++JEaO6Na4xn+jLEhFh2UTiXqWVs=",
    "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "subOrderIndex" : 5,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774449067,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "viewAuthorizedUsers" : [ "usr_8MmEHSPc3MbbEBFXkkNnZvX4" ],
  "workflowId" : "wfl_Am27nkLLvbPc1rKaJNV5sxPx",
  "workflowName" : "Lightweight Paper Lamp"
}

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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.
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.
confidentiality Boolean optional The privacy status of attachments.
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_Kk3qK3dqC5ZNPRiNUZJka8Xi HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "7p7iLJfsisb18gEXyo7NmMe7"

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_PQ9CzpBmAzfAGrvLfB9QY6BL
ETag: "7p7iLJfsisb18gEXyo7NmMe7"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1350

{
  "confidentiality" : false,
  "created" : 1750774422402,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "UaR8gYc2hYXD0nnpokBuztzkTRpAJWBD65wTgQ3LRtk=",
    "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_3tjnsjQNsBe3AmFjPMkUmsqG",
  "id" : "doc_Kk3qK3dqC5ZNPRiNUZJka8Xi",
  "orderIndex" : 2,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "UaR8gYc2hYXD0nnpokBuztzkTRpAJWBD65wTgQ3LRtk=",
    "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_GM2Hgd5EycP5nA2Vem3MWjBv",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774422471,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
  "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
  "viewAuthorizedUsers" : [ "usr_8MmEHSPc3MbbEBFXkkNnZvX4" ],
  "workflowId" : "wfl_Am27nkLLvbPc1rKaJNV5sxPx",
  "workflowName" : "Lightweight Paper Lamp"
}

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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.
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.
confidentiality Boolean optional The privacy status of attachments.
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_3r52TpdqowXf1fePcQ5wKoVY/parts/e67b1e50cd8fbd4b3a12fd90797b04ac1e9c2777be6467c4777fe30c9de825b6 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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_Am27nkLLvbPc1rKaJNV5sxPx/downloadDocuments HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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_3r52TpdqowXf1fePcQ5wKoVY&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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.confidentiality The filter value(s) for the confidentiality 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: 1506

{
  "items" : [ {
    "confidentiality" : false,
    "created" : 1750774371301,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "5nseUM2PvUs6Ev2QeXsErB6cJ3e+ZGfEd3/jDJ3oJbY=",
      "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_3tjnsjQNsBe3AmFjPMkUmsqG",
    "id" : "doc_3r52TpdqowXf1fePcQ5wKoVY",
    "orderIndex" : 1,
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "5nseUM2PvUs6Ev2QeXsErB6cJ3e+ZGfEd3/jDJ3oJbY=",
      "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774453719,
    "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P",
    "viewAuthorizedGroups" : [ "grp_3tjnsjQNsBe3AmFjPMkUmsqG", "grp_8oDjbwPeNZvZKPMy292EJNBP" ],
    "viewAuthorizedUsers" : [ "usr_8MmEHSPc3MbbEBFXkkNnZvX4" ],
    "workflowId" : "wfl_Am27nkLLvbPc1rKaJNV5sxPx",
    "workflowName" : "Lightweight Paper Lamp"
  } ],
  "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[].orderIndex Number optional The order index is used to customize the display order of documents.
items[].subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.
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[].confidentiality Boolean optional The privacy status of attachments.
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_3r52TpdqowXf1fePcQ5wKoVY&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 173

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

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.confidentiality The filter value(s) for the confidentiality 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_C8ViQuXb8es3xNNSV2NfShMW
ETag: "53UjP7Yip6dZCEB99dJVQFCY"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 578

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774437052,
  "expired" : 1750860837047,
  "exportOperation" : "createWorkflowDocumentExport",
  "id" : "exp_KVD7oFQjwHekCcRYfqhDPjTw",
  "itemTemplate" : "{{id}},{{json parts}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Document&items.id=doc_3r52TpdqowXf1fePcQ5wKoVY&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774437052,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_3r52TpdqowXf1fePcQ5wKoVY/viewer HTTP/1.1
Authorization: Bearer act_BkzTWr2wkP5ArAaVkARLKP9x.3ycDKe1PfDTgPJaqJGFPQMB5BvA42cb5FESREposGQGcJeq8iV1uKCtwDYGYbKP4
Content-Type: application/json
Content-Length: 82

{
  "redirectUrl" : "https://hilpert.info/callback",
  "expired" : 1750860817145
}

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

{
  "expired" : 1750860817145,
  "viewerUrl" : "https://kris.biz/viewer#token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJ2aWV3ZXIiLCJkb2N1bWVudElkIjoiZG9jXzNyNTJUcGRxb3dYZjFmZVBjUTV3S29WWSIsInJlZGlyZWN0V..."
}

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_3N8xS9FnQrEA6KS7fVDXTep8/layouts HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 589

{
  "isDisabled" : false,
  "name" : "Aerodynamic Rubber Table",
  "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_HcnnfJvgF1E6b1gzSgpz2zQj
ETag: "46P9ttxA7cN7uya2ZxuLb7WP"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 735

{
  "created" : 1750774506873,
  "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_2bHa17jLJ7hcAdmpZ7RjnrVG",
  "isDisabled" : false,
  "name" : "Aerodynamic Rubber Table",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774506873
}

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_NJLFadDQWMLivxzujcJ8YzGV HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "created" : 1750774348754,
  "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_NJLFadDQWMLivxzujcJ8YzGV",
  "isDisabled" : false,
  "name" : "Mediocre Aluminum Keyboard",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774348754
}

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_VnxLZnu859NTXPAco2uuVxj6 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "AXFXBu9prKvgXoqsvMKXkzvm"
Content-Type: application/json
Content-Length: 587

{
  "isDisabled" : false,
  "name" : "Awesome Concrete Bench",
  "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_5Ysq8n4fXKCbJNFiHcHVrDb8
ETag: "E5zLhfTonxF1uGfc278kXxZo"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 733

{
  "created" : 1750774498665,
  "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_VnxLZnu859NTXPAco2uuVxj6",
  "isDisabled" : false,
  "name" : "Awesome Concrete Bench",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774498691
}

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%20Plastic%20Shirt&items.id=lay_PFBib5dkN7yS491SZgxPtJqk&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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" : 1750774505991,
    "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_PFBib5dkN7yS491SZgxPtJqk",
    "isDisabled" : false,
    "name" : "Ergonomic Plastic Shirt",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774505991
  } ],
  "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=Mediocre%20Aluminum%20Keyboard&items.id=lay_NJLFadDQWMLivxzujcJ8YzGV&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 195

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

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_A4EtcBPbhZSXEJt4JHBne71d
ETag: "CjXajHnDKFe8ajZfthmnoNP7"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 616

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774496218,
  "expired" : 1750860896213,
  "exportOperation" : "createWorkflowLayoutExport",
  "id" : "exp_NDmWCp42YqwY9GFDb4yXuQXT",
  "itemTemplate" : "{{id}},{{name}},{{json dataConfigurations}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Mediocre+Aluminum+Keyboard&items.id=lay_NJLFadDQWMLivxzujcJ8YzGV&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774496218,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_3N8xS9FnQrEA6KS7fVDXTep8/templates HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 2534

{
  "isDisabled" : false,
  "name" : "Sleek Cotton Car",
  "description" : "Apt. 769, 2 Impasse des Grands Augustins, 04251 Champigny-sur-Marne",
  "layoutSelectionMode" : "list",
  "allowedLayouts" : [ "lay_PwS4gKeJnbz1kUadTGfy1iPu" ],
  "maxWatchers" : 10,
  "steps" : [ {
    "stepType" : "signature",
    "recipientSelectionMode" : "list",
    "maxRecipients" : 10,
    "recipients" : [ {
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "email" : "marcell.rath338@my-company.com",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz",
      "phoneNumber" : "+33 6 12 34 56 78",
      "comments" : "Commodi rem sunt.",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "country" : "FR",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "preferredLocale" : "fr"
    } ],
    "allowedGroups" : [ ],
    "allowedConsentPages" : [ "cop_GGNpbgKRtzqvSytmqgd3Q5ph" ],
    "requiredRecipients" : 1,
    "maxInvites" : 5,
    "sendDownloadLink" : true,
    "validityPeriod" : 8553600000,
    "invitePeriod" : 86400000,
    "readonly" : false,
    "removable" : true,
    "allowComments" : true,
    "hideAttachments" : false,
    "viewConfidentialAttachments" : true,
    "hideWorkflowRecipients" : false
  } ],
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "notifiedEventsReadonly" : false,
  "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "coManagerNotifiedEventsReadonly" : false,
  "watchers" : [ {
    "readonly" : false,
    "removable" : true,
    "userId" : "usr_36v71syCyUrnoWqfwmANMEWp",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "readonly" : false,
    "removable" : true,
    "email" : "darin.osinski1864@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  } ],
  "allowedSignatureProfiles" : [ "sip_PEgS3tEp4EipZizpps5YCn1M" ],
  "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[].viewConfidentialAttachments Boolean optional Whether or not the confidential 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_8fhRTmU38SvQZwQH8YysZgAJ
ETag: "3eY1Fe5feEp4qMgnaTLAPu58"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2751

{
  "allowConsolidation" : true,
  "allowedCoManagerGroups" : [ ],
  "allowedCoManagerUsers" : [ ],
  "allowedLayouts" : [ "lay_PwS4gKeJnbz1kUadTGfy1iPu" ],
  "allowedSignatureProfiles" : [ "sip_PEgS3tEp4EipZizpps5YCn1M" ],
  "coManagerCanEditCoManager" : false,
  "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "coManagerNotifiedEventsReadonly" : false,
  "coManagerSelectionMode" : "none",
  "coManagerUsersModifiable" : true,
  "created" : 1750774915180,
  "description" : "Apt. 769, 2 Impasse des Grands Augustins, 04251 Champigny-sur-Marne",
  "documentSelectionMode" : "any",
  "id" : "wtm_2Sz7giFo7HXYGJZ7fQyivs5L",
  "isDisabled" : false,
  "layoutSelectionMode" : "list",
  "maxAttachments" : 10,
  "maxDocuments" : 10,
  "maxWatchers" : 10,
  "name" : "Sleek Cotton Car",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "notifiedEventsReadonly" : false,
  "steps" : [ {
    "allowComments" : true,
    "allowedConsentPages" : [ ],
    "allowedGroups" : [ ],
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_24mvEBroPWShJLcwajZZZ8Jw",
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "maxRecipients" : 1,
    "readonly" : false,
    "recipientSelectionMode" : "list",
    "recipients" : [ {
      "comments" : "Commodi rem sunt.",
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "country" : "FR",
      "email" : "marcell.rath338@my-company.com",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
      "preferredLocale" : "fr",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
    } ],
    "removable" : true,
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000,
    "viewConfidentialAttachments" : true
  } ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774915180,
  "watchers" : [ {
    "email" : "darin.osinski1864@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_36v71syCyUrnoWqfwmANMEWp"
  } ]
}

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[].viewConfidentialAttachments Boolean Whether or not the confidential 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_PBsJ22KQSsC9g9yg2yhrcess HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "allowConsolidation" : true,
  "allowedCoManagerGroups" : [ ],
  "allowedCoManagerUsers" : [ ],
  "allowedLayouts" : [ "lay_4U8ZrJWGTCKg5X4zWGFtdjmZ" ],
  "allowedSignatureProfiles" : [ "sip_EFJm4oeHdBpD4fdD48cxihcf" ],
  "coManagerCanEditCoManager" : false,
  "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "coManagerNotifiedEventsReadonly" : false,
  "coManagerSelectionMode" : "none",
  "coManagerUsersModifiable" : true,
  "created" : 1750774348337,
  "description" : "259 Quai Molière, 81566 Bordeaux",
  "documentSelectionMode" : "any",
  "id" : "wtm_PBsJ22KQSsC9g9yg2yhrcess",
  "isDisabled" : false,
  "layoutSelectionMode" : "list",
  "maxAttachments" : 5,
  "maxDocuments" : 10,
  "maxWatchers" : 6,
  "name" : "Mediocre Cotton Knife",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "notifiedEventsReadonly" : false,
  "steps" : [ {
    "allowComments" : true,
    "allowedConsentPages" : [ ],
    "allowedGroups" : [ ],
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_CzL9Y3GpEr676gGP9GLNQqcY",
    "invitePeriod" : 86400000,
    "maxInvites" : 5,
    "maxRecipients" : 1,
    "readonly" : false,
    "recipientSelectionMode" : "list",
    "recipients" : [ {
      "comments" : "Commodi rem sunt.",
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "country" : "FR",
      "email" : "marcell.rath338@my-company.com",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
      "preferredLocale" : "fr",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
    } ],
    "removable" : true,
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000,
    "viewConfidentialAttachments" : true
  } ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774348337,
  "watchers" : [ {
    "email" : "nancy.spinka2246@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_A5aDpYXbSpg9gV4xSAUzftGa"
  } ]
}

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[].viewConfidentialAttachments Boolean Whether or not the confidential 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_Gt6KzX6BvpBDm9YguVFbHWaR HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "8C4pNdzYmu4U87Nib5gFH7zo"
Content-Type: application/json
Content-Length: 2543

{
  "isDisabled" : false,
  "name" : "Gorgeous Cotton Wallet",
  "description" : "Apt. 989, 4208 Rue de la Bûcherie, 24738 Calais",
  "layoutSelectionMode" : "listOrNull",
  "allowedLayouts" : [ "lay_CXskuwFDFyhdrkHr3oxrTsVK" ],
  "maxWatchers" : 10,
  "steps" : [ {
    "id" : "stp_91ryHQmjZrkTAtLHJTKnQDu6",
    "recipientSelectionMode" : "list",
    "maxRecipients" : 10,
    "recipients" : [ {
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "email" : "marcell.rath338@my-company.com",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz",
      "phoneNumber" : "+33 6 12 34 56 78",
      "comments" : "Commodi rem sunt.",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "country" : "FR",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "preferredLocale" : "fr"
    } ],
    "allowedGroups" : [ ],
    "allowedConsentPages" : [ "cop_F6nmWcDJECVPRi158pZaeaNZ" ],
    "requiredRecipients" : 1,
    "maxInvites" : 10,
    "sendDownloadLink" : true,
    "validityPeriod" : 8553600000,
    "invitePeriod" : 86400000,
    "readonly" : false,
    "removable" : true,
    "allowComments" : true,
    "hideAttachments" : false,
    "viewConfidentialAttachments" : true,
    "hideWorkflowRecipients" : false
  } ],
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "notifiedEventsReadonly" : false,
  "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "coManagerNotifiedEventsReadonly" : false,
  "watchers" : [ {
    "readonly" : false,
    "removable" : true,
    "userId" : "usr_2ehxTsrBb4wKEhuxBVm19ysu",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  }, {
    "readonly" : false,
    "removable" : true,
    "email" : "les.grant1342@my-company.com",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
  } ],
  "allowedSignatureProfiles" : [ "sip_6NHuCabBXZFjKKvt7DHkqeDe" ],
  "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[].viewConfidentialAttachments Boolean optional Whether or not the confidential 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_1Th6RNxoM97tm71u9MooSgZ9
ETag: "BBt4SdxhNP1bs3KM2YwbpyTc"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2747

{
  "allowConsolidation" : false,
  "allowedCoManagerGroups" : [ ],
  "allowedCoManagerUsers" : [ ],
  "allowedLayouts" : [ "lay_CXskuwFDFyhdrkHr3oxrTsVK" ],
  "allowedSignatureProfiles" : [ "sip_6NHuCabBXZFjKKvt7DHkqeDe" ],
  "coManagerCanEditCoManager" : false,
  "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "coManagerNotifiedEventsReadonly" : false,
  "coManagerSelectionMode" : "anyOrNull",
  "coManagerUsersModifiable" : true,
  "created" : 1750774902495,
  "description" : "Apt. 989, 4208 Rue de la Bûcherie, 24738 Calais",
  "documentSelectionMode" : "any",
  "id" : "wtm_Gt6KzX6BvpBDm9YguVFbHWaR",
  "isDisabled" : false,
  "layoutSelectionMode" : "listOrNull",
  "maxAttachments" : 10,
  "maxDocuments" : 10,
  "maxWatchers" : 10,
  "name" : "Gorgeous Cotton Wallet",
  "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
  "notifiedEventsReadonly" : false,
  "steps" : [ {
    "allowComments" : true,
    "allowedConsentPages" : [ ],
    "allowedGroups" : [ ],
    "hideAttachments" : false,
    "hideWorkflowRecipients" : false,
    "id" : "stp_91ryHQmjZrkTAtLHJTKnQDu6",
    "invitePeriod" : 86400000,
    "maxInvites" : 10,
    "maxRecipients" : 1,
    "readonly" : false,
    "recipientSelectionMode" : "list",
    "recipients" : [ {
      "comments" : "Commodi rem sunt.",
      "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
      "country" : "FR",
      "email" : "marcell.rath338@my-company.com",
      "firstName" : "Celeste",
      "lastName" : "Graham",
      "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
      "phoneNumber" : "+33 6 12 34 56 78",
      "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
      "preferredLocale" : "fr",
      "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
    } ],
    "removable" : true,
    "requiredRecipients" : 1,
    "sendDownloadLink" : true,
    "stepType" : "signature",
    "validityPeriod" : 8553600000,
    "viewConfidentialAttachments" : true
  } ],
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774902656,
  "watchers" : [ {
    "email" : "les.grant1342@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_2ehxTsrBb4wKEhuxBVm19ysu"
  } ]
}

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[].viewConfidentialAttachments Boolean Whether or not the confidential 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=Mediocre%20Cotton%20Knife&items.id=wtm_PBsJ22KQSsC9g9yg2yhrcess&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "items" : [ {
    "allowConsolidation" : true,
    "allowedCoManagerGroups" : [ ],
    "allowedCoManagerUsers" : [ ],
    "allowedLayouts" : [ "lay_4U8ZrJWGTCKg5X4zWGFtdjmZ" ],
    "allowedSignatureProfiles" : [ "sip_EFJm4oeHdBpD4fdD48cxihcf" ],
    "coManagerCanEditCoManager" : false,
    "coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
    "coManagerNotifiedEventsReadonly" : false,
    "coManagerSelectionMode" : "none",
    "coManagerUsersModifiable" : true,
    "created" : 1750774348337,
    "description" : "259 Quai Molière, 81566 Bordeaux",
    "documentSelectionMode" : "any",
    "id" : "wtm_PBsJ22KQSsC9g9yg2yhrcess",
    "isDisabled" : false,
    "layoutSelectionMode" : "list",
    "maxAttachments" : 5,
    "maxDocuments" : 10,
    "maxWatchers" : 6,
    "name" : "Mediocre Cotton Knife",
    "notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
    "notifiedEventsReadonly" : false,
    "steps" : [ {
      "allowComments" : true,
      "allowedConsentPages" : [ ],
      "allowedGroups" : [ ],
      "hideAttachments" : false,
      "hideWorkflowRecipients" : false,
      "id" : "stp_CzL9Y3GpEr676gGP9GLNQqcY",
      "invitePeriod" : 86400000,
      "maxInvites" : 5,
      "maxRecipients" : 1,
      "readonly" : false,
      "recipientSelectionMode" : "list",
      "recipients" : [ {
        "comments" : "Commodi rem sunt.",
        "consentPageId" : "cop_FsX5fowk6PBFcU91xL5Ka4Vt",
        "country" : "FR",
        "email" : "marcell.rath338@my-company.com",
        "firstName" : "Celeste",
        "lastName" : "Graham",
        "organizationId" : "org_Lmj4tzvawb8iUTGwCnWAL2iQ",
        "phoneNumber" : "+33 6 12 34 56 78",
        "pictureResourceId" : "res_LYV9W3JPPpiQdrKBgwkhuiSR",
        "preferredLocale" : "fr",
        "userId" : "usr_Nyr7J5Mw3itKbFcrzFUhe1qz"
      } ],
      "removable" : true,
      "requiredRecipients" : 1,
      "sendDownloadLink" : true,
      "stepType" : "signature",
      "validityPeriod" : 8553600000,
      "viewConfidentialAttachments" : true
    } ],
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774348337,
    "watchers" : [ {
      "email" : "nancy.spinka2246@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_A5aDpYXbSpg9gV4xSAUzftGa"
    } ]
  } ],
  "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[].viewConfidentialAttachments Boolean Whether or not the confidential 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=Mediocre%20Cotton%20Knife&items.id=wtm_PBsJ22KQSsC9g9yg2yhrcess&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 182

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

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_8ZiriMRKEJfrEwLDDtBYhGzv
ETag: "E6Kajp1LAhmBVQUUM4XvJMDj"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 600

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774911666,
  "expired" : 1750861311664,
  "exportOperation" : "createWorkflowTemplateExport",
  "id" : "exp_7dSArthgg1yDWPm5DazD4SH7",
  "itemTemplate" : "{{id}},{{name}},{{json steps}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Mediocre+Cotton+Knife&items.id=wtm_PBsJ22KQSsC9g9yg2yhrcess&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774911666,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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_6g9zio4abjtozwUMtLwf2H4R/blobs HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
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_9a1QtjQSCAsGqEW7uBpkzxAf
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 198

{
  "hash" : "obcUcumzUOJsClVDv/jHTNefKTRlTJULnZx4dfOrx+I=",
  "id" : "blb_FfXHVaAk4XKcmjUEAWUHhj9k",
  "templateId" : "wtm_6g9zio4abjtozwUMtLwf2H4R",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8"
}

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_J86JFpnYu4gMNcLaSbLnScz1/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_CwJX4ZWNj5YRUdWxh8vsFWYJ&unzip=false&pdf2pdfa=auto&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
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.
confidentiality The privacy status of attachments.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

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

{
  "documents" : [ {
    "confidentiality" : false,
    "created" : 1750774482007,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "MB/7gir0W8f8pudP0ae3VTvfiwfpDibk9G3j71Te9Pw=",
      "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_GLxqjDMsk7ei5cspovait569",
    "orderIndex" : 1,
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "MB/7gir0W8f8pudP0ae3VTvfiwfpDibk9G3j71Te9Pw=",
      "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
    "templateId" : "wtm_J86JFpnYu4gMNcLaSbLnScz1",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774482007
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "MB/7gir0W8f8pudP0ae3VTvfiwfpDibk9G3j71Te9Pw=",
    "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[].confidentiality Boolean optional The privacy status of attachments.
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[].orderIndex Number optional The order index is used to customize the display order of documents.
documents[].subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.
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_M1XfieXZJAMeBnJRP7NfxE5V/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_CwJX4ZWNj5YRUdWxh8vsFWYJ&unzip=false&pdf2pdfa=auto&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: multipart/form-data;boundary=Lvj8aeJ0gajJtVY-ioSRh-DSGwTx4ndEUhAcjgHZ; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Length: 12563

--Lvj8aeJ0gajJtVY-ioSRh-DSGwTx4ndEUhAcjgHZ
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
...

--Lvj8aeJ0gajJtVY-ioSRh-DSGwTx4ndEUhAcjgHZ--

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.
confidentiality The privacy status of attachments.

Headers:

Name Description
Authorization A valid access token or admin credentials.

HTTP response

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

{
  "documents" : [ {
    "confidentiality" : false,
    "created" : 1750774475142,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "VM7sPOv6kvWfk9fV/GgBagQITp7wDzYTLQ8T69gvF+I=",
      "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_NDAA5TadWgioS1xWUcvuAziT",
    "orderIndex" : 1,
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "VM7sPOv6kvWfk9fV/GgBagQITp7wDzYTLQ8T69gvF+I=",
      "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
    "templateId" : "wtm_M1XfieXZJAMeBnJRP7NfxE5V",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774475142
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "VM7sPOv6kvWfk9fV/GgBagQITp7wDzYTLQ8T69gvF+I=",
    "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[].confidentiality Boolean optional The privacy status of attachments.
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[].orderIndex Number optional The order index is used to customize the display order of documents.
documents[].subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.
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_PK4UeqiHA9sX8BzG2mYiUu9y/blobs/parts?createDocuments=true&ignoreAttachments=false&unzip=false&signatureProfileId=sip_CwJX4ZWNj5YRUdWxh8vsFWYJ&pdf2pdfa=force&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 210

{
  "parts" : [ {
    "filename" : "document.pdf",
    "contentType" : "application/pdf",
    "blobs" : [ "blb_HFQpFCiv85WmF7Sqzi3Vz3hf", "blb_2zVWLqUAYeTYvAVQCq5gXFFT", "blb_FYdVD9B7J44SXvztG8GocT5k" ]
  } ]
}

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.
confidentiality The privacy status of attachments.

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

{
  "documents" : [ {
    "confidentiality" : false,
    "created" : 1750774488538,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "nL//zCXYw66GY20E1nebZiha4PtO0UYvTYI+evsbm4c=",
      "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_BkFAU9PPz6zeGdgyY2KAm4oB",
    "orderIndex" : 1,
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "document.pdf",
      "hash" : "nL//zCXYw66GY20E1nebZiha4PtO0UYvTYI+evsbm4c=",
      "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
    "templateId" : "wtm_PK4UeqiHA9sX8BzG2mYiUu9y",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774488538
  } ],
  "ignoredAttachments" : 0,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "document.pdf",
    "hash" : "nL//zCXYw66GY20E1nebZiha4PtO0UYvTYI+evsbm4c=",
    "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[].confidentiality Boolean optional The privacy status of attachments.
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[].orderIndex Number optional The order index is used to customize the display order of documents.
documents[].subOrderIndex Number optional The sub-order index is used to customize the display order of documents in folders.
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_4CPp1ySXbQTGba7YCqUsab7C/blobs HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "deletedBlobs" : [ "blb_J86aAgTn2FwH4g3yWPAM37BG", "blb_9v5AeBPnzfNFX7AVEowYyk2z", "blb_RZ6iirzsNevmmCVSE1xKSCUa" ]
}

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_6PQQ34YijTinqfZfrm57H4Ms/templateDocuments HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 596

{
  "readonly" : false,
  "removable" : true,
  "parts" : [ {
    "filename" : "Document",
    "contentType" : "application/pdf",
    "size" : 18540,
    "hash" : "9MUxHzCqWz/Yzzer4pQ2nDhz5sqrYAt7LhwCnqQSWxY=",
    "policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
    "isOriginal" : true
  } ],
  "signatureProfileId" : "sip_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "pdfSignatureFields" : [ {
    "imagePage" : -1,
    "imageX" : 390.0,
    "imageY" : 710.0,
    "imageWidth" : 150.0,
    "imageHeight" : 80.0
  } ],
  "orderIndex" : 10,
  "subOrderIndex" : 5
}

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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_9pYdgeMV7CWWZJY66ZDtBSDC
ETag: "3SfhApcSdcD1AYyteJf9L5S4"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1125

{
  "confidentiality" : false,
  "created" : 1750774628871,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "9MUxHzCqWz/Yzzer4pQ2nDhz5sqrYAt7LhwCnqQSWxY=",
    "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_MJnSVfBhZyS3wDZmGtCy71ki",
  "orderIndex" : 10,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "9MUxHzCqWz/Yzzer4pQ2nDhz5sqrYAt7LhwCnqQSWxY=",
    "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "subOrderIndex" : 5,
  "templateId" : "wtm_6PQQ34YijTinqfZfrm57H4Ms",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774628871
}

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.
confidentiality Boolean optional The privacy status of attachments.
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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents.
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_J9ArSZFiGfugZj9MGorEe3U3 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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

{
  "confidentiality" : false,
  "created" : 1750774348528,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "Zjucu4K9778RcDgiYQlS+evbwqThknRf5g7NmgyTXpo=",
    "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_J9ArSZFiGfugZj9MGorEe3U3",
  "orderIndex" : 1,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "Zjucu4K9778RcDgiYQlS+evbwqThknRf5g7NmgyTXpo=",
    "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "templateId" : "wtm_PBsJ22KQSsC9g9yg2yhrcess",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774348657
}

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.
confidentiality Boolean optional The privacy status of attachments.
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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents.
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_HNeFfbA7MkcwguhDi4RTafjM HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "Cz2ZGs5hoZqEVvUmReCB7qUw"
Content-Type: application/json
Content-Length: 300

{
  "readonly" : true,
  "removable" : false,
  "signatureProfileId" : "sip_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "pdfSignatureFields" : [ {
    "imagePage" : -1,
    "imageX" : 390.0,
    "imageY" : 710.0,
    "imageWidth" : 150.0,
    "imageHeight" : 80.0
  } ],
  "orderIndex" : 10,
  "subOrderIndex" : 5
}

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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents.

HTTP response

HTTP/1.1 200 OK
X-Log-Id: log_GYTYUvGcCDSs1W2KwCiFz1Pf
ETag: "5YVkyBjmmTyuscbpGwB8a2gY"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1124

{
  "confidentiality" : false,
  "created" : 1750774609712,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "R7kxWErndhm/YpSOToZGsGWowCFf7NnelOssmmxZsvA=",
    "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_HNeFfbA7MkcwguhDi4RTafjM",
  "orderIndex" : 2,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "R7kxWErndhm/YpSOToZGsGWowCFf7NnelOssmmxZsvA=",
    "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "subOrderIndex" : 5,
  "templateId" : "wtm_PBsJ22KQSsC9g9yg2yhrcess",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774609782
}

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.
confidentiality Boolean optional The privacy status of attachments.
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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents.
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_CXMWypgkm2eL6pSCZiYv6qAa HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
If-Match: "AGSFooiumK3UUryuzaGWYvTX"

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_L8Sf64f3xRLkR8y33HkUm181
ETag: "AGSFooiumK3UUryuzaGWYvTX"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1101

{
  "confidentiality" : false,
  "created" : 1750774635085,
  "displayedParts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "+Pw9z6s+cXc5WImqHeE5rPfXfuJfxrDn+bSzt0Jz7aQ=",
    "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_CXMWypgkm2eL6pSCZiYv6qAa",
  "orderIndex" : 3,
  "parts" : [ {
    "contentType" : "application/pdf",
    "filename" : "Document",
    "hash" : "+Pw9z6s+cXc5WImqHeE5rPfXfuJfxrDn+bSzt0Jz7aQ=",
    "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
  "templateId" : "wtm_PBsJ22KQSsC9g9yg2yhrcess",
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "updated" : 1750774635151
}

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.
confidentiality Boolean optional The privacy status of attachments.
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.
orderIndex Number optional The order index is used to customize the display order of documents.
subOrderIndex Number optional The sub-order index is used to customize the display order of documents.
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_J9ArSZFiGfugZj9MGorEe3U3/parts/663b9cbb82bdefbf11703822610952f9ebdbc2a4e192745fe60ecd9a0c935e... HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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_PBsJ22KQSsC9g9yg2yhrcess/downloadDocuments HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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��r�Z���������������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_J9ArSZFiGfugZj9MGorEe3U3&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC

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.confidentiality The filter value(s) for the confidentiality 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: 1251

{
  "items" : [ {
    "confidentiality" : false,
    "created" : 1750774348528,
    "displayedParts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "Zjucu4K9778RcDgiYQlS+evbwqThknRf5g7NmgyTXpo=",
      "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_J9ArSZFiGfugZj9MGorEe3U3",
    "orderIndex" : 1,
    "parts" : [ {
      "contentType" : "application/pdf",
      "filename" : "Document",
      "hash" : "Zjucu4K9778RcDgiYQlS+evbwqThknRf5g7NmgyTXpo=",
      "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_CwJX4ZWNj5YRUdWxh8vsFWYJ",
    "templateId" : "wtm_PBsJ22KQSsC9g9yg2yhrcess",
    "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
    "updated" : 1750774348657
  } ],
  "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[].confidentiality Boolean optional The privacy status of attachments.
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[].orderIndex Number optional The order index is used to customize the display order of documents.
items[].subOrderIndex Number optional The sub-order index is used to customize the display order of documents.
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_J9ArSZFiGfugZj9MGorEe3U3&sortBy=items.id HTTP/1.1
Authorization: Bearer act_AHKqVoDngM6Yj9KWhKqCWJkK.3EhJkEWQ6grMR9BFHUGdRvWBLr2xRAFw96yhc53ENx99Ecmmt9XzaaPzGACUaPtC
Content-Type: application/json
Content-Length: 173

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

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.confidentiality The filter value(s) for the confidentiality 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_BPR5MqdFhmSMV6qHu1zjM356
ETag: "658gJqU3jXwf1uKHSMMEUvdV"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 586

{
  "afterItems" : "",
  "beforeItems" : "",
  "betweenItems" : "\n",
  "contentType" : "text/csv",
  "created" : 1750774603493,
  "expired" : 1750861003489,
  "exportOperation" : "createWorkflowTemplateDocumentExport",
  "id" : "exp_A9LsJ994yRJwNafkU8JjJ5i7",
  "itemTemplate" : "{{id}},{{json parts}}",
  "jobOperation" : "exportEntities",
  "searchQuery" : "text=Document&items.id=wtd_J9ArSZFiGfugZj9MGorEe3U3&sortBy=items.id",
  "size" : 0,
  "tenantId" : "ten_3N8xS9FnQrEA6KS7fVDXTep8",
  "totalItems" : 0,
  "updated" : 1750774603493,
  "userId" : "usr_JJSUF2dgMiibE2USNkXuyA2P"
}

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.