Introduction
Schema
- Structured data are sent and received as JSON.
- All timestamps are returned in milliseconds since January 1, 1970.
Errors
All error responses have a code
field so that your client can tell what the problem is.
Error response
HTTP/1.1 404 Not Found
Content-Type: application/json;charset=UTF-8
Content-Length: 111
{
"status" : 404,
"error" : "Not Found",
"message" : "Request not found.",
"code" : "RequestNotFound"
}
Fields:
Path | Type | Description |
---|---|---|
status |
Number | The HTTP status code. |
error |
String | The HTTP status message. |
message |
String | The error message. |
code |
String | The error code. |
Version
Obtain the version of the application.
HTTP request
GET /api/version HTTP/1.1
Here is how you can make the HTTP request:
$ curl 'https://workflow-manager/api/version' -i -X GET
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 22
"sgs-wm-webapp:1.16.3"
Here is what you should get as a response:
"sgs-wm-webapp:1.16.3"
Access tokens
Create access token
Create a user access token.
HTTP request
POST /api/users/usr_MyUWBehHH6zAs51F4UkFfBQB/accessTokens HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 90
{
"name" : "Bob Frapples",
"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_GZqPk7AGFoAAdp2Qi7WiBpu1
ETag: "5rMhJubbnXegi8CM9KBCpf3t"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 395
{
"authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ],
"created" : 1747744636132,
"id" : "act_9F6J4x6xMQyQuovnGhpQuoL2",
"name" : "Bob Frapples",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"tokenValue" : "act_9F6J4x6xMQyQuovnGhpQuoL2.4EJAGxz7Dk3neX56dcbgtvYDeK9suV9uFyY5ec9wtXsfhGDBpU746Ei1piNxmb42",
"updated" : 1747744636132,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_NU2SiaMVBE5uFdy5ziXKjnVZ HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "FADoymjUvxjJBicNi86TwX7J"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 286
{
"authorizedIpRanges" : [ ],
"created" : 1747744404023,
"id" : "act_NU2SiaMVBE5uFdy5ziXKjnVZ",
"name" : "Jack Hammer",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"tokenValue" : "****************",
"updated" : 1747744404023,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_7gqK3Ae7eMBqBPZvwYZT66zU HTTP/1.1
Authorization: Bearer act_7gqK3Ae7eMBqBPZvwYZT66zU.d7yARJm1yUmp38kSSTEaoJvTxxxJnqsDXDPj47kv3fh8CRhrFWwPv4vDV7Cbfbdx
If-Match: "4wxfyw88Ct4tsJNfGfos8tcY"
Content-Type: application/json
Content-Length: 88
{
"name" : "Jean Poole",
"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_FiyQMWFPdGvHhRpWBXE5tdE7
ETag: "G1iYWCsiiJEzjsjoZhZM7NXK"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 316
{
"authorizedIpRanges" : [ "10.0.0.0/8", "192.168.1.0/24" ],
"created" : 1747744627037,
"id" : "act_7gqK3Ae7eMBqBPZvwYZT66zU",
"name" : "Jean Poole",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"tokenValue" : "****************",
"updated" : 1747744627072,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_6x7QsnqfcmnYyaNpYTgdVq1X HTTP/1.1
Authorization: Bearer act_6x7QsnqfcmnYyaNpYTgdVq1X.6Xy3Jmt9rbNppNzpUbrr7DKUEwW5hmgK2HcU6Htd6UAw2cnmc5BkcToMFHYWWSLj
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_EtReiEfFeMuTKKHgqJP7mfMu
ETag: "CPn74U1cjQ5qm5GDCwdQGgMp"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 286
{
"authorizedIpRanges" : [ ],
"created" : 1747744637909,
"id" : "act_6x7QsnqfcmnYyaNpYTgdVq1X",
"name" : "X. Benedict",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"tokenValue" : "****************",
"updated" : 1747744637909,
"userId" : "usr_6VVzMZ58SGEY5MvKu5UtnTVH"
}
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_NU2SiaMVBE5uFdy5ziXKjnVZ&items.id=act_NU2SiaMVBE5uFdy5ziXKjnVZ&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 386
{
"items" : [ {
"authorizedIpRanges" : [ ],
"created" : 1747744404023,
"id" : "act_NU2SiaMVBE5uFdy5ziXKjnVZ",
"name" : "Jack Hammer",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"tokenValue" : "****************",
"updated" : 1747744404023,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
} ],
"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_7BmELRkWdtTjrj9FWaNfeCvL/archivers HTTP/1.1
Authorization: Basic YWRtaW46QlJlU1k1YnpYeGZCeW43V2hRMkxuRm1R
Content-Type: application/json
Content-Length: 417
{
"name" : "Hugh Mungous",
"description" : "Consequuntur quia aut et libero numquam doloremque.",
"archivingSolution" : "cecuritySae",
"clientId" : "9d8yjNunu1ysBtzCsHGpLBy3",
"clientSecret" : "JuykhhtTKf7Uiyehdh7vGrKR",
"accountName" : "My application",
"baseUrl" : "https://my-company.com/archiver/PMHdoBB1WvyL4otwXQ93JccY",
"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_2WBPYaJzF8a6SjvF298cwTZ5
ETag: "B1dBy1VDJJnFTZJ45cwMZQkd"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 563
{
"accountName" : "My application",
"archivingSolution" : "cecuritySae",
"baseUrl" : "https://my-company.com/archiver/PMHdoBB1WvyL4otwXQ93JccY",
"clientId" : "9d8yjNunu1ysBtzCsHGpLBy3",
"clientSecret" : "JuykhhtTKf7Uiyehdh7vGrKR",
"created" : 1747745064208,
"description" : "Consequuntur quia aut et libero numquam doloremque.",
"endpointAuthenticate" : "/authenticate",
"endpointUpload" : "/upload",
"id" : "arc_EX3HKzLpJzSWoW8uRHmvBd9g",
"name" : "Hugh Mungous",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747745064208
}
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_A2Ywv3ve5G2eCLhSzQ3ndARx HTTP/1.1
Authorization: Basic YWRtaW46QlJlU1k1YnpYeGZCeW43V2hRMkxuRm1R
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: "8jdmUrPMHVzXL4XiaWM9Qdq4"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 578
{
"accountName" : "Implemented 24/7 array",
"archivingSolution" : "cecuritySae",
"baseUrl" : "https://my-company.com/archiver/Zgyx7Q3DuipMWeKuDfpN1nSf",
"clientId" : "NvHuoNje1wxGCNZseFzNDDn3",
"clientSecret" : "7iLJsm5wJGxJu2UihtPWhYdW",
"created" : 1747745062905,
"description" : "Ex voluptatem dolor mollitia voluptatem tenetur tenetur.",
"endpointAuthenticate" : "/authenticate",
"endpointUpload" : "/upload",
"id" : "arc_A2Ywv3ve5G2eCLhSzQ3ndARx",
"name" : "Aaron Thetires",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747745062905
}
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_A2Ywv3ve5G2eCLhSzQ3ndARx HTTP/1.1
Authorization: Basic YWRtaW46QlJlU1k1YnpYeGZCeW43V2hRMkxuRm1R
If-Match: "8jdmUrPMHVzXL4XiaWM9Qdq4"
Content-Type: application/json
Content-Length: 411
{
"name" : "Iona Frisbee",
"description" : "Corporis nostrum qui.",
"clientId" : "PG6NRTLTc5MXNhQtsdudjbpo",
"clientSecret" : "Ch6EV7R2BAr2teT81uxzVi3q",
"accountName" : "Synchronised discrete info-mediaries",
"baseUrl" : "https://my-company.com/6b2fgyMcEWf2Y7PhCPUsU8ym",
"endpointAuthenticate" : "/authenticate/DKwckgg1kWR99bo6z5SWQLDi",
"endpointUpload" : "/upload/KeFz86ncumTS1jRUomQpTDVj"
}
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_A8xRgAg3ho6B1XEEvpuCa5Yk
ETag: "ALDAXzkfuTibZPhanBgNSzBq"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 596
{
"accountName" : "Synchronised discrete info-mediaries",
"archivingSolution" : "cecuritySae",
"baseUrl" : "https://my-company.com/6b2fgyMcEWf2Y7PhCPUsU8ym",
"clientId" : "PG6NRTLTc5MXNhQtsdudjbpo",
"clientSecret" : "Ch6EV7R2BAr2teT81uxzVi3q",
"created" : 1747745062905,
"description" : "Corporis nostrum qui.",
"endpointAuthenticate" : "/authenticate/DKwckgg1kWR99bo6z5SWQLDi",
"endpointUpload" : "/upload/KeFz86ncumTS1jRUomQpTDVj",
"id" : "arc_A2Ywv3ve5G2eCLhSzQ3ndARx",
"name" : "Iona Frisbee",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747745065229
}
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_Fm4RHCcWuqpLTukRDxfzBbYZ HTTP/1.1
Authorization: Basic YWRtaW46QlJlU1k1YnpYeGZCeW43V2hRMkxuRm1R
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_CNgHhDosZ3JGCRNY9CmQ6kde
ETag: "9JpMndtmkVJZb6BJMVRhZLxb"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 585
{
"accountName" : "Assimilated real-time instruction set",
"archivingSolution" : "cecuritySae",
"baseUrl" : "https://my-company.com/archiver/NCyTGin5kQSYXykuhhxsG6yX",
"clientId" : "8foLHRcp7nnMog9f1e11dCgw",
"clientSecret" : "4ADrFmj5F54sUHPeXEnuAn8g",
"created" : 1747745062047,
"description" : "Laboriosam nihil explicabo quis non consequuntur.",
"endpointAuthenticate" : "/authenticate",
"endpointUpload" : "/upload",
"id" : "arc_Fm4RHCcWuqpLTukRDxfzBbYZ",
"name" : "Zoltan Pepper",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747745062047
}
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=Winnie%20Bago&items.id=arc_8eMP5nmicAJcsUtceBCyjGtJ&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Basic YWRtaW46QlJlU1k1YnpYeGZCeW43V2hRMkxuRm1R
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: 677
{
"items" : [ {
"accountName" : "Cloned user-facing local area network",
"archivingSolution" : "cecuritySae",
"baseUrl" : "https://my-company.com/archiver/2CnWPhtx7zk9aj3X6pUQBEqA",
"clientId" : "LAohFXkFUAz72jw9VrW6iPsU",
"clientSecret" : "JTJFnFBo9Rio5mxDUAPESNFo",
"created" : 1747745063796,
"description" : "Sunt libero exercitationem nihil.",
"endpointAuthenticate" : "/authenticate",
"endpointUpload" : "/upload",
"id" : "arc_8eMP5nmicAJcsUtceBCyjGtJ",
"name" : "Winnie Bago",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747745063796
} ],
"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_MyUWBehHH6zAs51F4UkFfBQB/bookmarks HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 160
{
"name" : "Ilene Dover",
"searchOperation" : "searchUsers",
"searchQuery" : "text=tessa.robel9620@my-company.com&items.id=usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_7i6ELcQ9Se5ksmvwAd28adJb
ETag: "G7V9WphmPBatYCf59NMRbiMR"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 353
{
"created" : 1747744837744,
"id" : "bom_9mHDUHpYj89vPhCkEcECZDBm",
"name" : "Ilene Dover",
"searchOperation" : "searchUsers",
"searchQuery" : "text=tessa.robel9620%40my-company.com&items.id=usr_MyUWBehHH6zAs51F4UkFfBQB",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744837744,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_88DuYD9KTmxHzhTKkzcirh3U HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "Gz4aTWggg6HZ8ncYAZtg3JJF"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 316
{
"created" : 1747744838902,
"id" : "bom_88DuYD9KTmxHzhTKkzcirh3U",
"name" : "Bill Overdew",
"searchOperation" : "searchUsers",
"searchQuery" : "items.id=usr_MyUWBehHH6zAs51F4UkFfBQB",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744838902,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_E6X6jbnt5yMmTF1sMMjKHzBi HTTP/1.1
Authorization: Bearer act_73jcQbndVAYggucQxbia4FmH.3T7y9MYsYvapsB3Rq2iYkEgD73AqFA9h1R4zpKEerYXPV23PczqxLnL3U33UqHt8
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_M5U9eYQN8cvGrCjpwX1nr6X9
ETag: "A4wLQXpuMZCcNJoygBgF4vq8"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 316
{
"created" : 1747744840173,
"id" : "bom_E6X6jbnt5yMmTF1sMMjKHzBi",
"name" : "Rusty Blades",
"searchOperation" : "searchUsers",
"searchQuery" : "items.id=usr_JtKBqHDxkqQpLrSJRHRQ2tQR",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744840173,
"userId" : "usr_JtKBqHDxkqQpLrSJRHRQ2tQR"
}
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=Dennis%20Toffice&items.id=bom_88DuYD9KTmxHzhTKkzcirh3U&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 418
{
"items" : [ {
"created" : 1747744841477,
"id" : "bom_88DuYD9KTmxHzhTKkzcirh3U",
"name" : "Dennis Toffice",
"searchOperation" : "searchUsers",
"searchQuery" : "items.id=usr_MyUWBehHH6zAs51F4UkFfBQB",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744841477,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
} ],
"itemsPerPage" : 50,
"pageIndex" : 0,
"totalItems" : 1
}
Fields:
Path | Type | Description |
---|---|---|
pageIndex |
Number | The index of the page. |
itemsPerPage |
Number | The number of items per page. |
totalItems |
Number | The total number of items in all pages. |
items |
Array | The list of items in the page. |
items[].id |
String | The identifier of the bookmark. |
items[].tenantId |
String | The identifier of the tenant the bookmark belongs to. |
items[].userId |
String | The identifier of the user the bookmark belongs to. |
items[].name |
String | The name of the bookmark. |
items[].searchOperation |
String | The search operation of the bookmark. |
items[].searchQuery |
String | The search query of the bookmark. |
items[].created |
Number | The creation date of the entity. |
items[].updated |
Number | The last modification date of the entity. |
Errors:
Status | Code | Message |
---|---|---|
400 |
InvalidFilterField | A filter parameter has an incorrect field name. |
400 |
InvalidFilterValue | A filter parameter has an incorrect value. |
400 |
InvalidSortByField | The sortBy parameter has an incorrect field name. |
403 |
AuthenticatedUserDisabled | The authenticated user is disabled. |
403 |
MissingBearerToken | A bearer token is required. |
403 |
TenantInactive | The tenant is inactive and does not allow any operations. |
403 |
UserGroupDisabled | The group of the specified user is disabled. |
403 |
UserNotAllowed | The authenticated user is not allowed to perform this operation. |
Consent pages
Create consent page
Create a new consent page.
HTTP request
POST /api/tenants/ten_7BmELRkWdtTjrj9FWaNfeCvL/consentPages HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 915
{
"isDisabled" : false,
"name" : "Fuchsia",
"stepType" : "signature",
"authenticateUser" : true,
"clientId" : "clt01",
"emUrl" : "https://evidence-manager.lex-persona.com/",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"sharedPassphrase" : "AxdbhPrv4t4uaCoyhz3KMBG7",
"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_527mtKEj5B381vqMxXEY7QtL
ETag: "GURkavBUeAnSSLX3C1zWsoyF"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 703
{
"allowOrganization" : true,
"authenticateUser" : true,
"clientId" : "clt01",
"created" : 1747744945839,
"emUrl" : "https://evidence-manager.lex-persona.com/",
"hideDownloads" : false,
"hideMobileQrCode" : true,
"id" : "cop_DwtptsBBpWzNcucVPYVRBgqV",
"isCountryRequired" : true,
"isDisabled" : false,
"logoResourceId" : "res_QAdRbCdr5uDZEbkNZpJAAPuU",
"name" : "Fuchsia",
"primaryColor" : "#208cdf",
"sharedPassphrase" : "****************",
"signingMode" : "server",
"stepType" : "signature",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"updated" : 1747744945839,
"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 consent page
Retrieve an existing consent page.
HTTP request
GET /api/consentPages/cop_2tH72tYtTA72vA9WhjuNXpdw HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "HPtjqLLijpmYPymvcE7Y9qX7"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 707
{
"allowOrganization" : true,
"authenticateUser" : false,
"clientId" : "clt01",
"created" : 1747744398536,
"emUrl" : "https://evidence-manager.lex-persona.com/",
"hideDownloads" : false,
"hideMobileQrCode" : true,
"id" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"isCountryRequired" : false,
"isDisabled" : false,
"logoResourceId" : "res_6H3r5EYPAEzfmMKSEunkksrS",
"name" : "Magenta",
"primaryColor" : "#208cdf",
"sharedPassphrase" : "****************",
"signingMode" : "server",
"stepType" : "signature",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"updated" : 1747744398536,
"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 consent page
Update an existing consent page.
HTTP request
PATCH /api/consentPages/cop_Dx2t8grwkVRhSmPXF533Q7fi HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "CJtcueX4dFRupyuNCDWL9oGk"
Content-Type: application/json
Content-Length: 892
{
"isDisabled" : false,
"name" : "Vert citron",
"authenticateUser" : true,
"clientId" : "clt01",
"emUrl" : "https://evidence-manager.lex-persona.com/",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"sharedPassphrase" : "BH1tUwVVLV4mVsBRBgxxUy2q",
"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_L9TLjfdFtcyqvMNyARxeejSc
ETag: "4VHGZR7xknVgRWWYGevGFSe9"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 755
{
"allowOrganization" : true,
"authenticateUser" : true,
"clientId" : "clt01",
"created" : 1747744955311,
"emUrl" : "https://evidence-manager.lex-persona.com/",
"hideDownloads" : false,
"hideMobileQrCode" : false,
"id" : "cop_Dx2t8grwkVRhSmPXF533Q7fi",
"isCountryRequired" : true,
"isDisabled" : false,
"jobOperation" : "purgeConsentPageResource",
"logoResourceId" : "res_KCjD9QJ4D7nF3S1CDo5sp9PD",
"name" : "Vert citron",
"primaryColor" : "#208cdf",
"sharedPassphrase" : "****************",
"signingMode" : "server",
"stepType" : "signature",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"updated" : 1747744955400,
"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 consent pages
Search in all consent pages.
HTTP request
GET /api/consentPages?text=Magenta&items.id=cop_2tH72tYtTA72vA9WhjuNXpdw&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 833
{
"items" : [ {
"allowOrganization" : true,
"authenticateUser" : false,
"clientId" : "clt01",
"created" : 1747744398536,
"emUrl" : "https://evidence-manager.lex-persona.com/",
"hideDownloads" : false,
"hideMobileQrCode" : true,
"id" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"isCountryRequired" : false,
"isDisabled" : false,
"logoResourceId" : "res_6H3r5EYPAEzfmMKSEunkksrS",
"name" : "Magenta",
"primaryColor" : "#208cdf",
"sharedPassphrase" : "****************",
"signingMode" : "server",
"stepType" : "signature",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"tsaUrl" : "https://tsa.sunnystamp.com/tsa",
"updated" : 1747744398536,
"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 consent pages
Export a search in all consent pages.
HTTP request
POST /api/consentPages/exports?text=Magenta&items.id=cop_2tH72tYtTA72vA9WhjuNXpdw&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 190
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json keystoreTypes}}",
"expired" : 1747831350501
}
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_HNpp26YUQqyCyu3VCyH4sw4h
ETag: "9niyHG6W1k63Mmy2nPvqHEpz"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 589
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744950506,
"expired" : 1747831350501,
"exportOperation" : "createConsentPageExport",
"id" : "exp_J18g4nwfrC3hSe4fDoZbZb92",
"itemTemplate" : "{{id}},{{name}},{{json keystoreTypes}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Magenta&items.id=cop_2tH72tYtTA72vA9WhjuNXpdw&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744950506,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_MyUWBehHH6zAs51F4UkFfBQB/contacts HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 203
{
"email" : "long.heller7699@my-company.com",
"phoneNumber" : "+33 6 12 34 56 78",
"comments" : "Qui nostrum deserunt nisi.",
"firstName" : "Laura",
"lastName" : "Lacroix",
"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_5pBQRe9SJ9yAb5nuP9cH1cr8
ETag: "Bhdqoao9AoTyhBUwZzGgwBWB"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 422
{
"comments" : "Qui nostrum deserunt nisi.",
"country" : "FR",
"created" : 1747744924914,
"email" : "long.heller7699@my-company.com",
"firstName" : "Laura",
"id" : "con_MNA8j49GpXTPCiQLf9prnWsQ",
"lastName" : "Lacroix",
"name" : "Laura Lacroix",
"phoneNumber" : "+33 6 12 34 56 78",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744924914,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_VHgTnQrzitDoah6JhgM3KcUB HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "5VKZAfykqoa26g5MthEdwtGa"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 443
{
"comments" : "Sed architecto quo error sint nam ut ex.",
"country" : "FR",
"created" : 1747744923980,
"email" : "ailene.kilback9229@my-company.com",
"firstName" : "Adrien",
"id" : "con_VHgTnQrzitDoah6JhgM3KcUB",
"lastName" : "Lefèvre",
"name" : "Adrien Lefèvre",
"phoneNumber" : "+33 6 12 34 56 78",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744923980,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_MViQeFX6AqorQfeNyyQ1uHUa HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "A73jqvaqw376we81AYjEckGN"
Content-Type: application/json
Content-Length: 201
{
"email" : "kenton.hane8534@my-company.com",
"phoneNumber" : "+33 6 12 34 56 78",
"comments" : "Sed modi non est voluptas.",
"firstName" : "Tom",
"lastName" : "Olivier",
"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_H8SwQGPWMbNhLdtu3outkxtA
ETag: "xW178BfPEzfLQL6Sztree65i"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 418
{
"comments" : "Sed modi non est voluptas.",
"country" : "FR",
"created" : 1747744926226,
"email" : "kenton.hane8534@my-company.com",
"firstName" : "Tom",
"id" : "con_MViQeFX6AqorQfeNyyQ1uHUa",
"lastName" : "Olivier",
"name" : "Tom Olivier",
"phoneNumber" : "+33 6 12 34 56 78",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744926252,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_53GoxjWWTgZDq7VBRa8YkyLV HTTP/1.1
Authorization: Bearer act_LV7R7KtUpXQ8TVGi7AWLV12Z.3KpMdweRkWeAsnB2BAWvAgtMsD55wfSkWtRHGb7DeXNQJ2TVKGofFaHjGoZtNgQq
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_Cht1ek35WefbQ1CoQe7bmo8U
ETag: "5pJtMRVsY69Pgz3HZ9HzHKcc"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 409
{
"comments" : "Velit amet unde.",
"country" : "FR",
"created" : 1747744933709,
"email" : "jarvis.dubuque5489@my-company.com",
"firstName" : "Evan",
"id" : "con_53GoxjWWTgZDq7VBRa8YkyLV",
"lastName" : "Petit",
"name" : "Evan Petit",
"phoneNumber" : "+33 6 12 34 56 78",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744933709,
"userId" : "usr_6ckBHU5ayqXTf44yMU7y39S2"
}
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=ethel.hickle4691%40my-company.com&items.id=con_jsMeVZWswonr8f5yhhGh1MrH&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.userId |
The filter value(s) for the userId field. |
items.name |
The filter value(s) for the name field. |
items.email |
The filter value(s) for the email field. |
items.phoneNumber |
The filter value(s) for the phoneNumber field. |
items.firstName |
The filter value(s) for the firstName field. |
items.lastName |
The filter value(s) for the lastName field. |
items.country |
The filter value(s) for the country field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 528
{
"items" : [ {
"comments" : "Modi aliquam vitae.",
"country" : "FR",
"created" : 1747744935110,
"email" : "ethel.hickle4691@my-company.com",
"firstName" : "Kylian",
"id" : "con_jsMeVZWswonr8f5yhhGh1MrH",
"lastName" : "Marchand",
"name" : "Kylian Marchand",
"phoneNumber" : "+33 6 12 34 56 78",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744935110,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
} ],
"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=Adrien%20Lef%C3%A8vre&items.id=con_VHgTnQrzitDoah6JhgM3KcUB&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 167
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}}",
"expired" : 1747831337356
}
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_CGUHU8DCLLxVWZ2Du2ThxtML
ETag: "C4tQUEdGBk8PY8AKEwPCzz1f"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 574
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744937358,
"expired" : 1747831337356,
"exportOperation" : "createContactExport",
"id" : "exp_NpafvN2Bvu8LR6VDbb9fRgZ2",
"itemTemplate" : "{{id}},{{name}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Adrien+Lef%C3%A8vre&items.id=con_VHgTnQrzitDoah6JhgM3KcUB&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744937358,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_K9d67rnZoDJWdRKxzBAzsjL2 HTTP/1.1
Path parameters:
/api/exports/{exportId}
Parameter | Description |
---|---|
exportId |
The identifier of the export. |
HTTP response
HTTP/1.1 200 OK
ETag: "5MgsSzGv4mY3QTsvYuGsW4YV"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 521
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744901661,
"expired" : 1747831301657,
"exportOperation" : "createUserExport",
"id" : "exp_K9d67rnZoDJWdRKxzBAzsjL2",
"itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
"jobOperation" : "exportEntities",
"searchQuery" : "",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744901661,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_HXoXgD34ERptDkrGm8qJXnxQ/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_HXoXgD34ERptDkrGm8qJXnxQ.csv"
Cache-Control: max-age=31536000
Content-Length: 34809
usr_MyUWBehHH6zAs51F4UkFfBQB,Stacey Terry,"[{""organizationId"":""org_MfSwgB8eWHpb6cWhBq1JFGcy"",""title"":""Senior Implementation Directeur""}]"
usr_J97iZNgCLpkgM9dPrFgZJk79,Cameron Kozey,[]
usr_7sN8iLt5ZikNTaYzcvhBMvrr,Gertrude Pagac,[]
usr_6PQPJjXMuNthDKtpBjXmKLNR,Shaun Kozey,[]
usr_EFKM4gjSKb2pPgAgUePJ8FMf,Dick Waelchi,[]
usr_6jMtGy1YxpkkfbubKDsZqGGD,Migdalia Kohler,[]
usr_C14bm7pEe28tdT8RWCFjGiXQ,Joline Dickinson,[]
usr_CK2NHHNu7WPSgnrq5DVgYERJ,Iluminada Boehm,[]
usr_QCmgGkpVDBVR8Wk7z6mADx1D,Thanh Doyle,[]
usr_DKfGd7uxxVDc8CcB6sT4EkSe,Genevie Monahan,[]
usr_F1JMQe4LWb8wCvqLQ4vdoQpd,Melvin Yundt,[]
usr_3MY9G3DpVKbhtk4Amz3bDvm7,Krysta Dare,[]
usr_C7Z4WYZF7sUyvxExZBt2zV5C,Elfreda Renner,[]
usr_B7mGkmBAJZZLWcAgQU2mFzAu,Buck Ward,[]
usr_DRnZajeLtu4cBW1kmZRxxjCW,William Jones,[]
usr_AHjnWYLrxL8Efj7mrNHaVig4,Edwina Lueilwitz,[]
usr_3Bxqsr2rrZwcLBmR83CCQkm2,Claire Kemmer,[]
usr_4477gatf5uSbFyTk5RaHHdKN,Jimmie King,[]
usr_AdbFQKTNs14zYeeMbGK4i7R7,Jillian Cronin,[]
usr_GAMMeqAvViZDzSm8F3WbuFgN,Viki Macejkovic,[]
usr_LHQRjbWzmVeC1G9yx3M2qaKX,Boyce Hessel,[]
usr_E5hUAuv84H59wUPw1qjsKEAd,Fumiko Brekke,[]
usr_EMNwTSwNKPXH3LSFXJEAvPiP,Ashlie Rowe,[]
usr_P98RKAwxHa5YNzonJv2hhpxS,Bradford Denesik,[]
usr_PVSypd2kdnVa2xcXHFv7m3Tg,Walker Bergstrom,[]
usr_JrHMEAJzAcAu3PGbTXd8Hi6V,Clemmie Windler,[]
usr_ERSTC58ZDiHVbvPV9WFc5JrN,Cyndy Champlin,[]
usr_PaXpoAHAGse9AYLQL3PRjSUa,Leif O'Conner,[]
usr_LjSG45M3JPCatgRRnt9DHV2w,Dean Huels,[]
usr_CxEoXHGJUuXvJqHxPv7qbtep,Raul Ortiz,[]
usr_36tp4XtEaS735VgF3QABu5p8,Scottie Schaefer,[]
usr_7P6HFgJLyALhRYowQ7yPqvJi,Adolph Wunsch,[]
usr_MgvYi6kVUf5wAB8fayYQfwje,Jonathon Hettinger,[]
usr_8M1pYxBDjt81TEMXRMKnWy7W,Rickie Bechtelar,[]
usr_D6q62tw2cYZEymz8FXvp2xJy,Tracey Stehr,[]
usr_LYsNdN6g6TKpc5Gu3q5oQ8MA,Nicol Cartwright,[]
usr_LXmaVkErjFAeggg5uoZ9C2eT,Candance Cole,[]
usr_5uiSgY6XshvV4fTNuzyKxFWv,Alva Jacobs,[]
usr_PbNNuK2XjY8ocgP1yx3yqNvJ,Vernie Crona,[]
usr_MonVBswTPjVPnkaBL5fGoUqp,Kerry Barrows,[]
usr_H3nbe8kbXaAVAADGnm6HaTwx,Demarcus Harris,[]
usr_2Ys9Zf8XtqHLj2N3VyUBUX6j,Anton Rodriguez,[]
usr_RaZ1ACB1YuG4LJTJxoS7W3Bw,Trula Borer,[]
usr_GFkfW8GTHF8ugJjUHGyUMoAW,Meghan Gutkowski,[]
usr_EdmCoPkXx1NnM6zKDPgp9zBf,Mimi Ondricka,[]
usr_QATJXBJ882mBcySbqeuRzCWE,Rodger Fay,[]
usr_4uc9i2eEZcopDnkjk3R9ieSR,Lonnie Welch,[]
usr_MykxTYssAYicBYKwshDFVT5o,Ricardo Walker,[]
usr_FFQT2SuFn2xNj6FdGC1ZThoe,Terrell Barton,[]
usr_9Mh5kfBVqdv4D13P8QdH3NgU,Theresia Gleason,[]
usr_KoBLdiMqxqWVox11WAWLSifC,Barbie Wolff,[]
usr_GnvtMVxYKWufaaXhCxDbsZj8,Jae Williamson,[]
usr_LZPc4xS7Kxm87nrPc4zvwhKa,Abraham Goodwin,[]
usr_KRq3hV463vRg5NFjrWhi5MZ2,Frances Lesch,[]
usr_K8eevaezUWuDjBmkKxGYdWe8,Henrietta Beier,[]
usr_7W8drrFqW5WCvgmea7dRibEM,Bennie Kihn,[]
usr_31zgNMG5QResnXH5Pu3qejsk,Stanley Ziemann,[]
usr_MqaBT32gwCo84Jh1a3Foh8Lo,Dixie Kreiger,[]
usr_JwNt4qadxswD5Dnk8aimii5Q,Gerri Stanton,[]
usr_48MkgjnKJXL8QcV6BL4kXwTn,Lavina Lowe,[]
usr_JtKBqHDxkqQpLrSJRHRQ2tQR,Carlton Ondricka,[]
usr_afnGvyMFVQxYRZqja6TC8AEC,Kathey Cummings,[]
usr_PBbAkhzFAbeNxACobnJUArMM,Ulysses Bosco,[]
usr_KfdHF58Fb6ApNoAvgoVMivme,Damien Farrell,[]
usr_GkjWsTh2AfkNf5iaUAKaFB7X,Dave Bailey,[]
usr_Lr4Y1mJmAhVUo5m3XyBExcj6,Takako Macejkovic,[]
usr_GSiZMkw5aZyVPCp1pwXHha8z,Lynna Williamson,[]
usr_3iqWWAm8MiBfTLsaJm3yegL7,Calvin Schamberger,[]
usr_66Q1mWMp5gnWVZc1TeMkhUCc,Daniell Emard,[]
usr_DKo64g19N7owkjLRDxxth4jW,Lucas Casper,[]
usr_GM91sMdReUXFo8xADb3iB9JZ,Dick Bayer,[]
usr_NsK5wWG9QqLzeDJfZKmzSF1S,Darrick Herzog,[]
usr_D3XSfjuLE1STpHGrAZ7dnHZt,Alfredia Klein,[]
usr_7CoksWEQEFXVKRqMRpscizjp,Arden Rau,[]
usr_PKGQ1JZc2sjksNvg4wktUqBS,Isreal Mitchell,[]
usr_HQ5yLij2WCKS2tPA42dc3WFR,Kenton Mills,[]
usr_9k9cAZj5Do6xUW661gXZuN1m,Adrianne Lowe,[]
usr_45txdft1E3aZ3hjbBM9aC5XS,Sanora Rogahn,[]
usr_MAQCnCqVRZBGeXutB7g1XB3a,Deann Heathcote,[]
usr_HwPbGsj7yWFJFAUnxc7AcZxX,Earl Kreiger,[]
usr_LHEjES9SVsv3wcsFCk2xPerm,Heath King,[]
usr_2SzoEDEu3SUUS8rvNsWnA5oj,Stacey Hegmann,[]
usr_8GkQGmRj4sCb1NSovUWMk8pE,Winfred Schneider,[]
usr_B6Y9LtEfq7MQivh7n5g9rf6B,Kermit Brekke,[]
usr_4s56vuWwrjt9XVgsfoKYrz4h,Georgianne Osinski,[]
usr_CBN8P53PtfjaJFmFFgNKF8fx,Teddy Gutmann,[]
usr_8pSfBB3nwE6j7q9vN8Q2R5fQ,Fermin Hartmann,[]
usr_4MaxSitcRSNKq1rAsQAG8AEp,Wonda Christiansen,[]
usr_KV4fuABew1JfQV63wj7tnzL5,Geoffrey Beatty,[]
usr_F1GuLyzZQ7oybr5s6rkbw64q,Ben Predovic,[]
usr_3tr7F6PRHnxXZunkc7coac6H,Marcy Gutmann,[]
usr_ACZYx2JorV8XzWir3gj9EtHi,Kanisha Koss,[]
usr_qvNDJyeQDwaWhfdyeZ2uQpDS,Racheal Klocko,[]
usr_Eq2qpnHasALWzJLRihGSrjvq,Kathryne Dooley,[]
usr_Ffps6XUKw31PonhF6pUY9MyM,Teressa Rolfson,[]
usr_BwFfqVv1RBDYeyPxU8VvGc1k,Reginald Feeney,[]
usr_9aBdsEd3MMS8FmfDsN54mb3K,Leana Heidenreich,[]
usr_DQjtVc4k3gbFj8TMnWc2ytcS,Normand Dare,[]
usr_ngqjEPW1KCgUY7RRx66Z3WMw,Nohemi Howell,[]
usr_Kw1YU4XVtai3M9Qjjgs5s1he,Steve Reilly,[]
usr_5b4kGdF7mFKVwNKX2gsRh8rp,Shae Bartell,[]
usr_4WVH2yLLJjEryiowsrGECBWu,Shawnta Wehner,[]
usr_DosECYGREJK8vqUDGhd7HYmC,Shavonne Hoppe,[]
usr_LWpeGF8FQwtfrzP2TBR97X1L,Cassaundra Wintheiser,[]
usr_EbmTdCUfq5oXLgRji3JFpi9t,Shavonda Nader,[]
usr_MUAtC6c8LNUHxFAxG7rFnBvo,Yuri Grady,[]
usr_HzY2pWX5sms2skZngWDtHZE2,Devorah Botsford,[]
usr_LWgcmguEWTqRTTP2nZoBbvUj,Loretta Zboncak,[]
usr_FnJbbY6znvaCAHEvRKmAk64t,Man Schroeder,[]
usr_KQJMwfAzZfsRtUmPMyMuZ4Qe,Guillermo O'Reilly,[]
usr_5Hs65Y6Yvz5UNGxe8iHGbgJo,Kiera Schaden,[]
usr_CeGWKRpQaMmSWpgiG7FtbkaH,Lyndia Davis,[]
usr_P8X6snNnJkK3aFGVQoczzAYG,Margurite Gutkowski,[]
usr_FcL2s3hkHz9BynGe7th8SExU,Jermaine Yundt,[]
usr_8PqgZNkn93LyFf6vKQZU7dT9,Felipe Bergstrom,[]
usr_GRm8MsVzk45w3TATDq2bjfVi,Rosana Goyette,[]
usr_PgsnR5rbdtUxVoZetwKfgFCD,Suzann Satterfield,[]
usr_GUkEhyHvA5qhNSMa2JF1PFwq,Harmony Turner,[]
usr_GU1x7ERfbzSTh3z676Bt1nKb,Gabriel Hermann,[]
usr_K1mWS3kFEYBJM9s2iM5SvihV,Edda Cruickshank,[]
usr_4cDtC6TUKt3yQxSGBVL1rQXA,Jessika Erdman,[]
usr_7jGsSP4Ducfw82enQBiEf8MZ,Cammy Okuneva,[]
usr_EQyXDmzVGdwfjmJhBfTA2ucS,Brandi Blick,[]
usr_HmqKTShptxzq846k7M1bzf37,Myung Nolan,[]
usr_QK1YwXrdjTwEGcdgK8mRcQpS,Laticia Pagac,[]
usr_3wteHDLGNocL284PEZixQrsm,Bernita Harris,[]
usr_KYxdpapkYxdN7VEXzgNXLsSo,Royal Murray,[]
usr_9PPX536HwuZ5pZPpjKXpJgEe,Rufus Reilly,[]
usr_54rQSSctbiRJXxUtmA5xULTR,Bethany Huel,[]
usr_CmMaxKH96oQecbFZ8wZpUV9C,Sean Greenfelder,[]
usr_K2LcdqhQJ6WNsszSk9vJB4zc,Graham Pfannerstill,[]
usr_KHkFiZompBLhizWrpLDxcZu3,Charline Schinner,[]
usr_5sJNgFZeBAVuBpw4tiBUbwyb,Sterling Hettinger,[]
usr_52jWAbPC68wo54anjwBb8inn,Aracely Hintz,[]
usr_7zjQazXBRDNbgo2fprdRK9Qa,Chad Pfeffer,[]
usr_LQoip1bYZ58W9CViirTRDYoS,Ailene Walsh,[]
usr_QG6aJtCha2EeLS6oHkcKcbwv,Allena Grant,[]
usr_88EcQhhuone69znzuLYTohEV,Eula Padberg,[]
usr_3zvZgTDMkUrf3HjFHL9EjVD5,Millard Rau,[]
usr_CkN4HtUthu4JKnrKKMd4hFaE,Jocelyn Beahan,[]
usr_4essin1XTW7QrYRBg9u9m7hD,Dakota McKenzie,[]
usr_NeMbeC3PATyRP3Zd5wyX6gW3,Shala Raynor,[]
usr_58FQKczFkvYxnKrjSnRhshFh,Johnnie Abbott,[]
usr_MAx67xoGHxuE2Y2pCbji7yL7,Karisa Brown,[]
usr_68EYv5VTgQevQmiTPPv7wr8f,Willian Gulgowski,[]
usr_D2wX7ikemDwAAKAVoRDnwiaK,Jeremy Dooley,[]
usr_9Rjvfm8KFEzBwWXyWdTuAzMr,Keira Zboncak,[]
usr_FJmq9ghuvgpZAzZyreunon44,Gaye Upton,[]
usr_Gcjh8AtTtH3U63zT9UxEjx6U,Estefana Lind,[]
usr_NVZXxzhFqVRrrWq2jTzQLcGk,Shanice Ward,[]
usr_N2YNWVTZv7gGnbQRSzhTx7HC,Sherry Upton,[]
usr_HxmmxuQk8c3TV2fH5mo4AgbD,Theodora Ferry,[]
usr_7sxPdpu4EQ1EUnkAvrfryjPW,Mai Torp,[]
usr_3h32QAVAT4fMR5K19n8Q6b2o,Lincoln Hilpert,[]
usr_3gZwChMdsH3vwiHGvWAeQuaS,Werner Brekke,[]
usr_24ZUzFP5P2zEfwFvKn7LKkQA,Gerardo Emmerich,[]
usr_42rvb54Xe8igZwjEhQ27STb1,Todd Marks,[]
usr_5JVgS3mfJqjoN7kFW3Nq2qhs,Jude Schultz,[]
usr_6tGEqnE7D2H2yE4dPtpP4ZR8,Tracie Pouros,[]
usr_6pEpT3Rg3TVVg6BkZpjS8jeo,Deshawn Carroll,[]
usr_NsrAVsMpgNgvnz8rssKnQXip,Chang Casper,[]
usr_EmV1Y7HzKNGH6Sh8d5UN1mTf,Many Parisian,[]
usr_ApwVNCPgAqtnaaVfMgq46DxK,Casie Padberg,[]
usr_AGX2S81RfiCBZAkbgMVgFBny,Mario Bahringer,[]
usr_DTAQb8QEDaKB2L4KbY5shcQx,Eugene Deckow,[]
usr_ApMR7j2UYsPj4atikzsGhXE9,Alfonso Reinger,[]
usr_32DcfydXYWQgSzbnD8N9Lbk3,Rochell Hauck,[]
usr_DzZvf264kXup65yKVvoHSSsn,Milan Watsica,[]
usr_Dt6nS7y9YYSBje1iTaoFqWYP,Missy Johnson,[]
usr_Ftgq8Z29nJd5cqz6LA1TnhTp,Arnoldo Daniel,[]
usr_D4MfNVFEbGifid3aXBFGuGQL,Luis Ondricka,[]
usr_5QSoCFBWWiT9zartj2akhXc8,Kenny Connelly,[]
usr_Hqcr5Tx2nbzedn9QYw45qYVV,Mitch Spinka,[]
usr_AE4Vz66MYP9MJM4WPBftJEEq,Gail Gulgowski,[]
usr_6x3JYoF7o6YA4XtEf4b4zme4,Suzanna Armstrong,[]
usr_D2JrsvonS4MzuCbbQHYQTygs,Clarence Schuppe,[]
usr_7sKQzdcY2o9sxEhWab7b3g3w,Bob Connelly,[]
usr_D36qEWYc2MAjgufDREawSyES,Marcella Rowe,[]
usr_B3gQ8zWHZSHXLM33gRDaX6cj,Margarete Keebler,[]
usr_3TnvufskmhjoeyYDgXaHceiC,Duane Lehner,[]
usr_LqcXgLPtYTN7bT2z2vJTJeer,Refugio Schumm,[]
usr_6ThoWgK1buSSgt1XrrEWNbKg,Rodger Rau,[]
usr_49VT5XpyMBUARSr7iQ1TM1nN,Lenny Denesik,[]
usr_DqTYQhFMUNEYwRQ6rjTpFLYn,Suzi Kassulke,[]
usr_PVckMrVpn8kQXtnzG1zxckEW,Karl Mueller,[]
usr_Np4QL7GppGzmnd7gQjFkmwY8,Alica Von,[]
usr_PPGNVEEeioKpgzWUuExqnDz5,Gillian Schuster,[]
usr_HXjUqbVKdQ9aGei6NWvs3kcR,Philip Crona,[]
usr_EezdiHmK27D2ZzUFMx6WzENM,Hai Schroeder,[]
usr_47qQubRwUX7eWiSDTba3K5Wy,Jen Hills,[]
usr_7iboGxCUgeLERF7wNgtNrtw2,Maryalice McKenzie,[]
usr_BoSR8ZmdKbDcZkRkaEn2Bc2X,Kareem Schaden,[]
usr_HaTAXRC24qSTLmBQxJZnaQWD,Lyman Altenwerth,[]
usr_KXYTemBeuVAkiLGE2T9DXZ4c,Colton Mayer,[]
usr_35eGX3aSsY1QQbNRwqpenu2s,Filomena Johnston,[]
usr_KtPBvK3FZPqi2fZSwyX2KnJU,Dallas Sporer,[]
usr_4JgEoDqPQbD9BuS7HdHD9erb,Howard Kreiger,[]
usr_BMabKsgST4XuQeuZ1ybDcziv,Georgianne Pollich,[]
usr_DKNAvaSpUSwHQAufiChR8hFB,Babara Brakus,[]
usr_HZZj891uztmHMHi9XPqoVHaG,Rory Koelpin,[]
usr_7YgRLX1p8Ff3cYBeDktAnMWJ,Benito Zulauf,[]
usr_2NS3ifzLMmPm8ffMijaaPLAn,Bruno Feest,[]
usr_EHL9CdLg4s74J4MeNTPNxhLR,Dorine Bradtke,[]
usr_8iNufkCVHacA94dQexTMXZMm,Arden Bogan,[]
usr_NpAouWcFZsrRzNkQosanQWEe,Trent Greenholt,[]
usr_PnvFBi9QqrrD1UmegBgWEmN1,Derrick King,[]
usr_L7c1dLHmSWKRuYuYByeyWkLV,Lesley Medhurst,[]
usr_3GTXZ4HR5Z5hYY6XtBPz7kjc,Angelia Abbott,[]
usr_7H8nFesHNQrRThD2G8V1oMH5,Salome Luettgen,[]
usr_Ee9jnSCjw6mYgPQMNmy4n461,Frankie Bernier,[]
usr_2X82BWbNSTWrsFYvwSxFZzs3,Marlin MacGyver,[]
usr_Hgr3NaWk1oByZq55xkx3kXi9,Amalia Murphy,[]
usr_JMXjssbNm9vNJ4TR3Y26uY5G,Nick Ritchie,[]
usr_5Ky29Jr5PjSppzXcB8EjJPLj,Donny Collier,[]
usr_CWcTJh6KFrQKgatrSqFFJAKX,Zona Zieme,[]
usr_78f6NdG2LW4Ecud7n3u2SVDF,Kenny Orn,[]
usr_K6stNF1zG67fCvzXphhCqiSR,Kaila Windler,[]
usr_K7jioMJpSwnE5KUwgWmJ3fPE,Veronica Swaniawski,[]
usr_5fmbpGaejfnU5RWpe91UL6mz,Neomi Johnson,[]
usr_Meqfviia99bjkAYAwK5uf6Sf,Teddy Cummerata,[]
usr_QGxYPjPXocRvrBNxoXRsJsyk,Matthew Kiehn,[]
usr_FE8bJiUuvQcionZQbZR3hf3x,Thaddeus Ritchie,[]
usr_MNZ8SAcXXU6RMcTFdDnUgDaK,Romeo Friesen,[]
usr_GX5LAjBJueGRfZB8Jhf8o1PV,Gayle Macejkovic,[]
usr_Kuen1TnwwjDRLfRcYseKAzjj,Byron Beer,[]
usr_MuGdtKMcU8N7KmgXkLr2GyBY,Julia Reichert,[]
usr_9UaKbmPQBpQ2Au6buxANCxSR,Rita Krajcik,[]
usr_HqNZr6NEnBxAmRd4gJecK8Xn,Monty Haag,[]
usr_JvhnhagogyDdStkMDcd8Xtst,Spencer Brakus,[]
usr_CoptM3LoDtmmztT8jZdM7WCT,Dierdre Kirlin,[]
usr_69yoifrnfxAe4WQtEsqYaA9H,Shelton Kozey,[]
usr_GJ3kqFGE65JsgQDYXK5j8GMF,Henry Jast,[]
usr_KMbammDszb8K4U8KSgMx9gss,Frank Runolfsdottir,[]
usr_7KwDFL51XkA2EDonZkgstA3p,Cameron Stamm,[]
usr_LH9QrE7hqJVb2hWNk16YG424,Elvin Gusikowski,[]
usr_4HLJta8T4Xhwgzj7SEUV7VgN,Nellie Baumbach,[]
usr_GbjTwyXyyQbxPtABE8o5N6oS,Brendan Abbott,[]
usr_BLnfTVAPxANNwEWKtpToJWs6,Tomika Kemmer,[]
usr_Nc11cuHz7CHCUwrCmEfjwY9F,Jacquline O'Hara,[]
usr_JYsshj3EmdP2rEmseMU6pREP,Hobert Schowalter,[]
usr_DkpSP45M5SkfV1gAnaDXdogj,Ilda Rippin,[]
usr_QD4rGmFToxh1ABowbEYNTWEp,Hugh Hane,[]
usr_9iwfFdt4qDvTQPYoiDPJB1WN,Eldridge Witting,[]
usr_GTRQFv2NaY99ZFNZSTrRLYeq,Patricia Spinka,[]
usr_NEkx9Th87V5ZqiiTjDcufTXm,Lindsey Hand,[]
usr_6G5roFSXCiUYDrjkFL2Hhf2W,Everette Donnelly,[]
usr_4dtTZ1ivQH5giyE6JWZcwwye,Brittny Sauer,[]
usr_H5kqEcNMr7kV8jSj5no2HUJH,Dotty Morar,[]
usr_NhoY6CAYHXwGkcd4f5cCUVcM,Magdalene Stoltenberg,[]
usr_ExwFSypmxgY1t3X1az5so7PL,Athena Willms,[]
usr_C5BAfmkGeYcsQ3Kgyqnq1igP,Aldo Kuhic,[]
usr_Bgkf7vEJdEb8eMPYVY373zeV,Hobert Goldner,[]
usr_HMJwWwN9cQfEvRsESRZ8k5jw,Elenore Beatty,[]
usr_4tsZWriHQ3Xefnd2XkXMDcxj,Chere Jenkins,[]
usr_48BfuAF9XxkHoVCuYHwhezXj,Ramonita Schowalter,[]
usr_JKSmdPToPDXUG1vg81gD5v9Y,Maryln Hegmann,[]
usr_FgZKvXozHntcE6Fipiwjq8Hc,Cameron Ondricka,[]
usr_MQ2UfoUijVbPyqptypaa9CbA,Jody Huel,[]
usr_7JxS7YfQWffG5sBxkDo3TSAa,Bernie Prohaska,[]
usr_NXSr5FUYebBKFZFn3EZ6ngx2,Haywood Wiegand,[]
usr_2sTR1tDzvMxyZvLTXqqQ1pGZ,Trena Larkin,[]
usr_9AAzBhBk33Q4TBdPkYeyLfXZ,Arden Volkman,[]
usr_PSHc3FRtriiuNcu6TXtv7v65,Tommy Rodriguez,[]
usr_3qMrgnR5N1qrWVYus5EPjRQf,Elma Dietrich,[]
usr_N2eSdfVWLZdiCzHSPV2uHvDr,Maricela Marks,[]
usr_MCNAXF9wf2wqcTcmfj5NiDwW,Micheal Mayer,[]
usr_TAm75jQLTsptQKVxAv1mnePa,Monnie Kuhic,[]
usr_EsHBPT1LDt9rbwiL9YzHi6bM,Leland Labadie,[]
usr_2MzkmofSSjjZJ6A1irr9ahA7,Steven Kerluke,[]
usr_CjXw2BmtHJkZ89kvWLpJN8Ku,Alonzo Murray,[]
usr_BnaFQbqbyyf7YyHWREgZD3aK,Beth Donnelly,[]
usr_GwutC1FnRvtZnE1JS4wbb8yJ,Season Krajcik,[]
usr_CftcoBHz31RBDDbdAmHZEMAf,Alejandro Blick,[]
usr_6BvAvffJoKBgZwwcashy6G3d,Delbert Jenkins,[]
usr_M3iWMPgJEVzNnXkbvpr3K4pC,Sheba Wilkinson,[]
usr_GC5P4HKJuRVJkNu6DM3m4oQ2,Efrain Wolff,[]
usr_68yi4R6u3CMqqihxRimJzXTQ,Jacalyn Dickinson,[]
usr_6snWK9UEcYxPwocRkXnxYh3y,Emmie Frami,[]
usr_4Tj7sdGQ14MJSjTFRCwAPKR5,Vaughn Borer,[]
usr_LtxeX7kammKPxXnshXvUfJPG,Shauna Murphy,[]
usr_EMHcKo7NNs3MWHR9yxkNSc1S,Maryanne Howell,[]
usr_HbKT4gNwJNsbVNmqpF5WSd8n,Johanna Reinger,[]
usr_C4k47wXqamiCwGKbqsXoHDfN,Lidia Kuphal,[]
usr_8YxjxWsVxNCnGnjGVqxM3bwk,Major Hoeger,[]
usr_LuyFDgjcBf5hSHwgXPzEVUGU,Lyda Durgan,[]
usr_3faYgz5AFisTCbjyYDA8qZD4,Jenee Ledner,[]
usr_NPYJWegUq2xM7A85zcAcAcES,Lady Cummings,[]
usr_62KrCdMF3uZbAXmwpzM8JaB5,Katherin Hegmann,[]
usr_K2XfxcobJXcqW7kzTwsTn8Jm,Geraldo Bogisich,[]
usr_5PhZUbavCMGAA8ifcKvc7jPK,Sterling Daniel,[]
usr_Lg1kUmFX3m6sNaaJKxEwkvBj,Josef Murazik,[]
usr_EkaC5JnVH8Vb4Xvv6D542uwM,Bryce Schaefer,[]
usr_8WsUfzfCRqumvDxJBY2ZwYUj,Jonas Parker,[]
usr_AcVRu5ngKjq3gfoXJcMY5zJR,Andres Schmidt,[]
usr_aizbPCuQUHhFC8F9nGA1mhub,Lon Connelly,[]
usr_HUVu9KsNE2ndBvxGfCJ7xt3L,Wendell Beer,[]
usr_3KN4fwU5SxEChFotoWX4HAfG,Francisco Bartoletti,[]
usr_6ZNPAxXnFhd7iKFJC1vXm6Mz,Leigh Davis,[]
usr_9DkiQ6K5Cd6F7S1jRuiCQrP1,Delbert Pacocha,[]
usr_3L8RNst8ztLoe2fvKDBQCdPi,Damon Metz,[]
usr_As7tHvSWjnRexBNJgVJA18CA,Sergio Kilback,[]
usr_A5uCdNhA7tF74mEWvCd6E1p9,Michel Adams,[]
usr_MAZaPgjBzVascB2jFdhpXH6Q,Carlton Marquardt,[]
usr_Mwm9Mt3qCLTSUd9ZbEwL6C5C,Vannesa Mueller,[]
usr_3LnnMZcCB56k8tgxCnVJdXom,Kandi Mohr,[]
usr_PtmVqK9VJW1R3aGV6dM4UZ8B,Christoper Collier,[]
usr_E8hXer2kz5Zxgt65L6vV6a9z,Nigel Sauer,[]
usr_NV2xBfQdyF5axJzcMqV5mQL1,Ezra O'Connell,[]
usr_JMiXAS8DzTiV3wKUSRmQLhRN,Brooks Mraz,[]
usr_38spj3uYS7xNJQo9jWf8oGGq,Adelina Stiedemann,[]
usr_F2eDCTD4cvU6auJjdAn8Ntn2,Savanna Harber,[]
usr_6Zic2TZ9mvbEnhEdvGGMQ5AA,Dean Altenwerth,[]
usr_6BfenzTMBRcXDZJaGPxFVGFa,Catherin Friesen,[]
usr_PjnE7dfUYLEsBU52nm9Kd6Za,Lanny Wyman,[]
usr_5nhoXtffBzuLiBNHqDczczqt,Emery Bosco,[]
usr_6s9xMs2m8zPxBVwsBJpXDynQ,Everette Streich,[]
usr_PjERrhJh1RUjdu8uJAzG5HGA,Dominic Johnson,[]
usr_MZNRFLnKZbzZdzH4WpBLkq78,Chloe McKenzie,[]
usr_CdTQVQWTMFMoRPSe6ZxG7jq8,Alisa Schumm,"[{""organizationId"":""org_MfSwgB8eWHpb6cWhBq1JFGcy"",""title"":""Dynamic Quality Analyste""}]"
usr_Hi5HzrwEXP4m9HExc4oDRVdX,Idalia Johnston,[]
usr_5NYagXYH6v83QNF52qU9v325,Pattie Brakus,[]
usr_9rMm1dVntJPBWmfeNpVsnoPJ,Brigitte Conn,[]
usr_6N7DofmdvhvSomUsUmkye4ga,Linwood Herman,[]
usr_9b7JpR8NJB2Wsy1q6Don79Yg,Harland Boyle,[]
usr_AxEuX3o1pJTdBMubiL4GKazf,Esteban Christiansen,[]
usr_MzM2nMkH1uv7UpFNaZuJMfX7,Trinidad Collier,[]
usr_K4M3VxiPcpBhPZqLXPiwWswP,Logan Mueller,[]
usr_6Zd7XL5ZfF6ntVC9MTc7Dku1,Danny Balistreri,[]
usr_9bACDPm9RhpCysrxs1NNLzbj,Vanetta Predovic,[]
usr_EKnFebfWsjLXFDecj4dkX3UD,Ardith Gleason,[]
usr_2EFa8H5f38aSNDxjusJf7J8A,Delora Pagac,[]
usr_P3bLntwDPi1hkTYnkvPs9Mh3,Elbert Olson,[]
usr_39R3b8FsfBM2ZuuC47jHdWHz,Nia Wuckert,[]
usr_MKyW88A4i8Sq94HzHqNybuaV,Bennie Graham,[]
usr_2335yEVsThE5QKEBtzv3Jd2v,Dannielle Paucek,[]
usr_PLkMXY21yp2vBrTQoGAnAdYf,Calvin Turcotte,[]
usr_GjavaeDcrA1TL923LMPX7Kv9,Shelia Marks,[]
usr_y2mK1Z4gJYBDbxZDnrXpqGAv,Thi Corkery,[]
usr_AnqcNi3cVZ54UTsjpRSZaX5E,Karissa Larson,[]
usr_AdCe7vLzCpieRaaJ8zaKyxRA,Miguel Williamson,[]
usr_PCudzBo5MMRaPxLVF36CViFC,Georgie Marvin,[]
usr_Q4f4reCieQ7WM6SECgXqitnQ,Odell Witting,[]
usr_CMkw9NaR7F4H1UiPW5nU4NLP,Todd Veum,[]
usr_ESveKEGzGpyP891SeYFmdVas,Alvin Maggio,[]
usr_8eBaLZtgDTyEPQPVuTcKXNRn,Farah Ullrich,[]
usr_Fp8cdX8Wxnn7AC5dfqQRpTJV,Kimiko McGlynn,[]
usr_L5qrDAwMXjfej1VaCbrfGFMB,Tyron Lubowitz,[]
usr_KQbQEXMrguEXp5pFnm7rQEYN,Sona Kutch,[]
usr_NDkNgXMTaqQoYzMFLV7LW4m6,Gustavo Kohler,[]
usr_Dq1EMpmbXvyBi99zu7SNDC9k,Dion Reinger,[]
usr_8kFtef5aeYyxJnTX1eUNcMWA,Lauren Prohaska,[]
usr_Nviivkez7j6559bmXmGpt9aF,Dallas Marks,[]
usr_K827rSeuxnMeb15k9Lh2vU6g,Autumn Runolfsdottir,[]
usr_NuVjMhsRRuugBRG3iZXgGpjS,Ernest Wiegand,[]
usr_68PYhaxhdregsAi9kDK42wfV,Tony Toy,[]
usr_6qUUYrAkFKYkGkzAZ7cp4Yqn,Jimmy Lakin,[]
usr_Dbhd53i2hjcwpK6QaHfHjpLB,Carey Hills,[]
usr_M3JqDUBChvW5ACrEZ2BjtBPm,Kai Daniel,[]
usr_9z2pmMsQ3woisBL8nRuawQ34,Celina Hartmann,[]
usr_DtmBVU9EYYgv2jGxxgTTe7w6,Maureen Beer,[]
usr_6Bt1wFCD4Jj4Jaw6pQKtHLde,Samara Spinka,[]
usr_JWiSmYxZXdQ3Am3baSx5WDrB,Quinn Marquardt,[]
usr_4RboWyWXHhbFKsTevjiMCVXD,Fausto Krajcik,[]
usr_KpHRPhs1RnYmzNkmD1qCjjpt,Clara Steuber,[]
usr_DTs3ERprkRLv7M6P33XqSRim,Hal Hahn,[]
usr_2XRFXMrPBBwyfEG17LxuN8FB,Harley Crist,[]
usr_LNhfEzLyvSAr4bWqWmLtbohE,Candi O'Kon,[]
usr_9d69mW2yFYtaaoTWhsUfe1wV,Leland Weissnat,[]
usr_5YPqk4jnUEKqVbmhJf6JVrkf,Erwin Johns,[]
usr_6ckzuvTFE4NPk1qVJQvU7skj,Lucas Stanton,[]
usr_PgxWDRwtXMYFXxeU8yf5vBZ4,Georgeann Grady,[]
usr_FVjJNZcDW4WkGtqNzmsdzmAe,Tony Collins,[]
usr_322QZzANyZ9vASUNyqYbk4j9,Hilma Schinner,[]
usr_NZdwvdTpP3ScDmMD2wgW2uWz,Damion Runolfsson,[]
usr_JGywJ7QqAadyCytosWiF9cUy,Josefina Carter,[]
usr_4NB38VVcQxnRMxHjREg2XFQS,Ella Zieme,[]
usr_FcekuR36zsN3iLspdHtwVhXx,Rich Kuphal,[]
usr_NFdfnDhHv3eMGLqWM4xbfJNP,Madge Nader,[]
usr_6mXh3A8BvJ3ATD1E47s3JxiC,Bell Bernier,[]
usr_PmLU7CshDATxk3UAKpVnZgZx,Hunter Sporer,[]
usr_8GNMYkDpiZtaqn6wBJuVg2bd,Bill Renner,[]
usr_LSRL6hHMJFU5ohEMLWLWvLEr,Emmy Auer,[]
usr_yUSRmdWj6YoLUoSo6WMR71EZ,Olinda Streich,[]
usr_6xbxKKbCZs9xek2tJKBEM4F5,Cyrstal Yost,[]
usr_5sdf9pmLpH1Uw4p4H5W8N9aQ,Leandro Farrell,[]
usr_8fJWQ7erS12W9da8de3et46t,Myung Von,[]
usr_8utX3rv5UV6FZR3p9iMuszi6,Fernando Gorczany,[]
usr_EKQPrGBndomQbp421LPJUXrX,Aiko Reichel,[]
usr_DZpN9mHoSZSZwsC7Wpp342Mr,Roderick DuBuque,[]
usr_LqEzmsYxfEkyEKky6Njak4YY,Geoffrey Kris,[]
usr_B9rJZumTniHXyeci4EPjnSCi,Nora Cronin,[]
usr_7QoL35JfJ7SqFqDmQJ7d52Te,Alberto Goldner,[]
usr_JHhgQ3zTR7xG4NnKyPDoWJP8,Luigi Haag,[]
usr_E3vAo4xgJWJ6Wig4RrPY7FEJ,Zack Mann,[]
usr_MQbTHfZMP6k2vU1ZC4DEnrsm,Leticia Ryan,[]
usr_7HppQfNDvfrzDsArQVNgJBRK,Henry O'Connell,[]
usr_9H9KULEWyDFDUU8Vi5r2HXbu,Percy O'Kon,[]
usr_62KL9gcwDXGsz4vSTDGMZSA6,Stacy Kling,[]
usr_23go8g4zjkA1455cmXUeqY51,Rosalba Gislason,[]
usr_CNhYs1ixUYxPw2YtnVKwpnj1,Ramona Lynch,[]
usr_8gytDiXmR5s2BjdPVs359Y4S,Tilda Wisoky,[]
usr_C4cWtXvgBHaJfTp3StVt3br7,Emanuel Volkman,[]
usr_6VVzMZ58SGEY5MvKu5UtnTVH,Rayford Strosin,[]
usr_BPm6bQdN7XYZT9Ua7sNpkRfn,Kandace Jones,"[{""organizationId"":""org_MfSwgB8eWHpb6cWhBq1JFGcy"",""title"":""Corporate Security Superviseur""}]"
usr_DFYrf3wdawNvWumLnkHNedXM,Renita Terry,[]
usr_8mdyaiovJ3gC9EuA3mh7YaxV,,[]
usr_9N98NJpnZeJib21nXqYS1exF,,[]
usr_8Ya6wuCxNxQ1qnr2cpDrZbQa,,[]
usr_H3LVahratnPaEtNYwEugxnUg,,[]
usr_6kQm3a93xSiYZqVMMhKQHVYz,Galen Streich,[]
usr_LCY6yPDtQsHwgqB22BTFDa38,Natosha Windler,[]
usr_5TU54iK6WYqeff5So4nWfbSt,Deloras Greenholt,[]
usr_AdRqQDX5w3L9Jv28odYZkpRG,Cyndy Windler,[]
usr_2F96jDHgkZ7dwo18Y7au2zfp,Bruno Grady,[]
usr_PXzo5eoErvnKH61G3ut5gUNv,Lexie Orn,[]
usr_8GefJ9HkPsbZxNxH2wth2FoR,Anthony Mueller,[]
usr_LCXVPVa67Rii6wB3AHLRa4gh,Coleman Kunze,[]
usr_EJzH9PPLmDQMRamqfxrnfmxU,Alec Roob,[]
usr_N3yC7iXLeer46JCQTyp9oGe5,Sean O'Reilly,[]
usr_GztziPLdR5RJ7xkkCKEbnXws,Jamey Bergnaum,[]
usr_KCkJz7XZJi75SJpWR8EEFRzR,Elijah Kovacek,[]
usr_g5W11HNrYjp1owRCJDTqzmXp,Belle Denesik,[]
usr_GX85qC5NFjv1faMrzB1DVMVD,Ethan Carroll,[]
usr_15SKJRsw2pHiZrVX6nXnkPvp,Ramiro Bayer,[]
usr_LAoN8d9wFzYM39bSVJdRAppb,Elois Howell,[]
usr_7Yr4o8UBvbDAeowX3813BtGK,Erin Swaniawski,[]
usr_NBEL5AKDZfvHP9QSJvZsExX9,Phuong Haag,[]
usr_AVpCBDuPUZ4mGToGEfSpLMsT,Cristin Turcotte,[]
usr_AFjDT1Xb2UnHfV4LhvoRHc8R,Wilson Kunde,[]
usr_DJqP7ULFgSCvXreayCUiHP1b,Marcia Paucek,[]
usr_2Kfo1f2dgmMzSELdFo8Rewtv,Onie Durgan,[]
usr_A8gcD2pW1qd7PdpTtHUUDZFb,Nieves D'Amore,[]
usr_DpDfrbHd2Z3tknPjrkQYkMCr,Markita Crona,[]
usr_CGfVdr5bCZDcHrbAo3PQ1z8P,Golden Schinner,[]
usr_D5112FSXrsT5op2FbqfHWPG2,Kermit MacGyver,[]
usr_4dyXdwjYSQoKP4J9kASj4887,Jerrell Feeney,[]
usr_PWK1ae1b8WJGxf2VDjVUqdNL,Devon Schaden,[]
usr_H4A1XEWcGy1q8pUd3ReSKbTh,Maisie Rogahn,[]
usr_GgUGhpM7CyecZTWNm47MLKCL,Michaele Wintheiser,[]
usr_P29F6JV1irsQLhmcNURGJkRz,Brenda Mueller,[]
usr_H7YPMNPkCwP6DdYuLeKttjx9,Franklin Wisozk,[]
usr_3xxwGh7g3Yug39gHim99Do3t,Alonso Hilll,[]
usr_7icu41vdDYNKCw43gipG4VE3,Tammy Cole,[]
usr_P2Mc18wZP9bTMCaHjhKREogk,Mark Dietrich,[]
usr_8ffGgJXzBRM6JhmRHSyJZs2Q,Ernestine Green,[]
usr_5zLkcFz9x1XvWZst7wAL27qU,Carin Walter,[]
usr_2DwPiYEtQHmdoPTENY6qpBaK,Lenore Fisher,[]
usr_Aw3KUZbLn2NJs6L8QpecnNEf,Janean Ryan,[]
usr_HBgtdEZWg9FGj1beTFLNndqR,Garry Little,[]
usr_8aLz6QiXceHRJ9hJUQL8cBo4,Samuel Lind,[]
usr_HUSCqZr5SHYiCGFcPbBNfXbN,Ping Hansen,[]
usr_QLMkUUi5azf8AYKNVyGZRCc6,Alexis Fontaine,"[{""organizationId"":""org_MfSwgB8eWHpb6cWhBq1JFGcy""}]"
usr_K2NE7Nne9ZiBiEwuwLbVUNDG,Théo Garnier,[]
usr_CxRKtErhYGNC1e75AzxwDPnF,Julien Vincent,[]
usr_Nm6xtFviDnRzMM8pzxL82xtT,Hugo Morin,[]
usr_Ye7r9i4Mibapr7ZjNsBhguL6,Paul Garcia,[]
usr_8mcawABVFnqyMmrniL1eQ24Q,Antoine Gaillard,[]
usr_KoWfxHU2HPrZ3yb1vYaxT42V,Dwain Howe,[]
usr_BXimmEoC3QktdyyjZoqeAHm5,Louis Lopéz,"[{""organizationId"":""org_MfSwgB8eWHpb6cWhBq1JFGcy"",""title"":""International Factors Consultant""}]"
usr_3tw3pdtABzBGjF2hRHXGB3yn,Douglas Klein,[]
usr_2oRKTuKozaWvhpUMoHpHbBxn,Nicolas Paris,"[{""organizationId"":""org_MfSwgB8eWHpb6cWhBq1JFGcy""}]"
usr_FXknufwTxVyYyWRax2fGgaS5,Mathew Purdy,[]
usr_3H1QZe5cmPCht4WT7mPYBJR9,Mirna Blanda,[]
usr_ENdhW8spsDSR58ixJCPjMRRq,Emil Hintz,[]
usr_GRwZWw5eKaCSqn3oWS2RNZw2,Victor Martin,[]
usr_CoyCnfC4n2SsJKC21e9Hbfv5,Justine Lemaire,"[{""organizationId"":""org_MfSwgB8eWHpb6cWhBq1JFGcy"",""title"":""District Mobility Specialiste""}]"
usr_EGUwbwwWpHPi4ywwpKjAdQxa,Judie Reichert,[]
usr_CupLbUy8PoBnBrKzXsXFXeWd,Armando Stroman,[]
usr_JTYMjYSBpU2jd9s2F5zRo5Ps,Jake Hackett,[]
usr_6vrwcE9rW2dFfrbnNPKFxAGH,Freddie Ratke,[]
usr_BxXECrhFv4zCDkKwqZTun6x7,Valentina Schneider,[]
usr_DrowuHa4uHZ1Q6vWLPuGyAG8,Felisa Heller,[]
usr_8EqJimTWok619S6STb2T1iLw,Noe Haley,[]
usr_Ec6hEhddv9BVMuhDmSawa7E1,Thomas Bahringer,[]
usr_HGggUhE1JZSFkRFGSjLQDE5i,Erasmo Towne,[]
usr_KVfMNZnkMN4ew6VFQzDfk2hX,Angeles Trantow,[]
usr_L2tm4ux8Mvf4tChxmRAvbSEn,Gale Boyer,[]
usr_CWwGpc8UG6YPXxLEJBP4Ys8z,Tess Kling,[]
usr_SDXxxGAwX7zs77LCW5nZcbrd,Millie Zemlak,[]
usr_5nvQjDP3N21jUXHCANVkktzY,Millicent Stroman,[]
usr_DqP4cBcNmzD1BboXFExRYF4Z,Dovie Halvorson,[]
usr_33iHdPQyiBs6XUAn7ZqP7E37,Raymond Bernhard,[]
usr_7cZnCwBmQG2aMmFCS3Z5TyL9,Omar Smitham,[]
usr_DDL5UFz7cs7tJKwVoyRa8jPD,Jamaal Wunsch,[]
usr_9hpwz1amHEeBEMMdcqNwB2Ve,Gwen Greenholt,[]
usr_PUFvzXstK1VY56KB16MCVxS1,Ai Kuhn,[]
usr_PbU368KBg9q7YVYeCs7YkAGA,Hermina Moen,[]
usr_DbgkxzGj3PzQdjxZ93dVJ7rb,Linwood Schoen,[]
usr_4ToFLD7KKKMPHuFquZqF6Gsd,Joaquin O'Connell,[]
usr_Kjb1mu6gEB2bG6HcyfcCuCep,Breana McKenzie,[]
usr_KcSdxCPVLer1RH1Ur5E3TKc4,Carey Bruen,[]
usr_NgeeiuyxenQ7vzUXHRffjTXW,Rosendo Upton,[]
usr_KGN1CSEnSE93V3aSavCvLcGV,Lakeshia Carter,[]
usr_87bV2NVAGNmSAyFjVJBzErDS,Gustavo Tillman,[]
usr_6ZqwnaZXHSgUMzoWTBet6p6J,Oliver Swift,[]
usr_BkyN8gkmsrzjRPBvuwtpTRe4,Bryce Jaskolski,[]
usr_HV2sHuJTKsyJDE7WDCXXLNtE,Shera Borer,[]
usr_Gnr5DoHeHN7AnSCr7Hg3ND9e,Mariah Lebsack,[]
usr_Hg7WGbCuyzGdJoNVn8Eu2VLh,Ressie Klein,[]
usr_By9BEkrMcKWQbkRK737HEUDk,Leslie Parisian,[]
usr_83WrFCJo2vtktmTgbopTGYqH,Marhta Cummerata,[]
usr_JXX34AjYg8VjjsTH7XwzctMg,Freeman Schulist,[]
usr_AhoeX2mU4NpthAWbYEVZWHiH,Buford Pollich,[]
usr_JVVCTy6YWtomN2BUSrSQM6Am,Lesia Denesik,[]
usr_EgkXrQiSDDomx15SXaseTRv4,Tammie Auer,[]
usr_CfFvakuvDsQy5zqYjozG8L5h,Stan Moore,[]
usr_NHhQaaF4ydsP1LENfeaRhvXR,Terrell Erdman,[]
usr_F1BXxxv9sfEJ7E3f7EDeopCs,Rosetta Shanahan,[]
usr_12T518zCHR4Yvqv2fruR1TGL,Sergio Cassin,[]
usr_7KCwygnxEiRLgfKR8ZGqdgXh,Conchita Wolf,[]
usr_BXxUaaE6dKiPQCmptN3o5qoY,Stephine Bogisich,[]
usr_MQBk8MMPaizmLku7mDye7pkC,Jeromy Gorczany,[]
usr_GEYPUzzcDVZwb4z8Shyxz3Yk,Dillon Bayer,[]
usr_ARmB6KcnRQe8AhMCoLgPHzru,Normand Volkman,[]
usr_JDziB8fB2nLZBHVVhtcmFnAb,Lindsy Botsford,[]
usr_PMQzDKYxVo4SGJ3q8ErcMnR7,Andrea Spencer,[]
usr_LcuZaedwXuSmFEpoyJRY8x3B,Harley Mraz,[]
usr_9Ewo3wV6medyyff8ijD39Gax,Vi Wuckert,[]
usr_PKLEhKtSQ1k4yFcTWDR1FF6h,Lorie Waters,[]
usr_FsDriBr1djL6iL23pBtuM4To,Raymond Durgan,[]
usr_DhhP1g1TZpPZ4tRkDUQGzsMB,Siu Kihn,[]
usr_5B12Xi2w1YqZG9fnxenHK9Zc,Marta Gutkowski,[]
usr_4hZEu44qLqrCpTch2YR3WEaj,Lorilee Kautzer,[]
usr_Dr6npqm3yAZbSRYwbhuTan6x,Ashleigh Green,[]
usr_JVmWbT7BLm9u4cZjArPC84YD,Booker Schiller,[]
usr_B5suyCqvcLcMmUfEG2m9fHUU,In Von,[]
usr_2ZrF8PMXpzfRrmn9YnkrLbBb,Edward Bechtelar,[]
usr_AwR8sZmjkACUnsimKzuAGr4f,Shenika Cummings,[]
usr_PV9ghmL59qTbnxja6Qvx2Cuf,Francisco Fritsch,[]
usr_9QP6YBCdzzE82HLZY9mX55Mt,Piedad Roob,[]
usr_L7ThWTr4FH2NXpa5HeueWWKS,Ted Lueilwitz,[]
usr_8qA5wtYrMZB7J84zfuKvuGUW,Tuan Hand,[]
usr_6aKUpzee2pmxdsJdVSNJFEAW,Hank Marvin,[]
usr_FXyHYNMb84U9dEjtQZBcfNzH,Hobert Larson,[]
usr_6NWneg3r7wzvTLbfwbW6XpsU,Dee Abernathy,[]
usr_NyCYwaPA3VVAVQmPNfjPj8ad,Earle McClure,[]
usr_6wTJAKW6rHwHH72sxuEKk6ds,Fredric Howell,[]
usr_PC9FhFoa3CNRxSm6nEFXyiZM,Roland Boyer,[]
usr_nZqLexLeZ69DkNeJRwTYNnpe,Morgan Borer,[]
usr_KmajGs3B7W3pUP9wwmkN3msZ,Asa Bruen,[]
usr_FMV6qXpTZaMMMjSg73zJrxjv,Kiersten Vandervort,[]
usr_H36bE9QAHZd9dBm3VyuZKHsh,Antonina Legros,[]
usr_83dd3LZiUEXQdhXWM8sQ9o5d,Chris Stroman,[]
usr_H9QWpmcHFZA5eWUefjpoVBg6,Sol Lakin,[]
usr_MaCtmJ9TJjMPiRDyhxQFSjw6,Delmar Rath,[]
usr_793qkFX2q4meuWifZz45Jh9a,Lavonne Friesen,[]
usr_KaEFmZxuhay8BAAGXQF1WQcz,Carri Flatley,[]
usr_5PqQLHErfTDsYWiy7msRhL9k,Lewis D'Amore,[]
usr_Q5W2eZSD2NBctsUvnkE9DfRf,Collin Bins,[]
usr_8i8qJdu1k3yuezZ4vAcG46zT,Lady Konopelski,[]
usr_DckL9Q8ev7xR4z1shMgPYT6Q,Dino Connelly,[]
usr_MUuV8VJ3wgd6v2fGdDaQnuHB,Fausto Walter,[]
usr_9PXKRdatsTAt2in4k3wNC7Me,Odell Feil,[]
usr_4MwgEVRvAyMkB4jAgHugtPwg,Erlinda Bartoletti,[]
usr_Fn4un6vpFeHKSoYze3G2xgwR,Odell Paucek,[]
usr_GrrFBANrUcH9Ey4gcGDGUUfs,Talisha O'Conner,[]
usr_E4DiPiGA7oyCPqHbKyacKBZX,Samantha Howell,[]
usr_AMfcL9dfRod2oPhxmsaJhSCP,Trenton Nicolas,[]
usr_Cm4VYjfxy4J2dEj5DNtJ6CDQ,Pearly O'Connell,[]
usr_Negho8F2q3MjHY17cvLBQrQB,Blair Reynolds,[]
usr_J3BC8caM8ykDUUvRgFNhiLE2,Gianna Hoppe,[]
usr_Gmd364tTu1YUU8ofk36anpqz,Rodrick Graham,[]
usr_BzKVNoAes7L7gx8kY4FFriux,Robert Satterfield,[]
usr_Dx3AFqqcx5RKGPAbsBqcnDHw,Burton Goyette,[]
usr_KbmZCD9f9dSC8UsM7HkrKDbY,Chas O'Kon,[]
usr_8agVkzJvjkCSrHxX11kMn15X,Gerardo Wuckert,[]
usr_GW4R6eXYtCqn2Pwmgv73KA5k,Hilary Cronin,[]
usr_PcEA99BJdd6Jkw4U7nFHgwUC,Franklyn Morissette,[]
usr_2vqgo921XrBFttgNaQBRoML5,Silva West,[]
usr_EXygrxE6SVPdfWP3qG3Sv54p,Garfield Von,[]
usr_5ZRUnEphA87QVpnPKxn8GXRN,Inocencia Grimes,[]
usr_PbCEvrp4rqWbKZVxxjHVUJy1,Korey Schimmel,[]
usr_BHafqVukwnuCMSoXVQWqVujp,Daniel Heaney,[]
usr_N1V5TQpPnHfAhWJL9Nbzn9fe,Barbie Vandervort,[]
usr_PJV6NAUFvL8pyTnVnJs9NqT4,Sandi Morar,[]
usr_NegRCfivcf8JizFm3gpoydaM,Danilo Wiza,[]
usr_LLyTZ4DCB9F5knZXQdhvqwEq,Christian Deckow,[]
usr_DAS3VWTmWJgcpUsQU2YXXHxd,Kacie Kessler,[]
usr_GFf9ZA62oZMxSfmTqjuR87zp,Alfonso Lockman,[]
usr_27uqkj3AbwxcvKYasMDg3scH,Norman Kuphal,[]
usr_4aFep1qovZMckrpDKWg72yMZ,Antony Lakin,[]
usr_N6jikM8Lp96D9Y5kPoG796Nh,Kraig Swaniawski,[]
usr_28PVXQFHtqbMhuvNBdwgDEBB,Brad Muller,[]
usr_rS34hxFvPJJhFwHoyPe9UxYe,Dan Bauch,[]
usr_JBu5fxoaTpn7Lm1noVZJ2baB,Shad Schmidt,[]
usr_BKXSUSfSgG7EoDbo6VJVFEnx,Irvin Mayert,[]
usr_3ATHpnttN3w7GybKmae5KF65,Cary Cummerata,[]
usr_CDGcD5M1GYNCLvqwZtViYvrB,Alvaro Kshlerin,[]
usr_KVbR2jts7vkooq5h3vhLMtSP,Alma Aufderhar,[]
usr_J5sDY6poDWit4sMECHkQsYE1,Lemuel Steuber,[]
usr_2TJvaVMjqLFVRRBmCvPAgC2v,Maryland Keeling,[]
usr_HKcWytYfCCvXJ1V1D3Wha3gW,Burl Stark,[]
usr_L9SfPr1wpeywxpqADMaVkKAX,Carmen Beer,[]
usr_67uxe7YffRFrHjyEmbCaZXsn,Damien Rippin,[]
usr_6aSFbbAuZK6BUBVApjSvLWYX,Shawanna Hackett,[]
usr_CmCrpy3WKsbeCdREftLkTQtU,Jan Moore,[]
usr_HbwHL7cqy9zvrW4xNyzbTQLf,Rolland Bogan,[]
usr_JGL36D9y15PUNqGmu5eH2x97,Alan Pagac,[]
usr_Nmzjfw1pp9msaz913GgbEW9M,Floria Kunze,[]
usr_6YSHWJULKYZ8rFCmDQNNjvBX,Orlando Stokes,[]
usr_NvVkSmV7afNgLRXNuXWVf8Ty,Jeremy Beatty,[]
usr_FqN5t74HHtMEkhjSQGEZGr1P,Kamilah Buckridge,[]
usr_9g4CuJq98nYugPz1BPVgigEv,Celina Herman,[]
usr_Ld49nn4v67GEBtoktQUxGFLF,Clifford Bashirian,[]
usr_3hoLE4bzyuGXeyhdPG8BsDeJ,Coralie Jerde,[]
usr_5iiBTad9GPXqK5Rp9hvwndGA,Chadwick Goodwin,[]
usr_RUuhRZnX2zkiWFMFGQJbjoz4,Enriqueta Von,[]
usr_EVfqk5M5ztr6y3RZfEN5DcZb,Morris Harris,[]
usr_76GV2nvkZvFz7KwK8SGnyDTR,Asa Waters,[]
usr_RBWJERZPgjNE2eJXKuSxMSsT,Tama Harvey,[]
usr_AMND2usokuVQGtiRvJVU4F9A,Milo Rice,[]
usr_38ErEikJw3TYUUCYEfEz1YeV,Porfirio Bernhard,[]
usr_CG22CWaRNtfoR2xuAU3yUFTz,Bennie Ledner,[]
usr_JziUZMKWc4zkWHGQ5CdvZD3M,Hobert Cummerata,[]
usr_8mHE5ssbhyW3mEAySapzUbrq,Lenard Kemmer,[]
usr_L2LgyQvTVALYTNitVK7jYoV6,Dong Streich,[]
usr_JuSEqS4SSvNfdTLmJbDFEewt,Levi Toy,[]
usr_DVV1vMXLJRpXsjXqGPJ9N7sN,Verna Prosacco,[]
usr_HSHwbTZV3gKuhwUF71N7wiN4,Valentine Rogahn,[]
usr_JaDzTevoqC1jnsxoMbtL5XDs,Erasmo Blanda,[]
usr_PV32negosCXMqMZKWNJDn16T,Mandi Stehr,[]
usr_AhADbgQug98ffczY8ChprjbE,Florentina Hickle,[]
usr_9p8Vfk3HPa72pgfgAs73RETJ,Sammy Kessler,[]
usr_EB9kK5GzjLirHgEyn2G4pTrV,Dora Kunde,[]
usr_Q4Xj8QLvMZrkVn6FVZ4NSRJK,Karon Bernhard,[]
usr_CK27zdcpStP7whCVsoHr8G3M,Cliff Cormier,[]
usr_6Y9CDQeQYVNF1v1g6cZGUQLQ,Casey Rolfson,[]
usr_Ln5Uz1eBmtyEjPD9hL1BL8Z6,Roseline Heller,[]
usr_G6oTr9FurjErsQzbbea2ZM8e,Chasidy Zboncak,[]
usr_KaKTrhQEcuf1mSmLt1TBJ7yf,Neil Effertz,[]
usr_JtCUD7vxuaVeziavqbjxZZYZ,Irving Becker,[]
usr_8fR2RkV48NEhthaiCCNLF5yD,Lynn Fahey,[]
usr_ifAGHBHhxpM9hdDJad2wfcXM,Kelley Anderson,[]
usr_GLpkeMQaqnc5s4KdJKbi6aBx,Jerica Lubowitz,[]
usr_CPuZUqkNKqY7JKVuAYdEMaJB,Benjamin Spinka,[]
usr_FyGkhnkcAdDkiq8Bh7q7gP5C,Hilary Mitchell,[]
usr_MKUC3nctT5c9LkGYzyBZY1aK,Miquel Lind,[]
usr_7C6acZFQKymqjLhFoKweai6e,Susanna Gaylord,[]
usr_9apqejtEVzCyuVn6foEE3YTR,Sumiko Wolff,[]
usr_QDmqkwEDeKTBQ42KS7TZ7Ss3,Ciara Rau,[]
usr_7hsPkgdTwRpHYuEnerEoq11t,Nick Kuhic,[]
usr_9ZdBTPauRTEbSu4adYJFqeKv,Raeann Krajcik,[]
usr_EVDBFByp7HNRUB44aBg4n9T8,Antionette Witting,[]
usr_KEacayeSh46wrJoCMngjv4Aw,Michal Reinger,[]
usr_NwoNCuzaHQWp5aVSwRx862uJ,Darlena Davis,[]
usr_HFr8S5vRsq4reeMpWR8NsbAb,Sang Huels,[]
usr_JL1xPVGVB84mt3vKwyFN7Ymr,Cristin Kessler,[]
usr_9dkzscZjuymssnS5b25C1bDP,Shanice Jacobs,[]
usr_LWk4B3y8GEJAvcJpMxErZhr8,Colin Murphy,[]
usr_3emUvx2czNYW2aT44Q6BJzQV,Iliana Koch,[]
usr_Mq8uU59SZNcnVRu4DcoDWWaf,Maia Cremin,[]
usr_9pcoBksTjQNxycX7rViMvi4E,Nathan Reichel,[]
usr_61DGtzjHQiwhCQp9YVyQVirR,Antony Bergstrom,[]
usr_33HFNpkygMz9Wk9HxpKJEW8E,Robert Goodwin,[]
usr_72ooSCDQWKRWfxpTLWobxwpu,Harlan Marvin,[]
usr_N3gvKZUw6fvSUUCsUoY1ztKv,Pasquale Mills,[]
usr_EMZifJQuyrsZxKeTNr4Tu766,Wendell Harber,[]
usr_H2BYdHFgNwJZzQUJeyTqpTnb,Kira Oberbrunner,[]
usr_3U6Dd7uZWH6E2NLa7m44Pq7F,Chauncey Goldner,[]
usr_ALXwZtm5vF2gdBESwXNsJiXX,Naida Harber,[]
usr_N4a1x5KbacVMkH1vgWWsjdhU,Ambrose Waters,[]
usr_BmFhumyEcts4WJ7VG6mYu8bK,Darin Windler,[]
usr_DKVQ9VzXz1gwmHeS24msWAHk,Tammera Carroll,[]
usr_Gy69G6yzqrqvNYmVrL7GudUr,Claudio Kessler,[]
usr_D323QBt8mChVzpxpHfHCiQgo,Debbra Nienow,[]
usr_LXHkzZGWg8PbAtMr9WSCmu2C,Alejandro Lindgren,[]
usr_7Z74cr6vcDsN59tcXBEcpwTL,Fidel Schiller,[]
usr_AUDrmrmF7QNbXPx5XJC3gTSB,Terry Fahey,[]
usr_3mJQcBikXJeLndfSomobUDWr,Grace Harvey,[]
usr_9AHGFGinUehVE8bbRQa3xceG,Ozell Orn,[]
usr_4sz1ibNvVkoPEUTWyfRG8neR,Maxima O'Kon,[]
usr_M3k99vfSz1nGiYgNGWVSDzZ3,Kim Kunze,[]
usr_89t7avAxZ8uMnR1kKmZaEHps,Claudie Upton,[]
usr_CWPJrbzSsubzqNFK6LXwXB4G,Hsiu Armstrong,[]
usr_Gb3rLWNkoNW9YvwpuHdUKMBc,Mardell Gutkowski,[]
usr_9v4ZWVdVDXc9j6RLGso3MJK9,Eusebio Stark,[]
usr_LukYRsMQk73EXh8QNQV4X83j,Elizabet Spinka,[]
usr_E6tK3U1AtJtaVt1iQ1WYNtwn,Albert Cummings,[]
usr_6fhm8XSdqhGGY3shdRuxACV8,Babette Reichert,[]
usr_Jjnh27Jop7c4RZmmYCwQXnpd,Tillie Conn,[]
usr_6xffotDXdoaTeHZEF7eG6ETB,Silas Price,[]
usr_KP5fpV3hSY8ms6CDU5QhFKo2,Aimee Howell,[]
usr_JwSKw5vYEDpeAmHiRWQPQH61,Sophia Crona,[]
usr_6ugQniUoABnU5CGqSfiVVrom,Brad Ebert,[]
usr_E5gTtWVFW1cWePzfP4q4Ypsq,Neta Greenfelder,[]
usr_Jvbw23mGB4fDEyvgWgRrWEoP,Maria Hackett,[]
usr_NKvjBSUdjhuCBy76UQxCdVmw,Donnie Walker,[]
usr_M4e4dHYUk81uNRqiYsibgXvY,Renaldo Wisozk,[]
usr_7anKRuW4DXcM3ZZW5zXNLf58,Guy Olson,[]
usr_7zdjY2h756DsKQWAUrD1VxfV,Temple Fahey,[]
usr_A1gkfaHaFdqVGSjVQHiGiUER,Darius Armstrong,[]
usr_2YWpgAZrfBEmv68Y1JnCMF99,Samuel Kuhn,[]
usr_LBtBKbw78CSikynQ5KX2quEN,Randell West,[]
usr_Di7EERhgkkUAV7xfAiRW9mWW,Everette Hickle,[]
usr_JCm9En8aVMgLWQU6RJdFwaah,Nickolas Crooks,[]
usr_43jTZGfgrhUqSEcXsRUoUvBU,Santiago Ernser,[]
usr_3Ux7N2mH4QgnwEHt4AM751gB,Jacquelyn McLaughlin,[]
usr_46j3zBwBcSvbGRErqM3M5uC8,Larry Corkery,[]
usr_5nmRagtsCxYMZrsTsKFB6CLj,An MacGyver,[]
usr_7Dy5a4N3HJM98Z5d9Qg88gxz,Mohamed Walker,[]
usr_L382USHD7wdumLvSswXf7gSC,Taylor Keebler,[]
usr_9kb6cSrQbEiYmWH53nFQxPvF,Dominique Hudson,[]
usr_PPEqWgJGpbUnSCLac2mi8ghZ,Concetta Hegmann,[]
usr_EuwE2629VeWwH13VWSsESC2q,Carl Kemmer,[]
usr_Hz4Uk1d5PQ1nTnMb2v8iwMpn,Hobert Padberg,[]
usr_7UVcKzXNBQ9jR4hcLnjqATyt,Shae Waters,[]
usr_PuyfPm5MgAdK9PffwqihuDt8,Silvana Wyman,[]
usr_H9kmefjCB8721RV9vvLPT5gU,Kellye Mitchell,[]
usr_4gmNwtwPFqBvAQWoSGrMtEuA,Mathew Keeling,[]
usr_8CC5GoS52cQNyTaJMBqpJKR4,Claris Nikolaus,[]
usr_ErUao4zYDG5CiJntbkmDv3FP,Rosalie Funk,[]
usr_5xUj1gZcrBwRCw8Es5E8sbt5,Ralph Lakin,[]
usr_KSHxoKGEdPB4E4idhK7thQhm,Nancee Romaguera,[]
usr_CmnPtzgR4zVwvjDEwJKh8QeV,Hans Hodkiewicz,[]
usr_M8koPa9PQXTYtiwJXdHVha1G,Roman Dooley,[]
usr_3f6jjUZfvn8naPpAsAxjytfH,Cody VonRueden,[]
usr_NBHqo6h7BpKtQTCjmorHVktp,Wan Bahringer,[]
usr_Bnw3o5UAirC32cR4SLUbLLa8,Lucienne Wilkinson,[]
usr_4fkih8EArMmAE2vktWberszS,Karena Turner,[]
usr_3rTUWmtTXTEcP6MjcNRZdXWV,Jennie Mills,[]
usr_F1WAoU27QeL6hCXtN9FPX1gg,Nettie Schinner,[]
usr_4et3RJxTn1P5vpKP34cSSiCc,Mariano Rice,[]
usr_F5wfLuxGLU4Y6YKyojMzw725,Rhett Dicki,[]
usr_6x4L4hDjM9hLGWK6Yybo5k1h,Tim Borer,[]
usr_EtQLKAgYzsuu1So3dwBvT6NZ,Candi Kub,[]
usr_BwKJLrfeFH4MxrmQ98hUa9kH,Ellsworth Moore,[]
usr_oN9HH4VxH8z3C1ny8CHGQHkc,Keisha Rogahn,[]
usr_Bvk1k2XeEJddyKGTqQKqzWXF,Jeannette Hyatt,[]
usr_51tEkUgvbGmt7fiCEkcDbo5J,Alleen Stracke,[]
usr_7q6VFG8v8WVbtXkk5RY3JudZ,Vallie Dach,[]
usr_5YDyAHjYxou6NEbAyHsGUfhJ,Carolina Satterfield,[]
usr_D4tc4jmTWmrApAuJ9vzZPpYC,Travis Collier,[]
usr_QDckNMcxFtffbLXXSxU57Vip,Eric Beier,"[{""organizationId"":""org_MfSwgB8eWHpb6cWhBq1JFGcy"",""title"":""Regional Communications Ingenieur""}]"
usr_4ak83xaAA94B2NqqN3EbBsbL,Damon Gislason,"[{""organizationId"":""org_MfSwgB8eWHpb6cWhBq1JFGcy"",""title"":""National Program Executif""}]"
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_CVW8JDqi5JMjV2Z4wydp6VBt HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "DNrqhhRfZkxMZPAVTATTdULV"
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_CNYf6qJtD82QXupYm1LKqLJL
ETag: "Df71YNv1erXNv35QfjWbaPZ8"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 524
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744910668,
"expired" : 1747831310665,
"exportOperation" : "createUserExport",
"id" : "exp_CVW8JDqi5JMjV2Z4wydp6VBt",
"itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
"jobOperation" : "purgeExport",
"searchQuery" : "",
"size" : 34763,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 733,
"updated" : 1747744911469,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_77dmmAFiVWDAf1q4j6vX9jYN&items.id=exp_77dmmAFiVWDAf1q4j6vX9jYN&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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" : 1747744921463,
"expired" : 1747831321461,
"exportOperation" : "createUserExport",
"id" : "exp_77dmmAFiVWDAf1q4j6vX9jYN",
"itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
"jobOperation" : "exportEntities",
"searchQuery" : "",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744921463,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
} ],
"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_AC24L4dK4taDU9CeE5Y6gjsc&items.id=exp_AC24L4dK4taDU9CeE5Y6gjsc&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 167
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}}",
"expired" : 1747831301584
}
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_39MAncYcBErJzyuLqq7CyBTm
ETag: "3ueZjaK6vbA2kwG6HqPhz26B"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 582
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744901586,
"expired" : 1747831301584,
"exportOperation" : "createExportExport",
"id" : "exp_LcEmhiSRm3iibYWnmYVYqw7e",
"itemTemplate" : "{{id}},{{name}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=exp_AC24L4dK4taDU9CeE5Y6gjsc&items.id=exp_AC24L4dK4taDU9CeE5Y6gjsc&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744901586,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_7BmELRkWdtTjrj9FWaNfeCvL/groups HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 1445
{
"name" : "Triple-buffered analyzing system engine",
"description" : "8 étage, 6 Avenue Saint-Dominique, 79588 Bordeaux",
"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_8yTJFqLHTtXKnwRyChi2429Y" ],
"layoutSelectionMode" : "listOrNull",
"allowedLayouts" : [ "lay_8vhab3hgy5uyEL5WWo5pH3LF" ],
"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" : 1747744603961,
"lastSend" : 1747744603961
}
}
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_LbNfG95jG8zUCoJCmGDqT5T5
ETag: "HCKnxEveeif95nruxEsdxg1Q"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1549
{
"allowedLayouts" : [ "lay_8vhab3hgy5uyEL5WWo5pH3LF" ],
"allowedTemplates" : [ "wtm_8yTJFqLHTtXKnwRyChi2429Y" ],
"createUserAuthorizedGroups" : [ ],
"createWorkflowAuthorizedGroups" : [ ],
"created" : 1747744603964,
"deleteUserAuthorizedGroups" : [ ],
"deleteWorkflowAuthorizedGroups" : [ ],
"description" : "8 étage, 6 Avenue Saint-Dominique, 79588 Bordeaux",
"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_mxavbD2e36pfcVwJ16D98hzD",
"isDefault" : false,
"isDisabled" : false,
"layoutSelectionMode" : "listOrNull",
"name" : "Triple-buffered analyzing system engine",
"templateSelectionMode" : "list",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updateUserAuthorizedGroups" : [ ],
"updateWorkflowAuthorizedGroups" : [ ],
"updated" : 1747744603964,
"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_FbeM3o22UZaj6fCjmcBVQByR HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "9AnXdWMY5BTAVAQbj2qXxEHG"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1997
{
"allowedLayouts" : [ ],
"allowedTemplates" : [ ],
"createUserAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"createWorkflowAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"created" : 1747744400613,
"deleteUserAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"deleteWorkflowAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"description" : "4 étage, 442 Boulevard Saint-Dominique, 16107 Angers",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"isDefault" : false,
"isDisabled" : false,
"layoutSelectionMode" : "anyOrNull",
"name" : "Grass-roots bi-directional flexibility",
"templateSelectionMode" : "anyOrNull",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updateUserAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"updateWorkflowAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"updated" : 1747744400613,
"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_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewWorkflowAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ]
}
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_AjNfCyoigR2q8GQqZNyvHmpy HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "FekU16VNamaatB6vKEe6pVAN"
Content-Type: application/json
Content-Length: 1448
{
"name" : "Fully-configurable user-facing synergy",
"description" : "4 étage, 8 Impasse Mouffetard, 50015 Dunkerque14",
"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_Ms3StRSuBSMcnYx8yU5KXeoM" ],
"layoutSelectionMode" : "anyOrNull",
"allowedLayouts" : [ "lay_6YFJFNk6Av1QAutF5gq7tBpG" ],
"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" : 1747744608126,
"lastSend" : 1747744608126
}
}
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_DsX6ogGawBc5SfiryzB9oJjh
ETag: "BCTuTgUexx5Th6FsthtTq58U"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1580
{
"allowedLayouts" : [ ],
"allowedTemplates" : [ "wtm_Ms3StRSuBSMcnYx8yU5KXeoM" ],
"createUserAuthorizedGroups" : [ ],
"createWorkflowAuthorizedGroups" : [ ],
"created" : 1747744608096,
"deleteUserAuthorizedGroups" : [ ],
"deleteWorkflowAuthorizedGroups" : [ ],
"description" : "4 étage, 8 Impasse Mouffetard, 50015 Dunkerque14",
"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_AjNfCyoigR2q8GQqZNyvHmpy",
"isDefault" : false,
"isDisabled" : false,
"jobOperation" : "refreshWorkflowsViewAuthorizedGroups",
"layoutSelectionMode" : "anyOrNull",
"name" : "Fully-configurable user-facing synergy",
"templateSelectionMode" : "listOrNull",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updateUserAuthorizedGroups" : [ ],
"updateWorkflowAuthorizedGroups" : [ ],
"updated" : 1747744608134,
"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_z4ewdQVUpTNg2ttRzmNy6D9F HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "6WCKZBovGvM4mTCv1CGStHKr"
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_Ma48K4bBcbSfeFLGcwhZS27o
ETag: "7TrGTonHjqkUWpa9PxZ2VCyg"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2010
{
"allowedLayouts" : [ ],
"allowedTemplates" : [ ],
"createUserAuthorizedGroups" : [ "grp_LpxWpm9LnzcJ8xFeFUWt7D8f", "grp_z4ewdQVUpTNg2ttRzmNy6D9F" ],
"createWorkflowAuthorizedGroups" : [ "grp_LpxWpm9LnzcJ8xFeFUWt7D8f", "grp_z4ewdQVUpTNg2ttRzmNy6D9F" ],
"created" : 1747744616893,
"deleteUserAuthorizedGroups" : [ "grp_LpxWpm9LnzcJ8xFeFUWt7D8f", "grp_z4ewdQVUpTNg2ttRzmNy6D9F" ],
"deleteWorkflowAuthorizedGroups" : [ "grp_LpxWpm9LnzcJ8xFeFUWt7D8f", "grp_z4ewdQVUpTNg2ttRzmNy6D9F" ],
"description" : "09 Place d'Abbeville, 89526 Nanterre",
"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_z4ewdQVUpTNg2ttRzmNy6D9F",
"isDefault" : false,
"isDisabled" : false,
"jobOperation" : "purgeGroup",
"layoutSelectionMode" : "anyOrNull",
"name" : "Optimized responsive knowledge user",
"templateSelectionMode" : "anyOrNull",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updateUserAuthorizedGroups" : [ "grp_LpxWpm9LnzcJ8xFeFUWt7D8f", "grp_z4ewdQVUpTNg2ttRzmNy6D9F" ],
"updateWorkflowAuthorizedGroups" : [ "grp_LpxWpm9LnzcJ8xFeFUWt7D8f", "grp_z4ewdQVUpTNg2ttRzmNy6D9F" ],
"updated" : 1747744616948,
"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_LpxWpm9LnzcJ8xFeFUWt7D8f", "grp_z4ewdQVUpTNg2ttRzmNy6D9F" ],
"viewWorkflowAuthorizedGroups" : [ "grp_LpxWpm9LnzcJ8xFeFUWt7D8f", "grp_z4ewdQVUpTNg2ttRzmNy6D9F" ]
}
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=Grass-roots%20bi-directional%20flexibility&items.id=grp_FbeM3o22UZaj6fCjmcBVQByR&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 2147
{
"items" : [ {
"allowedLayouts" : [ ],
"allowedTemplates" : [ ],
"createUserAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"createWorkflowAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"created" : 1747744400613,
"deleteUserAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"deleteWorkflowAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"description" : "4 étage, 442 Boulevard Saint-Dominique, 16107 Angers",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"isDefault" : false,
"isDisabled" : false,
"layoutSelectionMode" : "anyOrNull",
"name" : "Grass-roots bi-directional flexibility",
"templateSelectionMode" : "anyOrNull",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updateUserAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"updateWorkflowAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"updated" : 1747744400613,
"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_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewWorkflowAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ]
} ],
"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=Grass-roots%20bi-directional%20flexibility&items.id=grp_FbeM3o22UZaj6fCjmcBVQByR&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 186
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json userRoles}}",
"expired" : 1747830999620
}
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_MV7LSVnxTFRAhrzpG3CTfLWr
ETag: "7ES9mHRS8riFSg6rVfqiDn9b"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 610
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744599623,
"expired" : 1747830999620,
"exportOperation" : "createGroupExport",
"id" : "exp_8ZA3miFjDwLaUYFr2QMo6gSa",
"itemTemplate" : "{{id}},{{name}},{{json userRoles}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Grass-roots+bi-directional+flexibility&items.id=grp_FbeM3o22UZaj6fCjmcBVQByR&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744599623,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_MRNxEQUPaKDaW2rGuX3K7UNv&items.id=log_MRNxEQUPaKDaW2rGuX3K7UNv&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Query parameters:
Parameter | Description |
---|---|
text |
The text to search. |
items.id |
The filter value(s) for the id field. |
items.entityId |
The filter value(s) for the entityId field. |
items.tenantId |
The filter value(s) for the tenantId field. |
items.groupId |
The filter value(s) for the groupId field. |
items.userId |
The filter value(s) for the userId field. |
items.adminUser |
The filter value(s) for the adminUser field. |
items.operation |
The filter value(s) for the operation field. |
items.duration |
The filter value(s) for the duration field. |
items.errorCode |
The filter value(s) for the errorCode field. |
items.appVersion |
The filter value(s) for the appVersion field. |
items.created |
The filter value(s) for the created field. |
items.updated |
The filter value(s) for the updated field. |
sortBy |
The field used to sort the search result. |
sortOrder |
The sort order of the search result. |
itemsPerPage |
The number of items per page to retrieve. Maximum is 50. |
pageIndex |
The index of the page to retrieve. |
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1215
{
"items" : [ {
"appVersion" : "sgs-wm-webapp:1.16.3",
"created" : 1747745021202,
"duration" : 2,
"entityId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "log_MRNxEQUPaKDaW2rGuX3K7UNv",
"operation" : "updateUser",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747745021202,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"variables" : {
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"httpRequest" : "PATCH /api/users/usr_MyUWBehHH6zAs51F4UkFfBQB\nX-Forwarded-For: 127.0.0.1\nWebTestClient-Request-Id: 9349\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_AwP8hpiutuoFMo4bPyBHJVZN&items.id=log_AwP8hpiutuoFMo4bPyBHJVZN&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 191
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{operation}},{{json variables}}",
"expired" : 1747831418975
}
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_4xbBWgd6J7M2Vt14nonzLX9y
ETag: "CfLFXAaCDBUfqvuXhyGLdsMc"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 603
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747745018979,
"expired" : 1747831418975,
"exportOperation" : "createLogExport",
"id" : "exp_3WznbdgihpyfZZYJaRk7ZWu6",
"itemTemplate" : "{{id}},{{operation}},{{json variables}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=log_AwP8hpiutuoFMo4bPyBHJVZN&items.id=log_AwP8hpiutuoFMo4bPyBHJVZN&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747745018979,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_DHUwsA3Qn7hgncuLLmTi9j3a/dataMapping HTTP/1.1
Authorization: Bearer act_Pv7rXfnXvgBHe5GJkuL5bM68.2eFzZuD5MqemoHddqouk3tWeixwyWHBGg4Tx84LB284V48SivE7H944xh7wTX1v3
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_HbuBvWkE45k8Ehz261DFLzwE/dataMapping HTTP/1.1
Authorization: Bearer act_36Qm7iPyMUZfNAC9vRkQQzx3.5ZCsuSWLmrgQE74UngxCS29X9X13qrtGqWqKPcD2pNsuQbrPtZMeKpurGMZRvTAb
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_9EmUCgks8BbZnd9yyFYZwUBf
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_Fu8sRvo1cKGg6hYcaNyvsbb2 HTTP/1.1
Authorization: Bearer act_818CijSGXcbwrFAu8PLYNNq6.2vZnxeTXX9bx4A7TMAeq8xWS2iv8Mt2BvexJxYGY8Cv3TRBZ8K1zJnPCoehHx4tX
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: "9ApCg7WBkoVDbNrYqQo6sTFY"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 960
{
"created" : 1747744882043,
"creator" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"creatorName" : "Stacey Terry",
"creatorPictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"eventType" : "recipientInvite",
"id" : "not_Fu8sRvo1cKGg6hYcaNyvsbb2",
"isUnread" : true,
"linkUrl" : "https://rogahn.net/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0NGUmJIZVNVVzd0NDYxNW10W...",
"preferredLocale" : "fr",
"sendingState" : "sent",
"stepType" : "signature",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744882104,
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip",
"workflowId" : "wfl_HUYewBb8u69GK3wAp8hgW1ts",
"workflowName" : "Incredible Leather Computer"
}
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_4MGLNzbZDPW8zwoZ5zYisFEd HTTP/1.1
Authorization: Bearer act_818CijSGXcbwrFAu8PLYNNq6.2vZnxeTXX9bx4A7TMAeq8xWS2iv8Mt2BvexJxYGY8Cv3TRBZ8K1zJnPCoehHx4tX
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_AmWpEqW8JuwoZR3hCtJVDmDy
ETag: "9S5wTzRqefs9qzendgQvCf7D"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 956
{
"created" : 1747744892430,
"creator" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"creatorName" : "Stacey Terry",
"creatorPictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"eventType" : "recipientInvite",
"id" : "not_4MGLNzbZDPW8zwoZ5zYisFEd",
"isUnread" : false,
"linkUrl" : "https://rogahn.net/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0R2aDRrM04zS0RhRUxrWWdIe...",
"preferredLocale" : "fr",
"sendingState" : "sent",
"stepType" : "signature",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744892504,
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip",
"workflowId" : "wfl_NwgNPBWU8UzkM7ybhcNEcE4t",
"workflowName" : "Heavy Duty Steel 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_3BKK8vVzLqZzmVWUnL8EB8MH&items.id=not_883XhCYYkip2bNMrAdYYsnwm&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_818CijSGXcbwrFAu8PLYNNq6.2vZnxeTXX9bx4A7TMAeq8xWS2iv8Mt2BvexJxYGY8Cv3TRBZ8K1zJnPCoehHx4tX
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: 1068
{
"items" : [ {
"created" : 1747744754397,
"creator" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"creatorName" : "Stacey Terry",
"creatorPictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"eventType" : "recipientInvite",
"id" : "not_883XhCYYkip2bNMrAdYYsnwm",
"isUnread" : true,
"linkUrl" : "https://rogahn.net/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0dMODhFUlR0dUhBUENWUkJ2Q...",
"preferredLocale" : "fr",
"sendingState" : "sent",
"stepType" : "signature",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744754452,
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip",
"workflowId" : "wfl_3BKK8vVzLqZzmVWUnL8EB8MH",
"workflowName" : "Small Marble Wallet"
} ],
"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_4Y2oXkWcUVj11gmjSQnXQv9E&items.id=not_2UXHGzSJ7wTLYBd3oGQ34U5e HTTP/1.1
Authorization: Bearer act_818CijSGXcbwrFAu8PLYNNq6.2vZnxeTXX9bx4A7TMAeq8xWS2iv8Mt2BvexJxYGY8Cv3TRBZ8K1zJnPCoehHx4tX
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_7BmELRkWdtTjrj9FWaNfeCvL/organizations HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 142
{
"name" : "Joly et Rey",
"organizationIdentifier" : "FR5157975306",
"additionalInfo" : "5711 Quai de la Ferronnerie, 09707 Montreuil"
}
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_TBkUoT8WzDMEKacxU96nXmR8
ETag: "EHgyjPnH6QiWwZ784NLCeKPk"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 288
{
"additionalInfo" : "5711 Quai de la Ferronnerie, 09707 Montreuil",
"created" : 1747744593804,
"id" : "org_KUXUEBFk9SB5dtSYUoCv7kJe",
"name" : "Joly et Rey",
"organizationIdentifier" : "FR5157975306",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744593804
}
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_MfSwgB8eWHpb6cWhBq1JFGcy HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "3N2PXwxjAyiqMDWdaRwnoSK2"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 309
{
"additionalInfo" : "9 étage, 325 Allée, Voie des Lombards, 13088 Bordeaux",
"created" : 1747744400009,
"id" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"name" : "Carpentier et Rolland",
"organizationIdentifier" : "FR5254140515",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744400009
}
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_HfFdUU2eWiQdBKXbjW1CpMhz HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "Dt63mV9VcUkzpGyxd1xDYt6w"
Content-Type: application/json
Content-Length: 136
{
"name" : "Dupont SEM",
"organizationIdentifier" : "FR6414607059",
"additionalInfo" : "835 Allée, Voie Joubert, 18796 Ajaccio"
}
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_GmJvCrfuzRyKnF5284XhFetB
ETag: "GxkvrC4B57neRdPRmJH1T623"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 282
{
"additionalInfo" : "835 Allée, Voie Joubert, 18796 Ajaccio",
"created" : 1747744584898,
"id" : "org_HfFdUU2eWiQdBKXbjW1CpMhz",
"name" : "Dupont SEM",
"organizationIdentifier" : "FR6414607059",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744584923
}
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_6AK4r6PMiuqS7T5fmSc6odD6 HTTP/1.1
Authorization: Bearer act_2tXz8DFZsC4Me7CFdrdz8r1c.4qetUkV8NdbDikrCpQaHVHdtCYsFvK8NFFy3eS4h8Byiqpq7xmdv6ZSYtyh5nhF6
If-Match: "Dn3q29ZYD5wfXeXMVzbDPi7Q"
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_BGAhRNmFYebBALCZqHn7wNMM
ETag: "CDosKMLBh2gLsQRiYL3qM2W7"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 320
{
"additionalInfo" : "10 Impasse de Paris, 02528 La Rochelle",
"created" : 1747744596326,
"id" : "org_6AK4r6PMiuqS7T5fmSc6odD6",
"jobOperation" : "purgeOrganization",
"name" : "Meyer SAS",
"organizationIdentifier" : "FR7232881540",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744596354
}
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=Blanc%20et%20L%C3%A9v%C3%AAque&items.id=org_4WiSYFH3nrwHSawaUN9yCRDG&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 387
{
"items" : [ {
"additionalInfo" : "7919 Place Du Sommerard, 62013 Le Mans",
"created" : 1747744595011,
"id" : "org_4WiSYFH3nrwHSawaUN9yCRDG",
"name" : "Blanc et Lévêque",
"organizationIdentifier" : "FR5626962048",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744595011
} ],
"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=Carpentier%20et%20Rolland&items.id=org_MfSwgB8eWHpb6cWhBq1JFGcy&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 167
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}}",
"expired" : 1747830992949
}
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_HY63ucLsM5JhKBKeMD6NPZ2y
ETag: "3RRQAm5LGHtxmpSj3MtCWMqc"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 581
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744592952,
"expired" : 1747830992949,
"exportOperation" : "createOrganizationExport",
"id" : "exp_DhBW35Ero22fayFNd8yVKWR6",
"itemTemplate" : "{{id}},{{name}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Carpentier+et+Rolland&items.id=org_MfSwgB8eWHpb6cWhBq1JFGcy&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744592952,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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_3idWn1k4rDUnFR1Net1nks3j/settings HTTP/1.1
Authorization: Bearer act_GUQVxGheFgjmJGvPQVdzaBd3.2zPjJ5QpbcHckUatM7ZPXg9H4mv9NUUbCwQ644uwQS6eTV8SZrSy7QwEQ3cYG7nn
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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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_7BmELRkWdtTjrj9FWaNfeCvL/appliedSettings HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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_GVzRWQzQ8Epo7DiAV2VEvN8U/settings HTTP/1.1
Authorization: Bearer act_8o7xNNdffMQToVJJydvGe9bv.4YxJfs8anR7aLYybVHEDt7wgCj5YtRK643asL7af5UMZrJqYq67hgVJ9xX116FdH
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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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_9JPk7d2Vd154ba8uEzoMbzuq
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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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_5hsNR1WPjheVp26TRhbK9idA/settings HTTP/1.1
Authorization: Bearer act_JqpXoxGW7bB9vEwpimnNHvyM.41tg4U3gWcZRbpFAfMYEpuyaak9VXkiVqXwy3fVXKqw29BvPLoeQptHmHwYhQ745
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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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_MyUWBehHH6zAs51F4UkFfBQB/appliedSettings HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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_J32JfoxtXUNqkUJY9C5CuBdo/settings HTTP/1.1
Authorization: Bearer act_L7tvwo2UtyQQ1sSZgEiiPG3A.3UZERCGwnjbWSXp5cBAdMFdTokBcN26EaQ6XjPZHFKKcaH7NBkkijZWp1sxXxW79
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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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_BmW3GQtj8x8mXEWc9Nqxt58Z
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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </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_6wtxNB1ubrd3FSYqNb9waRF2/settings HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" 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 →\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr style=\"padding: 0px 0px 12px;\">\n <td width=\"40\"></td>\n <td>\n <font size=\"2\" face=\"Arial, Helvetica, sans-serif\" color=\"#57585b\"\n style=\"font-family:Arial,Helvetica,sans-serif;font-size:14px;color:#57585b\">\n <br>\n <p>\n Afin de visualiser ce parapheur, veuillez cliquer sur le bouton\n ci-dessus ou copier l'adresse suivante et la coller dans la barre\n d'adresse de votre navigateur :\n </p>\n <p>\n <a href=\"{{{notification.linkUrl}}}\" target=\"_blank\" style=\"color: #489cdb;word-break: break-all\">{{notification.linkUrl}}</a>\n </p>\n </font>\n </td>\n <td width=\"40\"></td>\n </tr>\n {{/if}}\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\"></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <!-- Fourth Row Card Footer-->\n <tr>\n <td valign=\"top\" bgcolor=\"#ffffff\" align=\"center\" style=\"background-color:#fff\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#ffffff\"\n style=\"background-color:#fff\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"left\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td>\n <div\n style=\"border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;\">\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"\n align=\"center\">\n <tr style=\"background-color: #eaebec;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji'; font-size: 16px; color:#202124;\">\n <td width=\"40\"></td>\n <td>\n <br> Merci pour votre confiance.\n <br> À bientôt.\n <br>\n <br>\n </td>\n <td width=\"40\"></td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </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_7BmELRkWdtTjrj9FWaNfeCvL/signatureProfiles HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 10668
{
"isDefault" : true,
"isDisabled" : false,
"name" : "Science fiction",
"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_5CtyhomxvCArkZhkaiprdu94
ETag: "7FdDLauCuT2A1cLBaBuR6Zcy"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 10814
{
"created" : 1747745032211,
"documentType" : "pdf",
"forceScrollDocument" : true,
"id" : "sip_9qX5KSfJE5pKYSBajuAAemya",
"isDefault" : true,
"isDisabled" : false,
"name" : "Science fiction",
"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_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747745032211,
"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_QCysJETDyQDXL7CKJZbojdL5 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "GKEVbNuHe1x4s2pxUh1niHDL"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 10907
{
"created" : 1747744399266,
"documentType" : "pdf",
"forceScrollDocument" : true,
"id" : "sip_QCysJETDyQDXL7CKJZbojdL5",
"isDefault" : false,
"isDisabled" : false,
"name" : "Reference book",
"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_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744399266,
"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_9oNKnyYro4ZPXq7waYVRjNPy HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "GE1UZiQAsjptzFdGuYt1zvhU"
Content-Type: application/json
Content-Length: 1147
{
"isDefault" : true,
"isDisabled" : false,
"name" : "Fiction in verse",
"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_5idgdSoiVxWpCBKcZAJ9XPxZ
ETag: "hZFJ7qKQTqLaEXPHLtJXrqtc"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1319
{
"created" : 1747745024652,
"documentType" : "pdf",
"forceScrollDocument" : true,
"id" : "sip_9oNKnyYro4ZPXq7waYVRjNPy",
"isDefault" : true,
"isDisabled" : false,
"name" : "Fiction in verse",
"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_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747745024691,
"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=Reference%20book&items.id=sip_QCysJETDyQDXL7CKJZbojdL5&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 11037
{
"items" : [ {
"created" : 1747744399266,
"documentType" : "pdf",
"forceScrollDocument" : true,
"id" : "sip_QCysJETDyQDXL7CKJZbojdL5",
"isDefault" : false,
"isDisabled" : false,
"name" : "Reference book",
"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_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744399266,
"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=Reference%20book&items.id=sip_QCysJETDyQDXL7CKJZbojdL5&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 167
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}}",
"expired" : 1747831434877
}
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_Dcnpo55gygCayDQBrmxdumzr
ETag: "26HrPufhp93SgpvXv44CkRBz"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 578
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747745034880,
"expired" : 1747831434877,
"exportOperation" : "createSignatureProfileExport",
"id" : "exp_7DkNzuh87FTLvZ7or1Y569La",
"itemTemplate" : "{{id}},{{name}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Reference+book&items.id=sip_QCysJETDyQDXL7CKJZbojdL5&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747745034880,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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 YWRtaW46QlJlU1k1YnpYeGZCeW43V2hRMkxuRm1R
Content-Type: application/json
Content-Length: 1293
{
"domainName" : "okuneva.com",
"idpType" : "google",
"idpBaseUrl" : "https://accounts.google.com/",
"idpScope" : "openid email profile",
"idpClientId" : "2678",
"idpClientSecret" : "3QxNbdRc2QGXCVxpzLKT8YFT",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"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_9jDULsixa7mmeEjLGUq2muvh
ETag: "2hKkf1Lxy4ELKrC2E8GThSwX"
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_FbeM3o22UZaj6fCjmcBVQByR",
"created" : 1747744999452,
"darkColor" : "#104670",
"defaultAllowComments" : false,
"defaultCountry" : "FR",
"defaultGroupId" : "grp_KGBfcU7eU26nZ7Fb4wNRiokq",
"domainName" : "okuneva.com",
"downloadLinkTokenValidityDays" : 90,
"forceFlattenPdf" : false,
"id" : "ten_B3sjCthse3QEsRjF4C4ak9MN",
"idpBaseUrl" : "https://accounts.google.com/",
"idpClientId" : "2678",
"idpClientSecret" : "****************",
"idpScope" : "openid email profile",
"idpType" : "google",
"lockDocumentsAfterFirstValidation" : false,
"loginTokenTtl" : 3600000,
"logoResourceId" : "res_6B6WPDXxLBZR4Bt6B7SdTfje",
"maxAttachments" : 10,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"tenantStatus" : "trial",
"updated" : 1747744999452
}
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@76337ec 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_7BmELRkWdtTjrj9FWaNfeCvL HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "CkNTpfYytSRDBNUttkf5v8DD"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1273
{
"activateExternalArchive" : false,
"allowCommentsInSteps" : true,
"allowConsolidation" : true,
"allowExternalArchive" : false,
"allowWatchers" : true,
"allowedTenantStatus" : [ "active", "inactive", "trial" ],
"attachmentExtensions" : [ ],
"certificateEvidenceLanguage" : "en",
"consentVersion" : "V2",
"createUserOnLogin" : true,
"created" : 1747744397960,
"darkColor" : "#104670",
"defaultAllowComments" : true,
"defaultCountry" : "FR",
"defaultGroupId" : "grp_LpxWpm9LnzcJ8xFeFUWt7D8f",
"domainName" : "rogahn.net",
"downloadLinkTokenValidityDays" : 3650,
"forceFlattenPdf" : true,
"id" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"idpBaseUrl" : "https://accounts.google.com/",
"idpClientId" : "2678",
"idpClientSecret" : "****************",
"idpScope" : "openid email profile",
"idpType" : "google",
"lockDocumentsAfterFirstValidation" : false,
"loginTokenTtl" : 3600000,
"logoResourceId" : "res_2gZ1MjCfxaJV6i9N4HaHz2ux",
"maxAttachments" : 10,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"tenantStatus" : "trial",
"updated" : 1747744397960
}
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@76337ec 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_7V5fpVkTGRfamYj9orSySBNr HTTP/1.1
Authorization: Bearer act_JSRtrLgrWG32fqH3sXbeoFGp.5pfTRTcPdLQuRdiiphSv64Ey6WiQzJJEdfos8NgEcYEpu3jZAPh91oeQDwQMzQrX
If-Match: "2DXbxENdSZgJZ1ZfCg4iW337"
Content-Type: application/json
Content-Length: 1374
{
"domainName" : "sawayn.io",
"organizationName" : "Aubert et Gonzalez",
"idpType" : "google",
"idpBaseUrl" : "https://accounts.google.com/",
"idpScope" : "openid email profile",
"idpClientId" : "2678",
"idpClientSecret" : "3QxNbdRc2QGXCVxpzLKT8YFT",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"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_82DnJY89mfZ7R4mzU3t1ebNc
ETag: "DHEEtodmoJAwRavi4vYsgCc2"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1500
{
"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_FbeM3o22UZaj6fCjmcBVQByR",
"created" : 1747745000823,
"darkColor" : "#104670",
"defaultAllowComments" : false,
"defaultCountry" : "FR",
"defaultGroupId" : "grp_JMfXFVQzgUSTtoZakNpVc6a2",
"domainName" : "sawayn.io",
"downloadLinkTokenValidityDays" : 90,
"externalArchivingParameters" : {
"metadata" : [ ]
},
"forceFlattenPdf" : false,
"id" : "ten_7V5fpVkTGRfamYj9orSySBNr",
"idpBaseUrl" : "https://accounts.google.com/",
"idpClientId" : "2678",
"idpClientSecret" : "****************",
"idpScope" : "openid email profile",
"idpType" : "google",
"jobOperation" : "purgeTenantResource",
"lockDocumentsAfterFirstValidation" : false,
"loginTokenTtl" : 3600000,
"logoResourceId" : "res_QGapQxLkeZ3YuTqQHmMhb1TE",
"maxAttachments" : 10,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"organizationName" : "Aubert et Gonzalez",
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"tenantStatus" : "trial",
"updated" : 1747745001032
}
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@76337ec 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_PzH2SYWM64qdzLEmEJ1wQPP8 HTTP/1.1
Authorization: Basic YWRtaW46QlJlU1k1YnpYeGZCeW43V2hRMkxuRm1R
If-Match: "F6D7Sxu5YgfnkvttoCkG7bX1"
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_DLBKEVDQfixeqJRNaiZu1Ekp
ETag: "He22numBisWCZdtvyJMorXBX"
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" : 1747745008173,
"darkColor" : "#104670",
"defaultAllowComments" : true,
"defaultCountry" : "FR",
"defaultGroupId" : "grp_2ZVhGoiLb2aDRHbgeQdoBNju",
"domainName" : "goyette.io",
"downloadLinkTokenValidityDays" : 3650,
"forceFlattenPdf" : true,
"id" : "ten_PzH2SYWM64qdzLEmEJ1wQPP8",
"idpBaseUrl" : "https://accounts.google.com/",
"idpClientId" : "2678",
"idpClientSecret" : "****************",
"idpScope" : "openid email profile",
"idpType" : "google",
"jobOperation" : "purgeTenant",
"lockDocumentsAfterFirstValidation" : false,
"loginTokenTtl" : 3600000,
"logoResourceId" : "res_5wmbb3xvRRS4qhc5vbsKS5TH",
"maxAttachments" : 10,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"tenantStatus" : "trial",
"updated" : 1747745008245
}
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@76337ec 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=rogahn.net&items.id=ten_7BmELRkWdtTjrj9FWaNfeCvL&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Basic YWRtaW46QlJlU1k1YnpYeGZCeW43V2hRMkxuRm1R
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: 1429
{
"items" : [ {
"activateExternalArchive" : false,
"allowCommentsInSteps" : true,
"allowConsolidation" : true,
"allowExternalArchive" : false,
"allowWatchers" : true,
"allowedTenantStatus" : [ "active", "inactive", "trial" ],
"attachmentExtensions" : [ ],
"certificateEvidenceLanguage" : "en",
"consentVersion" : "V2",
"createUserOnLogin" : true,
"created" : 1747744397960,
"darkColor" : "#104670",
"defaultAllowComments" : true,
"defaultCountry" : "FR",
"defaultGroupId" : "grp_LpxWpm9LnzcJ8xFeFUWt7D8f",
"domainName" : "rogahn.net",
"downloadLinkTokenValidityDays" : 3650,
"forceFlattenPdf" : true,
"id" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"idpBaseUrl" : "https://accounts.google.com/",
"idpClientId" : "2678",
"idpClientSecret" : "****************",
"idpScope" : "openid email profile",
"idpType" : "google",
"lockDocumentsAfterFirstValidation" : false,
"loginTokenTtl" : 3600000,
"logoResourceId" : "res_2gZ1MjCfxaJV6i9N4HaHz2ux",
"maxAttachments" : 10,
"maxDocumentSize" : 10485760,
"maxDocuments" : 200,
"primaryColor" : "#208cdf",
"secondaryColor" : "#4ca3e5",
"smtpSenderName" : "My application",
"technicalContactUrl" : "https://support.lex-persona.com",
"tenantStatus" : "trial",
"updated" : 1747744397960
} ],
"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@76337ec 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=rogahn.net&items.id=ten_7BmELRkWdtTjrj9FWaNfeCvL&sortBy=items.id HTTP/1.1
Authorization: Basic YWRtaW46QlJlU1k1YnpYeGZCeW43V2hRMkxuRm1R
Content-Type: application/json
Content-Length: 167
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}}",
"expired" : 1747831407822
}
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_BRG9CiRynw4HUWK21NavnkPi
ETag: "fxiE1Acxbvam8RuEVzdzYzXU"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 497
{
"adminUser" : "admin",
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747745007824,
"expired" : 1747831407822,
"exportOperation" : "createTenantExport",
"id" : "exp_LfRNRveiRLvtbpC3L7GLdiLR",
"itemTemplate" : "{{id}},{{name}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=rogahn.net&items.id=ten_7BmELRkWdtTjrj9FWaNfeCvL&sortBy=items.id",
"size" : 0,
"totalItems" : 0,
"updated" : 1747745007824
}
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_7BmELRkWdtTjrj9FWaNfeCvL/users HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 812
{
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"isDisabled" : false,
"email" : "candelaria.christiansen8269@my-company.com",
"picture" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
"phoneNumber" : "+33 6 12 34 56 78",
"comments" : "Dolore omnis saepe autem minima.",
"firstName" : "Justine",
"lastName" : "Lemaire",
"country" : "FR",
"organizationTitles" : [ {
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"title" : "District Mobility Specialiste"
} ],
"subject" : "a7701e82-81ad-474f-a21b-990155b585c9"
}
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_PTpGVkaSpRpGyprvzRFFkuWd
ETag: "2EQCivFgUX1WCHHu1LS3xxds"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 948
{
"approveAllowed" : true,
"comanageAllowed" : true,
"comments" : "Dolore omnis saepe autem minima.",
"country" : "FR",
"created" : 1747744569955,
"email" : "candelaria.christiansen8269@my-company.com",
"firstName" : "Justine",
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "usr_CoyCnfC4n2SsJKC21e9Hbfv5",
"isDisabled" : false,
"lastLogin" : 0,
"lastName" : "Lemaire",
"name" : "Justine Lemaire",
"organizationTitles" : [ {
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"title" : "District Mobility Specialiste"
} ],
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EtWnkxEmLHNhPnndDfrJyP7p",
"signAllowed" : true,
"subject" : "a7701e82-81ad-474f-a21b-990155b585c9",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744569955,
"userGroupedInvitationsMode" : true,
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ]
}
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_MyUWBehHH6zAs51F4UkFfBQB HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "FNeA3GVvgRt5FtVA8v74LZwf"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 932
{
"approveAllowed" : true,
"comanageAllowed" : true,
"comments" : "Et deleniti quo est.",
"country" : "FR",
"created" : 1747744400728,
"email" : "tessa.robel9620@my-company.com",
"firstName" : "Stacey",
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"isDisabled" : false,
"lastLogin" : 1747744400920,
"lastName" : "Terry",
"name" : "Stacey Terry",
"organizationTitles" : [ {
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"title" : "Senior Implementation Directeur"
} ],
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"signAllowed" : true,
"subject" : "893294fc-b78b-4e67-878f-b1111fab6e4c",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744400924,
"userGroupedInvitationsMode" : true,
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ]
}
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_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Headers:
Name | Description |
---|---|
Authorization |
A valid access token or admin credentials. |
HTTP response
HTTP/1.1 200 OK
ETag: "FNeA3GVvgRt5FtVA8v74LZwf"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 932
{
"approveAllowed" : true,
"comanageAllowed" : true,
"comments" : "Et deleniti quo est.",
"country" : "FR",
"created" : 1747744400728,
"email" : "tessa.robel9620@my-company.com",
"firstName" : "Stacey",
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"isDisabled" : false,
"lastLogin" : 1747744400920,
"lastName" : "Terry",
"name" : "Stacey Terry",
"organizationTitles" : [ {
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"title" : "Senior Implementation Directeur"
} ],
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"signAllowed" : true,
"subject" : "893294fc-b78b-4e67-878f-b1111fab6e4c",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744400924,
"userGroupedInvitationsMode" : true,
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ]
}
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_BXimmEoC3QktdyyjZoqeAHm5 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "9QUphU8zvLHiwiuZSxx8ht1B"
Content-Type: application/json
Content-Length: 819
{
"groupId" : "grp_LpxWpm9LnzcJ8xFeFUWt7D8f",
"isDisabled" : false,
"email" : "lon.lueilwitz1606@my-company.com",
"picture" : "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
"phoneNumber" : "+33 6 12 34 56 78",
"comments" : "Consequuntur hic aut illo suscipit quis nemo non.",
"firstName" : "Louis",
"lastName" : "Lopéz",
"country" : "FR",
"organizationTitles" : [ {
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"title" : "International Factors Consultant"
} ],
"subject" : "c809b2c5-7248-4506-82d7-1223fa1fad8a"
}
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_CyamARfr51FfcxvFEZarm7gk
ETag: "Gvo699urpGf4k73kfXQNXwqK"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 927
{
"approveAllowed" : true,
"comanageAllowed" : true,
"comments" : "Consequuntur hic aut illo suscipit quis nemo non.",
"country" : "FR",
"created" : 1747744572278,
"email" : "lon.lueilwitz1606@my-company.com",
"firstName" : "Louis",
"groupId" : "grp_LpxWpm9LnzcJ8xFeFUWt7D8f",
"id" : "usr_BXimmEoC3QktdyyjZoqeAHm5",
"isDisabled" : false,
"jobOperation" : "refreshUserInfo",
"lastLogin" : 0,
"lastName" : "Lopéz",
"name" : "Louis Lopéz",
"organizationTitles" : [ {
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"title" : "International Factors Consultant"
} ],
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_N7BQgkMwpSeYZMz9LLMdpaDC",
"signAllowed" : true,
"subject" : "c809b2c5-7248-4506-82d7-1223fa1fad8a",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744572321,
"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_MyUWBehHH6zAs51F4UkFfBQB/loginTokens HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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_EprQ8FNnqXgmXNvorLaNpNRS
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 370
{
"created" : 1747744624269,
"expired" : 1747748224269,
"scope" : "portalUser",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"tokenValue" : "eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NDc3NDgyMjQsInVzZXJJZCI6InVzcl9NeVVXQmVoSEg2ekFzNTFGNFVrRmZCUUIiLCJzY29wZSI6InBvcnRhbFV...",
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_8qA5wtYrMZB7J84zfuKvuGUW/loginTokens HTTP/1.1
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJhZG1pblVzZXIiOiJhZG1pbiIsImV4cCI6MTc0Nzc0ODExNiwidXNlcklkIjoidXNyXzhxQTV3dFlyTVpCN0o4NHpmdUt2dUd...
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_CABYk5SX6vqCo3SqnZMJffjX
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_8mdyaiovJ3gC9EuA3mh7YaxV HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "EqKD63qXkrPeJBdFFEzf8P57"
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_H7HKh1EA4MaoBk3TS6hudq9y
ETag: "HZ382oiaWnqQFyPuDDr3CkX3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 624
{
"approveAllowed" : true,
"comanageAllowed" : true,
"comments" : "",
"country" : "",
"created" : 1747744561619,
"email" : "usr_8mdyaiovJ3gC9EuA3mh7YaxV@anonymized",
"firstName" : "",
"groupId" : "grp_LpxWpm9LnzcJ8xFeFUWt7D8f",
"id" : "usr_8mdyaiovJ3gC9EuA3mh7YaxV",
"isDisabled" : true,
"jobOperation" : "purgeUserResource",
"lastLogin" : 0,
"lastName" : "",
"name" : "",
"organizationTitles" : [ ],
"phoneNumber" : "",
"signAllowed" : true,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744561661,
"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=Stacey%20Terry&items.id=usr_MyUWBehHH6zAs51F4UkFfBQB&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 1066
{
"items" : [ {
"approveAllowed" : true,
"comanageAllowed" : true,
"comments" : "Et deleniti quo est.",
"country" : "FR",
"created" : 1747744400728,
"email" : "tessa.robel9620@my-company.com",
"firstName" : "Stacey",
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"isDisabled" : false,
"lastLogin" : 1747744400920,
"lastName" : "Terry",
"name" : "Stacey Terry",
"organizationTitles" : [ {
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"title" : "Senior Implementation Directeur"
} ],
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"signAllowed" : true,
"subject" : "893294fc-b78b-4e67-878f-b1111fab6e4c",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744400924,
"userGroupedInvitationsMode" : true,
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ]
} ],
"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=Stacey%20Terry&items.id=usr_MyUWBehHH6zAs51F4UkFfBQB&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 195
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
"expired" : 1747830959463
}
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_P1JDq1e11GhRCvagS2xp4RwK
ETag: "AmRdBD6n9wEaDFEBHKQMiXng"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 592
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744559466,
"expired" : 1747830959463,
"exportOperation" : "createUserExport",
"id" : "exp_JZ8MyHyamRTnsk31HrtNUAmb",
"itemTemplate" : "{{id}},{{name}},{{json organizationTitles}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Stacey+Terry&items.id=usr_MyUWBehHH6zAs51F4UkFfBQB&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744559466,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_MyUWBehHH6zAs51F4UkFfBQB/webhooks HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 251
{
"endpointUrl" : "https://my-company.com/EicNvePyTofkrt9LdpPN9hX9",
"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_GhptWubWXtyV7HVnSSahuqKp
ETag: "HHjhguTKUhQxMEh5dZrNK7Ko"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 467
{
"created" : 1747744424202,
"customHeaders" : { },
"endpointUrl" : "https://my-company.com/EicNvePyTofkrt9LdpPN9hX9",
"id" : "wbh_HHhq6rb4dz6qwtGSdCbKuVAx",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744424202,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_7BmELRkWdtTjrj9FWaNfeCvL/webhooks HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 251
{
"endpointUrl" : "https://my-company.com/DY6ZmLZg6y1kY6VTgFYjfbmo",
"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_7KLy9ap8wwrDTTwy6VGThwYM
ETag: "E7P1NwuwhJF66Yo191x3RGhJ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 422
{
"created" : 1747744422815,
"customHeaders" : { },
"endpointUrl" : "https://my-company.com/DY6ZmLZg6y1kY6VTgFYjfbmo",
"id" : "wbh_KfHsLsECoMb7s6TfWKWfAKKr",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744422815
}
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_8GcBo2uw7jboL9nRRMv4oDoK HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "3Q5nDWYnKZyFDYNNrcFfwH7e"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 503
{
"created" : 1747744401115,
"customHeaders" : {
"X-Test-Header" : "TestValue"
},
"endpointUrl" : "https://my-company.com/DBwZVfEmgxBBJLGvKWiqmxFv",
"id" : "wbh_8GcBo2uw7jboL9nRRMv4oDoK",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744418434,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_8GcBo2uw7jboL9nRRMv4oDoK HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "CmPaoDiyR8pqS1d3QHZ3CJbL"
Content-Type: application/json
Content-Length: 312
{
"endpointUrl" : "https://my-company.com/Bj8jderb6KemgonRZAZpxhcY",
"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_Ecmu3cSseA6jcD3L3E1eBMMJ
ETag: "GYbWZycsRGtxJBz8EoKEFJA4"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 503
{
"created" : 1747744401115,
"customHeaders" : {
"X-Test-Header" : "TestValue"
},
"endpointUrl" : "https://my-company.com/Bj8jderb6KemgonRZAZpxhcY",
"id" : "wbh_8GcBo2uw7jboL9nRRMv4oDoK",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744415336,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_HK1gzzEQbJGyW4akRERyB4Zu HTTP/1.1
Authorization: Bearer act_NoG8VCyCTtQyNzY9NF1GjWHH.2DRTNpFyYFEshRcECQcYFL8HRmWH6EBXQz6CSHQPUmHDWiZFZgrmWzFXcG5LfNzL
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_9wLcJ9boVzQTAVsUxfXKEciH
ETag: "CKwesXBg3PK6nqghamQHLRhA"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 467
{
"created" : 1747744409841,
"customHeaders" : { },
"endpointUrl" : "https://my-company.com/3kaNCY42SjkqiGLuMWAxFfuQ",
"id" : "wbh_HK1gzzEQbJGyW4akRERyB4Zu",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744409841,
"userId" : "usr_Bvk1k2XeEJddyKGTqQKqzWXF"
}
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%2FDCDUDpm5U7Qth36AxrnwakHc&items.id=wbh_8GcBo2uw7jboL9nRRMv4oDoK&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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" : 1747744401115,
"customHeaders" : { },
"endpointUrl" : "https://my-company.com/DCDUDpm5U7Qth36AxrnwakHc",
"id" : "wbh_8GcBo2uw7jboL9nRRMv4oDoK",
"notifiedEvents" : [ "commentCreated", "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "coManagerRemoved", "coManagerAdded" ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744401115,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
} ],
"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_8tedJ1AMVN3DQXdrZYxMDjrJ HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "DTzmUt4hVwBJ9iZMHamh7Ncj"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 325
{
"created" : 1747744402953,
"eventType" : "workflowStarted",
"id" : "wbe_8tedJ1AMVN3DQXdrZYxMDjrJ",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744446829,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"webhookId" : "wbh_8GcBo2uw7jboL9nRRMv4oDoK",
"workflowId" : "wfl_3BKK8vVzLqZzmVWUnL8EB8MH"
}
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_8GcBo2uw7jboL9nRRMv4oDoK&items.id=wbe_8tedJ1AMVN3DQXdrZYxMDjrJ&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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" : 1747744402953,
"eventType" : "workflowStarted",
"id" : "wbe_8tedJ1AMVN3DQXdrZYxMDjrJ",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744446829,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"webhookId" : "wbh_8GcBo2uw7jboL9nRRMv4oDoK",
"workflowId" : "wfl_3BKK8vVzLqZzmVWUnL8EB8MH"
} ],
"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_MyUWBehHH6zAs51F4UkFfBQB/workflows HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 1567
{
"name" : "Practical Wooden Gloves",
"description" : "7 étage, 663 Allée, Voie du Bac, 53060 Pau",
"steps" : [ {
"stepType" : "signature",
"recipients" : [ {
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"email" : "donita.beier7265@my-company.com",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip",
"phoneNumber" : "+33 6 12 34 56 78",
"comments" : "A labore voluptas soluta nihil.",
"firstName" : "Eric",
"lastName" : "Beier",
"country" : "FR",
"preferredLocale" : "fr",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy"
} ],
"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_ExwFSypmxgY1t3X1az5so7PL",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"email" : "araceli.wunsch4121@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_5bbAJkX5PR1aXR9JyfHzWdXz
ETag: "2hgQVudqeLAL5excNY3mLaWw"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2484
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1747744759733,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "7 étage, 663 Allée, Voie du Bac, 53060 Pau",
"email" : "tessa.robel9620@my-company.com",
"firstName" : "Stacey",
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "wfl_884v5xNWpxeLJcPnjS78PiAe",
"lastName" : "Terry",
"logs" : [ ],
"name" : "Practical Wooden Gloves",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : true,
"id" : "stp_9djrzaapr8LC3ckZK1QJR7cU",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"comments" : "A labore voluptas soluta nihil.",
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"country" : "FR",
"email" : "donita.beier7265@my-company.com",
"firstName" : "Eric",
"lastName" : "Beier",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"preferredLocale" : "fr",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000,
"viewConfidentialAttachments" : true
} ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744759733,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_ExwFSypmxgY1t3X1az5so7PL" ],
"watchers" : [ {
"email" : "araceli.wunsch4121@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_ExwFSypmxgY1t3X1az5so7PL"
} ],
"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_5nSYRt2Ew7wvqsHziyEFeRKa HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "E8EYEFPjGk11AjZHPRbMpDV1"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2623
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1747744432682,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "6117 Allée, Voie des Lombards, 59851 Asnières-sur-Seine",
"email" : "tessa.robel9620@my-company.com",
"firstName" : "Stacey",
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "wfl_5nSYRt2Ew7wvqsHziyEFeRKa",
"lastName" : "Terry",
"logs" : [ {
"commentId" : "com_2LMKSo8GWTXAkmYR4efGK7nX",
"created" : 1747744432924,
"operation" : "notifyCommentCreated"
} ],
"name" : "Synergistic Steel Bag",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_NN59A6RbMJx6yN6uZZunyhty",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"comments" : "A labore voluptas soluta nihil.",
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"country" : "FR",
"email" : "donita.beier7265@my-company.com",
"firstName" : "Eric",
"lastName" : "Beier",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"preferredLocale" : "fr",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000,
"viewConfidentialAttachments" : true
} ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744433230,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_Bnw3o5UAirC32cR4SLUbLLa8" ],
"watchers" : [ {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_Bnw3o5UAirC32cR4SLUbLLa8"
}, {
"email" : "wesley.barton3939@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
} ],
"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_6v5ejNKb39GFBR9wfgRB75aF HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "54v2NXsHZHJQV2qw1VrB67sE"
Content-Type: application/json
Content-Length: 1673
{
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"name" : "Lightweight Concrete Pants",
"description" : "7 étage, 508 Allée, Voie de l'Odéon, 49369 Versailles",
"steps" : [ {
"id" : "stp_HGwvqC6sRHg1y3Gt2MHwsG3t",
"recipients" : [ {
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"email" : "donita.beier7265@my-company.com",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip",
"phoneNumber" : "+33 6 12 34 56 78",
"comments" : "A labore voluptas soluta nihil.",
"firstName" : "Eric",
"lastName" : "Beier",
"country" : "FR",
"preferredLocale" : "fr",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy"
} ],
"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_PVckMrVpn8kQXtnzG1zxckEW",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"email" : "barrie.wisoky5622@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_LERccVEKtnnEBHcsjBZr7tAs
ETag: "HaMNYwxCQgKv2EkLnHNfwS1R"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2557
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1747744772908,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "7 étage, 508 Allée, Voie de l'Odéon, 49369 Versailles",
"email" : "tessa.robel9620@my-company.com",
"firstName" : "Stacey",
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "wfl_6v5ejNKb39GFBR9wfgRB75aF",
"jobOperation" : "refreshWorkflowViewAuthorizedUsers",
"lastName" : "Terry",
"logs" : [ ],
"name" : "Lightweight Concrete Pants",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : true,
"id" : "stp_HGwvqC6sRHg1y3Gt2MHwsG3t",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"comments" : "A labore voluptas soluta nihil.",
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"country" : "FR",
"email" : "donita.beier7265@my-company.com",
"firstName" : "Eric",
"lastName" : "Beier",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"preferredLocale" : "fr",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000,
"viewConfidentialAttachments" : true
} ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744773018,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_PVckMrVpn8kQXtnzG1zxckEW" ],
"watchers" : [ {
"email" : "barrie.wisoky5622@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_PVckMrVpn8kQXtnzG1zxckEW"
} ],
"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. |
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_KxkHRVHqR7hCmJ1FLtaGpsLn/copy HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 1476
{
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"name" : "new Workflow",
"description" : "Apt. 140, 457 Rue de Vaugirard, 43736 Mérignac",
"steps" : [ {
"id" : "stp_DVF7iXPCYfkNvAjUqHJx41pP",
"recipients" : [ {
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"email" : "donita.beier7265@my-company.com",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip",
"phoneNumber" : "+33 6 12 34 56 78",
"comments" : "A labore voluptas soluta nihil.",
"firstName" : "Eric",
"lastName" : "Beier",
"country" : "FR",
"preferredLocale" : "fr",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy"
} ],
"requiredRecipients" : 1,
"validityPeriod" : 8553600000,
"invitePeriod" : 86400000,
"maxInvites" : 5,
"sendDownloadLink" : true
} ],
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"watchers" : [ {
"userId" : "usr_E8hXer2kz5Zxgt65L6vV6a9z",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"email" : "iesha.koch8458@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_5cUZ8SHfXyQEQwHLsUpE26tY
ETag: "EkpqGwC5yyUkcPJdCpvDogwn"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2475
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1747744708968,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "Apt. 140, 457 Rue de Vaugirard, 43736 Mérignac",
"email" : "tessa.robel9620@my-company.com",
"firstName" : "Stacey",
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "wfl_7CafjYooaf4hN5LV2amm6eZi",
"lastName" : "Terry",
"logs" : [ ],
"name" : "new Workflow",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_DVF7iXPCYfkNvAjUqHJx41pP",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"comments" : "A labore voluptas soluta nihil.",
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"country" : "FR",
"email" : "donita.beier7265@my-company.com",
"firstName" : "Eric",
"lastName" : "Beier",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"preferredLocale" : "fr",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000,
"viewConfidentialAttachments" : true
} ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744708968,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_E8hXer2kz5Zxgt65L6vV6a9z" ],
"watchers" : [ {
"email" : "iesha.koch8458@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_E8hXer2kz5Zxgt65L6vV6a9z"
} ],
"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_3BKK8vVzLqZzmVWUnL8EB8MH/invite HTTP/1.1
Authorization: Bearer act_818CijSGXcbwrFAu8PLYNNq6.2vZnxeTXX9bx4A7TMAeq8xWS2iv8Mt2BvexJxYGY8Cv3TRBZ8K1zJnPCoehHx4tX
Content-Type: application/json
Content-Length: 58
{
"recipientEmail" : "donita.beier7265@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_LPVxTC7WbFzKZTNCDAXDmpN9
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 390
{
"inviteUrl" : "https://rogahn.net/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwX0dMODhFUlR0dUhBUENWUkJ2Q..."
}
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_43hzTgMrBvfRZEtFuJzdk9Ds/sendInvite HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 58
{
"recipientEmail" : "donita.beier7265@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_MxTCLVZLZQY4fVBerhtK2PSf
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 390
{
"inviteUrl" : "https://rogahn.net/invite?token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJpbnZpdGUiLCJjb25zZW50VmVyc2lvbiI6IlYyIiwic3RlcElkIjoic3RwXzdpZ2ZlZ3p2REJESktkaVBQd..."
}
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_PpUMNwXpkvt7L34YyVDJu9Em/refuse HTTP/1.1
Authorization: Bearer act_818CijSGXcbwrFAu8PLYNNq6.2vZnxeTXX9bx4A7TMAeq8xWS2iv8Mt2BvexJxYGY8Cv3TRBZ8K1zJnPCoehHx4tX
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_B6R8zp1e7uFEAUmmXjJBerHd
ETag: "HcxYfSPtNSinYFgqdv8wVSw1"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 3201
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1747744700135,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "29 Quai du Havre, 47924 Caen",
"email" : "tessa.robel9620@my-company.com",
"firstName" : "Stacey",
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "wfl_PpUMNwXpkvt7L34YyVDJu9Em",
"jobOperation" : "processWorkflow",
"lastName" : "Terry",
"logs" : [ ],
"name" : "Intelligent Marble Coat",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"progress" : 0,
"started" : 1747744700280,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_GDPWVHXcbyFHuFnHyEwUEN2L",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : true,
"logs" : [ {
"created" : 1747744700280,
"operation" : "start"
}, {
"created" : 1747744700280,
"operation" : "notifyWorkflowStarted"
}, {
"created" : 1747744700471,
"operation" : "invite",
"recipientEmail" : "donita.beier7265@my-company.com",
"recipientUserId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
}, {
"created" : 1747744700587,
"operation" : "refuse",
"reason" : "I disagree.",
"recipientEmail" : "donita.beier7265@my-company.com",
"recipientUserId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
}, {
"created" : 1747744700588,
"operation" : "stop"
} ],
"maxInvites" : 5,
"recipients" : [ {
"comments" : "A labore voluptas soluta nihil.",
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"country" : "FR",
"email" : "donita.beier7265@my-company.com",
"firstName" : "Eric",
"lastName" : "Beier",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"preferredLocale" : "fr",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000,
"viewConfidentialAttachments" : true
} ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744700588,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_5NYagXYH6v83QNF52qU9v325", "usr_QDckNMcxFtffbLXXSxU57Vip" ],
"watchers" : [ {
"email" : "bea.baumbach2927@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_5NYagXYH6v83QNF52qU9v325"
} ],
"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_8SiFpboCyQhnmYY9jqdj6kZA HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "D4ZGeLY3mBrc8EizULTvb39U"
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_55o4tdcMp8hZdyrnHdhU7M5o
ETag: "8beQCep1ssPjB6rUxAQz248D"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2529
{
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1747744736356,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "Apt. 677, 23 Boulevard d'Orsel, 70297 Saint-Quentin",
"email" : "tessa.robel9620@my-company.com",
"firstName" : "Stacey",
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "wfl_8SiFpboCyQhnmYY9jqdj6kZA",
"jobOperation" : "purgeWorkflow",
"lastName" : "Terry",
"logs" : [ ],
"name" : "Ergonomic Linen Car",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_MazW2W66ZcjfS8t1eHLBJskU",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"comments" : "A labore voluptas soluta nihil.",
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"country" : "FR",
"email" : "donita.beier7265@my-company.com",
"firstName" : "Eric",
"lastName" : "Beier",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"preferredLocale" : "fr",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000,
"viewConfidentialAttachments" : true
} ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744736397,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_4Tj7sdGQ14MJSjTFRCwAPKR5" ],
"watchers" : [ {
"email" : "clotilde.wintheiser6116@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_4Tj7sdGQ14MJSjTFRCwAPKR5"
} ],
"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=Synergistic%20Steel%20Bag&items.id=wfl_5nSYRt2Ew7wvqsHziyEFeRKa&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 2833
{
"items" : [ {
"allowConsolidation" : true,
"allowedCoManagerUsers" : [ ],
"coManagerNotifiedEvents" : [ ],
"created" : 1747744432682,
"currentRecipientEmails" : [ ],
"currentRecipientUsers" : [ ],
"description" : "6117 Allée, Voie des Lombards, 59851 Asnières-sur-Seine",
"email" : "tessa.robel9620@my-company.com",
"firstName" : "Stacey",
"groupId" : "grp_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "wfl_5nSYRt2Ew7wvqsHziyEFeRKa",
"lastName" : "Terry",
"logs" : [ {
"commentId" : "com_2LMKSo8GWTXAkmYR4efGK7nX",
"created" : 1747744432924,
"operation" : "notifyCommentCreated"
} ],
"name" : "Synergistic Steel Bag",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"progress" : 0,
"steps" : [ {
"allowComments" : true,
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_NN59A6RbMJx6yN6uZZunyhty",
"invitePeriod" : 86400000,
"isFinished" : false,
"isStarted" : false,
"logs" : [ ],
"maxInvites" : 5,
"recipients" : [ {
"comments" : "A labore voluptas soluta nihil.",
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"country" : "FR",
"email" : "donita.beier7265@my-company.com",
"firstName" : "Eric",
"lastName" : "Beier",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"preferredLocale" : "fr",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
} ],
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000,
"viewConfidentialAttachments" : true
} ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744433230,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_Bnw3o5UAirC32cR4SLUbLLa8" ],
"watchers" : [ {
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ],
"userId" : "usr_Bnw3o5UAirC32cR4SLUbLLa8"
}, {
"email" : "wesley.barton3939@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
} ],
"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=Synergistic%20Steel%20Bag&items.id=wfl_5nSYRt2Ew7wvqsHziyEFeRKa&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 182
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json steps}}",
"expired" : 1747831203625
}
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_5m15Thf2Hb7fCNoqtfa4H65a
ETag: "2R5ry3bDBpCBKMhucT2LyMD3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 592
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744803628,
"expired" : 1747831203625,
"exportOperation" : "createWorkflowExport",
"id" : "exp_9THCPNz2QnkQLymwEKQF96Ld",
"itemTemplate" : "{{id}},{{name}},{{json steps}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Synergistic+Steel+Bag&items.id=wfl_5nSYRt2Ew7wvqsHziyEFeRKa&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744803628,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_5nSYRt2Ew7wvqsHziyEFeRKa/downloadEvidenceCertificate HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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_5nSYRt2Ew7wvqsHziyEFeRKa.pdf"
Cache-Control: no-store
Content-Length: 9622
%PDF-1.4
%����
1 0 obj
<<
/Creator (Apache FOP Version 2.10)
/Producer (Apache FOP Version 2.10)
/CreationDate (D:20250520123958Z)
...
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_5nSYRt2Ew7wvqsHziyEFeRKa/comments HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 111
{
"parentId" : "com_2LMKSo8GWTXAkmYR4efGK7nX",
"content" : "Aliquid est in a autem.",
"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_P136QAwMsjUoPuTKqRdxoXuf
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 503
{
"content" : "Aliquid est in a autem.",
"created" : 1747744825480,
"email" : "tessa.robel9620@my-company.com",
"firstName" : "Stacey",
"id" : "com_M8kBMf5fnSZ8BSSDasgKP4HV",
"isPublic" : true,
"lastName" : "Terry",
"parentId" : "com_2LMKSo8GWTXAkmYR4efGK7nX",
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744825480,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"workflowId" : "wfl_5nSYRt2Ew7wvqsHziyEFeRKa"
}
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_JJ1hLHU4YfcJmeUA975aiaaf/comments HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 986
[ {
"id" : "com_5xgS9H59TpNuyQuXTob2nk1o",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"workflowId" : "wfl_JJ1hLHU4YfcJmeUA975aiaaf",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip",
"email" : "donita.beier7265@my-company.com",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"firstName" : "Eric",
"lastName" : "Beier",
"content" : "Pariatur nesciunt ullam recusandae.",
"isPublic" : true,
"created" : 1747744814080,
"updated" : 1747744814080
}, {
"id" : "com_3cwPds82VLx5c61KYbxK1Gwq",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"workflowId" : "wfl_JJ1hLHU4YfcJmeUA975aiaaf",
"parentId" : "com_5xgS9H59TpNuyQuXTob2nk1o",
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"email" : "tessa.robel9620@my-company.com",
"pictureResourceId" : "res_MUA7UWLfSBRbqJqVqeNyay2w",
"firstName" : "Stacey",
"lastName" : "Terry",
"content" : "Recusandae aut vero perspiciatis.",
"isPublic" : true,
"created" : 1747744814370,
"updated" : 1747744814370
} ]
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_G3uDPX9iDKTTDKYwMPmwusba/blobs HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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_L6XWceeBTbrD4tQx7TUan8JC",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"workflowId" : "wfl_G3uDPX9iDKTTDKYwMPmwusba"
}
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_NLfYVvaikjaxYThhmgUUskaR/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_QCysJETDyQDXL7CKJZbojdL5&unzip=false&pdf2pdfa=auto HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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_HJ4Vgfs4t5u8HqvmjCYcyBN5
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1619
{
"documents" : [ {
"confidentiality" : false,
"created" : 1747744432550,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "wShMlvnjXRirY/ED0RkZrzE6JkAqyQ8L4B3hIKbCMhk=",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "doc_AYHG6kN5SoTe1tj7XKifjJhn",
"orderIndex" : 1,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "wShMlvnjXRirY/ED0RkZrzE6JkAqyQ8L4B3hIKbCMhk=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744432550,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_4fkih8EArMmAE2vktWberszS" ],
"workflowId" : "wfl_NLfYVvaikjaxYThhmgUUskaR",
"workflowName" : "Heavy Duty Bronze Gloves"
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "wShMlvnjXRirY/ED0RkZrzE6JkAqyQ8L4B3hIKbCMhk=",
"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_Fo8BVwZc2j8b5GJDfvmHfcaU/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_QCysJETDyQDXL7CKJZbojdL5&unzip=false&convertToPdf=true&pdf2pdfa=auto HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: multipart/form-data;boundary=rh81MhDY8XG2kQARy7gg8zUtS5bopbhMLh5uh; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Length: 12557
--rh81MhDY8XG2kQARy7gg8zUtS5bopbhMLh5uh
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
...
--rh81MhDY8XG2kQARy7gg8zUtS5bopbhMLh5uh--
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_27X945UfXcfbp6L1PMGGzJCL
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1615
{
"documents" : [ {
"confidentiality" : false,
"created" : 1747744458397,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "+7nBpBZinDD83HrozELzar5TNr0we732udUdgimdja0=",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "doc_WgZCK2aF9nJgufi1CqcrskCz",
"orderIndex" : 1,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "+7nBpBZinDD83HrozELzar5TNr0we732udUdgimdja0=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744458397,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_EMZifJQuyrsZxKeTNr4Tu766" ],
"workflowId" : "wfl_Fo8BVwZc2j8b5GJDfvmHfcaU",
"workflowName" : "Lightweight Silk Car"
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "+7nBpBZinDD83HrozELzar5TNr0we732udUdgimdja0=",
"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_92qEsAyxTNrJ6caogc3jkTaw/blobs/parts?createDocuments=true&ignoreAttachments=false&unzip=false&convertToPdf=true&signatureProfileId=sip_QCysJETDyQDXL7CKJZbojdL5&pdf2pdfa=force HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 210
{
"parts" : [ {
"filename" : "document.pdf",
"contentType" : "application/pdf",
"blobs" : [ "blb_22NVLu3o7aM5VW4tQfj5t9pR", "blb_525bNxjZcZYVpqGWoikCNUK7", "blb_PfJRgLBwAzK1E6U8jtS63sAk" ]
} ]
}
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_JVug7VmPMHjbewY57TTQxkhN
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1616
{
"documents" : [ {
"confidentiality" : false,
"created" : 1747744449409,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "tNrt/M5Qt7MkqjWlznNE+GA4I+K3bWAj18RHmlgnKu8=",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "doc_9jaqqxefkGvYQ9zXKonhZSHN",
"orderIndex" : 1,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "tNrt/M5Qt7MkqjWlznNE+GA4I+K3bWAj18RHmlgnKu8=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744449409,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_E5gTtWVFW1cWePzfP4q4Ypsq" ],
"workflowId" : "wfl_92qEsAyxTNrJ6caogc3jkTaw",
"workflowName" : "Heavy Duty Wool Knife"
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "tNrt/M5Qt7MkqjWlznNE+GA4I+K3bWAj18RHmlgnKu8=",
"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_PUqvQeJWEKGJ3j8HWSohgK25/blobs HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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_83AbnJhVFgVLZnx2TQ3AgeY3
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 121
{
"deletedBlobs" : [ "blb_DQ8rBSLiGyLj5KSfUN6zUbmN", "blb_ACDp7U7c6YQ6JU692HKFfvkG", "blb_4AhnNfqNMFR4DBV3vb1HAxwQ" ]
}
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_8W8noggSwFQY1Vw36BoRJS7n/documents HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 581
{
"parts" : [ {
"filename" : "Document",
"contentType" : "application/pdf",
"size" : 18540,
"hash" : "QUdMw48hwzapVrTAlbiixMV1744u22gwE52+TSGWq3Y=",
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"isOriginal" : true
} ],
"signatureProfileId" : "sip_QCysJETDyQDXL7CKJZbojdL5",
"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_2UDZS8oBinBPby7f3UyP8Sva
ETag: "BUagVTurnEAHKzyZgHDKTKVg"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1371
{
"confidentiality" : false,
"created" : 1747744466762,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "QUdMw48hwzapVrTAlbiixMV1744u22gwE52+TSGWq3Y=",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "doc_7MQHszP9m2XGioCsoJHQgkF6",
"orderIndex" : 10,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "QUdMw48hwzapVrTAlbiixMV1744u22gwE52+TSGWq3Y=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"subOrderIndex" : 5,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744466762,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_CPuZUqkNKqY7JKVuAYdEMaJB" ],
"workflowId" : "wfl_8W8noggSwFQY1Vw36BoRJS7n",
"workflowName" : "Mediocre Iron Table"
}
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_GXLdCDdQiBLNuNUhuYWJvsCv HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "CEisBGrtLBUfS8H9cgurzrf3"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1349
{
"confidentiality" : false,
"created" : 1747744432775,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "rt2YW/aF8hQKcy6CwLo6t89qcmg4ihM5BMMYomTP5Eg=",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "doc_GXLdCDdQiBLNuNUhuYWJvsCv",
"orderIndex" : 1,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "rt2YW/aF8hQKcy6CwLo6t89qcmg4ihM5BMMYomTP5Eg=",
"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_CBkkECrSFTxxt8Qyi4h8vTJR",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744478426,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_Bnw3o5UAirC32cR4SLUbLLa8" ],
"workflowId" : "wfl_5nSYRt2Ew7wvqsHziyEFeRKa",
"workflowName" : "Synergistic Steel Bag"
}
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_D4uPCPhG3FbbLeyki99Rf6y2 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "4pmkqj8puuYya4fEL7sZmh5z"
Content-Type: application/json
Content-Length: 285
{
"signatureProfileId" : "sip_QCysJETDyQDXL7CKJZbojdL5",
"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_Q8T1e4pGozWEBiPBV7eGfZg7
ETag: "JDKjrTc5RKjY4Hb1v3MrBGC1"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1372
{
"confidentiality" : false,
"created" : 1747744501241,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "IvsUwL5Gusj6xl58csTRkr1SVGQ2ickrdVgiWtQBocU=",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "doc_D4uPCPhG3FbbLeyki99Rf6y2",
"orderIndex" : 2,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "IvsUwL5Gusj6xl58csTRkr1SVGQ2ickrdVgiWtQBocU=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"subOrderIndex" : 5,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744501302,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_Bnw3o5UAirC32cR4SLUbLLa8" ],
"workflowId" : "wfl_5nSYRt2Ew7wvqsHziyEFeRKa",
"workflowName" : "Synergistic Steel Bag"
}
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_6xthnTaky3TaT2CKf6KjULJN HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "Az26Svy4PhCbxGBEsWPyfZBK"
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_77ks8NNiVzMsy6RgzSUv35rR
ETag: "Az26Svy4PhCbxGBEsWPyfZBK"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1349
{
"confidentiality" : false,
"created" : 1747744478375,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "QI4TWxHwKfpHjkkj0VNEgYtCxUMg4K2YrKH9yuSprI0=",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "doc_6xthnTaky3TaT2CKf6KjULJN",
"orderIndex" : 2,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "QI4TWxHwKfpHjkkj0VNEgYtCxUMg4K2YrKH9yuSprI0=",
"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_4Ycxo7jzzCkEC4ozHQFheLmb",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744478438,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_Bnw3o5UAirC32cR4SLUbLLa8" ],
"workflowId" : "wfl_5nSYRt2Ew7wvqsHziyEFeRKa",
"workflowName" : "Synergistic Steel Bag"
}
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_GXLdCDdQiBLNuNUhuYWJvsCv/parts/aedd985bf685f2140a732e82c0ba3ab7cf6a7268388a133904c318a264cfe448 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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_5nSYRt2Ew7wvqsHziyEFeRKa/downloadDocuments HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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_GXLdCDdQiBLNuNUhuYWJvsCv&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 1505
{
"items" : [ {
"confidentiality" : false,
"created" : 1747744432775,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "rt2YW/aF8hQKcy6CwLo6t89qcmg4ihM5BMMYomTP5Eg=",
"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_FbeM3o22UZaj6fCjmcBVQByR",
"id" : "doc_GXLdCDdQiBLNuNUhuYWJvsCv",
"orderIndex" : 1,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "rt2YW/aF8hQKcy6CwLo6t89qcmg4ihM5BMMYomTP5Eg=",
"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_CBkkECrSFTxxt8Qyi4h8vTJR",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744505761,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB",
"viewAuthorizedGroups" : [ "grp_FbeM3o22UZaj6fCjmcBVQByR", "grp_LpxWpm9LnzcJ8xFeFUWt7D8f" ],
"viewAuthorizedUsers" : [ "usr_Bnw3o5UAirC32cR4SLUbLLa8" ],
"workflowId" : "wfl_5nSYRt2Ew7wvqsHziyEFeRKa",
"workflowName" : "Synergistic Steel Bag"
} ],
"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_GXLdCDdQiBLNuNUhuYWJvsCv&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 173
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{json parts}}",
"expired" : 1747830890958
}
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_8FKzM8jkZQbeyuobPcVkMVhp
ETag: "EB57viKvMfxugCEw4LZjhL1p"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 578
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744490962,
"expired" : 1747830890958,
"exportOperation" : "createWorkflowDocumentExport",
"id" : "exp_L3YTNxaF9ygALjBuBiu3jThq",
"itemTemplate" : "{{id}},{{json parts}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Document&items.id=doc_GXLdCDdQiBLNuNUhuYWJvsCv&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744490962,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_GXLdCDdQiBLNuNUhuYWJvsCv/viewer HTTP/1.1
Authorization: Bearer act_818CijSGXcbwrFAu8PLYNNq6.2vZnxeTXX9bx4A7TMAeq8xWS2iv8Mt2BvexJxYGY8Cv3TRBZ8K1zJnPCoehHx4tX
Content-Type: application/json
Content-Length: 81
{
"redirectUrl" : "https://gutmann.org/callback",
"expired" : 1747830873600
}
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_ZdyFjNY5qqQMfz1Ksex3vh8r
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 364
{
"expired" : 1747830873600,
"viewerUrl" : "https://rogahn.net/viewer#token=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJ2aWV3ZXIiLCJkb2N1bWVudElkIjoiZG9jX0dYTGRDRGRRaUJMTnVOVWh1WVdKdnNDdiIsInJlZGlyZWN0V..."
}
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_7BmELRkWdtTjrj9FWaNfeCvL/layouts HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 582
{
"isDisabled" : false,
"name" : "Small Leather Bag",
"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_JMcnMpr64pM39es55W5NKztp
ETag: "EKwL5JMifH65nsqwQEuv3K9u"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 728
{
"created" : 1747744556492,
"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_Hrhm3aMcJgbvNVVeFZFqqcPL",
"isDisabled" : false,
"name" : "Small Leather Bag",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744556492
}
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_6YFJFNk6Av1QAutF5gq7tBpG HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "2nGuZ2dj4M3W6zDC9NuvWEkR"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 735
{
"created" : 1747744408839,
"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_6YFJFNk6Av1QAutF5gq7tBpG",
"isDisabled" : false,
"name" : "Ergonomic Aluminum Clock",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744408839
}
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_KgmWLZsKuRv7hnwkvth8CXQQ HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "9bvi555ivRdyLPuFVGPDV28g"
Content-Type: application/json
Content-Length: 586
{
"isDisabled" : false,
"name" : "Aerodynamic Paper Hat",
"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_P4sSL2uYwjud155tebDyrxjb
ETag: "HWpACEzJ6GVS8iqghybJo8C4"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 732
{
"created" : 1747744548421,
"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_KgmWLZsKuRv7hnwkvth8CXQQ",
"isDisabled" : false,
"name" : "Aerodynamic Paper Hat",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744548447
}
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=Durable%20Iron%20Table&items.id=lay_GFiCSA3WCwPpzCQbhKRQJST8&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 871
{
"items" : [ {
"created" : 1747744555649,
"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_GFiCSA3WCwPpzCQbhKRQJST8",
"isDisabled" : false,
"name" : "Durable Iron Table",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744555649
} ],
"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=Ergonomic%20Aluminum%20Clock&items.id=lay_6YFJFNk6Av1QAutF5gq7tBpG&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 195
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json dataConfigurations}}",
"expired" : 1747830946026
}
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_AnQN5NueZcZaAt55eJtjavtp
ETag: "FYmUmKuhjbpreFuNZyTKLwxN"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 614
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744546030,
"expired" : 1747830946026,
"exportOperation" : "createWorkflowLayoutExport",
"id" : "exp_4Ray8juWXeFwDJjCb8LL5G6c",
"itemTemplate" : "{{id}},{{name}},{{json dataConfigurations}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Ergonomic+Aluminum+Clock&items.id=lay_6YFJFNk6Av1QAutF5gq7tBpG&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744546030,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_7BmELRkWdtTjrj9FWaNfeCvL/templates HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 2530
{
"isDisabled" : false,
"name" : "Ergonomic Leather Shoes",
"description" : "5 Passage de la Pompe, 20198 Aix-en-Provence",
"layoutSelectionMode" : "list",
"allowedLayouts" : [ "lay_4LES37Zj1w8vJV61ria8cyG5" ],
"maxWatchers" : 10,
"steps" : [ {
"stepType" : "signature",
"recipientSelectionMode" : "list",
"maxRecipients" : 10,
"recipients" : [ {
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"email" : "donita.beier7265@my-company.com",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip",
"phoneNumber" : "+33 6 12 34 56 78",
"comments" : "A labore voluptas soluta nihil.",
"firstName" : "Eric",
"lastName" : "Beier",
"country" : "FR",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"preferredLocale" : "fr"
} ],
"allowedGroups" : [ ],
"allowedConsentPages" : [ "cop_24SDyZhUM2NroPv5fwqRaSvk" ],
"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_BrXy2kwBMmPWA22NJqH231W4",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"readonly" : false,
"removable" : true,
"email" : "pasty.franecki4742@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
} ],
"allowedSignatureProfiles" : [ "sip_8G4WyTsak5c9oWHu9dLvJmuy" ],
"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_9iZzW77HLLX7mcgiFVGznZr8
ETag: "8K12ncfaoafKQzWn5kqDcfuC"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2747
{
"allowConsolidation" : true,
"allowedCoManagerGroups" : [ ],
"allowedCoManagerUsers" : [ ],
"allowedLayouts" : [ "lay_4LES37Zj1w8vJV61ria8cyG5" ],
"allowedSignatureProfiles" : [ "sip_8G4WyTsak5c9oWHu9dLvJmuy" ],
"coManagerCanEditCoManager" : false,
"coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"coManagerNotifiedEventsReadonly" : false,
"coManagerSelectionMode" : "none",
"coManagerUsersModifiable" : true,
"created" : 1747744988910,
"description" : "5 Passage de la Pompe, 20198 Aix-en-Provence",
"documentSelectionMode" : "any",
"id" : "wtm_38a5woQFikjYpJtp5tmLQ5g1",
"isDisabled" : false,
"layoutSelectionMode" : "list",
"maxAttachments" : 10,
"maxDocuments" : 10,
"maxWatchers" : 10,
"name" : "Ergonomic Leather Shoes",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"notifiedEventsReadonly" : false,
"steps" : [ {
"allowComments" : true,
"allowedConsentPages" : [ ],
"allowedGroups" : [ ],
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_KHmyTrxP64SR7EAF2DvDHVrD",
"invitePeriod" : 86400000,
"maxInvites" : 5,
"maxRecipients" : 1,
"readonly" : false,
"recipientSelectionMode" : "list",
"recipients" : [ {
"comments" : "A labore voluptas soluta nihil.",
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"country" : "FR",
"email" : "donita.beier7265@my-company.com",
"firstName" : "Eric",
"lastName" : "Beier",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"preferredLocale" : "fr",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
} ],
"removable" : true,
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000,
"viewConfidentialAttachments" : true
} ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744988910,
"watchers" : [ {
"email" : "pasty.franecki4742@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_BrXy2kwBMmPWA22NJqH231W4"
} ]
}
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_Ms3StRSuBSMcnYx8yU5KXeoM HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "FKMtsbLr6DLDSD8vnSz1Lu1S"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2735
{
"allowConsolidation" : true,
"allowedCoManagerGroups" : [ ],
"allowedCoManagerUsers" : [ ],
"allowedLayouts" : [ "lay_HeSngbekgH3hXgFUB32E2VWs" ],
"allowedSignatureProfiles" : [ "sip_CBkkECrSFTxxt8Qyi4h8vTJR" ],
"coManagerCanEditCoManager" : false,
"coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"coManagerNotifiedEventsReadonly" : false,
"coManagerSelectionMode" : "none",
"coManagerUsersModifiable" : true,
"created" : 1747744408296,
"description" : "647 Avenue Saint-Honoré, 85243 Antibes",
"documentSelectionMode" : "any",
"id" : "wtm_Ms3StRSuBSMcnYx8yU5KXeoM",
"isDisabled" : false,
"layoutSelectionMode" : "list",
"maxAttachments" : 5,
"maxDocuments" : 10,
"maxWatchers" : 6,
"name" : "Gorgeous Marble Lamp",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"notifiedEventsReadonly" : false,
"steps" : [ {
"allowComments" : true,
"allowedConsentPages" : [ ],
"allowedGroups" : [ ],
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_GhvvLtAkrQYsffM8hyvxbANZ",
"invitePeriod" : 86400000,
"maxInvites" : 5,
"maxRecipients" : 1,
"readonly" : false,
"recipientSelectionMode" : "list",
"recipients" : [ {
"comments" : "A labore voluptas soluta nihil.",
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"country" : "FR",
"email" : "donita.beier7265@my-company.com",
"firstName" : "Eric",
"lastName" : "Beier",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"preferredLocale" : "fr",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
} ],
"removable" : true,
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000,
"viewConfidentialAttachments" : true
} ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744408296,
"watchers" : [ {
"email" : "erik.witting1753@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_7q6VFG8v8WVbtXkk5RY3JudZ"
} ]
}
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_874Pqi22hbsPAwVcjXnb6axK HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "6xxFFD7VtFrBDmvL4RNTa3rN"
Content-Type: application/json
Content-Length: 2558
{
"isDisabled" : false,
"name" : "Durable Plastic Table",
"description" : "Apt. 274, 61 Passage du Dahomey, 04987 Caen",
"layoutSelectionMode" : "listOrNull",
"allowedLayouts" : [ "lay_NFzZSTXJ9EdAdvmVR7xGdsZd" ],
"maxWatchers" : 10,
"steps" : [ {
"id" : "stp_LcyabHRZE88RcwyRDEuMnRNU",
"recipientSelectionMode" : "list",
"maxRecipients" : 10,
"recipients" : [ {
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"email" : "donita.beier7265@my-company.com",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip",
"phoneNumber" : "+33 6 12 34 56 78",
"comments" : "A labore voluptas soluta nihil.",
"firstName" : "Eric",
"lastName" : "Beier",
"country" : "FR",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"preferredLocale" : "fr"
} ],
"allowedGroups" : [ ],
"allowedConsentPages" : [ "cop_JcE6hquSvrGEzJbP92rjJMdf" ],
"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_Lwojp5aJwFtWJH8CgMPCE3zZ",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
}, {
"readonly" : false,
"removable" : true,
"email" : "francesco.wintheiser791@my-company.com",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStarted", "workflowStopped", "workflowFinished", "workflowFinishedDownloadLink", "workflowFinishedDownloadLinkNoAttachment" ]
} ],
"allowedSignatureProfiles" : [ "sip_HsgRTq2SCQm6BvVLZEDZYAUf" ],
"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_BwgyfpTKxxt6Fta7ax2fCRBC
ETag: "56HKbeEuVGjztAB3KsqdAexP"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 2762
{
"allowConsolidation" : false,
"allowedCoManagerGroups" : [ ],
"allowedCoManagerUsers" : [ ],
"allowedLayouts" : [ "lay_NFzZSTXJ9EdAdvmVR7xGdsZd" ],
"allowedSignatureProfiles" : [ "sip_HsgRTq2SCQm6BvVLZEDZYAUf" ],
"coManagerCanEditCoManager" : false,
"coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"coManagerNotifiedEventsReadonly" : false,
"coManagerSelectionMode" : "anyOrNull",
"coManagerUsersModifiable" : true,
"created" : 1747744972957,
"description" : "Apt. 274, 61 Passage du Dahomey, 04987 Caen",
"documentSelectionMode" : "any",
"id" : "wtm_874Pqi22hbsPAwVcjXnb6axK",
"isDisabled" : false,
"layoutSelectionMode" : "listOrNull",
"maxAttachments" : 10,
"maxDocuments" : 10,
"maxWatchers" : 10,
"name" : "Durable Plastic Table",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"notifiedEventsReadonly" : false,
"steps" : [ {
"allowComments" : true,
"allowedConsentPages" : [ ],
"allowedGroups" : [ ],
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_LcyabHRZE88RcwyRDEuMnRNU",
"invitePeriod" : 86400000,
"maxInvites" : 10,
"maxRecipients" : 1,
"readonly" : false,
"recipientSelectionMode" : "list",
"recipients" : [ {
"comments" : "A labore voluptas soluta nihil.",
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"country" : "FR",
"email" : "donita.beier7265@my-company.com",
"firstName" : "Eric",
"lastName" : "Beier",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"preferredLocale" : "fr",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
} ],
"removable" : true,
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000,
"viewConfidentialAttachments" : true
} ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744973167,
"watchers" : [ {
"email" : "francesco.wintheiser791@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_Lwojp5aJwFtWJH8CgMPCE3zZ"
} ]
}
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=Gorgeous%20Marble%20Lamp&items.id=wtm_Ms3StRSuBSMcnYx8yU5KXeoM&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 2953
{
"items" : [ {
"allowConsolidation" : true,
"allowedCoManagerGroups" : [ ],
"allowedCoManagerUsers" : [ ],
"allowedLayouts" : [ "lay_HeSngbekgH3hXgFUB32E2VWs" ],
"allowedSignatureProfiles" : [ "sip_CBkkECrSFTxxt8Qyi4h8vTJR" ],
"coManagerCanEditCoManager" : false,
"coManagerNotifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"coManagerNotifiedEventsReadonly" : false,
"coManagerSelectionMode" : "none",
"coManagerUsersModifiable" : true,
"created" : 1747744408296,
"description" : "647 Avenue Saint-Honoré, 85243 Antibes",
"documentSelectionMode" : "any",
"id" : "wtm_Ms3StRSuBSMcnYx8yU5KXeoM",
"isDisabled" : false,
"layoutSelectionMode" : "list",
"maxAttachments" : 5,
"maxDocuments" : 10,
"maxWatchers" : 6,
"name" : "Gorgeous Marble Lamp",
"notifiedEvents" : [ "recipientRefused", "recipientFinished", "workflowStopped", "workflowFinished" ],
"notifiedEventsReadonly" : false,
"steps" : [ {
"allowComments" : true,
"allowedConsentPages" : [ ],
"allowedGroups" : [ ],
"hideAttachments" : false,
"hideWorkflowRecipients" : false,
"id" : "stp_GhvvLtAkrQYsffM8hyvxbANZ",
"invitePeriod" : 86400000,
"maxInvites" : 5,
"maxRecipients" : 1,
"readonly" : false,
"recipientSelectionMode" : "list",
"recipients" : [ {
"comments" : "A labore voluptas soluta nihil.",
"consentPageId" : "cop_2tH72tYtTA72vA9WhjuNXpdw",
"country" : "FR",
"email" : "donita.beier7265@my-company.com",
"firstName" : "Eric",
"lastName" : "Beier",
"organizationId" : "org_MfSwgB8eWHpb6cWhBq1JFGcy",
"phoneNumber" : "+33 6 12 34 56 78",
"pictureResourceId" : "res_EPcPDiHoQ2zYHnNmVxu1R5K1",
"preferredLocale" : "fr",
"userId" : "usr_QDckNMcxFtffbLXXSxU57Vip"
} ],
"removable" : true,
"requiredRecipients" : 1,
"sendDownloadLink" : true,
"stepType" : "signature",
"validityPeriod" : 8553600000,
"viewConfidentialAttachments" : true
} ],
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744408296,
"watchers" : [ {
"email" : "erik.witting1753@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_7q6VFG8v8WVbtXkk5RY3JudZ"
} ]
} ],
"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=Gorgeous%20Marble%20Lamp&items.id=wtm_Ms3StRSuBSMcnYx8yU5KXeoM&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 182
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{name}},{{json steps}}",
"expired" : 1747831384660
}
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_3i1r86qabycrtr2dohGzjMYh
ETag: "J1ekKcuENZKuhfpMYLqYCZfP"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 599
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744984666,
"expired" : 1747831384660,
"exportOperation" : "createWorkflowTemplateExport",
"id" : "exp_Pu9vGhhQw4fCekQWBoANpcav",
"itemTemplate" : "{{id}},{{name}},{{json steps}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Gorgeous+Marble+Lamp&items.id=wtm_Ms3StRSuBSMcnYx8yU5KXeoM&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744984666,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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_D1fPFNjDaYCgCwFJZU1zcFx8/blobs HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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_FKFGVAAb9RoQbnnMzM1ukDWT
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 198
{
"hash" : "obcUcumzUOJsClVDv/jHTNefKTRlTJULnZx4dfOrx+I=",
"id" : "blb_GCVkXYj8tmaagXpVdKhpyanD",
"templateId" : "wtm_D1fPFNjDaYCgCwFJZU1zcFx8",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL"
}
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_Hf84rt34QgbakNDftz7rArUB/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_QCysJETDyQDXL7CKJZbojdL5&unzip=false&pdf2pdfa=auto&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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_3YPCtFThNkAE9tKh4ti5ynzb
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1362
{
"documents" : [ {
"confidentiality" : false,
"created" : 1747744532256,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "67PdbecnJ5sB+ymbUnH1nfrYAaC6NBl+QjdhsS09br0=",
"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_HTxmU1UMZi96o67anbnpNaQs",
"orderIndex" : 1,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "67PdbecnJ5sB+ymbUnH1nfrYAaC6NBl+QjdhsS09br0=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"templateId" : "wtm_Hf84rt34QgbakNDftz7rArUB",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744532256
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "67PdbecnJ5sB+ymbUnH1nfrYAaC6NBl+QjdhsS09br0=",
"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_GgUUVDiHNZeY3XL8HQZz7PZn/parts?createDocuments=true&ignoreAttachments=false&signatureProfileId=sip_QCysJETDyQDXL7CKJZbojdL5&unzip=false&pdf2pdfa=auto&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: multipart/form-data;boundary=_sZutCa4y36SeVoYWR9dRKBcYXOHun-wP; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Length: 12549
--_sZutCa4y36SeVoYWR9dRKBcYXOHun-wP
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
...
--_sZutCa4y36SeVoYWR9dRKBcYXOHun-wP--
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_4vKD4nr6k3xV39xhLXs4Bxzo
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1362
{
"documents" : [ {
"confidentiality" : false,
"created" : 1747744525325,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "UB6Px/eBfBu3u+VdSZtJjtUsF3wnIUfTr2Cv/TUaKZ0=",
"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_VZiFVsB969z2aw3KFvBhWK9h",
"orderIndex" : 1,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "UB6Px/eBfBu3u+VdSZtJjtUsF3wnIUfTr2Cv/TUaKZ0=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"templateId" : "wtm_GgUUVDiHNZeY3XL8HQZz7PZn",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744525325
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "UB6Px/eBfBu3u+VdSZtJjtUsF3wnIUfTr2Cv/TUaKZ0=",
"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_AkVb8WYGgUqT8BVcjVbQyUu5/blobs/parts?createDocuments=true&ignoreAttachments=false&unzip=false&signatureProfileId=sip_QCysJETDyQDXL7CKJZbojdL5&pdf2pdfa=force&readonly=false&removable=true HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 210
{
"parts" : [ {
"filename" : "document.pdf",
"contentType" : "application/pdf",
"blobs" : [ "blb_DvjRGGRsXcgRnvS9UqPwJ7rX", "blb_E35tBLmESvtQHSZXKbXDWDN3", "blb_A9SKs5Bkv1PreEQo8AcAEXLH" ]
} ]
}
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_J1kmSDMc5Vk9UdJgjJZkwsLU
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 1362
{
"documents" : [ {
"confidentiality" : false,
"created" : 1747744538706,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "VIQlSEBluuEs/Gv6RKXMgbGXviCaRjVWKchaw34rSI8=",
"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_NHjpn97sVGJUVRvzgues7jsr",
"orderIndex" : 1,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "VIQlSEBluuEs/Gv6RKXMgbGXviCaRjVWKchaw34rSI8=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"templateId" : "wtm_AkVb8WYGgUqT8BVcjVbQyUu5",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744538706
} ],
"ignoredAttachments" : 0,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "document.pdf",
"hash" : "VIQlSEBluuEs/Gv6RKXMgbGXviCaRjVWKchaw34rSI8=",
"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_33QtVtPQoX7qCj5GRieV3HgU/blobs HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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_8RV5Futi6Yrig82TvHKbk8G2
Cache-Control: no-cache
Content-Type: application/json
Content-Length: 121
{
"deletedBlobs" : [ "blb_HGJShia5yGgFTorzVspJzYC8", "blb_BVKqccXFbgqsSYvGnqKsk8a5", "blb_NqFAWN5jzkR12wZt2xvZ8VoS" ]
}
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_5xvFaEtKutKTNisuJq3i28W7/templateDocuments HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 596
{
"readonly" : false,
"removable" : true,
"parts" : [ {
"filename" : "Document",
"contentType" : "application/pdf",
"size" : 18540,
"hash" : "tMXb+zCVrEq+jj4qFnttCWUlZCtfM42wsEP06ZUogVs=",
"policyUri" : "https://sites.banque-france.fr/igc/signature/ps/ps_1_2_250_1_115_200_300_4.pdf",
"isOriginal" : true
} ],
"signatureProfileId" : "sip_QCysJETDyQDXL7CKJZbojdL5",
"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_8Yc4Bxni7CeE8M3Tv2kNgFk7
ETag: "HMBX64LreKLZdduiSpRWKHAc"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1125
{
"confidentiality" : false,
"created" : 1747744674020,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "tMXb+zCVrEq+jj4qFnttCWUlZCtfM42wsEP06ZUogVs=",
"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_KXMrhMXnsjxmYGtmXqaPYp3f",
"orderIndex" : 10,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "tMXb+zCVrEq+jj4qFnttCWUlZCtfM42wsEP06ZUogVs=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"subOrderIndex" : 5,
"templateId" : "wtm_5xvFaEtKutKTNisuJq3i28W7",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744674020
}
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_CWyAsS4nYnDS9ePrWDTCp14t HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: "5MRFsi5cG8CPhiovPgoQEJXC"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1101
{
"confidentiality" : false,
"created" : 1747744408599,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "9O3p+Djjt6rcktP0DLw2jKCJ5r/2bneidHR1E3lyiN8=",
"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_CWyAsS4nYnDS9ePrWDTCp14t",
"orderIndex" : 1,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "9O3p+Djjt6rcktP0DLw2jKCJ5r/2bneidHR1E3lyiN8=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"templateId" : "wtm_Ms3StRSuBSMcnYx8yU5KXeoM",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744408753
}
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_Bo8r3WFNyfkxwGqE8ARJjdvy HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "AQzKmMGFbPfm6xfJCZNLVwC2"
Content-Type: application/json
Content-Length: 300
{
"readonly" : true,
"removable" : false,
"signatureProfileId" : "sip_QCysJETDyQDXL7CKJZbojdL5",
"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_GUSHq2ZqVb8WaewchVSkRbVt
ETag: "CE2YQHhLsZbBsC8jArD95S1Z"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1124
{
"confidentiality" : false,
"created" : 1747744652339,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "AdTH5jEWZ1XiZN6AhaR3Upb+pR/nqQYTdTur2XxaE/M=",
"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_Bo8r3WFNyfkxwGqE8ARJjdvy",
"orderIndex" : 2,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "AdTH5jEWZ1XiZN6AhaR3Upb+pR/nqQYTdTur2XxaE/M=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"subOrderIndex" : 5,
"templateId" : "wtm_Ms3StRSuBSMcnYx8yU5KXeoM",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744652412
}
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_3nPtSCVZRdmgyu11pNAgSffQ HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
If-Match: "BPSRQspwHJazKiX2JcZLMeQf"
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_4CqARNfejBQWkAUqg3NgbN7E
ETag: "BPSRQspwHJazKiX2JcZLMeQf"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 1101
{
"confidentiality" : false,
"created" : 1747744682186,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "3LSapg4bEATneQ4m/fSz/g24WY8WCa5H0IE0Ok0wTOk=",
"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_3nPtSCVZRdmgyu11pNAgSffQ",
"orderIndex" : 3,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "3LSapg4bEATneQ4m/fSz/g24WY8WCa5H0IE0Ok0wTOk=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"templateId" : "wtm_Ms3StRSuBSMcnYx8yU5KXeoM",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744682289
}
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_CWyAsS4nYnDS9ePrWDTCp14t/parts/f4ede9f838e3b7aadc92d3f40cbc368ca089e6bff66e77a274747513797288... HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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_Ms3StRSuBSMcnYx8yU5KXeoM/downloadDocuments HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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: 29190
PK���d�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_CWyAsS4nYnDS9ePrWDTCp14t&sortBy=items.id&itemsPerPage=50&pageIndex=0 HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
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" : 1747744408599,
"displayedParts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "9O3p+Djjt6rcktP0DLw2jKCJ5r/2bneidHR1E3lyiN8=",
"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_CWyAsS4nYnDS9ePrWDTCp14t",
"orderIndex" : 1,
"parts" : [ {
"contentType" : "application/pdf",
"filename" : "Document",
"hash" : "9O3p+Djjt6rcktP0DLw2jKCJ5r/2bneidHR1E3lyiN8=",
"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_QCysJETDyQDXL7CKJZbojdL5",
"templateId" : "wtm_Ms3StRSuBSMcnYx8yU5KXeoM",
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"updated" : 1747744408753
} ],
"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_CWyAsS4nYnDS9ePrWDTCp14t&sortBy=items.id HTTP/1.1
Authorization: Bearer act_NU2SiaMVBE5uFdy5ziXKjnVZ.Capd9jXXh6CcPRiWsiQ9258oWcNEGmxuJcQNP5Xeyc6eRviepyLGgLWcNu4AEbvW
Content-Type: application/json
Content-Length: 173
{
"contentType" : "text/csv",
"beforeItems" : "",
"afterItems" : "",
"betweenItems" : "\n",
"itemTemplate" : "{{id}},{{json parts}}",
"expired" : 1747831045964
}
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_5vZBYaGbYVyf2zY6ULGooras
ETag: "7PEyrR3Ve1nhRALUBgFMaBJJ"
Cache-Control: must-revalidate
Content-Type: application/json
Content-Length: 586
{
"afterItems" : "",
"beforeItems" : "",
"betweenItems" : "\n",
"contentType" : "text/csv",
"created" : 1747744645968,
"expired" : 1747831045964,
"exportOperation" : "createWorkflowTemplateDocumentExport",
"id" : "exp_8raL8YjvUKRBgGcTN7tsQup5",
"itemTemplate" : "{{id}},{{json parts}}",
"jobOperation" : "exportEntities",
"searchQuery" : "text=Document&items.id=wtd_CWyAsS4nYnDS9ePrWDTCp14t&sortBy=items.id",
"size" : 0,
"tenantId" : "ten_7BmELRkWdtTjrj9FWaNfeCvL",
"totalItems" : 0,
"updated" : 1747744645968,
"userId" : "usr_MyUWBehHH6zAs51F4UkFfBQB"
}
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. |