Trusted Service API
v1.3.1
Introduction #
Schema #
- All structured data are in JSON format.
- All durations are in milliseconds.
- All dates and times are in milliseconds since January 1, 1970.
Authentication #
All requests sent to the Trusted Service API must contain a valid API token. An API token must be created from the portal. You will then use the token value in the Authorization header of your Trusted Service API requests:
$ curl 'https://dev.toosign.com/api/workflows/wf0WhsKYcjfsxa' -i -X GET \
-H 'Authorization: Bearer eyJhdCI6ImF0TjVoaTN6RXNKa29kIn0.708LNsJgDeBwLFVgVfu9wpPC6goveJHJmw3uxjydsso'
Errors #
Error responses have an errorCode field so that your application can tell what the problem is.
Error response #
HTTP/1.1 403 Forbidden
{
"status" : 403,
"errorCode" : "UserNotAllowed",
"auditLog" : "alLL6ntuhmnNFK"
}
Fields: #
| Path |
Type |
Description |
status |
Number |
The HTTP error status. |
errorCode |
String |
The error code. |
auditLog |
String |
The ID of the audit log created for the error. |
Info #
Retrieve information about the Trusted Service API.
HTTP request #
GET /api/info HTTP/1.1
HTTP response #
HTTP/1.1 200 OK
{
"version" : "1.3.1"
}
A contact is a recipient information that can be used as an approver or a signer in a workflow.
Create a contact.
HTTP request #
POST /api/contacts HTTP/1.1
{
"organization" : "og4hooJWKGw1L1",
"space" : "spTO26g9KzQtwk",
"firstName" : "Katheleen",
"lastName" : "Runolfsson",
"email" : "bettie.davis42429@acme.com",
"phone" : "+11137673762",
"locale" : "en"
}
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
email optional |
String |
The email address. |
firstName |
String |
The first name. |
lastName |
String |
The last name. |
locale |
String |
The country code and language tag used for notifications. |
organization optional |
String |
The organization. |
phone optional |
String |
The phone number. |
space optional |
String |
The ID of the space. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862226692,
"email" : "bettie.davis42429@acme.com",
"firstName" : "Katheleen",
"id" : "co90RaSzNQrLTf",
"lastName" : "Runolfsson",
"locale" : "en",
"organization" : "og4hooJWKGw1L1",
"phone" : "+1 1137673762",
"shortName" : "Katheleen Runolfsson",
"space" : "spTO26g9KzQtwk",
"updatedOn" : 1718862226692
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
email optional |
String |
The email address. |
firstName |
String |
The first name. |
id |
String |
The ID of the entity. |
lastName |
String |
The last name. |
locale |
String |
The country code and language tag used for notifications. |
organization |
String |
The organization. |
phone optional |
String |
The phone number. |
shortName |
String |
The short name of the entity. |
space optional |
String |
The ID of the space. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Delete a contact.
HTTP request #
DELETE /api/contacts/coCjBl76xQiqkA HTTP/1.1
Path: #
/api/contacts/{contact}
| Parameter |
Description |
contact |
The ID of the contact. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 204 No Content
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
ContactNotFound |
The contact can not be found. |
Retrieve a contact.
HTTP request #
GET /api/contacts/co4jzrsx3t1YCK HTTP/1.1
Path: #
/api/contacts/{contact}
| Parameter |
Description |
contact |
The ID of the contact. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862221953,
"email" : "lynwood.emard76269@acme.com",
"firstName" : "Lynwood",
"id" : "co4jzrsx3t1YCK",
"lastName" : "Emard",
"locale" : "en",
"organization" : "og4hooJWKGw1L1",
"phone" : "+1 1156552923",
"shortName" : "Lynwood Emard",
"space" : "spXg4xDPTgfaie",
"updatedOn" : 1718862221953
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
email optional |
String |
The email address. |
firstName |
String |
The first name. |
id |
String |
The ID of the entity. |
lastName |
String |
The last name. |
locale |
String |
The country code and language tag used for notifications. |
organization |
String |
The organization. |
phone optional |
String |
The phone number. |
shortName |
String |
The short name of the entity. |
space optional |
String |
The ID of the space. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
ContactNotFound |
The contact can not be found. |
Update a contact.
HTTP request #
PATCH /api/contacts/co76QWltAPdM8t HTTP/1.1
{
"firstName" : "Emmanuel",
"lastName" : "Bernhard",
"email" : "neil.oconnell55458@acme.com",
"phone" : "+11184957973",
"locale" : "en"
}
Path: #
/api/contacts/{contact}
| Parameter |
Description |
contact |
The ID of the contact. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
email optional |
String |
The email address. |
firstName optional |
String |
The first name. |
lastName optional |
String |
The last name. |
locale optional |
String |
The country code and language tag used for notifications. |
phone optional |
String |
The phone number. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862221970,
"email" : "neil.oconnell55458@acme.com",
"firstName" : "Emmanuel",
"id" : "co76QWltAPdM8t",
"lastName" : "Bernhard",
"locale" : "en",
"organization" : "og4hooJWKGw1L1",
"phone" : "+1 1184957973",
"shortName" : "Emmanuel Bernhard",
"space" : "spXg4xDPTgfaie",
"updatedOn" : 1718862221977
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
email optional |
String |
The email address. |
firstName |
String |
The first name. |
id |
String |
The ID of the entity. |
lastName |
String |
The last name. |
locale |
String |
The country code and language tag used for notifications. |
organization |
String |
The organization. |
phone optional |
String |
The phone number. |
shortName |
String |
The short name of the entity. |
space optional |
String |
The ID of the space. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Search contacts.
HTTP request #
GET /api/contacts?search=Lynwood+Emard&filter=id%3Dco4jzrsx3t1YCK%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn&maxEntities=25&offset=0 HTTP/1.1
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, createdOn, email, firstName, lastName, organization, phone, shortName, space, startedOn, updatedOn. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, createdOn, email, firstName, lastName, organization, phone, shortName, space, startedOn, updatedOn. Use the - prefix to sort in descending order. |
maxEntities |
The maximum number of entities in the search result. Maximum is 50. |
offset |
The offset of the first entity in the search result. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"entities" : [ {
"createdOn" : 1718862221953,
"email" : "lynwood.emard76269@acme.com",
"firstName" : "Lynwood",
"id" : "co4jzrsx3t1YCK",
"lastName" : "Emard",
"locale" : "en",
"organization" : "og4hooJWKGw1L1",
"phone" : "+1 1156552923",
"shortName" : "Lynwood Emard",
"space" : "spXg4xDPTgfaie",
"updatedOn" : 1718862221953
} ],
"offset" : 0,
"totalEntities" : 1
}
Fields: #
| Path |
Type |
Description |
offset |
Number |
The offset of the first entity in the search result. |
totalEntities |
Number |
The total number of entities. |
entities |
Contact[] |
The entities returned in the search result. |
entities[].createdOn |
Number |
The creation date of the entity. |
entities[].email optional |
String |
The email address. |
entities[].firstName |
String |
The first name. |
entities[].id |
String |
The ID of the entity. |
entities[].lastName |
String |
The last name. |
entities[].locale |
String |
The country code and language tag used for notifications. |
entities[].organization |
String |
The organization. |
entities[].phone optional |
String |
The phone number. |
entities[].shortName |
String |
The short name of the entity. |
entities[].space optional |
String |
The ID of the space. |
entities[].updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Export contacts.
HTTP request #
POST /api/contacts/exports?search=Lynwood+Emard&filter=id%3Dco4jzrsx3t1YCK%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn HTTP/1.1
{
"contentType" : "text/csv",
"beforeEntities" : "",
"afterEntities" : "",
"betweenEntities" : "\n",
"entityTemplate" : "{{id}},{{shortName}}"
}
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, createdOn, email, firstName, lastName, organization, phone, shortName, space, startedOn, updatedOn. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, createdOn, email, firstName, lastName, organization, phone, shortName, space, startedOn, updatedOn. Use the - prefix to sort in descending order. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
HTTP response #
HTTP/1.1 200 OK
{
"afterEntities" : "",
"beforeEntities" : "",
"betweenEntities" : "\n",
"contentType" : "text/csv",
"createdOn" : 1718862225295,
"currentJobOperation" : "exportEntities",
"entityTemplate" : "{{id}},{{shortName}}",
"exportOperation" : "exportContacts",
"id" : "exTphaKajmu0Fd",
"organization" : "og4hooJWKGw1L1",
"searchQuery" : "search=Lynwood+Emard&filter=id%3Dco4jzrsx3t1YCK%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn",
"updatedOn" : 1718862225295
}
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: exportEntities. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
exportOperation |
String |
The export operation. Possible values: exportApiTokens, exportAuditLogs, exportContacts, exportOrganizations, exportRoles, exportSpaces, exportUsers, exportWorkflows. |
exportSize optional |
Number |
The size in bytes of the export. |
id |
String |
The ID of the entity. |
organization optional |
String |
The organization. |
ownedByUser optional |
String |
The owner user. |
searchQuery |
String |
The search query used to list the exported entities. |
totalEntities optional |
Number |
The total number of entities. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
400 |
InvalidTemplate |
The template could not be parsed. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Documents #
Documents are files in a workflow that need to be approved and/or signed.
Update document #
Update a document.
HTTP request #
PATCH /api/documents/dcBWw1ZEXI9Rlz HTTP/1.1
{
"filename" : "contract.pdf",
"signatureAnnotations" : [ {
"signer" : "si5iSgsAWBFswi",
"page" : 1,
"x1" : 288,
"y1" : 222,
"x2" : 438,
"y2" : 282
} ]
}
Path: #
/api/documents/{document}
| Parameter |
Description |
document |
The ID of the document. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
filename optional |
String |
The file name. |
signatureAnnotations |
SignatureAnnotation[] |
The signature annotations of the document. |
signatureAnnotations[].signer |
String |
The ID of the signer. |
signatureAnnotations[].page |
String |
The index of the annotation page. |
signatureAnnotations[].x1 |
String |
The abscissa of the left corners of the annotation in the page. |
signatureAnnotations[].y1 |
String |
The ordinate of the top corners of the annotation in the page. |
signatureAnnotations[].x2 |
String |
The abscissa of the right corners of the annotation in the page. |
signatureAnnotations[].y2 |
String |
The ordinate of the bottom corners of the annotation in the page. |
HTTP response #
HTTP/1.1 200 OK
{
"contentType" : "application/pdf",
"createdOn" : 1718862212573,
"filename" : "contract.pdf",
"history" : [ {
"byteMapping" : [ {
"length" : 9717,
"multihash" : [ "12207f99dc02b6a0443a93dcc7a393946b310b02e978dff45862c886e9c934ea0fd4", "16201a989035c872dfbbba952a0db0ae416a931c5c99c6ccc10a21bd2d114d708382" ]
} ],
"multihash" : [ "12207f99dc02b6a0443a93dcc7a393946b310b02e978dff45862c886e9c934ea0fd4", "16201a989035c872dfbbba952a0db0ae416a931c5c99c6ccc10a21bd2d114d708382" ]
} ],
"id" : "dcBWw1ZEXI9Rlz",
"organization" : "og4hooJWKGw1L1",
"signatureAnnotations" : [ {
"page" : 1,
"signer" : "si5iSgsAWBFswi",
"x1" : 288,
"x2" : 438,
"y1" : 222,
"y2" : 282
} ],
"updatedOn" : 1718862212573,
"workflow" : "wf0WhsKYcjfsxa"
}
Fields: #
| Path |
Type |
Description |
contentType |
String |
The content media type. |
createdOn |
Number |
The creation date of the entity. |
filename |
String |
The file name. |
history |
DocumentHistoryEntry[] |
The list of document history entries. |
history[].multihash |
String[] |
The multihash of the history entry content. |
history[].byteMapping |
DocumentByteMappingEntry[] |
The list of byte mapping entries. |
history[].byteMapping[].multihash |
String[] |
The multihash of the byte mapping entry content. |
history[].byteMapping[].length |
String[] |
The length of the byte mapping entry content. |
history[].signer optional |
String |
The ID of the signer. |
id |
String |
The ID of the entity. |
organization |
String |
The organization. |
signatureAnnotations |
SignatureAnnotation[] |
The signature annotations of the document. |
signatureAnnotations[].signer |
String |
The ID of the signer. |
signatureAnnotations[].page |
String |
The index of the annotation page. |
signatureAnnotations[].x1 |
String |
The abscissa of the left corners of the annotation in the page. |
signatureAnnotations[].y1 |
String |
The ordinate of the top corners of the annotation in the page. |
signatureAnnotations[].x2 |
String |
The abscissa of the right corners of the annotation in the page. |
signatureAnnotations[].y2 |
String |
The ordinate of the bottom corners of the annotation in the page. |
updatedOn |
Number |
The date of last modification of the entity. |
workflow |
String |
The ID of the workflow. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
List documents #
List the documents of a Workflow.
HTTP request #
GET /api/workflows/wf0WhsKYcjfsxa/documents HTTP/1.1
Path: #
/api/workflows/{workflow}/documents
| Parameter |
Description |
workflow |
The ID of the workflow. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
[ {
"id" : "dcHpaB8qYBOzXP",
"organization" : "og4hooJWKGw1L1",
"workflow" : "wf0WhsKYcjfsxa",
"filename" : "contract.pdf",
"contentType" : "application/pdf",
"history" : [ {
"multihash" : [ "16201a989035c872dfbbba952a0db0ae416a931c5c99c6ccc10a21bd2d114d708382", "12207f99dc02b6a0443a93dcc7a393946b310b02e978dff45862c886e9c934ea0fd4" ],
"byteMapping" : [ {
"multihash" : [ "16201a989035c872dfbbba952a0db0ae416a931c5c99c6ccc10a21bd2d114d708382", "12207f99dc02b6a0443a93dcc7a393946b310b02e978dff45862c886e9c934ea0fd4" ],
"length" : 9717
} ]
} ],
"signatureAnnotations" : [ {
"signer" : "si5iSgsAWBFswi",
"page" : 1,
"x1" : 288,
"y1" : 222,
"x2" : 438,
"y2" : 282
} ],
"createdOn" : 1718862261279,
"updatedOn" : 1718862261279
}, {
"id" : "dcHMUy18kye6Nx",
"organization" : "og4hooJWKGw1L1",
"workflow" : "wf0WhsKYcjfsxa",
"filename" : "contract.pdf",
"contentType" : "application/pdf",
"history" : [ {
"multihash" : [ "16201a989035c872dfbbba952a0db0ae416a931c5c99c6ccc10a21bd2d114d708382", "12207f99dc02b6a0443a93dcc7a393946b310b02e978dff45862c886e9c934ea0fd4" ],
"byteMapping" : [ {
"multihash" : [ "16201a989035c872dfbbba952a0db0ae416a931c5c99c6ccc10a21bd2d114d708382", "12207f99dc02b6a0443a93dcc7a393946b310b02e978dff45862c886e9c934ea0fd4" ],
"length" : 9717
} ]
} ],
"signatureAnnotations" : [ {
"signer" : "si5iSgsAWBFswi",
"page" : 1,
"x1" : 288,
"y1" : 222,
"x2" : 438,
"y2" : 282
} ],
"createdOn" : 1718862261273,
"updatedOn" : 1718862261273
}, {
"id" : "dcOIBaVOShzU1I",
"organization" : "og4hooJWKGw1L1",
"workflow" : "wf0WhsKYcjfsxa",
"filename" : "contract.pdf",
"contentType" : "application/pdf",
"history" : [ {
"multihash" : [ "16201a989035c872dfbbba952a0db0ae416a931c5c99c6ccc10a21bd2d114d708382", "12207f99dc02b6a0443a93dcc7a393946b310b02e978dff45862c886e9c934ea0fd4" ],
"byteMapping" : [ {
"multihash" : [ "16201a989035c872dfbbba952a0db0ae416a931c5c99c6ccc10a21bd2d114d708382", "12207f99dc02b6a0443a93dcc7a393946b310b02e978dff45862c886e9c934ea0fd4" ],
"length" : 9717
} ]
} ],
"signatureAnnotations" : [ {
"signer" : "si5iSgsAWBFswi",
"page" : 1,
"x1" : 288,
"y1" : 222,
"x2" : 438,
"y2" : 282
} ],
"createdOn" : 1718862260463,
"updatedOn" : 1718862260463
}, {
"id" : "dcBWw1ZEXI9Rlz",
"organization" : "og4hooJWKGw1L1",
"workflow" : "wf0WhsKYcjfsxa",
"filename" : "contract.pdf",
"contentType" : "application/pdf",
"history" : [ {
"multihash" : [ "16201a989035c872dfbbba952a0db0ae416a931c5c99c6ccc10a21bd2d114d708382", "12207f99dc02b6a0443a93dcc7a393946b310b02e978dff45862c886e9c934ea0fd4" ],
"byteMapping" : [ {
"multihash" : [ "16201a989035c872dfbbba952a0db0ae416a931c5c99c6ccc10a21bd2d114d708382", "12207f99dc02b6a0443a93dcc7a393946b310b02e978dff45862c886e9c934ea0fd4" ],
"length" : 9717
} ]
} ],
"signatureAnnotations" : [ {
"signer" : "si5iSgsAWBFswi",
"page" : 1,
"x1" : 288,
"y1" : 222,
"x2" : 438,
"y2" : 282
} ],
"createdOn" : 1718862212573,
"updatedOn" : 1718862212573
} ]
Fields: #
| Path |
Type |
Description |
[].contentType |
String |
The content media type. |
[].createdOn |
Number |
The creation date of the entity. |
[].filename |
String |
The file name. |
[].history |
DocumentHistoryEntry[] |
The list of document history entries. |
[].history[].multihash |
String[] |
The multihash of the history entry content. |
[].history[].byteMapping |
DocumentByteMappingEntry[] |
The list of byte mapping entries. |
[].history[].byteMapping[].multihash |
String[] |
The multihash of the byte mapping entry content. |
[].history[].byteMapping[].length |
String[] |
The length of the byte mapping entry content. |
[].history[].signer optional |
String |
The ID of the signer. |
[].id |
String |
The ID of the entity. |
[].organization |
String |
The organization. |
[].signatureAnnotations |
SignatureAnnotation[] |
The signature annotations of the document. |
[].signatureAnnotations[].signer |
String |
The ID of the signer. |
[].signatureAnnotations[].page |
String |
The index of the annotation page. |
[].signatureAnnotations[].x1 |
String |
The abscissa of the left corners of the annotation in the page. |
[].signatureAnnotations[].y1 |
String |
The ordinate of the top corners of the annotation in the page. |
[].signatureAnnotations[].x2 |
String |
The abscissa of the right corners of the annotation in the page. |
[].signatureAnnotations[].y2 |
String |
The ordinate of the bottom corners of the annotation in the page. |
[].updatedOn |
Number |
The date of last modification of the entity. |
[].workflow |
String |
The ID of the workflow. |
Errors: #
| Status |
Code |
Message |
401 |
ExpiredToken |
The token has expired. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
WorkflowNotFound |
The workflow can not be found. |
Delete document #
Delete a document.
HTTP request #
DELETE /api/documents/dc5bEqow4vqUTW HTTP/1.1
Path: #
/api/documents/{document}
| Parameter |
Description |
document |
The ID of the document. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 204 No Content
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
403 |
WorkflowStatusNotAllowed |
The specified workflow status is not allowed. |
Exports #
An export can be used to download a large set of data from the API.
Retrieve export #
Retrieve an export.
HTTP request #
GET /api/exports/exBUKibY0Aq2zO HTTP/1.1
Path: #
/api/exports/{export}
| Parameter |
Description |
export |
The ID of the export. |
HTTP response #
HTTP/1.1 200 OK
{
"afterEntities" : "",
"beforeEntities" : "",
"betweenEntities" : "\n",
"contentType" : "text/csv",
"createdOn" : 1718862309573,
"currentJobOperation" : "exportEntities",
"entityTemplate" : "{{id}},{{shortName}}",
"exportOperation" : "exportOrganizations",
"id" : "exBUKibY0Aq2zO",
"organization" : "og4hooJWKGw1L1",
"searchQuery" : "filter=id%3Dog4hooJWKGw1L1",
"updatedOn" : 1718862309573
}
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: exportEntities. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
exportOperation |
String |
The export operation. Possible values: exportApiTokens, exportAuditLogs, exportContacts, exportOrganizations, exportRoles, exportSpaces, exportUsers, exportWorkflows. |
exportSize optional |
Number |
The size in bytes of the export. |
id |
String |
The ID of the entity. |
organization optional |
String |
The organization. |
ownedByUser optional |
String |
The owner user. |
searchQuery |
String |
The search query used to list the exported entities. |
totalEntities optional |
Number |
The total number of entities. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
404 |
ExportNotFound |
The export can not be found. |
Download export #
Download an export.
HTTP request #
GET /api/exports/exGH5VYhBXjz8T/data HTTP/1.1
Path: #
/api/exports/{export}/data
| Parameter |
Description |
export |
The ID of the export. |
HTTP response #
HTTP/1.1 200 OK
og4hooJWKGw1L1,Russel LLC Inc.
Errors: #
| Status |
Code |
Message |
404 |
ExportNotFound |
The export can not be found. |
Global configuration #
The global configuration is used to customize the application.
Retrieve default global configuration #
Retrieve the default global configuration.
HTTP request #
GET /api/defaultConfiguration HTTP/1.1
HTTP response #
HTTP/1.1 200 OK
{
"adminRoleName" : {
"en" : "Administrator",
"fr" : "Administrateur"
},
"appName" : "Toosign.com",
"documentMaxSize" : 20971520,
"emailNotificationTemplates" : {
"approverApproved" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>An approver has just approved</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n An approver has just approved.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has just approved the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "An approver has just approved"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un approbateur vient d'approuver</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un approbateur vient d'approuver.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} vient d'approuver le(s)\n document(s) du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un approbateur vient d'approuver"
}
},
"approverRefused" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>An approver has refused to approve</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n An approver has refused to approve.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has refused to approve the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "An approver has refused to approve"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un approbateur a refusé d'approuver</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un approbateur a refusé d'approuver.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} a refusé d'approuver le(s)\n document(s) du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un approbateur a refusé d'approuver"
}
},
"signerOtpCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Authentication code</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Authentication code\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Your authentication code required to sign the workflow \"{{workflow.shortName}}\" is: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{otp}}</strong>. This code will expire in {{timeoutMinutes}} minutes.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Authentication code"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Code d'authentification</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Code d'authentification\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Votre code d'authentification requis pour signer le workflow\n \"{{workflow.shortName}}\" est : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{otp}}</strong>.\n Ce code expirera dans {{timeoutMinutes}} minutes.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Code d'authentification"
}
},
"signerRefused" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A signer has refused to sign</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background-color: #2e71b1; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A signer has refused to sign.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has refused to sign the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A signer has refused to sign"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un signataire a refusé de signer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background-color: #2e71b1; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un signataire a refusé de signer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} a refusé de signer le(s)\n document(s) du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un signataire a refusé de signer"
}
},
"signerSigned" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A signer has just signed</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A signer has just signed.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has just signed the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A signer has just signed"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un signataire vient de signer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un signataire vient de signer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{signer.firstName}} {{signer.lastName}} vient de signer le(s) document(s)\n du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un signataire vient de signer"
}
},
"userInvitationCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>You are invited to join Toosign.com</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are invited to join Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Someone has just sent you an invitation to join Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Join Toosign.com\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "You are invited to join Toosign.com"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Vous êtes invité à rejoindre Toosign.com</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Vous êtes invité à rejoindre Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Un utilisateur vient de vous envoyer une invitation à rejoindre Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Rejoindre Toosign.com\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Vous êtes invité à rejoindre Toosign.com"
}
},
"workflowFinished" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A workflow was just finished</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A workflow was just finished.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n The following workflow was just finished: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow was just finished"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un workflow vient de se terminer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un workflow vient de se terminer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Le workflow suivant vient de se terminer : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un workflow vient de se terminer"
}
},
"workflowFinishedWithDownloadLink" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A workflow was just finished</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A workflow was just finished.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n The following workflow was just finished: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Download the signed document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow was just finished"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un workflow vient de se terminer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un workflow vient de se terminer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Le workflow suivant vient de se terminer : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Téléchargez le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un workflow vient de se terminer"
}
},
"workflowInvitationCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n has just sent you\n {{#if notification.signer}}a signature{{else}}an approval{{/if}}\n request for the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n vient de vous envoyer une demande\n {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}\n pour le workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le(s) document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents"
}
},
"workflowInvitationReminderCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Reminder: You have not {{#if notification.signer}}\n signed{{else}}approved{{/if}} some documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n sent you\n {{#if notification.signer}}a signature{{else}}an approval{{/if}}\n request for the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Reminder: You have not {{#if notification.signer}}\n signed{{else}}approved{{/if}} some documents"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Rappel : Vous n'avez pas {{#if notification.signer}}\n signé{{else}}approuvé{{/if}} des documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n vous a envoyé une demande\n {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}\n pour le workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le(s) document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Rappel : Vous n'avez pas {{#if notification.signer}}\n signé{{else}}approuvé{{/if}} des documents"
}
},
"workflowStarted" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A workflow was just started</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A workflow was just started.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n The following workflow was just started: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow was just started"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un workflow vient de démarrer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un workflow vient de démarrer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Le workflow suivant vient de démarrer : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un workflow vient de démarrer"
}
}
},
"googleAnalyticsMeasurementId" : "G-PQGM5GVH8V",
"memberRoleName" : {
"en" : "Member",
"fr" : "Membre"
},
"organizationNameTemplates" : {
"en" : "{{creatorUser.firstName}}'s organization",
"fr" : "Organisation de {{creatorUser.firstName}}"
},
"phoneNotificationTemplates" : {
"signerOtpCreated" : {
"en" : "Your authentication code required to sign the workflow \"{{workflow.shortName}}\" is: {{otp}}.\nThis code will expire in {{timeoutMinutes}} minutes.",
"fr" : "Votre code d'authentification requis pour signer le workflow \"{{workflow.shortName}}\" est : {{otp}}.\nCe code expirera dans {{timeoutMinutes}} minutes."
},
"workflowFinishedWithDownloadLink" : {
"en" : "The following workflow was just finished: {{workflow.shortName}}.\nDownload the signed document(s): {{notification.linkUrl}}",
"fr" : "Le workflow suivant vient de se terminer : {{workflow.shortName}}.\nTéléchargez le(s) document(s) signé(s) : {{notification.linkUrl}}"
},
"workflowInvitationCreated" : {
"en" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} has just sent you {{#if notification.signer}}a signature{{else}}an approval{{/if}} request for the following workflow: {{workflow.shortName}}.\n{{notification.linkUrl}}",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vient de vous envoyer une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}} pour le workflow suivant : {{workflow.shortName}}.\n{{notification.linkUrl}}"
},
"workflowInvitationReminderCreated" : {
"en" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} sent you {{#if notification.signer}}a signature{{else}}an approval{{/if}} request for the following workflow: {{workflow.shortName}}.\n{{notification.linkUrl}}",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vous a envoyé une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}} pour le workflow suivant : {{workflow.shortName}}.\n{{notification.linkUrl}}"
}
},
"signatureTextTemplate" : "Signed by {{signerName}} on {{signatureDate}}",
"spaceNameTemplates" : {
"en" : "{{creatorUser.firstName}}'s space",
"fr" : "Espace de {{creatorUser.firstName}}"
},
"whatsappNotificationTemplates" : {
"signerOtpCreated" : {
"en" : "*{{otp}}* is your verification code. For your security, do not share this code.",
"fr" : "Votre code de vérification est *{{otp}}*. Pour votre sécurité, ne le partagez pas."
},
"workflowFinishedWithDownloadLink" : {
"en" : "A workflow was just finished. Download the signed document(s): {{notification.linkUrl}}",
"fr" : "Un workflow vient de se terminer. Téléchargez le(s) document(s) signé(s) : {{notification.linkUrl}}"
},
"workflowInvitationCreated" : {
"en" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} has just sent you {{#if notification.signer}}a signature{{else}}an approval{{/if}} request.\n{{notification.linkUrl}}",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vient de vous envoyer une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}.\n{{notification.linkUrl}}"
},
"workflowInvitationReminderCreated" : {
"en" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} sent you {{#if notification.signer}}a signature{{else}}an approval{{/if}} request.\n{{notification.linkUrl}}",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vous a envoyé une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}.\n{{notification.linkUrl}}"
}
}
}
Fields: #
| Path |
Type |
Description |
adminRoleName optional |
Object |
The localized admin role name for new organizations. |
appName optional |
String |
The name of the application. |
createUserOnAuthentication optional |
Boolean |
Whether a user who authenticates on the portal should be automatically created. |
defaultDocumentServiceSecretKey optional |
String |
The secret key of the default Document Service. |
defaultDocumentServiceSecretKeySalt optional |
ByteArray |
The secret key salt of the default Document Service. |
defaultDocumentServiceSecretKeyVerifier optional |
ByteArray |
The secret key verifier of the default Document Service. |
defaultDocumentServiceUrl optional |
URI |
The URL of the default Document Service. |
documentMaxSize optional |
Number |
The maximum size of the workflow documents. |
emailNotificationTemplates optional |
Object |
The localized email templates for each type of notification. |
favicon optional |
String |
The URL or the data URI of the favicon. |
faviconResource optional |
String |
The favicon resource. |
globalPortalIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the global users. Possible values: adfs, azure, dgsn, google, keycloak. |
googleAnalyticsMeasurementId optional |
String |
The Google Analytics 4 measurement ID. |
logo optional |
String |
The URL or the data URI of the logo. |
logoResource optional |
String |
The logo resource. |
memberRoleName optional |
Object |
The localized member role name for new organizations. |
organizationNameTemplates optional |
Object |
The localized organization name templates for new users. |
phoneNotificationTemplates optional |
Object |
The localized SMS templates for each type of notification. |
portalIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the portal users. Possible values: adfs, azure, dgsn, google, keycloak. |
signatureTextTemplate optional |
String |
The template of the text to be added to the visible signature fields. The template may contain the {{signerName}} and {{signatureDate}} tags to be replaced before signature. |
signerIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the signers. |
signerIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the signers. |
signerIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the signers. |
signerIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the signers. |
signerIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the signers. Possible values: adfs, azure, dgsn, google, keycloak. |
spaceNameTemplates optional |
Object |
The localized space name templates for new users. |
whatsappNotificationTemplates optional |
Object |
The localized WhatsApp message templates for each type of notification. |
Retrieve global configuration #
Retrieve the global configuration.
HTTP request #
GET /api/configuration HTTP/1.1
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"adminRoleName" : {
"en" : "Administrator",
"fr" : "Administrateur"
},
"appName" : "Toosign.com",
"documentMaxSize" : 20971520,
"emailNotificationTemplates" : {
"approverApproved" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>An approver has just approved</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n An approver has just approved.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has just approved the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "An approver has just approved"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un approbateur vient d'approuver</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un approbateur vient d'approuver.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} vient d'approuver le(s)\n document(s) du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un approbateur vient d'approuver"
}
},
"approverRefused" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>An approver has refused to approve</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n An approver has refused to approve.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has refused to approve the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "An approver has refused to approve"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un approbateur a refusé d'approuver</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un approbateur a refusé d'approuver.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} a refusé d'approuver le(s)\n document(s) du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un approbateur a refusé d'approuver"
}
},
"signerOtpCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Authentication code</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Authentication code\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Your authentication code required to sign the workflow \"{{workflow.shortName}}\" is: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{otp}}</strong>. This code will expire in {{timeoutMinutes}} minutes.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Authentication code"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Code d'authentification</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Code d'authentification\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Votre code d'authentification requis pour signer le workflow\n \"{{workflow.shortName}}\" est : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{otp}}</strong>.\n Ce code expirera dans {{timeoutMinutes}} minutes.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Code d'authentification"
}
},
"signerRefused" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A signer has refused to sign</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background-color: #2e71b1; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A signer has refused to sign.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has refused to sign the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A signer has refused to sign"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un signataire a refusé de signer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background-color: #2e71b1; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un signataire a refusé de signer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} a refusé de signer le(s)\n document(s) du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un signataire a refusé de signer"
}
},
"signerSigned" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A signer has just signed</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A signer has just signed.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has just signed the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A signer has just signed"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un signataire vient de signer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un signataire vient de signer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{signer.firstName}} {{signer.lastName}} vient de signer le(s) document(s)\n du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un signataire vient de signer"
}
},
"userInvitationCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>You are invited to join Toosign.com</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are invited to join Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Someone has just sent you an invitation to join Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Join Toosign.com\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "You are invited to join Toosign.com"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Vous êtes invité à rejoindre Toosign.com</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Vous êtes invité à rejoindre Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Un utilisateur vient de vous envoyer une invitation à rejoindre Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Rejoindre Toosign.com\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Vous êtes invité à rejoindre Toosign.com"
}
},
"workflowFinished" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A workflow was just finished</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A workflow was just finished.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n The following workflow was just finished: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow was just finished"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un workflow vient de se terminer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un workflow vient de se terminer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Le workflow suivant vient de se terminer : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un workflow vient de se terminer"
}
},
"workflowFinishedWithDownloadLink" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A workflow was just finished</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A workflow was just finished.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n The following workflow was just finished: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Download the signed document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow was just finished"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un workflow vient de se terminer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un workflow vient de se terminer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Le workflow suivant vient de se terminer : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Téléchargez le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un workflow vient de se terminer"
}
},
"workflowInvitationCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n has just sent you\n {{#if notification.signer}}a signature{{else}}an approval{{/if}}\n request for the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "You are requested to sign some documents."
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n vient de vous envoyer une demande\n {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}\n pour le workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le(s) document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents"
}
},
"workflowInvitationReminderCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Reminder: You have not {{#if notification.signer}}\n signed{{else}}approved{{/if}} some documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n sent you\n {{#if notification.signer}}a signature{{else}}an approval{{/if}}\n request for the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Reminder: You have not {{#if notification.signer}}\n signed{{else}}approved{{/if}} some documents"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Rappel : Vous n'avez pas {{#if notification.signer}}\n signé{{else}}approuvé{{/if}} des documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n vous a envoyé une demande\n {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}\n pour le workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le(s) document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Rappel : Vous n'avez pas {{#if notification.signer}}\n signé{{else}}approuvé{{/if}} des documents"
}
},
"workflowStarted" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A workflow was just started</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A workflow was just started.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n The following workflow was just started: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow was just started"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un workflow vient de démarrer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un workflow vient de démarrer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Le workflow suivant vient de démarrer : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un workflow vient de démarrer"
}
}
},
"faviconResource" : "rsOr37p1jInNNI",
"globalPortalIdpBaseUrl" : "https://accounts.google.com/",
"globalPortalIdpClientId" : "301579155781-5ejip8vaa08aqi2nnnrm6rvf7e28u2hq.apps.googleusercontent.com",
"globalPortalIdpClientSecret" : "",
"globalPortalIdpScope" : "openid profile email",
"globalPortalIdpType" : "google",
"googleAnalyticsMeasurementId" : "G-PQGM5GVH8V",
"logoResource" : "rs331u49qwPzfK",
"memberRoleName" : {
"en" : "Member",
"fr" : "Membre"
},
"organizationNameTemplates" : {
"en" : "{{creatorUser.firstName}}'s organization",
"fr" : "Organisation de {{creatorUser.firstName}}"
},
"phoneNotificationTemplates" : {
"signerOtpCreated" : {
"en" : "Your authentication code required to sign the workflow \"{{workflow.shortName}}\" is: {{otp}}.\nThis code will expire in {{timeoutMinutes}} minutes.",
"fr" : "Votre code d'authentification requis pour signer le workflow \"{{workflow.shortName}}\" est : {{otp}}.\nCe code expirera dans {{timeoutMinutes}} minutes."
},
"workflowFinishedWithDownloadLink" : {
"en" : "The following workflow was just finished: {{workflow.shortName}}.\nDownload the signed document(s): {{notification.linkUrl}}",
"fr" : "Le workflow suivant vient de se terminer : {{workflow.shortName}}.\nTéléchargez le(s) document(s) signé(s) : {{notification.linkUrl}}"
},
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents.",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vient de vous envoyer une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}} pour le workflow suivant : {{workflow.shortName}}.\n{{notification.linkUrl}}"
},
"workflowInvitationReminderCreated" : {
"en" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} sent you {{#if notification.signer}}a signature{{else}}an approval{{/if}} request for the following workflow: {{workflow.shortName}}.\n{{notification.linkUrl}}",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vous a envoyé une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}} pour le workflow suivant : {{workflow.shortName}}.\n{{notification.linkUrl}}"
}
},
"portalIdpBaseUrl" : "https://accounts.google.com/",
"portalIdpClientId" : "301579155781-5ejip8vaa08aqi2nnnrm6rvf7e28u2hq.apps.googleusercontent.com",
"portalIdpClientSecret" : "",
"portalIdpScope" : "openid profile email",
"portalIdpType" : "google",
"signatureTextTemplate" : "Signed by {{signerName}} on {{signatureDate}}",
"signerIdpBaseUrl" : "https://accounts.google.com/",
"signerIdpClientId" : "301579155781-5ejip8vaa08aqi2nnnrm6rvf7e28u2hq.apps.googleusercontent.com",
"signerIdpClientSecret" : "",
"signerIdpScope" : "openid profile email",
"signerIdpType" : "google",
"spaceNameTemplates" : {
"en" : "{{creatorUser.firstName}}'s space",
"fr" : "Espace de {{creatorUser.firstName}}"
},
"whatsappNotificationTemplates" : {
"signerOtpCreated" : {
"en" : "*{{otp}}* is your verification code. For your security, do not share this code.",
"fr" : "Votre code de vérification est *{{otp}}*. Pour votre sécurité, ne le partagez pas."
},
"workflowFinishedWithDownloadLink" : {
"en" : "A workflow was just finished. Download the signed document(s): {{notification.linkUrl}}",
"fr" : "Un workflow vient de se terminer. Téléchargez le(s) document(s) signé(s) : {{notification.linkUrl}}"
},
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents.",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vient de vous envoyer une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}.\n{{notification.linkUrl}}"
},
"workflowInvitationReminderCreated" : {
"en" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} sent you {{#if notification.signer}}a signature{{else}}an approval{{/if}} request.\n{{notification.linkUrl}}",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vous a envoyé une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}.\n{{notification.linkUrl}}"
}
}
}
Fields: #
| Path |
Type |
Description |
adminRoleName optional |
Object |
The localized admin role name for new organizations. |
appName optional |
String |
The name of the application. |
createUserOnAuthentication optional |
Boolean |
Whether a user who authenticates on the portal should be automatically created. |
defaultDocumentServiceSecretKey optional |
String |
The secret key of the default Document Service. |
defaultDocumentServiceSecretKeySalt optional |
ByteArray |
The secret key salt of the default Document Service. |
defaultDocumentServiceSecretKeyVerifier optional |
ByteArray |
The secret key verifier of the default Document Service. |
defaultDocumentServiceUrl optional |
URI |
The URL of the default Document Service. |
documentMaxSize optional |
Number |
The maximum size of the workflow documents. |
emailNotificationTemplates optional |
Object |
The localized email templates for each type of notification. |
favicon optional |
String |
The URL or the data URI of the favicon. |
faviconResource optional |
String |
The favicon resource. |
globalPortalIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the global users. Possible values: adfs, azure, dgsn, google, keycloak. |
googleAnalyticsMeasurementId optional |
String |
The Google Analytics 4 measurement ID. |
logo optional |
String |
The URL or the data URI of the logo. |
logoResource optional |
String |
The logo resource. |
memberRoleName optional |
Object |
The localized member role name for new organizations. |
organizationNameTemplates optional |
Object |
The localized organization name templates for new users. |
phoneNotificationTemplates optional |
Object |
The localized SMS templates for each type of notification. |
portalIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the portal users. Possible values: adfs, azure, dgsn, google, keycloak. |
signatureTextTemplate optional |
String |
The template of the text to be added to the visible signature fields. The template may contain the {{signerName}} and {{signatureDate}} tags to be replaced before signature. |
signerIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the signers. |
signerIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the signers. |
signerIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the signers. |
signerIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the signers. |
signerIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the signers. Possible values: adfs, azure, dgsn, google, keycloak. |
spaceNameTemplates optional |
Object |
The localized space name templates for new users. |
whatsappNotificationTemplates optional |
Object |
The localized WhatsApp message templates for each type of notification. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Update global configuration #
Update the global configuration.
HTTP request #
PUT /api/configuration HTTP/1.1
{
"adminRoleName" : {
"en" : "Administrator",
"fr" : "Administrateur"
},
"emailNotificationTemplates" : { },
"favicon" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0CAYAAADL1t+KAAAPw0lEQVR4Xu3VsQklSRBEwW/3ebY+rE+3YkNCl1rZQwQ8ZdSiJ3//U+W/v38k6Yno8ssP7MoHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0cWgl8kHI0mt0eWXB9JuAK/I/5d2M+hlAbwi/1/azaCXBfCK/H9pN4NeFsAr8v+l3Qx6WQCvyP+XdjPoZQG8Iv9f2s2glwXwivx/aTeDXhbAK/L/pd0MelkAr8j/l3Yz6GUBvCL/X9rNoJcF8Ir8f2k3g14WwCvy/6XdDHpZAK/I/5d2M+hlAbwi/1/azaCXBfCK/H9pN4NeFsAr8v+l3Qx6WQCvyP+XdjPoZQG8Iv9f2s2glwXwivx/aTeDXhbAK/L/pd0MelkAr8j/l3Yz6GUBvCL/X9rNoJcF8Ir8f2k3g14WwCvy/6XdDHpZAK/I/5d2M+hlAbwi/1/azaCXBfCK/H9pN4NeFsAr8v+l3Qx6WQCvyP+XdjPoZQG8Iv9f2s2glwXwivx/aTeDXhbAK/L/pd0MelkAr8j/l3Yz6GUBvCL/X9rNoJcF8Ir8f2k3g14WwCvy/6XdDHpZAK/I/5d2M+hlAbwi/1/azaCXBfCK/H9pN4NeFsAr8v+l3Qx6WQCvyP+XdjPoZQG8Iv9f2s2glwXwivx/aTeDXhbAK/L/pd0MelkAr8j/l3Yz6GUBvCL/X9rNoJcF8Ir8f2k3g14WwCvy/6XdDHpZAK/I/5d2M+hlAbwi/1/azaCXBfCK/H9pN4NeFsAr8v+l3Qx6WQCvyP+XdjPoZQG8Iv9f2s2glwXwivx/aTeDXhbAK/L/pd0MelkAr8j/l3Yz6GUBvCL/X9rNoJcF8Ir8f2k3g14WwCvy/6XdDHpZAK/I/5d2M+hlAbwi/1/azaCXBfCK/H9pN4NeFsAr8v+l3Qx6WQCvyP+XdjPoZQG8Iv9f2s2glwXwivx/aTeDXhbAK/L/pd0MelkAr8j/l3Yz6GUBvCL/X9rNoJcF8Ir8f2k3g14WwCvy/6XdDHpZAK/I/5d2M+hlAbwi/1/azaCXBfCK/H9pN4NeFsAr8v+l3Qx6WQCvyP+XdjPoZQG8Iv9f2s2glwXwivx/aTeDXhbAK/L/pd0MelkAr8j/l3Yz6GUBvCL/X9rNoJcF8Ir8f2k3g14WwCvy/6XdDHpZAK/I/5d2M+hlAbwi/1/azaCXBfCK/H9pN4NeFsAr8v+l3Qx6WQCvyP+XdjPoZQG8Iv9f2s2glwXwivx/aTeDXhbAK/L/pd0MelkAr8j/l3Yz6GUBvCL/X9rNoJcF8Ir8f2k3g14WwCvy/6XdDHpZAK/I/5d2M+hlAbwi/1/azaCXBfCK/H9pN4NeFsAr8v+l3X55IODIB6PdgDuDDoMcFO0G3Bl0GOSgaDfgzqDDIAdFuwF3Bh0GOSjaDbgz6DDIQdFuwJ1Bh0EOinYD7gw6DHJQtBtwZ9BhkIOi3YA7gw6DHBTtBtwZdBjkoGg34M6gwyAHRbsBdwYdBjko2g24M+gwyEHRbsCdQYdBDop2A+4MOgxyULQbcGfQYZCDot2AO4MOgxwU7QbcGXQY5KBoN+DOoMMgB0W7AXcGHQY5KNoNuDPoMMhB0W7AnUGHQQ6KdgPuDDoMclC0G3Bn0GGQg6LdgDuDDoMcFO0G3Bl0GOSgaDfgzqDDIAdFuwF3Bh0GOSjaDbgz6DDIQdFuwJ1Bh0EOinYD7gw6DHJQtBtwZ9BhkIOi3YA7gw6DHBTtBtwZdBjkoGg34M6gwyAHRbsBdwYdBjko2g24M+gwyEHRbsCdQYdBDop2A+4MOgxyULQbcGfQYZCDot2AO4MOgxwU7QbcGXQY5KBoN+DOoMMgB0W7AXcGHQY5KNoNuDPoMMhB0W7AnUGHQQ6KdgPuDDoMclC0G3Bn0GGQg6LdgDuDDoMcFO0G3Bl0GOSgaDfgzqDDIAdFuwF3Bh0GOSjaDbgz6DDIQdFuwJ1Bh0EOinYD7gw6DHJQtBtwZ9BhkIOi3YA7gw6DHBTtBtwZdBjkoGg34M6gwyAHRbsBdwYdBjko2g24M+gwyEHRbsCdQYdBDop2A+4MOgxyULQbcGfQYZCDot2AO4MOgxwU7QbcGXQY5KBoN+DOoMMgB0W7AXcGHQY5KNoNuDPoMMhB0W7AnUGHQQ6KdgPuDDoMclC0G3Bn0GGQg6LdgDuDDoMcFO0G3Bl0GOSgaDfgzqDDIAdFuwF3Bh0GOSjaDbgz6DDIQdFuwJ1Bh0EOinYD7gw6DHJQtBtwZ9BhkIOi3YA7gw6DHBTtBtwZdBjkoGg34M6gwyAHRbsBdwYdBjko2g24M+gwyEHRbsCdQYdBDop2A+4MOgxyULQbcGfQYZCDot2AO4MOgxwU7QbcGXQY5KBoN+DOoMMgB0W7AXcGHQY5KNoNuDPoMMhB0W7AnUGHQQ6KdgPuDDoMclC0G3Bn0GGQg6LdgDuDDoMcFO0G3Bl0GOSgaDfgzqDDIAdFuwF3v3wwkk50yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdDLo0RJe8j6STQZeG6JL3kXQy6NIQXfI+kk4GXRqiS95H0smgS0N0yftIOhl0aYgueR9JJ4MuDdEl7yPpZNClIbrkfSSdfvlgAID3GHQA+ACDDgAfYNAB4AMMOgB8gEEHgA8w6ADwAQYdAD7AoAPABxh0APgAgw4AH2DQAeADDDoAfIBBB4APMOgA8AEGHQA+wKADwAcYdAD4AIMOAB9g0AHgAww6AHyAQQeADzDoAPABBh0APsCgA8AHGHQA+ACDDgAfYNAB4AMMOgB8gEEHgA8w6ADwAQYdAD7AoAPABxh0APgAgw4AH2DQAeADDDoAfIBBB4APMOgA8AEGHQA+wKADwAcYdAD4AIMOAB9g0AHgAww6AHyAQQeADzDoAPABBh0APsCgA8AHGHQA+ACDDgAfYNAB4AMMOgB8gEEHgA8w6ADwAQYdAD7AoAPABxh0APgAgw4AH2DQAeADDDoAfIBBB4APMOgA8AEGHQA+wKADwAcYdAD4AIMOAB9g0AHgAww6AHyAQQeADzDoAPABBh0APsCgA8AHGHQA+ACDDgAfYNAB4AMMOgB8gEEHgA8w6ADwAQYdAD7AoAPABxh0APgAgw4AH2DQAeADDDoAfIBBB4APMOgA8AEGHQA+wKADwAcYdAD4AIMOAB9g0AHgAww6AHyAQQeADzDoAPABBh0APsCgA8AHGHQA+ACDDgAfYNAB4AP+AaqGOFHzbxeAAAAAAElFTkSuQmCC",
"globalPortalIdpBaseUrl" : "https://accounts.google.com/",
"globalPortalIdpClientId" : "301579155781-5ejip8vaa08aqi2nnnrm6rvf7e28u2hq.apps.googleusercontent.com",
"globalPortalIdpClientSecret" : "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\n",
"globalPortalIdpScope" : "openid profile email",
"globalPortalIdpType" : "google",
"logo" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0CAYAAADL1t+KAAAO1UlEQVR4Xu3Vsa1FVw4DwF/3FuKq3NNzSIDCxtK5mGASpoTEv9/v9wcAvG0EAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7RgAAvGcEAMB7/v793z8/AOBtBh0APsCgA8AHGHQA+ACDDgAfYNAB4AMMOgB8gEEHgA8w6ADwAQYdAD7AoAPABxh0APgAgw4AH2DQAeADDDoAfIBBB4APMOgA8AEGHQA+wKADwAcYdAD4AIMOAB9g0AHgAww6AHyAQQeADzDoAPABBh0APsCgA8AHGHQA+ACDDgAfYNAB4AMMOgB8gEEHgA8w6ADwAQYdAD7AoAPABxh0APgAgw4AH2DQAeADDDoAfIBBB4APMOgA8AEGHQA+wKADwAcYdAD4AIMOAB9g0AHgAww6AHyAQQeADzDoAPABBh0APsCgA8AHGHQA+ACDDgAfYNAB4AMMOgB8gEEHgA8w6ADwAQYdAD7AoAPABxh0APgAgw4AH2DQAeADDDoAfIBBB4APMOgA8AEGHQA+wKADwAcYdAD4AIMOAB9g0AHgAww6AHyAQQeADzDoAPABBh0APsCgA8AHGHQA+ACDDgAfYNAB4AMMOgB8gEEHgA8w6ADwAQYdAD7AoAPABxh0APgAgw4AH2DQAeADDDoAfIBBB4APMOgA8AEGHQA+wKADwAcYdAD4AIMOAB9g0AHgAww6AHyAQQeADzDoAPABBh0APsCgA8AHGHQA+IC/3w/4f/pg2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9ADECIHpQ2NX9AOFhHdMFAVzV/4tdCjmmDwbgqv5f7FLIMX0wAFf1/2KXQo7pgwG4qv8XuxRyTB8MwFX9v9ilkGP6YACu6v/FLoUc0wcDcFX/L3Yp5Jg+GICr+n+xSyHH9MEAXNX/i10KOaYPBuCq/l/sUsgxfTAAV/X/YpdCjumDAbiq/xe7FHJMHwzAVf2/2KWQY/pgAK7q/8UuhRzTBwNwVf8vdinkmD4YgKv6f7FLIcf0wQBc1f+LXQo5pg8G4Kr+X+xSyDF9MABX9f9il0KO6YMBuKr/F7sUckwfDMBV/b/YpZBj+mAArur/xS6FHNMHA3BV/y92KeSYPhiAq/p/sUshx/TBAFzV/4tdCjmmDwbgqv5f7FLIMX0wAFf1/2KXQo7pgwG4qv8XuxRyTB8MwFX9v9ilkGP6YACu6v/FLoUc0wcDcFX/L3Yp5Jg+GICr+n+xSyHH9MEAXNX/i10KOaYPBuCq/l/sUsgxfTAAV/X/YpdCjumDAbiq/xe7FHJMHwzAVf2/2KWQY/pgAK7q/8UuhRzTBwNwVf8vdinkmD4YgKv6f7FLIcf0wQBc1f+LXQo5pg8G4Kr+X+xSyDF9MABX9f9il0KO6YMBuKr/F7sUckwfDMBV/b/YpZBj+mAArur/xS6FHNMHA3BV/y92KeSYPhiAq/p/sUshx/TBAFzV/4tdCjmmDwbgqv5f7FLIMX0wAFf1/2KXQo7pgwG4qv8XuxRyTB8MwFX9v9ilkGP6YACu6v/FLoUc0wcDcFX/L3Yp5Jg+GICr+n+xSyHH9MEAXNX/i10KOaYPBuCq/l/sUsgxfTAAV/X/YpdCjumDAbiq/xe7FHJMHwzAVf2/2KWQY/pgAK7q/8UuhRzTBwNwVf8vdinkmD4YgKv6f7FLIcf0wQBc1f+LXQo5pg8G4Kr+X+xSyDF9MABX9f9il0KO6YMBuKr/F7sUckwfDMBV/b/YpZBj+mAArur/xS6FHNMHA3BV/y92KeSYPhiAq/p/sUshx/TBAFzV/4tdCjmmDwbgqv5f7FLIMX0wAFf1/2KXQo7pgwG4qv8XuxRyTB8MwFX9v9ilkGP6YACu6v/FLoUc0wcDcFX/L3Yp5Jg+GICr+n+xSyHH9MEAXNX/i10KOaYPBuCq/l/sUsgxfTAAV/X/YpdCjumDAbiq/xe7FHJMHwzAVf2/2KWQY/pgAK7q/8UuhRzTBwNwVf8vdinkmD4YgKv6f7FLIcf0wQBc1f+LXQo5pg8G4Kr+X+xSyDF9MABX9f9il0KO6YMBuKr/F7sUckwfDMBV/b/YpZBj+mAArur/xS6FHNMHA3BV/y92KeSYPhiAq/p/sUshx/TBAFzV/4tdCjmmDwbgqv5f7FLIMX0wAFf1/2KXQo7pgwG4qv8Xu0ZBQPTBsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AWIEQPSgsKv7AeI/Lro1eQ0bUVoAAAAASUVORK5CYII=",
"memberRoleName" : {
"en" : "Member",
"fr" : "Membre"
},
"organizationNameTemplates" : {
"en" : "{{creatorUser.firstName}}'s organization",
"fr" : "Organisation de {{creatorUser.firstName}}"
},
"phoneNotificationTemplates" : { },
"portalIdpBaseUrl" : "https://accounts.google.com/",
"portalIdpClientId" : "301579155781-5ejip8vaa08aqi2nnnrm6rvf7e28u2hq.apps.googleusercontent.com",
"portalIdpClientSecret" : "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\n",
"portalIdpScope" : "openid profile email",
"portalIdpType" : "google",
"signatureTextTemplate" : "Signed by {{signerName}} on {{signatureDate}}",
"signerIdpBaseUrl" : "https://accounts.google.com/",
"signerIdpClientId" : "301579155781-5ejip8vaa08aqi2nnnrm6rvf7e28u2hq.apps.googleusercontent.com",
"signerIdpClientSecret" : "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\n",
"signerIdpScope" : "openid profile email",
"signerIdpType" : "google",
"spaceNameTemplates" : {
"en" : "{{creatorUser.firstName}}'s space",
"fr" : "Espace de {{creatorUser.firstName}}"
},
"whatsappNotificationTemplates" : { }
}
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
adminRoleName optional |
Object |
The localized admin role name for new organizations. |
appName optional |
String |
The name of the application. |
createUserOnAuthentication optional |
Boolean |
Whether a user who authenticates on the portal should be automatically created. |
defaultDocumentServiceSecretKey optional |
String |
The secret key of the default Document Service. |
defaultDocumentServiceSecretKeySalt optional |
ByteArray |
The secret key salt of the default Document Service. |
defaultDocumentServiceSecretKeyVerifier optional |
ByteArray |
The secret key verifier of the default Document Service. |
defaultDocumentServiceUrl optional |
URI |
The URL of the default Document Service. |
documentMaxSize optional |
Number |
The maximum size of the workflow documents. |
emailNotificationTemplates optional |
Object |
The localized email templates for each type of notification. |
favicon optional |
String |
The URL or the data URI of the favicon. |
faviconResource optional |
String |
The favicon resource. |
globalPortalIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the global users. Possible values: adfs, azure, dgsn, google, keycloak. |
googleAnalyticsMeasurementId optional |
String |
The Google Analytics 4 measurement ID. |
logo optional |
String |
The URL or the data URI of the logo. |
logoResource optional |
String |
The logo resource. |
memberRoleName optional |
Object |
The localized member role name for new organizations. |
organizationNameTemplates optional |
Object |
The localized organization name templates for new users. |
phoneNotificationTemplates optional |
Object |
The localized SMS templates for each type of notification. |
portalIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the portal users. Possible values: adfs, azure, dgsn, google, keycloak. |
signatureTextTemplate optional |
String |
The template of the text to be added to the visible signature fields. The template may contain the {{signerName}} and {{signatureDate}} tags to be replaced before signature. |
signerIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the signers. |
signerIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the signers. |
signerIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the signers. |
signerIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the signers. |
signerIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the signers. Possible values: adfs, azure, dgsn, google, keycloak. |
spaceNameTemplates optional |
Object |
The localized space name templates for new users. |
whatsappNotificationTemplates optional |
Object |
The localized WhatsApp message templates for each type of notification. |
HTTP response #
HTTP/1.1 200 OK
{
"adminRoleName" : {
"en" : "Administrator",
"fr" : "Administrateur"
},
"appName" : "Toosign.com",
"documentMaxSize" : 20971520,
"emailNotificationTemplates" : {
"approverApproved" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>An approver has just approved</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n An approver has just approved.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has just approved the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "An approver has just approved"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un approbateur vient d'approuver</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un approbateur vient d'approuver.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} vient d'approuver le(s)\n document(s) du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un approbateur vient d'approuver"
}
},
"approverRefused" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>An approver has refused to approve</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n An approver has refused to approve.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has refused to approve the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "An approver has refused to approve"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un approbateur a refusé d'approuver</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un approbateur a refusé d'approuver.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} a refusé d'approuver le(s)\n document(s) du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un approbateur a refusé d'approuver"
}
},
"signerOtpCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Authentication code</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Authentication code\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Your authentication code required to sign the workflow \"{{workflow.shortName}}\" is: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{otp}}</strong>. This code will expire in {{timeoutMinutes}} minutes.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Authentication code"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Code d'authentification</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Code d'authentification\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Votre code d'authentification requis pour signer le workflow\n \"{{workflow.shortName}}\" est : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{otp}}</strong>.\n Ce code expirera dans {{timeoutMinutes}} minutes.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Code d'authentification"
}
},
"signerRefused" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A signer has refused to sign</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background-color: #2e71b1; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A signer has refused to sign.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has refused to sign the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A signer has refused to sign"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un signataire a refusé de signer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background-color: #2e71b1; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un signataire a refusé de signer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} a refusé de signer le(s)\n document(s) du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un signataire a refusé de signer"
}
},
"signerSigned" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A signer has just signed</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A signer has just signed.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{approver.firstName}} {{approver.lastName}} has just signed the\n document(s) of the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A signer has just signed"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un signataire vient de signer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un signataire vient de signer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{signer.firstName}} {{signer.lastName}} vient de signer le(s) document(s)\n du workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un signataire vient de signer"
}
},
"userInvitationCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>You are invited to join Toosign.com</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are invited to join Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Someone has just sent you an invitation to join Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Join Toosign.com\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "You are invited to join Toosign.com"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Vous êtes invité à rejoindre Toosign.com</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Vous êtes invité à rejoindre Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Un utilisateur vient de vous envoyer une invitation à rejoindre Toosign.com.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Rejoindre Toosign.com\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Vous êtes invité à rejoindre Toosign.com"
}
},
"workflowFinished" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A workflow was just finished</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A workflow was just finished.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n The following workflow was just finished: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow was just finished"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un workflow vient de se terminer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un workflow vient de se terminer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Le workflow suivant vient de se terminer : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un workflow vient de se terminer"
}
},
"workflowFinishedWithDownloadLink" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A workflow was just finished</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A workflow was just finished.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n The following workflow was just finished: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Download the signed document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow was just finished"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un workflow vient de se terminer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un workflow vient de se terminer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Le workflow suivant vient de se terminer : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Téléchargez le(s) document(s) signé(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un workflow vient de se terminer"
}
},
"workflowInvitationCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n has just sent you\n {{#if notification.signer}}a signature{{else}}an approval{{/if}}\n request for the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n vient de vous envoyer une demande\n {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}\n pour le workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le(s) document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents"
}
},
"workflowInvitationReminderCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Reminder: You have not {{#if notification.signer}}\n signed{{else}}approved{{/if}} some documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n sent you\n {{#if notification.signer}}a signature{{else}}an approval{{/if}}\n request for the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Reminder: You have not {{#if notification.signer}}\n signed{{else}}approved{{/if}} some documents"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Rappel : Vous n'avez pas {{#if notification.signer}}\n signé{{else}}approuvé{{/if}} des documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Vous êtes invité à {{#if notification.signer}}\n signer{{else}}approuver{{/if}} des documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n vous a envoyé une demande\n {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}\n pour le workflow suivant : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le(s) document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Rappel : Vous n'avez pas {{#if notification.signer}}\n signé{{else}}approuvé{{/if}} des documents"
}
},
"workflowStarted" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>A workflow was just started</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n A workflow was just started.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n The following workflow was just started: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "A workflow was just started"
},
"fr" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>Un workflow vient de démarrer</title>\n\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n Un workflow vient de démarrer.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Le workflow suivant vient de démarrer : <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n {{#if notification.linkUrl}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Consulter le workflow\n </a>\n </td>\n </tr>\n {{/if}}\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Merci d'avoir choisi Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">\n Vous rencontrez des difficultés pour accéder au lien contenu dans cet email ?</strong><br/>\n Collez l'URL suivante dans votre navigateur Web:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>",
"subject" : "Un workflow vient de démarrer"
}
}
},
"faviconResource" : "rsOQQNVflZJJ88",
"globalPortalIdpBaseUrl" : "https://accounts.google.com/",
"globalPortalIdpClientId" : "301579155781-5ejip8vaa08aqi2nnnrm6rvf7e28u2hq.apps.googleusercontent.com",
"globalPortalIdpClientSecret" : "",
"globalPortalIdpScope" : "openid profile email",
"globalPortalIdpType" : "google",
"googleAnalyticsMeasurementId" : "G-PQGM5GVH8V",
"logoResource" : "rsINbSeZzEIgRy",
"memberRoleName" : {
"en" : "Member",
"fr" : "Membre"
},
"organizationNameTemplates" : {
"en" : "{{creatorUser.firstName}}'s organization",
"fr" : "Organisation de {{creatorUser.firstName}}"
},
"phoneNotificationTemplates" : {
"signerOtpCreated" : {
"en" : "Your authentication code required to sign the workflow \"{{workflow.shortName}}\" is: {{otp}}.\nThis code will expire in {{timeoutMinutes}} minutes.",
"fr" : "Votre code d'authentification requis pour signer le workflow \"{{workflow.shortName}}\" est : {{otp}}.\nCe code expirera dans {{timeoutMinutes}} minutes."
},
"workflowFinishedWithDownloadLink" : {
"en" : "The following workflow was just finished: {{workflow.shortName}}.\nDownload the signed document(s): {{notification.linkUrl}}",
"fr" : "Le workflow suivant vient de se terminer : {{workflow.shortName}}.\nTéléchargez le(s) document(s) signé(s) : {{notification.linkUrl}}"
},
"workflowInvitationCreated" : {
"en" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} has just sent you {{#if notification.signer}}a signature{{else}}an approval{{/if}} request for the following workflow: {{workflow.shortName}}.\n{{notification.linkUrl}}",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vient de vous envoyer une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}} pour le workflow suivant : {{workflow.shortName}}.\n{{notification.linkUrl}}"
},
"workflowInvitationReminderCreated" : {
"en" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} sent you {{#if notification.signer}}a signature{{else}}an approval{{/if}} request for the following workflow: {{workflow.shortName}}.\n{{notification.linkUrl}}",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vous a envoyé une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}} pour le workflow suivant : {{workflow.shortName}}.\n{{notification.linkUrl}}"
}
},
"portalIdpBaseUrl" : "https://accounts.google.com/",
"portalIdpClientId" : "301579155781-5ejip8vaa08aqi2nnnrm6rvf7e28u2hq.apps.googleusercontent.com",
"portalIdpClientSecret" : "",
"portalIdpScope" : "openid profile email",
"portalIdpType" : "google",
"signatureTextTemplate" : "Signed by {{signerName}} on {{signatureDate}}",
"signerIdpBaseUrl" : "https://accounts.google.com/",
"signerIdpClientId" : "301579155781-5ejip8vaa08aqi2nnnrm6rvf7e28u2hq.apps.googleusercontent.com",
"signerIdpClientSecret" : "",
"signerIdpScope" : "openid profile email",
"signerIdpType" : "google",
"spaceNameTemplates" : {
"en" : "{{creatorUser.firstName}}'s space",
"fr" : "Espace de {{creatorUser.firstName}}"
},
"whatsappNotificationTemplates" : {
"signerOtpCreated" : {
"en" : "*{{otp}}* is your verification code. For your security, do not share this code.",
"fr" : "Votre code de vérification est *{{otp}}*. Pour votre sécurité, ne le partagez pas."
},
"workflowFinishedWithDownloadLink" : {
"en" : "A workflow was just finished. Download the signed document(s): {{notification.linkUrl}}",
"fr" : "Un workflow vient de se terminer. Téléchargez le(s) document(s) signé(s) : {{notification.linkUrl}}"
},
"workflowInvitationCreated" : {
"en" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} has just sent you {{#if notification.signer}}a signature{{else}}an approval{{/if}} request.\n{{notification.linkUrl}}",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vient de vous envoyer une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}.\n{{notification.linkUrl}}"
},
"workflowInvitationReminderCreated" : {
"en" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} sent you {{#if notification.signer}}a signature{{else}}an approval{{/if}} request.\n{{notification.linkUrl}}",
"fr" : "{{#if createdByUser}}{{createdByUser.shortName}}{{else if createdByApiToken}}{{createdByApiToken.shortName}}{{/if}} vous a envoyé une demande {{#if notification.signer}}de signature{{else}}d'approbation{{/if}}.\n{{notification.linkUrl}}"
}
}
}
Fields: #
| Path |
Type |
Description |
adminRoleName optional |
Object |
The localized admin role name for new organizations. |
appName optional |
String |
The name of the application. |
createUserOnAuthentication optional |
Boolean |
Whether a user who authenticates on the portal should be automatically created. |
defaultDocumentServiceSecretKey optional |
String |
The secret key of the default Document Service. |
defaultDocumentServiceSecretKeySalt optional |
ByteArray |
The secret key salt of the default Document Service. |
defaultDocumentServiceSecretKeyVerifier optional |
ByteArray |
The secret key verifier of the default Document Service. |
defaultDocumentServiceUrl optional |
URI |
The URL of the default Document Service. |
documentMaxSize optional |
Number |
The maximum size of the workflow documents. |
emailNotificationTemplates optional |
Object |
The localized email templates for each type of notification. |
favicon optional |
String |
The URL or the data URI of the favicon. |
faviconResource optional |
String |
The favicon resource. |
globalPortalIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the global users. |
globalPortalIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the global users. Possible values: adfs, azure, dgsn, google, keycloak. |
googleAnalyticsMeasurementId optional |
String |
The Google Analytics 4 measurement ID. |
logo optional |
String |
The URL or the data URI of the logo. |
logoResource optional |
String |
The logo resource. |
memberRoleName optional |
Object |
The localized member role name for new organizations. |
organizationNameTemplates optional |
Object |
The localized organization name templates for new users. |
phoneNotificationTemplates optional |
Object |
The localized SMS templates for each type of notification. |
portalIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the portal users. |
portalIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the portal users. Possible values: adfs, azure, dgsn, google, keycloak. |
signatureTextTemplate optional |
String |
The template of the text to be added to the visible signature fields. The template may contain the {{signerName}} and {{signatureDate}} tags to be replaced before signature. |
signerIdpBaseUrl optional |
URI |
The base URL of the OpenID Connect identity provider used to authenticate the signers. |
signerIdpClientId optional |
String |
The client ID provided by the OpenID Connect identity provider used to authenticate the signers. |
signerIdpClientSecret optional |
String |
The client secret provided by the OpenID Connect identity provider used to authenticate the signers. |
signerIdpScope optional |
String |
The authorization scope of the OpenID Connect identity provider used to authenticate the signers. |
signerIdpType optional |
String |
The type of OpenID Connect identity provider used to authenticate the signers. Possible values: adfs, azure, dgsn, google, keycloak. |
spaceNameTemplates optional |
Object |
The localized space name templates for new users. |
whatsappNotificationTemplates optional |
Object |
The localized WhatsApp message templates for each type of notification. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Organization configuration #
An organization configuration is used to customize an organization.
Retrieve organization configuration #
Retrieve the configuration of an organization.
HTTP request #
GET /api/organizations/og4hooJWKGw1L1/configuration HTTP/1.1
Path: #
/api/organizations/{organization}/configuration
| Parameter |
Description |
organization |
The organization. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"documentServiceSecretKey" : "",
"documentServiceSecretKeySalt" : "",
"documentServiceSecretKeyVerifier" : "",
"documentServiceUrl" : "https://document.ankunding24638.acme.com/",
"emailNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n has just sent you\n {{#if notification.signer}}a signature{{else}}an approval{{/if}}\n request for the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "You are requested to sign some documents."
}
}
},
"phoneNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents."
}
},
"whatsappNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents."
}
}
}
Fields: #
| Path |
Type |
Description |
documentServiceSecretKey optional |
String |
The secret to use to configure the Document Service. |
documentServiceSecretKeySalt optional |
ByteArray |
The secret key salt of the Document Service. |
documentServiceSecretKeyVerifier optional |
ByteArray |
The secret key verifier of the Document Service. |
documentServiceSourceIpRanges optional |
String[] |
The public IP ranges the Document Service sends requests from. |
documentServiceUrl optional |
URI |
The public URL of the Document Service. |
emailNotificationTemplates optional |
Object |
The localized email templates for each type of notification. |
phoneNotificationTemplates optional |
Object |
The localized SMS templates for each type of notification. |
whatsappNotificationTemplates optional |
Object |
The localized WhatsApp message templates for each type of notification. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Update organization configuration #
Update the configuration of an organization.
HTTP request #
PUT /api/organizations/og4hooJWKGw1L1/configuration HTTP/1.1
{
"documentServiceSourceIpRanges" : [ "114.88.219.126/32" ],
"documentServiceUrl" : "https://document.ritchie4946.acme.com/",
"emailNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : {
"subject" : "You are requested to sign some documents.",
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n has just sent you\n {{#if notification.signer}}a signature{{else}}an approval{{/if}}\n request for the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>\n"
}
}
},
"phoneNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents."
}
},
"whatsappNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents."
}
}
}
Path: #
/api/organizations/{organization}/configuration
| Parameter |
Description |
organization |
The organization. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
documentServiceSecretKey optional |
String |
The secret to use to configure the Document Service. |
documentServiceSecretKeySalt optional |
ByteArray |
The secret key salt of the Document Service. |
documentServiceSecretKeyVerifier optional |
ByteArray |
The secret key verifier of the Document Service. |
documentServiceSourceIpRanges optional |
String[] |
The public IP ranges the Document Service sends requests from. |
documentServiceUrl optional |
URI |
The public URL of the Document Service. |
emailNotificationTemplates optional |
Object |
The localized email templates for each type of notification. |
phoneNotificationTemplates optional |
Object |
The localized SMS templates for each type of notification. |
whatsappNotificationTemplates optional |
Object |
The localized WhatsApp message templates for each type of notification. |
HTTP response #
HTTP/1.1 200 OK
{
"documentServiceSecretKey" : "",
"documentServiceSecretKeySalt" : "",
"documentServiceSecretKeyVerifier" : "",
"documentServiceSourceIpRanges" : [ "114.88.219.126/32" ],
"documentServiceUrl" : "https://document.ritchie4946.acme.com/",
"emailNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n has just sent you\n {{#if notification.signer}}a signature{{else}}an approval{{/if}}\n request for the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "You are requested to sign some documents."
}
}
},
"phoneNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents."
}
},
"whatsappNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents."
}
}
}
Fields: #
| Path |
Type |
Description |
documentServiceSecretKey optional |
String |
The secret to use to configure the Document Service. |
documentServiceSecretKeySalt optional |
ByteArray |
The secret key salt of the Document Service. |
documentServiceSecretKeyVerifier optional |
ByteArray |
The secret key verifier of the Document Service. |
documentServiceSourceIpRanges optional |
String[] |
The public IP ranges the Document Service sends requests from. |
documentServiceUrl optional |
URI |
The public URL of the Document Service. |
emailNotificationTemplates optional |
Object |
The localized email templates for each type of notification. |
phoneNotificationTemplates optional |
Object |
The localized SMS templates for each type of notification. |
whatsappNotificationTemplates optional |
Object |
The localized WhatsApp message templates for each type of notification. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Renew Document Service secret key #
Renew the Document Service secret of an organization.
HTTP request #
POST /api/organizations/ogL5mHipKeqJqr/configuration/documentServiceSecretKey HTTP/1.1
Path: #
/api/organizations/{organization}/configuration/documentServiceSecretKey
| Parameter |
Description |
organization |
The organization. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"documentServiceSecretKey" : "8QFzvgRQzTE6W9uQOrjSbBkpiJRnBhpzE0fjkYdgd8",
"documentServiceSecretKeySalt" : "",
"documentServiceSecretKeyVerifier" : "",
"documentServiceSourceIpRanges" : [ "179.35.235.248/32" ],
"documentServiceUrl" : "https://document.crona61959.acme.com/",
"emailNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n has just sent you\n {{#if notification.signer}}a signature{{else}}an approval{{/if}}\n request for the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "You are requested to sign some documents."
}
}
},
"phoneNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents."
}
},
"whatsappNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents."
}
}
}
Fields: #
| Path |
Type |
Description |
documentServiceSecretKey optional |
String |
The secret to use to configure the Document Service. |
documentServiceSecretKeySalt optional |
ByteArray |
The secret key salt of the Document Service. |
documentServiceSecretKeyVerifier optional |
ByteArray |
The secret key verifier of the Document Service. |
documentServiceSourceIpRanges optional |
String[] |
The public IP ranges the Document Service sends requests from. |
documentServiceUrl optional |
URI |
The public URL of the Document Service. |
emailNotificationTemplates optional |
Object |
The localized email templates for each type of notification. |
phoneNotificationTemplates optional |
Object |
The localized SMS templates for each type of notification. |
whatsappNotificationTemplates optional |
Object |
The localized WhatsApp message templates for each type of notification. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Delete Document Service secret key #
Delete Document Service secret of an organization.
HTTP request #
DELETE /api/organizations/ogM5CR9HC1T5js/configuration/documentServiceSecretKey HTTP/1.1
Path: #
/api/organizations/{organization}/configuration/documentServiceSecretKey
| Parameter |
Description |
organization |
The organization. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"documentServiceSourceIpRanges" : [ "20.246.211.155/32" ],
"documentServiceUrl" : "https://document.lindgren3638.acme.com/",
"emailNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : {
"content" : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n style=\"font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n<head>\n <meta name=\"viewport\" content=\"width=device-width\"/>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n\n <title>You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents</title>\n\n <style type=\"text/css\">\n img {\n max-width: 100%;\n }\n\n body {\n -webkit-font-smoothing: antialiased;\n -webkit-text-size-adjust: none;\n width: 100% !important;\n height: 100%;\n line-height: 1.6em;\n background-color: #f2f2f2;\n }\n\n @media only screen and (max-width: 640px) {\n body {\n padding: 0 !important;\n }\n\n .container {\n padding: 0 !important;\n width: 100% !important;\n }\n\n .content {\n padding: 0 !important;\n }\n\n .content-wrap {\n padding: 10px !important;\n }\n }\n </style>\n</head>\n\n<body itemscope itemtype=\"http://schema.org/EmailMessage\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f2f2f2; margin: 0;\"\n bgcolor=\"#f2f2f2\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n <td class=\"container\" width=\"600\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;\"\n valign=\"top\">\n <div class=\"content\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;\">\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 0;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 10px; line-height: 1.6em;\"\n align=\"center\" valign=\"top\">\n <a href=\"https://toosign.com\" target=\"_blank\">\n <img height=\"auto\" src=\"cid:logo\"\n style=\"border: 0; outline: none; text-decoration: none; height: auto; width: 125px; font-size: 13px;\"\n width=\"125\"/>\n </a>\n </td>\n </tr>\n </table>\n </div>\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 8px; background-color: #fff; margin: 0; border: 1px solid #e0e0e0;\"\n bgcolor=\"#fff\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; color: #fff; font-weight: 500; text-align: center; border-radius: 8px 8px 0 0; background: linear-gradient(to right, #2e71b1, #3299bb); margin: 0; padding: 20px;\"\n align=\"center\" bgcolor=\"#1d6cb9\" valign=\"top\">\n You are requested to {{#if notification.signer}}\n sign{{else}}approve{{/if}} some documents.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td class=\"content-wrap\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;\"\n valign=\"top\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n {{#if createdByUser}}\n {{createdByUser.shortName}}\n {{else if createdByApiToken}}\n {{createdByApiToken.shortName}}\n {{/if}}\n has just sent you\n {{#if notification.signer}}a signature{{else}}an approval{{/if}}\n request for the following workflow: <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">{{workflow.shortName}}</strong>.\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px; text-align: center;\"\n valign=\"top\">\n <a href=\"{{{notification.linkUrl}}}\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 15px; color: #FFF; text-decoration: none; line-height: 2em; text-align: center; cursor: pointer; display: inline-block; border-radius: 6px; background-color: #7772f2; margin: 0; border-color: #7772f2; border-style: solid; border-width: 12px 20px;\">\n Review the document(s)\n </a>\n </td>\n </tr>\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;\"\n valign=\"top\">\n Thanks for choosing Toosign.com.\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n {{#if notification.linkUrl}}\n <div\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #606970; margin: 0; padding: 10px 20px;\">\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <tr style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;\">\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #606970; text-align: center; margin: 0; padding: 0 0 20px; line-height: 1.6em; word-break: break-word;\"\n align=\"center\" valign=\"top\">\n <strong\n style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; margin: 0;\">Having\n trouble accessing the link in this email?</strong><br/>\n Paste the following URL into your web browser:<br/>\n {{notification.linkUrl}}\n </td>\n </tr>\n </table>\n </div>\n {{/if}}\n </div>\n </td>\n <td style=\"font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;\"\n valign=\"top\"></td>\n </tr>\n</table>\n</body>\n</html>\n",
"subject" : "You are requested to sign some documents."
}
}
},
"phoneNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents."
}
},
"whatsappNotificationTemplates" : {
"workflowInvitationCreated" : {
"en" : "You are requested to sign some documents."
}
}
}
Fields: #
| Path |
Type |
Description |
documentServiceSecretKey optional |
String |
The secret to use to configure the Document Service. |
documentServiceSecretKeySalt optional |
ByteArray |
The secret key salt of the Document Service. |
documentServiceSecretKeyVerifier optional |
ByteArray |
The secret key verifier of the Document Service. |
documentServiceSourceIpRanges optional |
String[] |
The public IP ranges the Document Service sends requests from. |
documentServiceUrl optional |
URI |
The public URL of the Document Service. |
emailNotificationTemplates optional |
Object |
The localized email templates for each type of notification. |
phoneNotificationTemplates optional |
Object |
The localized SMS templates for each type of notification. |
whatsappNotificationTemplates optional |
Object |
The localized WhatsApp message templates for each type of notification. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Organizations #
An organization is a set of users and spaces.
New organization #
Create an organization.
HTTP request #
POST /api/organizations HTTP/1.1
{
"shortName" : "Simonis, Jaskolski and Erdman Inc.",
"disabled" : false,
"logo" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0CAYAAADL1t+KAAARIUlEQVR4Xu3VsY3gRhREwY1biSipy2l1HoFHgW4PBkWgHLoPf/rnn3///AL/7+/3wznaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwOBDx0UttoHeDgQ+NBBYat9gIcDgQ8dFLbaB3g4EPjQQWGrfYCHA4EPHRS22gd4OBD40EFhq32AhwMBgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4gEEHgAsYdAC4wM/vLydpIIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9svX6w1YMBOFXfL7ZeP9jqwQCcqu8XW68fbPVgAE7V94ut1w+2ejAAp+r7xdbrB1s9GIBT9f1i6/WDrR4MwKn6frH1+sFWDwbgVH2/2Hr9YKsHA3Cqvl9sGRAAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGHQAuIBBB4ALGPTD/P1+OEf7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW4IcpgfDVvuw1T5stQ9bghymB8NW+7DVPmy1D1uCHKYHw1b7sNU+bLUPW/8BL+8uL57wXMMAAAAASUVORK5CYII="
}
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
disabled |
Boolean |
Whether the Organization is disabled. |
logo optional |
String |
The URL or the data URI of the logo. |
shortName |
String |
The short name of the entity. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862215835,
"disabled" : false,
"id" : "ogHmkEiuHIKCSU",
"logoResource" : "rsGt02OMJL4p64",
"shortName" : "Simonis, Jaskolski and Erdman Inc.",
"updatedOn" : 1718862215835
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
disabled |
Boolean |
Whether the Organization is disabled. |
id |
String |
The ID of the entity. |
logoResource optional |
String |
The logo resource. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Delete organization #
Delete an organization.
HTTP request #
DELETE /api/organizations/ogOh4RiR61A7l6 HTTP/1.1
Path: #
/api/organizations/{organization}
| Parameter |
Description |
organization |
The organization. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 204 No Content
Errors: #
| Status |
Code |
Message |
403 |
EntityInUse |
The entity is being used. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
OrganizationNotFound |
The organization can not be found. |
Retrieve organization #
Retrieve an organization.
HTTP request #
GET /api/organizations/og4hooJWKGw1L1 HTTP/1.1
Path: #
/api/organizations/{organization}
| Parameter |
Description |
organization |
The organization. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862212330,
"disabled" : false,
"id" : "og4hooJWKGw1L1",
"logoResource" : "rs042DmB1ivAs9",
"shortName" : "Russel LLC Inc.",
"updatedOn" : 1718862212474
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
disabled |
Boolean |
Whether the Organization is disabled. |
id |
String |
The ID of the entity. |
logoResource optional |
String |
The logo resource. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
OrganizationNotFound |
The organization can not be found. |
Update organization #
Update an organization.
HTTP request #
PATCH /api/organizations/og3dYBctbk0pX0 HTTP/1.1
{
"shortName" : "Ritchie-Schimmel Inc."
}
Path: #
/api/organizations/{organization}
| Parameter |
Description |
organization |
The organization. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
disabled optional |
Boolean |
Whether the Organization is disabled. |
logo optional |
String |
The URL or the data URI of the logo. |
shortName optional |
String |
The short name of the entity. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862220327,
"disabled" : false,
"id" : "og3dYBctbk0pX0",
"logoResource" : "rsPFdbyfQcgEA0",
"shortName" : "Ritchie-Schimmel Inc.",
"updatedOn" : 1718862220359
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
disabled |
Boolean |
Whether the Organization is disabled. |
id |
String |
The ID of the entity. |
logoResource optional |
String |
The logo resource. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Search organizations #
Search organizations.
HTTP request #
GET /api/organizations?search=Farrell%2C+Blick+and+Greenholt+Inc.&filter=id%3DogTlzlkQK3czcf%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn&maxEntities=25&offset=0 HTTP/1.1
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, createdOn, disabled, shortName, updatedOn. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, createdOn, disabled, shortName, updatedOn. Use the - prefix to sort in descending order. |
maxEntities |
The maximum number of entities in the search result. Maximum is 50. |
offset |
The offset of the first entity in the search result. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"entities" : [ {
"createdOn" : 1718862213764,
"disabled" : false,
"id" : "ogTlzlkQK3czcf",
"logoResource" : "rsM2I24PYWnyVC",
"shortName" : "Farrell, Blick and Greenholt Inc.",
"updatedOn" : 1718862213764
} ],
"offset" : 0,
"totalEntities" : 1
}
Fields: #
| Path |
Type |
Description |
offset |
Number |
The offset of the first entity in the search result. |
totalEntities |
Number |
The total number of entities. |
entities |
Organization[] |
The entities returned in the search result. |
entities[].createdOn |
Number |
The creation date of the entity. |
entities[].disabled |
Boolean |
Whether the Organization is disabled. |
entities[].id |
String |
The ID of the entity. |
entities[].logoResource optional |
String |
The logo resource. |
entities[].shortName |
String |
The short name of the entity. |
entities[].updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Create an export of organizations #
Export organizations.
HTTP request #
POST /api/organizations/exports?search=Russel+LLC+Inc.&filter=id%3Dog4hooJWKGw1L1%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn HTTP/1.1
{
"contentType" : "text/csv",
"beforeEntities" : "",
"afterEntities" : "",
"betweenEntities" : "\n",
"entityTemplate" : "{{id}},{{shortName}}"
}
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, createdOn, disabled, shortName, updatedOn. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, createdOn, disabled, shortName, updatedOn. Use the - prefix to sort in descending order. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
HTTP response #
HTTP/1.1 200 OK
{
"afterEntities" : "",
"beforeEntities" : "",
"betweenEntities" : "\n",
"contentType" : "text/csv",
"createdOn" : 1718862219133,
"currentJobOperation" : "exportEntities",
"entityTemplate" : "{{id}},{{shortName}}",
"exportOperation" : "exportOrganizations",
"id" : "exWydm8ymJZL27",
"organization" : "og4hooJWKGw1L1",
"searchQuery" : "search=Russel+LLC+Inc.&filter=id%3Dog4hooJWKGw1L1%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn",
"updatedOn" : 1718862219133
}
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: exportEntities. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
exportOperation |
String |
The export operation. Possible values: exportApiTokens, exportAuditLogs, exportContacts, exportOrganizations, exportRoles, exportSpaces, exportUsers, exportWorkflows. |
exportSize optional |
Number |
The size in bytes of the export. |
id |
String |
The ID of the entity. |
organization optional |
String |
The organization. |
ownedByUser optional |
String |
The owner user. |
searchQuery |
String |
The search query used to list the exported entities. |
totalEntities optional |
Number |
The total number of entities. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
400 |
InvalidTemplate |
The template could not be parsed. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Download organization logo #
Download the organization logo.
HTTP request #
GET /api/organizations/og4hooJWKGw1L1/logo/rs042DmB1ivAs9 HTTP/1.1
Path: #
/api/organizations/{organization}/logo/{resource}
| Parameter |
Description |
organization |
The organization. |
resource |
The ID of the resource. |
HTTP response #
HTTP/1.1 200 OK
�PNG
���
IHDR������������X����=IDATx^���
A���Z(��@���D���"y���� @�� @�� @�� @�� @�� @�� @�� @�� @�� @�� @�� @�� @�� @�� @�� @������6�۹��������)8��_�W?��"~�_������e~��
�*���O+8��_�W?��"~�_������e~��
�*���O+8��_�W?��"~�_������e~��
�*���O+8��_�W?��"~�_������e~��
�*���O+8��_�W?��"~�_������e~��
�*���O+8��_�W?��"~�_������e~��
�*���O+8��_�W?��"~�_������e~��
�*���O+8��_�W?��"~�_������e~��
�*���O+8��_�W?��"~�_������e~��
�*���O+8��_�W?��"~�_������e~�C�-�@n��u�� ��p ����P�����o8���z](�@B@���~�.p !����v�^
8���mr�_�Hh����ݯׅ$4~[������B�-�@n��u�� ��p ����P�����o8���z](�@B@���~�.p !����v�^
8���mr�_�Hh����ݯׅ$4~[������B�-�@n��u�� ��p ����P�����o8���z](�@B@���~��� @�� @�� @�� @�� @�� @�� @�� @�� @�� @�� @�� @�� @�� @�� @��c����m��d`�@����=�W�-�T�~��N�}�J�~����[ة@������~�@���\U��S����8��*������na���Wp*��U��WpU��N���>�T������>��
��_}����W ��_}�Uu;�߿��Sq߯�߿����v*P����_%P��W�-�T�~��N�}�J�~����[ة@������~�@���\U��S����8��*������na���Wp*��U��WpU��N���>�T������>��
��_}����W ��_}�Uu;�߿��Sq߯�߿����v*P����_%P��W�-�T�~��N�}�J�~����[ة@������~�@���\U��S����8��*������na������x�������IEND�B`�
Errors: #
| Status |
Code |
Message |
404 |
ResourceNotFound |
The resource can not be found. |
Roles #
A role is a set of user permissions.
New role #
Create a role.
HTTP request #
POST /api/roles HTTP/1.1
{
"shortName" : "Pilot #58265",
"organizationPermissions" : [ "createOrganizationInvitationLinks", "readMyAuditLogs", "readOrganizationApiTokens", "readOrganizationAuditLogs", "readOrganizationSpaces", "readOrganizationUsers", "readOrganizationWorkflows", "readWriteOrganization", "readWriteOrganizationApiTokens", "readWriteOrganizationContacts", "readWriteOrganizationRoles", "readWriteOrganizationSpaces", "readWriteOrganizationUsers", "readWriteOrganizationWorkflows" ]
}
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
organization optional |
String |
The organization. |
organizationPermissions |
String[] |
The granted organization permissions. Possible values: createOrganizationInvitationLinks, readMyAuditLogs, readOrganizationApiTokens, readOrganizationAuditLogs, readOrganizationSpaces, readOrganizationUsers, readOrganizationWorkflows, readWriteOrganization, readWriteOrganizationApiTokens, readWriteOrganizationContacts, readWriteOrganizationRoles, readWriteOrganizationSpaces, readWriteOrganizationUsers, readWriteOrganizationWorkflows. |
shortName |
String |
The short name of the entity. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862241873,
"id" : "roELoZGfdtQW2H",
"organization" : "og4hooJWKGw1L1",
"organizationPermissions" : [ "createOrganizationInvitationLinks", "readMyAuditLogs", "readOrganizationApiTokens", "readOrganizationAuditLogs", "readOrganizationSpaces", "readOrganizationUsers", "readOrganizationWorkflows", "readWriteOrganization", "readWriteOrganizationApiTokens", "readWriteOrganizationContacts", "readWriteOrganizationRoles", "readWriteOrganizationSpaces", "readWriteOrganizationUsers", "readWriteOrganizationWorkflows" ],
"shortName" : "Pilot #58265",
"updatedOn" : 1718862241873
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
id |
String |
The ID of the entity. |
organization |
String |
The organization. |
organizationPermissions |
String[] |
The granted organization permissions. Possible values: createOrganizationInvitationLinks, readMyAuditLogs, readOrganizationApiTokens, readOrganizationAuditLogs, readOrganizationSpaces, readOrganizationUsers, readOrganizationWorkflows, readWriteOrganization, readWriteOrganizationApiTokens, readWriteOrganizationContacts, readWriteOrganizationRoles, readWriteOrganizationSpaces, readWriteOrganizationUsers, readWriteOrganizationWorkflows. |
permissionTemplate optional |
String |
The permission template of the role. Possible values: member, admin. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Delete role #
Delete a role.
HTTP request #
DELETE /api/roles/roZVWWvxb1HJfX HTTP/1.1
Path: #
/api/roles/{role}
| Parameter |
Description |
role |
The user role. null if the user is a global user. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 204 No Content
Errors: #
| Status |
Code |
Message |
403 |
EntityInUse |
The entity is being used. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
RoleNotFound |
The role can not be found. |
Retrieve role #
Retrieve a role.
HTTP request #
GET /api/roles/roTARul5Eeg2HJ HTTP/1.1
Path: #
/api/roles/{role}
| Parameter |
Description |
role |
The user role. null if the user is a global user. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862212506,
"id" : "roTARul5Eeg2HJ",
"organization" : "og4hooJWKGw1L1",
"organizationPermissions" : [ "createOrganizationInvitationLinks", "readMyAuditLogs", "readOrganizationApiTokens", "readOrganizationAuditLogs", "readOrganizationSpaces", "readOrganizationUsers", "readOrganizationWorkflows", "readWriteOrganization", "readWriteOrganizationApiTokens", "readWriteOrganizationContacts", "readWriteOrganizationRoles", "readWriteOrganizationSpaces", "readWriteOrganizationUsers", "readWriteOrganizationWorkflows" ],
"shortName" : "Newsreader #99176",
"updatedOn" : 1718862212506
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
id |
String |
The ID of the entity. |
organization |
String |
The organization. |
organizationPermissions |
String[] |
The granted organization permissions. Possible values: createOrganizationInvitationLinks, readMyAuditLogs, readOrganizationApiTokens, readOrganizationAuditLogs, readOrganizationSpaces, readOrganizationUsers, readOrganizationWorkflows, readWriteOrganization, readWriteOrganizationApiTokens, readWriteOrganizationContacts, readWriteOrganizationRoles, readWriteOrganizationSpaces, readWriteOrganizationUsers, readWriteOrganizationWorkflows. |
permissionTemplate optional |
String |
The permission template of the role. Possible values: member, admin. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
RoleNotFound |
The role can not be found. |
Update role #
Update a role.
HTTP request #
PATCH /api/roles/roMeYQk2aegyks HTTP/1.1
{
"shortName" : "Translator #87203",
"organizationPermissions" : [ "createOrganizationInvitationLinks", "readMyAuditLogs", "readOrganizationApiTokens", "readOrganizationAuditLogs", "readOrganizationSpaces", "readOrganizationUsers", "readOrganizationWorkflows", "readWriteOrganization", "readWriteOrganizationApiTokens", "readWriteOrganizationContacts", "readWriteOrganizationRoles", "readWriteOrganizationSpaces", "readWriteOrganizationUsers", "readWriteOrganizationWorkflows" ]
}
Path: #
/api/roles/{role}
| Parameter |
Description |
role |
The user role. null if the user is a global user. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
organizationPermissions optional |
String[] |
The granted organization permissions. Possible values: createOrganizationInvitationLinks, readMyAuditLogs, readOrganizationApiTokens, readOrganizationAuditLogs, readOrganizationSpaces, readOrganizationUsers, readOrganizationWorkflows, readWriteOrganization, readWriteOrganizationApiTokens, readWriteOrganizationContacts, readWriteOrganizationRoles, readWriteOrganizationSpaces, readWriteOrganizationUsers, readWriteOrganizationWorkflows. |
shortName optional |
String |
The short name of the entity. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862231852,
"id" : "roMeYQk2aegyks",
"organization" : "og4hooJWKGw1L1",
"organizationPermissions" : [ "createOrganizationInvitationLinks", "readMyAuditLogs", "readOrganizationApiTokens", "readOrganizationAuditLogs", "readOrganizationSpaces", "readOrganizationUsers", "readOrganizationWorkflows", "readWriteOrganization", "readWriteOrganizationApiTokens", "readWriteOrganizationContacts", "readWriteOrganizationRoles", "readWriteOrganizationSpaces", "readWriteOrganizationUsers", "readWriteOrganizationWorkflows" ],
"shortName" : "Translator #87203",
"updatedOn" : 1718862231857
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
id |
String |
The ID of the entity. |
organization |
String |
The organization. |
organizationPermissions |
String[] |
The granted organization permissions. Possible values: createOrganizationInvitationLinks, readMyAuditLogs, readOrganizationApiTokens, readOrganizationAuditLogs, readOrganizationSpaces, readOrganizationUsers, readOrganizationWorkflows, readWriteOrganization, readWriteOrganizationApiTokens, readWriteOrganizationContacts, readWriteOrganizationRoles, readWriteOrganizationSpaces, readWriteOrganizationUsers, readWriteOrganizationWorkflows. |
permissionTemplate optional |
String |
The permission template of the role. Possible values: member, admin. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
ShortNameAlreadyExists |
The name already exists. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Search roles #
Search roles.
HTTP request #
GET /api/roles?search=Newsreader+%2399176&filter=id%3DroTARul5Eeg2HJ%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn&maxEntities=25&offset=0 HTTP/1.1
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, createdOn, organization, organizationPermissions, permissionTemplate, shortName, updatedOn. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, createdOn, organization, organizationPermissions, permissionTemplate, shortName, updatedOn. Use the - prefix to sort in descending order. |
maxEntities |
The maximum number of entities in the search result. Maximum is 50. |
offset |
The offset of the first entity in the search result. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"entities" : [ {
"createdOn" : 1718862212506,
"id" : "roTARul5Eeg2HJ",
"organization" : "og4hooJWKGw1L1",
"organizationPermissions" : [ "createOrganizationInvitationLinks", "readMyAuditLogs", "readOrganizationApiTokens", "readOrganizationAuditLogs", "readOrganizationSpaces", "readOrganizationUsers", "readOrganizationWorkflows", "readWriteOrganization", "readWriteOrganizationApiTokens", "readWriteOrganizationContacts", "readWriteOrganizationRoles", "readWriteOrganizationSpaces", "readWriteOrganizationUsers", "readWriteOrganizationWorkflows" ],
"shortName" : "Newsreader #99176",
"updatedOn" : 1718862212506
} ],
"offset" : 0,
"totalEntities" : 1
}
Fields: #
| Path |
Type |
Description |
offset |
Number |
The offset of the first entity in the search result. |
totalEntities |
Number |
The total number of entities. |
entities |
Role[] |
The entities returned in the search result. |
entities[].createdOn |
Number |
The creation date of the entity. |
entities[].id |
String |
The ID of the entity. |
entities[].organization |
String |
The organization. |
entities[].organizationPermissions |
String[] |
The granted organization permissions. Possible values: createOrganizationInvitationLinks, readMyAuditLogs, readOrganizationApiTokens, readOrganizationAuditLogs, readOrganizationSpaces, readOrganizationUsers, readOrganizationWorkflows, readWriteOrganization, readWriteOrganizationApiTokens, readWriteOrganizationContacts, readWriteOrganizationRoles, readWriteOrganizationSpaces, readWriteOrganizationUsers, readWriteOrganizationWorkflows. |
entities[].permissionTemplate optional |
String |
The permission template of the role. Possible values: member, admin. |
entities[].shortName |
String |
The short name of the entity. |
entities[].updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Create an export of roles #
Export roles.
HTTP request #
POST /api/roles/exports?search=Newsreader+%2399176&filter=id%3DroTARul5Eeg2HJ%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn HTTP/1.1
{
"contentType" : "text/csv",
"beforeEntities" : "",
"afterEntities" : "",
"betweenEntities" : "\n",
"entityTemplate" : "{{id}},{{shortName}}"
}
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, createdOn, organization, organizationPermissions, permissionTemplate, shortName, updatedOn. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, createdOn, organization, organizationPermissions, permissionTemplate, shortName, updatedOn. Use the - prefix to sort in descending order. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
HTTP response #
HTTP/1.1 200 OK
{
"afterEntities" : "",
"beforeEntities" : "",
"betweenEntities" : "\n",
"contentType" : "text/csv",
"createdOn" : 1718862240932,
"currentJobOperation" : "exportEntities",
"entityTemplate" : "{{id}},{{shortName}}",
"exportOperation" : "exportRoles",
"id" : "exJLAO1E7cqeGY",
"organization" : "og4hooJWKGw1L1",
"searchQuery" : "search=Newsreader+%2399176&filter=id%3DroTARul5Eeg2HJ%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn",
"updatedOn" : 1718862240932
}
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: exportEntities. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
exportOperation |
String |
The export operation. Possible values: exportApiTokens, exportAuditLogs, exportContacts, exportOrganizations, exportRoles, exportSpaces, exportUsers, exportWorkflows. |
exportSize optional |
Number |
The size in bytes of the export. |
id |
String |
The ID of the entity. |
organization optional |
String |
The organization. |
ownedByUser optional |
String |
The owner user. |
searchQuery |
String |
The search query used to list the exported entities. |
totalEntities optional |
Number |
The total number of entities. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
400 |
InvalidTemplate |
The template could not be parsed. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Spaces #
A space is a group of users and workflows.
New space #
Create a space.
HTTP request #
POST /api/spaces HTTP/1.1
{
"organization" : "og4hooJWKGw1L1",
"shortName" : "Marketing #88532"
}
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
organization optional |
String |
The organization. |
shortName |
String |
The short name of the entity. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862315898,
"id" : "spIgmAab3QMnqE",
"organization" : "og4hooJWKGw1L1",
"shortName" : "Marketing #88532",
"updatedOn" : 1718862315898
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
id |
String |
The ID of the entity. |
organization |
String |
The organization. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
ShortNameAlreadyExists |
The name already exists. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Delete space #
Delete an empty space.
HTTP request #
DELETE /api/spaces/spVfQkqwqqkz5a HTTP/1.1
Path: #
/api/spaces/{space}
| Parameter |
Description |
space |
The ID of the space. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 204 No Content
Errors: #
| Status |
Code |
Message |
403 |
EntityInUse |
The entity is being used. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
SpaceNotFound |
The space can not be found. |
Retrieve space #
Retrieve a space.
HTTP request #
GET /api/spaces/spXg4xDPTgfaie HTTP/1.1
Path: #
/api/spaces/{space}
| Parameter |
Description |
space |
The ID of the space. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862212495,
"id" : "spXg4xDPTgfaie",
"organization" : "og4hooJWKGw1L1",
"shortName" : "IT #26215",
"updatedOn" : 1718862212495
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
id |
String |
The ID of the entity. |
organization |
String |
The organization. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
SpaceNotFound |
The space can not be found. |
Update space #
Update a space.
HTTP request #
PATCH /api/spaces/sp6V2rJdcbGyaK HTTP/1.1
{
"shortName" : "Sales #58309"
}
Path: #
/api/spaces/{space}
| Parameter |
Description |
space |
The ID of the space. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
shortName optional |
String |
The short name of the entity. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862317498,
"id" : "sp6V2rJdcbGyaK",
"organization" : "og4hooJWKGw1L1",
"shortName" : "Sales #58309",
"updatedOn" : 1718862317503
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
id |
String |
The ID of the entity. |
organization |
String |
The organization. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
ShortNameAlreadyExists |
The name already exists. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Search spaces #
Search spaces.
HTTP request #
GET /api/spaces?search=IT+%2326215&filter=id%3DspXg4xDPTgfaie%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn&maxEntities=25&offset=0 HTTP/1.1
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, createdOn, organization, shortName, updatedOn. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, createdOn, organization, shortName, updatedOn. Use the - prefix to sort in descending order. |
maxEntities |
The maximum number of entities in the search result. Maximum is 50. |
offset |
The offset of the first entity in the search result. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"entities" : [ {
"createdOn" : 1718862212495,
"id" : "spXg4xDPTgfaie",
"organization" : "og4hooJWKGw1L1",
"shortName" : "IT #26215",
"updatedOn" : 1718862212495
} ],
"offset" : 0,
"totalEntities" : 1
}
Fields: #
| Path |
Type |
Description |
offset |
Number |
The offset of the first entity in the search result. |
totalEntities |
Number |
The total number of entities. |
entities |
Space[] |
The entities returned in the search result. |
entities[].createdOn |
Number |
The creation date of the entity. |
entities[].id |
String |
The ID of the entity. |
entities[].organization |
String |
The organization. |
entities[].shortName |
String |
The short name of the entity. |
entities[].updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Create an export of spaces #
Export spaces.
HTTP request #
POST /api/spaces/exports?search=IT+%2326215&filter=id%3DspXg4xDPTgfaie%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn HTTP/1.1
{
"contentType" : "text/csv",
"beforeEntities" : "",
"afterEntities" : "",
"betweenEntities" : "\n",
"entityTemplate" : "{{id}},{{shortName}}"
}
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, createdOn, organization, shortName, updatedOn. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, createdOn, organization, shortName, updatedOn. Use the - prefix to sort in descending order. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
HTTP response #
HTTP/1.1 200 OK
{
"afterEntities" : "",
"beforeEntities" : "",
"betweenEntities" : "\n",
"contentType" : "text/csv",
"createdOn" : 1718862315164,
"currentJobOperation" : "exportEntities",
"entityTemplate" : "{{id}},{{shortName}}",
"exportOperation" : "exportSpaces",
"id" : "exQmzIvQ5aQB1X",
"organization" : "og4hooJWKGw1L1",
"searchQuery" : "search=IT+%2326215&filter=id%3DspXg4xDPTgfaie%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn",
"updatedOn" : 1718862315164
}
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: exportEntities. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
exportOperation |
String |
The export operation. Possible values: exportApiTokens, exportAuditLogs, exportContacts, exportOrganizations, exportRoles, exportSpaces, exportUsers, exportWorkflows. |
exportSize optional |
Number |
The size in bytes of the export. |
id |
String |
The ID of the entity. |
organization optional |
String |
The organization. |
ownedByUser optional |
String |
The owner user. |
searchQuery |
String |
The search query used to list the exported entities. |
totalEntities optional |
Number |
The total number of entities. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
400 |
InvalidTemplate |
The template could not be parsed. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Users #
A user represents a regular user of the application.
New user #
Create a user.
HTTP request #
POST /api/users HTTP/1.1
{
"email" : "adrian.shanahan76194@acme.com",
"firstName" : "Otha",
"lastName" : "Kuhn",
"locale" : "en",
"picture" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0CAYAAADL1t+KAAAUXUlEQVR4Xu3VsY0DQRADwY3741BYyunlMwFygCqgnXMXN3z/TPn+fTQUW/J91I0tLz/QlT+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tBn1M/jDqxpZ8H3Vji0Efkz+MurEl30fd2GLQx+QPo25syfdRN7YY9DH5w6gbW/J91I0tLx9I3QCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xuhn0sQCuyPulbgZ9LIAr8n6pm0EfC+CKvF/qZtDHArgi75e6GfSxAK7I+6VuBn0sgCvyfqmbQR8L4Iq8X+pm0McCuCLvl7oZ9LEArsj7pW4GfSyAK/J+qZtBHwvgirxf6mbQxwK4Iu+Xur18ILrygdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1sM+pj8YdSNLfk+6sYWgz4mfxh1Y0u+j7qxxaCPyR9G3diS76NubDHoY/KHUTe25PuoG1t+TWi/2phTs5gAAAAASUVORK5CYII="
}
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
email |
String |
The email address. |
firstName |
String |
The first name. |
globalPermissions optional |
String[] |
The granted global permissions of the user. Empty if the user is not a global user. Possible values: createAllInvitationLinks, readAllApiTokens, readAllAuditLogs, readAllRoles, readAllSpaces, readAllUsers, readAllWorkflows, readWriteAllApiTokens, readWriteAllContacts, readWriteAllOrganizations, readWriteAllRoles, readWriteAllSpaces, readWriteAllUsers, readWriteAllWorkflows, readWriteConfiguration. |
lastName |
String |
The last name. |
locale optional |
String |
The country code and language tag used for notifications. |
organization optional |
String |
The organization. |
picture optional |
String |
The URL or the data URI of the user picture. |
role optional |
String |
The user role. null if the user is a global user. |
sendInvitation optional |
Boolean |
Whether an invitation should be sent to the created user. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862251100,
"email" : "adrian.shanahan76194@acme.com",
"firstName" : "Otha",
"globalPermissions" : [ ],
"id" : "usYgTz3iTvq01l",
"lastName" : "Kuhn",
"locale" : "en",
"memberOfSpaces" : [ ],
"organization" : "og4hooJWKGw1L1",
"pictureResource" : "rsAwwCk0Qw9Stj",
"role" : "roIEaMrtiTzWwj",
"shortName" : "Otha Kuhn",
"updatedOn" : 1718862251100,
"writeContactsOfSpaces" : [ ],
"writeWorkflowsOfSpaces" : [ ]
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
email optional |
String |
The email address. |
firstName |
String |
The first name. |
globalPermissions |
String[] |
The granted global permissions of the user. Empty if the user is not a global user. Possible values: createAllInvitationLinks, readAllApiTokens, readAllAuditLogs, readAllRoles, readAllSpaces, readAllUsers, readAllWorkflows, readWriteAllApiTokens, readWriteAllContacts, readWriteAllOrganizations, readWriteAllRoles, readWriteAllSpaces, readWriteAllUsers, readWriteAllWorkflows, readWriteConfiguration. |
id |
String |
The ID of the entity. |
idpSubject optional |
String |
The identifier of the subject in the OpenID Connect identity provider database. |
lastName |
String |
The last name. |
locale optional |
String |
The country code and language tag used for notifications. |
memberOfSpaces |
String[] |
The IDs of the spaces the user is member of. |
organization optional |
String |
The organization. |
pictureResource optional |
String |
The picture resource of the user. |
role optional |
String |
The user role. null if the user is a global user. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
writeContactsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update contacts. |
writeWorkflowsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update workflows. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
400 |
InvalidImage |
The image format is not supported. |
403 |
EmailAlreadyExists |
The email address already exists. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Delete user #
Delete a user.
HTTP request #
DELETE /api/users/us0dDDAzwlppPa HTTP/1.1
Path: #
/api/users/{user}
| Parameter |
Description |
user |
The ID of the user. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 204 No Content
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
UserNotFound |
The user can not be found. |
Retrieve user #
Retrieve a user.
HTTP request #
GET /api/users/us7jfXO2zy2puh HTTP/1.1
Path: #
/api/users/{user}
| Parameter |
Description |
user |
The ID of the user. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862212529,
"email" : "corrie.schuppe93446@acme.com",
"firstName" : "Corrie",
"globalPermissions" : [ ],
"id" : "us7jfXO2zy2puh",
"lastName" : "Schuppe",
"locale" : "en",
"memberOfSpaces" : [ "spTO26g9KzQtwk" ],
"organization" : "og4hooJWKGw1L1",
"pictureResource" : "rsVtHhDCB7Oue8",
"role" : "roTARul5Eeg2HJ",
"shortName" : "Corrie Schuppe",
"updatedOn" : 1718862226688,
"writeContactsOfSpaces" : [ ],
"writeWorkflowsOfSpaces" : [ ]
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
email optional |
String |
The email address. |
firstName |
String |
The first name. |
globalPermissions |
String[] |
The granted global permissions of the user. Empty if the user is not a global user. Possible values: createAllInvitationLinks, readAllApiTokens, readAllAuditLogs, readAllRoles, readAllSpaces, readAllUsers, readAllWorkflows, readWriteAllApiTokens, readWriteAllContacts, readWriteAllOrganizations, readWriteAllRoles, readWriteAllSpaces, readWriteAllUsers, readWriteAllWorkflows, readWriteConfiguration. |
id |
String |
The ID of the entity. |
idpSubject optional |
String |
The identifier of the subject in the OpenID Connect identity provider database. |
lastName |
String |
The last name. |
locale optional |
String |
The country code and language tag used for notifications. |
memberOfSpaces |
String[] |
The IDs of the spaces the user is member of. |
organization optional |
String |
The organization. |
pictureResource optional |
String |
The picture resource of the user. |
role optional |
String |
The user role. null if the user is a global user. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
writeContactsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update contacts. |
writeWorkflowsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update workflows. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
UserNotFound |
The user can not be found. |
Update user #
Update a user.
HTTP request #
PATCH /api/users/usNhKFRaLGZzeJ HTTP/1.1
{
"role" : "roTARul5Eeg2HJ",
"email" : "ruben.pollich84128@acme.com",
"firstName" : "Josue",
"lastName" : "Jones",
"picture" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0CAYAAADL1t+KAAAT6klEQVR4Xu3VwQktRxAEwWe3/JE38unruFCIvXZqiYC8zLUY+vcHAPjf++0DAPD/46ADwAc46ADwAQ46AHyAgw4AH+CgA8AHOOgA8AEOOgB8gIMOAB/goAPABzjoAPABDjoAfICDDgAf4KADwAc46ADwAQ46AHyAgw4AH+CgA8AHOOgA8AEOOgB8gIMOAB/goAPABzjoAPABDjoAfICDDgAf4KADwAc46ADwAQ46AHyAgw4AH+CgA8AHOOgA8AEOOgB8gIMOAB/goAPABzjoAPABDjoAfICDDgAf4KADwAc46ADwAQ46AHyAgw4AH+CgA8AHOOgA8AEOOgB8gIMOAB/goAPABzjoAPABDjoAfICDDgAf4KADwAc46ADwAQ46AHyAgw4AH+CgA8AHOOgA8AEOOgB8gIMOAB/goAPABzjoAPABDjoAfICDDgAf4KADwAc46ADwAQ46AHyAgw4AH+CgA8AHOOgA8AEOOgB8gIMOAB/goAPABzjoAPABDjoAfICDDgAf4KADwAc46ADwAQ46AHyAgw4AH+CgA8AHOOgA8AEOOgB8gIMOAB/goAPABzjoAPABDjoAfICDDgAf4KADwAc46ADwAQ46AHyAgw4AH+CgA8AHOOgA8AEOOgB8gIMOAB/goAPABzjoAPABDjoAfICDDgAf4KADwAc46ADwAb+///nrj6T/jpbdR9KTgy69RMvuI+nJQZdeomX3kfTkoEsv0bL7SHpy0KWXaNl9JD056NJLtOw+kp4cdOklWnYfSU8OuvQSLbuPpCcHXXqJlt1H0pODLr1Ey+4j6clBl16iZfeR9OSgSy/RsvtIenLQpZdo2X0kPTno0ku07D6Snhx06SVadh9JTw669BItu4+kJwddeomW3UfSk4MuvUTL7iPpyUGXXqJl95H05KBLL9Gy+0h6ctCll2jZfSQ9OejSS7TsPpKeHHTpJVp2H0lPDrr0Ei27j6QnB116iZbdR9KTgy69RMvuI+nJQZdeomX3kfTkoEsv0bL7SHpy0KWXaNl9JD056NJLtOw+kp4cdOklWnYfSU8OuvQSLbuPpCcHXXqJlt1H0pODLr1Ey+4j6clBl16iZfeR9OSgSy/RsvtIenLQpZdo2X0kPTno0ku07D6Snhx06SVadh9JTw669BItu4+kJwddeomW3UfSk4MuvUTL7iPpyUGXXqJl95H05KBLL9Gy+0h6ctCll2jZfSQ9OejSS7TsPpKeHHTpJVp2H0lPDrr0Ei27j6QnB116iZbdR9KTgy69RMvuI+nJQZdeomX3kfTkoEsv0bL7SHpy0KWXaNl9JD056NJLtOw+kp4cdOklWnYfSU8OuvQSLbuPpCcHXXqJlt1H0pODLr1Ey+4j6clBl16iZfeR9OSgSy/RsvtIenLQpZdo2X0kPTno0ku07D6Snhx06SVadh9JTw669BItu4+kJwddeomW3UfSk4MuvUTL7iPpyUGXXqJl95H05KBLL9Gy+0h6ctCll2jZfSQ9OejSS7TsPpKeHHTpJVp2H0lPDrr0Ei27j6QnB116iZbdR9KTgy69RMvuI+nJQZdeomX3kfTkoEsv0bL7SHpy0KWXaNl9JD056NJLtOw+kp4cdOklWnYfSU8OuvQSLbuPpCcHXXqJlt1H0pODLr1Ey+4j6clBl16iZfeR9OSgSy/RsvtIenLQpZdo2X0kPTno0ku07D6Snhx06SVadh9JTw669BItu4+kJwddeomW3UfSk4MuvUTL7iPpyUGXXqJl95H05KBLL9Gy+0h6ctCll2jZfSQ9OejSS7TsPpKeHHTpJVp2H0lPDrr0Ei27j6QnB116iZbdR9KTgy69RMvuI+nJQZdeomX3kfTkoEsv0bL7SHr67Yfh1g6k22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNloc9Jj9MLqNlt1Ht9HioMfsh9FttOw+uo0WBz1mP4xuo2X30W20OOgx+2F0Gy27j26jxUGP2Q+j22jZfXQbLQ56zH4Y3UbL7qPbaHHQY/bD6DZadh/dRouDHrMfRrfRsvvoNlp+O5Buo2X30W207D66zUGPRcvuo9to2X10m4Mei5bdR7fRsvvoNgc9Fi27j26jZffRbQ56LFp2H91Gy+6j2xz0WLTsPrqNlt1HtznosWjZfXQbLbuPbnPQY9Gy++g2WnYf3eagx6Jl99FttOw+us1Bj0XL7qPbaNl9dJuDHouW3Ue30bL76DYHPRYtu49uo2X30W0Oeixadh/dRsvuo9sc9Fi07D66jZbdR7c56LFo2X10Gy27j25z0GPRsvvoNlp2H93moMeiZffRbbTsPrrNQY9Fy+6j22jZfXSbgx6Llt1Ht9Gy++g2Bz0WLbuPbqNl99FtDnosWnYf3UbL7qPbHPRYtOw+uo2W3Ue3OeixaNl9dBstu49uc9Bj0bL76DZadh/d5qDHomX30W207D66zUGPRcvuo9to2X10m4Mei5bdR7fRsvvoNgc9Fi27j26jZffRbQ56LFp2H91Gy+6j2xz0WLTsPrqNlt1HtznosWjZfXQbLbuPbnPQY9Gy++g2WnYf3eagx6Jl99FttOw+us1Bj0XL7qPbaNl9dJuDHouW3Ue30bL76DYHPRYtu49uo2X30W0Oeixadh/dRsvuo9sc9Fi07D66jZbdR7c56LFo2X10Gy27j25z0GPRsvvoNlp2H93moMeiZffRbbTsPrrNQY9Fy+6j22jZfXSbgx6Llt1Ht9Gy++g2Bz0WLbuPbqNl99FtDnosWnYf3UbL7qPbHPRYtOw+uo2W3Ue3OeixaNl9dBstu49uc9Bj0bL76DZadh/d5qDHomX30W207D66zUGPRcvuo9to2X10m4Mei5bdR7fRsvvoNgc9Fi27j26jZffRbQ56LFp2H91Gy+6j2xz0WLTsPrqNlt1HtznosWjZfXQbLbuPbnPQY9Gy++g2WnYf3eagx6Jl99FttOw+us1Bj0XL7qPbaNl9dJuDHouW3Ue30bL76DYHPRYtu49uo2X30W0Oeixadh/dRsvuo9sc9Fi07D66jZbdR7c56LFo2X10Gy27j25z0GPRsvvoNlp2H93moMeiZffRbbTsPrrNQY9Fy+6j22jZfXSbgx6Llt1Ht9Gy++g2Bz0WLbuPbqNl99FtDnosWnYf3UbL7qPbHPRYtOw+uo2W3Ue3OeixaNl9dBstu49uc9Bj0bL76DZadh/d5qDHomX30W207D66zUGPRcvuo9to2X10m4Mei5bdR7fRsvvoNgc9Fi27j26jZffRbQ56LFp2H91Gy+6j2xz0WLTsPrqNlt1HtznosWjZfXQbLbuPbnPQY9Gy++g2WnYf3eagx6Jl99FttOw+us1Bj0XL7qPbaNl9dJuDHouW3Ue30bL76DYHPRYtu49uo2X30W0Oeixadh/dRsvuo9sc9Fi07D66jZbdR7c56LFo2X10Gy27j25z0GPRsvvoNlp2H93moMeiZffRbbTsPrrNQY9Fy+6j22jZfXSbgx6Llt1Ht9Gy++g2Bz0WLbuPbqNl99FtDnosWnYf3UbL7qPbHPRYtOw+uo2W3Ue3OeixaNl9dBstu49uc9Bj0bL76DZadh/d5qDHomX30W207D66zUGPRcvuo9to2X10m4Mei5bdR7fRsvvoNgc9Fi27j26jZffRbb8diFs7kG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9tocdBj9sPoNlp2H91Gi4Mesx9Gt9Gy++g2Whz0mP0wuo2W3Ue30eKgx+yH0W207D66jRYHPWY/jG6jZffRbbQ46DH7YXQbLbuPbqPFQY/ZD6PbaNl9dBstDnrMfhjdRsvuo9to+RfR5+Bqr3LyMgAAAABJRU5ErkJggg=="
}
Path: #
/api/users/{user}
| Parameter |
Description |
user |
The ID of the user. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
email optional |
String |
The email address. |
firstName optional |
String |
The first name. |
globalPermissions optional |
String[] |
The granted global permissions of the user. Empty if the user is not a global user. Possible values: createAllInvitationLinks, readAllApiTokens, readAllAuditLogs, readAllRoles, readAllSpaces, readAllUsers, readAllWorkflows, readWriteAllApiTokens, readWriteAllContacts, readWriteAllOrganizations, readWriteAllRoles, readWriteAllSpaces, readWriteAllUsers, readWriteAllWorkflows, readWriteConfiguration. |
lastName optional |
String |
The last name. |
locale optional |
String |
The country code and language tag used for notifications. |
picture optional |
String |
The URL or the data URI of the user picture. |
role optional |
String |
The user role. null if the user is a global user. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862248533,
"email" : "ruben.pollich84128@acme.com",
"firstName" : "Josue",
"globalPermissions" : [ ],
"id" : "usNhKFRaLGZzeJ",
"lastName" : "Jones",
"locale" : "en",
"memberOfSpaces" : [ ],
"organization" : "og4hooJWKGw1L1",
"pictureResource" : "rs3ZieT16h3Ido",
"role" : "roTARul5Eeg2HJ",
"shortName" : "Josue Jones",
"updatedOn" : 1718862248570,
"writeContactsOfSpaces" : [ ],
"writeWorkflowsOfSpaces" : [ ]
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
email optional |
String |
The email address. |
firstName |
String |
The first name. |
globalPermissions |
String[] |
The granted global permissions of the user. Empty if the user is not a global user. Possible values: createAllInvitationLinks, readAllApiTokens, readAllAuditLogs, readAllRoles, readAllSpaces, readAllUsers, readAllWorkflows, readWriteAllApiTokens, readWriteAllContacts, readWriteAllOrganizations, readWriteAllRoles, readWriteAllSpaces, readWriteAllUsers, readWriteAllWorkflows, readWriteConfiguration. |
id |
String |
The ID of the entity. |
idpSubject optional |
String |
The identifier of the subject in the OpenID Connect identity provider database. |
lastName |
String |
The last name. |
locale optional |
String |
The country code and language tag used for notifications. |
memberOfSpaces |
String[] |
The IDs of the spaces the user is member of. |
organization optional |
String |
The organization. |
pictureResource optional |
String |
The picture resource of the user. |
role optional |
String |
The user role. null if the user is a global user. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
writeContactsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update contacts. |
writeWorkflowsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update workflows. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFieldValue |
An invalid value was entered. |
400 |
InvalidImage |
The image format is not supported. |
403 |
EmailAlreadyExists |
The email address already exists. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Set user space membership #
Set the space membership of a user.
HTTP request #
PATCH /api/users/us5fWBDYCOHclK/memberOfSpaces HTTP/1.1
{
"memberOfSpaces" : [ "spXg4xDPTgfaie" ],
"writeContactsOfSpaces" : [ "spXg4xDPTgfaie" ],
"writeWorkflowsOfSpaces" : [ "spXg4xDPTgfaie" ]
}
Path: #
/api/users/{user}/memberOfSpaces
| Parameter |
Description |
user |
The ID of the user. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
memberOfSpaces optional |
String[] |
The IDs of the spaces the user is member of. |
writeContactsOfSpaces optional |
String[] |
The IDs of the spaces in which the user is allowed to create and update contacts. |
writeWorkflowsOfSpaces optional |
String[] |
The IDs of the spaces in which the user is allowed to create and update workflows. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862249871,
"email" : "una.spencer54906@acme.com",
"firstName" : "Una",
"globalPermissions" : [ ],
"id" : "us5fWBDYCOHclK",
"lastName" : "Spencer",
"locale" : "en",
"memberOfSpaces" : [ "spXg4xDPTgfaie" ],
"organization" : "og4hooJWKGw1L1",
"pictureResource" : "rsHT2MQmQDUSp0",
"role" : "roTARul5Eeg2HJ",
"shortName" : "Una Spencer",
"updatedOn" : 1718862249889,
"writeContactsOfSpaces" : [ "spXg4xDPTgfaie" ],
"writeWorkflowsOfSpaces" : [ "spXg4xDPTgfaie" ]
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
email optional |
String |
The email address. |
firstName |
String |
The first name. |
globalPermissions |
String[] |
The granted global permissions of the user. Empty if the user is not a global user. Possible values: createAllInvitationLinks, readAllApiTokens, readAllAuditLogs, readAllRoles, readAllSpaces, readAllUsers, readAllWorkflows, readWriteAllApiTokens, readWriteAllContacts, readWriteAllOrganizations, readWriteAllRoles, readWriteAllSpaces, readWriteAllUsers, readWriteAllWorkflows, readWriteConfiguration. |
id |
String |
The ID of the entity. |
idpSubject optional |
String |
The identifier of the subject in the OpenID Connect identity provider database. |
lastName |
String |
The last name. |
locale optional |
String |
The country code and language tag used for notifications. |
memberOfSpaces |
String[] |
The IDs of the spaces the user is member of. |
organization optional |
String |
The organization. |
pictureResource optional |
String |
The picture resource of the user. |
role optional |
String |
The user role. null if the user is a global user. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
writeContactsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update contacts. |
writeWorkflowsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update workflows. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Update user picture #
Set the picture of a user.
HTTP request #
PATCH /api/users/usRnLCxFX4112P/picture HTTP/1.1
{
"picture" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0CAYAAADL1t+KAAASh0lEQVR4Xu3VsQ0cSRAEwbP7XaFL9OmplwOdO4gEQlm1MVu//5Xqz9//CFGrvQ+31Oq3H3TbPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbamXQY+2D4ZZa7X24pVYGPdY+GG6p1d6HW2pl0GPtg+GWWu19uKVWBj3WPhhuqdXeh1tqZdBj7YPhllrtfbilVgY91j4YbqnV3odbavXbA3FLkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1sGPUaSvtL+v7hl0GMk6Svt/4tbBj1Gkr7S/r+4ZdBjJOkr7f+LWwY9RpK+0v6/uGXQYyTpK+3/i1u/PZBu2wMBVKmVQY+1DwagSq0Meqx9MABVamXQY+2DAahSK4Meax8MQJVaGfRY+2AAqtTKoMfaBwNQpVYGPdY+GIAqtTLosfbBAFSplUGPtQ8GoEqtDHqsfTAAVWpl0GPtgwGoUiuDHmsfDECVWhn0WPtgAKrUyqDH2gcDUKVWBj3WPhiAKrUy6LH2wQBUqZVBj7UPBqBKrQx6rH0wAFVqZdBj7YMBqFIrgx5rHwxAlVoZ9Fj7YACq1Mqgx9oHA1ClVgY91j4YgCq1Muix9sEAVKmVQY+1DwagSq0Meqx9MABVamXQY+2DAahSK4Meax8MQJVaGfRY+2AAqtTKoMfaBwNQpVYGPdY+GIAqtTLosfbBAFSplUGPtQ8GoEqtDHqsfTAAVWpl0GPtgwGoUiuDHmsfDECVWhn0WPtgAKrUyqDH2gcDUKVWBj3WPhiAKrUy6LH2wQBUqZVBj7UPBqBKrQx6rH0wAFVqZdBj7YMBqFIrgx5rHwxAlVoZ9Fj7YACq1Mqgx9oHA1ClVgY91j4YgCq1Muix9sEAVKmVQY+1DwagSq0Meqx9MABVamXQY+2DAahSK4Meax8MQJVaGfRY+2AAqtTKoMfaBwNQpVYGPdY+GIAqtTLosfbBAFSplUGPtQ8GoEqtDHqsfTAAVWpl0GPtgwGoUiuDHmsfDECVWhn0WPtgAKrUyqDH2gcDUKVWBj3WPhiAKrUy6LH2wQBUqZVBj7UPBqBKrQx6rH0wAFVqZdBj7YMBqFIrgx5rHwxAlVoZ9Fj7YACq1Mqgx9oHA1ClVgY91j4YgCq1Muix9sEAVKmVQY+1DwagSq0Meqx9MABVamXQY+2DAahSK4Meax8MQJVaGfRY+2AAqtTKoMfaBwNQpVYGPdY+GIAqtTLosfbBAFSplUGPtQ8GoEqtDHqsfTAAVWpl0GPtgwGoUiuDHmsfDECVWhn0WPtgAKrUyqDH2gcDUKVWBj3WPhiAKrUy6LH2wQBUqZVBj7UPBqBKrQx6rH0wAFVqZdBj7YMBqFIrgx5rHwxAlVoZ9Fj7YACq1Mqgx9oHA1ClVgY91j4YgCq1Muix9sEAVKmVQY+1DwagSq0Meqx9MABVamXQY+2DAahSq98eiFtqtffhllrtfbhl0GPUau/DLbXa+3DLoMeo1d6HW2q19+GWQY9Rq70Pt9Rq78Mtgx6jVnsfbqnV3odbBj1GrfY+3FKrvQ+3DHqMWu19uKVWex9uGfQYtdr7cEut9j7cMugxarX34ZZa7X24ZdBj1Grvwy212vtwy6DHqNXeh1tqtffhlkGPUau9D7fUau/DLYMeo1Z7H26p1d6HWwY9Rq32PtxSq70Ptwx6jFrtfbilVnsfbhn0GLXa+3BLrfY+3DLoMWq19+GWWu19uGXQY9Rq78Mttdr7cMugx6jV3odbarX34ZZBj1GrvQ+31Grvwy2DHqNWex9uqdXeh1sGPUat9j7cUqu9D7cMeoxa7X24pVZ7H24Z9Bi12vtwS632Ptwy6DFqtffhllrtfbhl0GPUau/DLbXa+3DLoMeo1d6HW2q19+GWQY9Rq70Pt9Rq78Mtgx6jVnsfbqnV3odbBj1GrfY+3FKrvQ+3DHqMWu19uKVWex9uGfQYtdr7cEut9j7cMugxarX34ZZa7X24ZdBj1Grvwy212vtwy6DHqNXeh1tqtffhlkGPUau9D7fUau/DLYMeo1Z7H26p1d6HWwY9Rq32PtxSq70Ptwx6jFrtfbilVnsfbhn0GLXa+3BLrfY+3DLoMWq19+GWWu19uGXQY9Rq78Mttdr7cMugx6jV3odbarX34ZZBj1GrvQ+31Grvwy2DHqNWex9uqdXeh1sGPUat9j7cUqu9D7cMeoxa7X24pVZ7H24Z9Bi12vtwS632Ptwy6DFqtffhllrtfbhl0GPUau/DLbXa+3DLoMeo1d6HW2q19+GWQY9Rq70Pt9Rq78Mtgx6jVnsfbqnV3odbBj1GrfY+3FKrvQ+3DHqMWu19uKVWex9uGfQYtdr7cEut9j7cMugxarX34ZZa7X24ZdBj1Grvwy212vtwy6DHqNXeh1tqtffhlkGPUau9D7fUau/DLYMeo1Z7H26p1d6HWwY9Rq32PtxSq70Ptwx6jFrtfbilVnsfbhn0GLXa+3BLrfY+3DLoMWq19+GWWu19uGXQY9Rq78Mttdr7cMugx6jV3odbarX34ZZBj1GrvQ+31Grvwy2DHqNWex9uqdXeh1sGPUat9j7cUqu9D7cMeoxa7X24pVZ7H24Z9Bi12vtwS632Ptwy6DFqtffhllrtfbhl0GPUau/DLbXa+3DLoMeo1d6HW2q19+GWQY9Rq70Pt9Rq78Mtgx6jVnsfbqnV3odbBj1GrfY+3FKrvQ+3DHqMWu19uKVWex9uGfQYtdr7cEut9j7cMugxarX34ZZa7X24ZdBj1Grvwy212vtwy6DHqNXeh1tqtffhlkGPUau9D7fUau/DLYMeo1Z7H26p1d6HWwY9Rq32PtxSq70Ptwx6jFrtfbilVnsfbhn0GLXa+3BLrfY+3DLoMWq19+GWWu19uGXQY9Rq78Mttdr7cMugx6jV3odbarX34ZZBj1GrvQ+31Grvwy2DHqNWex9uqdXeh1sGPUat9j7cUqu9D7cMeoxa7X24pVZ7H24Z9Bi12vtwS632Ptwy6DFqtffhllrtfbhl0GPUau/DLbXa+3DLoMeo1d6HW2q19+GWQY9Rq70Pt9Rq78Mtgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPAAgw4ADzDoAPCAf2pdtWiZGwNuAAAAAElFTkSuQmCC"
}
Path: #
/api/users/{user}/picture
| Parameter |
Description |
user |
The ID of the user. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
picture optional |
String |
The URL or the data URI of the user picture. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862259877,
"email" : "floretta.schmitt68086@acme.com",
"firstName" : "Floretta",
"globalPermissions" : [ ],
"id" : "usRnLCxFX4112P",
"lastName" : "Schmitt",
"locale" : "en",
"memberOfSpaces" : [ ],
"organization" : "og4hooJWKGw1L1",
"pictureResource" : "rsMpPAjfmLMTDz",
"role" : "roTARul5Eeg2HJ",
"shortName" : "Floretta Schmitt",
"updatedOn" : 1718862259914,
"writeContactsOfSpaces" : [ ],
"writeWorkflowsOfSpaces" : [ ]
}
Fields: #
| Path |
Type |
Description |
createdOn |
Number |
The creation date of the entity. |
email optional |
String |
The email address. |
firstName |
String |
The first name. |
globalPermissions |
String[] |
The granted global permissions of the user. Empty if the user is not a global user. Possible values: createAllInvitationLinks, readAllApiTokens, readAllAuditLogs, readAllRoles, readAllSpaces, readAllUsers, readAllWorkflows, readWriteAllApiTokens, readWriteAllContacts, readWriteAllOrganizations, readWriteAllRoles, readWriteAllSpaces, readWriteAllUsers, readWriteAllWorkflows, readWriteConfiguration. |
id |
String |
The ID of the entity. |
idpSubject optional |
String |
The identifier of the subject in the OpenID Connect identity provider database. |
lastName |
String |
The last name. |
locale optional |
String |
The country code and language tag used for notifications. |
memberOfSpaces |
String[] |
The IDs of the spaces the user is member of. |
organization optional |
String |
The organization. |
pictureResource optional |
String |
The picture resource of the user. |
role optional |
String |
The user role. null if the user is a global user. |
shortName |
String |
The short name of the entity. |
updatedOn |
Number |
The date of last modification of the entity. |
writeContactsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update contacts. |
writeWorkflowsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update workflows. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidImage |
The image format is not supported. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Search users #
Search users.
HTTP request #
GET /api/users?search=Corrie+Schuppe&filter=id%3Dus7jfXO2zy2puh%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn&maxEntities=25&offset=0 HTTP/1.1
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, createdOn, email, firstName, globalPermissions, idpSubject, lastName, memberOfSpaces, organization, role, shortName, updatedOn, writeContactsOfSpaces, writeWorkflowsOfSpaces. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, createdOn, email, firstName, globalPermissions, idpSubject, lastName, memberOfSpaces, organization, role, shortName, updatedOn, writeContactsOfSpaces, writeWorkflowsOfSpaces. Use the - prefix to sort in descending order. |
maxEntities |
The maximum number of entities in the search result. Maximum is 50. |
offset |
The offset of the first entity in the search result. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"entities" : [ {
"createdOn" : 1718862212529,
"email" : "corrie.schuppe93446@acme.com",
"firstName" : "Corrie",
"globalPermissions" : [ ],
"id" : "us7jfXO2zy2puh",
"lastName" : "Schuppe",
"locale" : "en",
"memberOfSpaces" : [ "spTO26g9KzQtwk" ],
"organization" : "og4hooJWKGw1L1",
"pictureResource" : "rsVtHhDCB7Oue8",
"role" : "roTARul5Eeg2HJ",
"shortName" : "Corrie Schuppe",
"updatedOn" : 1718862226688,
"writeContactsOfSpaces" : [ ],
"writeWorkflowsOfSpaces" : [ ]
} ],
"offset" : 0,
"totalEntities" : 1
}
Fields: #
| Path |
Type |
Description |
offset |
Number |
The offset of the first entity in the search result. |
totalEntities |
Number |
The total number of entities. |
entities |
User[] |
The entities returned in the search result. |
entities[].createdOn |
Number |
The creation date of the entity. |
entities[].email optional |
String |
The email address. |
entities[].firstName |
String |
The first name. |
entities[].globalPermissions |
String[] |
The granted global permissions of the user. Empty if the user is not a global user. Possible values: createAllInvitationLinks, readAllApiTokens, readAllAuditLogs, readAllRoles, readAllSpaces, readAllUsers, readAllWorkflows, readWriteAllApiTokens, readWriteAllContacts, readWriteAllOrganizations, readWriteAllRoles, readWriteAllSpaces, readWriteAllUsers, readWriteAllWorkflows, readWriteConfiguration. |
entities[].id |
String |
The ID of the entity. |
entities[].idpSubject optional |
String |
The identifier of the subject in the OpenID Connect identity provider database. |
entities[].lastName |
String |
The last name. |
entities[].locale optional |
String |
The country code and language tag used for notifications. |
entities[].memberOfSpaces |
String[] |
The IDs of the spaces the user is member of. |
entities[].organization optional |
String |
The organization. |
entities[].pictureResource optional |
String |
The picture resource of the user. |
entities[].role optional |
String |
The user role. null if the user is a global user. |
entities[].shortName |
String |
The short name of the entity. |
entities[].updatedOn |
Number |
The date of last modification of the entity. |
entities[].writeContactsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update contacts. |
entities[].writeWorkflowsOfSpaces |
String[] |
The IDs of the spaces in which the user is allowed to create and update workflows. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Create an export of users #
Export users.
HTTP request #
POST /api/users/exports?search=Corrie+Schuppe&filter=id%3Dus7jfXO2zy2puh%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn HTTP/1.1
{
"contentType" : "text/csv",
"beforeEntities" : "",
"afterEntities" : "",
"betweenEntities" : "\n",
"entityTemplate" : "{{id}},{{shortName}}"
}
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, createdOn, email, firstName, globalPermissions, idpSubject, lastName, memberOfSpaces, organization, role, shortName, updatedOn, writeContactsOfSpaces, writeWorkflowsOfSpaces. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, createdOn, email, firstName, globalPermissions, idpSubject, lastName, memberOfSpaces, organization, role, shortName, updatedOn, writeContactsOfSpaces, writeWorkflowsOfSpaces. Use the - prefix to sort in descending order. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
HTTP response #
HTTP/1.1 200 OK
{
"afterEntities" : "",
"beforeEntities" : "",
"betweenEntities" : "\n",
"contentType" : "text/csv",
"createdOn" : 1718862255740,
"currentJobOperation" : "exportEntities",
"entityTemplate" : "{{id}},{{shortName}}",
"exportOperation" : "exportUsers",
"id" : "exIuT0hDZM17VX",
"organization" : "og4hooJWKGw1L1",
"searchQuery" : "search=Corrie+Schuppe&filter=id%3Dus7jfXO2zy2puh%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn",
"updatedOn" : 1718862255740
}
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: exportEntities. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
exportOperation |
String |
The export operation. Possible values: exportApiTokens, exportAuditLogs, exportContacts, exportOrganizations, exportRoles, exportSpaces, exportUsers, exportWorkflows. |
exportSize optional |
Number |
The size in bytes of the export. |
id |
String |
The ID of the entity. |
organization optional |
String |
The organization. |
ownedByUser optional |
String |
The owner user. |
searchQuery |
String |
The search query used to list the exported entities. |
totalEntities optional |
Number |
The total number of entities. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
400 |
InvalidTemplate |
The template could not be parsed. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Download user picture #
Download a user picture.
HTTP request #
GET /api/users/us7jfXO2zy2puh/picture/rsVtHhDCB7Oue8 HTTP/1.1
Path: #
/api/users/{user}/picture/{resource}
| Parameter |
Description |
user |
The ID of the user. |
resource |
The ID of the resource. |
HTTP response #
HTTP/1.1 200 OK
�����JFIF���������C�
$.' ",#(7),01444'9=82<.342���C
2!!22222222222222222222222222222222222222222222222222�����"��������������
�������}�!1AQa"q2���#B��R��$3br�
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������������������
������w�!1AQaq"2�B���� #3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������������?��EW�EPEPEPEPEPEPEPEPEP�QE��8QE�QE�QE�QE�QE}�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�{�Q_>s�Q@Q@Q@Q@EW�EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP�QE��8QE�QE�QE�QE�QE}�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�{�Q_>s�Q@Q@Q@Q@EW�EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP�QE��8QE�QE�QE�QE�QE}�QE�QE�QE�QE�QE�QE�QE�QE�QE�{�Q_>s�Q@Q@Q@Q@EW�EPEPEPEPEPEPEPEPEPEPEPEPEPEP�QE��8QE�QE�QE�QE�QE�QE�QE�QE�QE�QE}�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�{�Q_>s�Q@Q@Q@Q@Q@Q@Q@Q@Q@EW�EPEPEPEPEPEPEPEPEPEPEPEPEPEP�QE��8QE�QE�QE�QE�QE�QE�QE�QE�QE�QE}�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�{�Q_>s�Q@Q@Q@Q@Q@Q@Q@Q@Q@EW�EPEPEPEPEPEPEPEPEPEPEPEPEPEP�QE��8QE�QE�QE�QE�QE}�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�{�Q_>s�Q@Q@Q@Q@EW�EPEPEPEPEPEPEPEPEPEPEPEPEPEP�QE��8QE�QE�QE�QE�QE�QE�QE�QE�QE�QE}�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�{�Q_>s�Q@Q@Q@Q@Q@Q@Q@Q@Q@EW�EPEPEPEPEPEPEPEPEPEPEPEPEPEP�QE��8QE�QE�QE�QE�QE�QE�QE�QE�QE�QE}�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�{�Q_>s�Q@Q@Q@Q@Q@Q@Q@Q@Q@EW�EPEPEPEPEPEPEPEPEPEPEPEPEPEP�QE��8QE�QE�QE�QE�QE}�QE�QE�QE�QE�QE�QE�QE�QE�QE�{�Q_>s�Q@Q@Q@Q@EW�EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP�QE��8QE�QE�QE�QE�QE}�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�{�Q_>s�Q@Q@Q@Q@EW�EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP�QE��8QE�QE�QE�QE�QE}�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�QE�{�Q_>s�Q@Q@Q@Q@EW�EPEPEPEPEPEPEPEPEP��
Errors: #
| Status |
Code |
Message |
404 |
ResourceNotFound |
The resource can not be found. |
Workflows #
A workflow is a set of documents that will be approved and signed by a set of persons.
New workflow #
Create a workflow.
HTTP request #
POST /api/workflows HTTP/1.1
{
"space" : "spXg4xDPTgfaie",
"emailNotifications" : {
"lupe.mraz25281@acme.com" : {
"notificationTypes" : [ "workflowFinished" ],
"locale" : "fr_FR"
}
},
"shortName" : "Multi-layered regional secured line #64382",
"approvers" : [ {
"firstName" : "Jesse",
"lastName" : "Mertz",
"email" : "marc.lueilwitz62412@acme.com",
"phone" : "+11148460126",
"locale" : "fr_FR",
"invitationMode" : "inviteByPhone",
"sendDownloadLinkOnFinished" : true
} ],
"signers" : [ {
"firstName" : "Janette",
"lastName" : "Hauck",
"email" : "carey.bednar31827@acme.com",
"phone" : "+11167588790",
"locale" : "fr_FR",
"invitationMode" : "inviteByPhone",
"authenticationMode" : "authenticateWithPhone",
"forceViewDocuments" : true,
"sendDownloadLinkOnFinished" : true
} ],
"sendAutomatedInvitations" : true,
"duplicateDocumentsFromWorkflow" : "wf0WhsKYcjfsxa"
}
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
approvers |
Approver[] |
The approvers of the workflow. |
approvers[].id optional |
String |
The ID of the approver. |
approvers[].firstName |
String |
The first name of the approver. |
approvers[].lastName |
String |
The last name of the approver. |
approvers[].email optional |
String |
The email address of the approver. |
approvers[].phone optional |
String |
The phone number of the approver. |
approvers[].locale |
String |
The preferred locale of the approver. |
approvers[].invitationMode |
String |
The invitation mode of the approver. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
approvers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the approver once the workflow is finished. |
approvers[].approvalStatus optional |
String |
The status of the approval. Possible values: approved, invited, refused. |
approvers[].lastEventCreatedOn optional |
Date |
The date of the approver last event. |
automatedInvitationReminderPeriod optional |
Number |
The period after which an invitation reminder is sent automatically. |
duplicateDocumentsFromWorkflow optional |
String |
The ID of the workflow the documents should be duplicated from. |
emailNotifications optional |
Object |
The email notifications. |
maxAutomatedInvitationReminders optional |
Number |
The maximum number of reminders sent automatically to each approver and signer. |
sendAutomatedInvitations |
Boolean |
Whether invitations should be sent automatically to the approvers and the signers. |
shortName |
String |
The short name of the entity. |
signers |
Signer[] |
The signers of the workflow. |
signers[].id optional |
String |
The ID of the signer. |
signers[].firstName |
String |
The first name of the signer. |
signers[].lastName |
String |
The last name of the signer. |
signers[].email optional |
String |
The email address of the signer. |
signers[].phone optional |
String |
The phone number of the signer. |
signers[].locale |
String |
The preferred locale of the signer. |
signers[].invitationMode |
String |
The invitation mode of the signer. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
signers[].authenticationMode |
String |
The authentication mode of the signer. Possible values: authenticateWithEmail, authenticateWithIdp, authenticateWithPhone, authenticateWithWhatsapp, noAuthentication. |
signers[].forceViewDocuments optional |
Boolean |
Whether the signer will be forced to view the documents before signing. |
signers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the signer once the workflow is finished. |
signers[].signatureStatus optional |
String |
The status of the signature. Possible values: invited, refused, signed. |
signers[].lastEventCreatedOn optional |
Date |
The date of the signer last event. |
space |
String |
The ID of the space. |
HTTP response #
HTTP/1.1 200 OK
{
"approvers" : [ {
"firstName" : "Jesse",
"id" : "apF3kF9ZTtmDbJ",
"invitationMode" : "inviteByPhone",
"lastName" : "Mertz",
"locale" : "fr-FR",
"phone" : "+1 1148460126",
"sendDownloadLinkOnFinished" : true
} ],
"automatedInvitationReminderPeriod" : 172800000,
"createdByApiToken" : "atN5hi3zEsJkod",
"createdOn" : 1718862298273,
"emailNotifications" : {
"lupe.mraz25281@acme.com" : {
"locale" : "fr-FR",
"notificationTypes" : [ "workflowFinished" ]
}
},
"id" : "wf2j1LW4RZIGmV",
"maxAutomatedInvitationReminders" : 2,
"organization" : "og4hooJWKGw1L1",
"sendAutomatedInvitations" : true,
"shortName" : "Multi-layered regional secured line #64382",
"signers" : [ {
"authenticationMode" : "authenticateWithPhone",
"firstName" : "Janette",
"forceViewDocuments" : true,
"id" : "si5M3AXpu0pNxL",
"invitationMode" : "inviteByPhone",
"lastName" : "Hauck",
"locale" : "fr-FR",
"phone" : "+1 1167588790",
"sendDownloadLinkOnFinished" : true
} ],
"space" : "spXg4xDPTgfaie",
"updatedOn" : 1718862298273,
"workflowStatus" : "draft"
}
Fields: #
| Path |
Type |
Description |
approvers |
Approver[] |
The approvers of the workflow. |
approvers[].id optional |
String |
The ID of the approver. |
approvers[].firstName |
String |
The first name of the approver. |
approvers[].lastName |
String |
The last name of the approver. |
approvers[].email optional |
String |
The email address of the approver. |
approvers[].phone optional |
String |
The phone number of the approver. |
approvers[].locale |
String |
The preferred locale of the approver. |
approvers[].invitationMode |
String |
The invitation mode of the approver. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
approvers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the approver once the workflow is finished. |
approvers[].approvalStatus optional |
String |
The status of the approval. Possible values: approved, invited, refused. |
approvers[].lastEventCreatedOn optional |
Date |
The date of the approver last event. |
automatedInvitationReminderPeriod |
Number |
The period after which an invitation reminder is sent automatically. |
createdByApiToken optional |
String |
The ID of the API token that created the workflow. |
createdByUser optional |
String |
The ID of the user that created the workflow. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: processWorkflow. |
emailNotifications |
Object |
The email notifications. |
id |
String |
The ID of the entity. |
maxAutomatedInvitationReminders |
Number |
The maximum number of reminders sent automatically to each approver and signer. |
organization |
String |
The organization. |
sendAutomatedInvitations |
Boolean |
Whether invitations should be sent automatically to the approvers and the signers. |
shortName |
String |
The short name of the entity. |
signers |
Signer[] |
The signers of the workflow. |
signers[].id optional |
String |
The ID of the signer. |
signers[].firstName |
String |
The first name of the signer. |
signers[].lastName |
String |
The last name of the signer. |
signers[].email optional |
String |
The email address of the signer. |
signers[].phone optional |
String |
The phone number of the signer. |
signers[].locale |
String |
The preferred locale of the signer. |
signers[].invitationMode |
String |
The invitation mode of the signer. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
signers[].authenticationMode |
String |
The authentication mode of the signer. Possible values: authenticateWithEmail, authenticateWithIdp, authenticateWithPhone, authenticateWithWhatsapp, noAuthentication. |
signers[].forceViewDocuments optional |
Boolean |
Whether the signer will be forced to view the documents before signing. |
signers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the signer once the workflow is finished. |
signers[].signatureStatus optional |
String |
The status of the signature. Possible values: invited, refused, signed. |
signers[].lastEventCreatedOn optional |
Date |
The date of the signer last event. |
space |
String |
The ID of the space. |
thumbnailDocument optional |
String |
The document from which the thumbnail is taken from. |
thumbnailResource optional |
String |
The thumbnail resource of the workflow. |
updatedOn |
Number |
The date of last modification of the entity. |
workflowStatus |
String |
The status of the workflow. Possible values: draft, finished, started. |
Errors: #
| Status |
Code |
Message |
400 |
FieldValueTooLong |
The specified value is too long. |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
MissingEmail |
A recipient email is missing. |
403 |
MissingPhone |
A recipient phone is missing. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
SpaceNotFound |
The space can not be found. |
404 |
WorkflowNotFound |
The workflow can not be found. |
Delete workflow #
Delete a workflow.
HTTP request #
DELETE /api/workflows/wfA06e3svSNuRq HTTP/1.1
Path: #
/api/workflows/{workflow}
| Parameter |
Description |
workflow |
The ID of the workflow. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 204 No Content
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
WorkflowNotFound |
The workflow can not be found. |
Retrieve workflow #
Retrieve a workflow.
HTTP request #
GET /api/workflows/wf0WhsKYcjfsxa HTTP/1.1
Path: #
/api/workflows/{workflow}
| Parameter |
Description |
workflow |
The ID of the workflow. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"approvers" : [ {
"email" : "devon.hodkiewicz14539@acme.com",
"firstName" : "Carolin",
"id" : "apU6ixeXIlldNY",
"invitationMode" : "inviteByEmail",
"lastName" : "Goyette",
"locale" : "us",
"sendDownloadLinkOnFinished" : true
} ],
"automatedInvitationReminderPeriod" : 172800000,
"createdByUser" : "us000000000000",
"createdOn" : 1718862212559,
"emailNotifications" : { },
"id" : "wf0WhsKYcjfsxa",
"maxAutomatedInvitationReminders" : 2,
"organization" : "og4hooJWKGw1L1",
"sendAutomatedInvitations" : true,
"shortName" : "Community-Services #79830",
"signers" : [ {
"authenticationMode" : "noAuthentication",
"email" : "brian.bailey39053@acme.com",
"firstName" : "Claud",
"forceViewDocuments" : true,
"id" : "si5iSgsAWBFswi",
"invitationMode" : "inviteByEmail",
"lastName" : "Schaden",
"locale" : "us",
"sendDownloadLinkOnFinished" : true
} ],
"space" : "spXg4xDPTgfaie",
"updatedOn" : 1718862212559,
"workflowStatus" : "draft"
}
Fields: #
| Path |
Type |
Description |
approvers |
Approver[] |
The approvers of the workflow. |
approvers[].id optional |
String |
The ID of the approver. |
approvers[].firstName |
String |
The first name of the approver. |
approvers[].lastName |
String |
The last name of the approver. |
approvers[].email optional |
String |
The email address of the approver. |
approvers[].phone optional |
String |
The phone number of the approver. |
approvers[].locale |
String |
The preferred locale of the approver. |
approvers[].invitationMode |
String |
The invitation mode of the approver. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
approvers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the approver once the workflow is finished. |
approvers[].approvalStatus optional |
String |
The status of the approval. Possible values: approved, invited, refused. |
approvers[].lastEventCreatedOn optional |
Date |
The date of the approver last event. |
automatedInvitationReminderPeriod |
Number |
The period after which an invitation reminder is sent automatically. |
createdByApiToken optional |
String |
The ID of the API token that created the workflow. |
createdByUser optional |
String |
The ID of the user that created the workflow. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: processWorkflow. |
emailNotifications |
Object |
The email notifications. |
id |
String |
The ID of the entity. |
maxAutomatedInvitationReminders |
Number |
The maximum number of reminders sent automatically to each approver and signer. |
organization |
String |
The organization. |
sendAutomatedInvitations |
Boolean |
Whether invitations should be sent automatically to the approvers and the signers. |
shortName |
String |
The short name of the entity. |
signers |
Signer[] |
The signers of the workflow. |
signers[].id optional |
String |
The ID of the signer. |
signers[].firstName |
String |
The first name of the signer. |
signers[].lastName |
String |
The last name of the signer. |
signers[].email optional |
String |
The email address of the signer. |
signers[].phone optional |
String |
The phone number of the signer. |
signers[].locale |
String |
The preferred locale of the signer. |
signers[].invitationMode |
String |
The invitation mode of the signer. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
signers[].authenticationMode |
String |
The authentication mode of the signer. Possible values: authenticateWithEmail, authenticateWithIdp, authenticateWithPhone, authenticateWithWhatsapp, noAuthentication. |
signers[].forceViewDocuments optional |
Boolean |
Whether the signer will be forced to view the documents before signing. |
signers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the signer once the workflow is finished. |
signers[].signatureStatus optional |
String |
The status of the signature. Possible values: invited, refused, signed. |
signers[].lastEventCreatedOn optional |
Date |
The date of the signer last event. |
space |
String |
The ID of the space. |
thumbnailDocument optional |
String |
The document from which the thumbnail is taken from. |
thumbnailResource optional |
String |
The thumbnail resource of the workflow. |
updatedOn |
Number |
The date of last modification of the entity. |
workflowStatus |
String |
The status of the workflow. Possible values: draft, finished, started. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
WorkflowNotFound |
The workflow can not be found. |
Update workflow #
Update a workflow.
HTTP request #
PATCH /api/workflows/wfWn9PBGb8wQT7 HTTP/1.1
{
"space" : "spXg4xDPTgfaie",
"emailNotifications" : {
"richie.hermiston53984@acme.com" : {
"notificationTypes" : [ "workflowFinished" ],
"locale" : "fr_FR"
}
},
"shortName" : "Medical Practice #78357",
"approvers" : [ {
"id" : "apOlOPoi6poQ70",
"firstName" : "Edison",
"lastName" : "Bailey",
"email" : "ginger.veum48785@acme.com",
"phone" : "+11174401280",
"locale" : "fr_FR",
"invitationMode" : "inviteByEmail",
"sendDownloadLinkOnFinished" : true
} ],
"signers" : [ {
"id" : "siMNW4Ynb5qQct",
"firstName" : "Alisha",
"lastName" : "Lebsack",
"email" : "cornell.greenholt99704@acme.com",
"phone" : "+11153099968",
"locale" : "fr_FR",
"invitationMode" : "inviteByEmail",
"authenticationMode" : "authenticateWithPhone",
"forceViewDocuments" : true,
"sendDownloadLinkOnFinished" : true
} ]
}
Path: #
/api/workflows/{workflow}
| Parameter |
Description |
workflow |
The ID of the workflow. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
approvers |
Approver[] |
The approvers of the workflow. |
approvers[].id optional |
String |
The ID of the approver. |
approvers[].firstName |
String |
The first name of the approver. |
approvers[].lastName |
String |
The last name of the approver. |
approvers[].email optional |
String |
The email address of the approver. |
approvers[].phone optional |
String |
The phone number of the approver. |
approvers[].locale |
String |
The preferred locale of the approver. |
approvers[].invitationMode |
String |
The invitation mode of the approver. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
approvers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the approver once the workflow is finished. |
approvers[].approvalStatus optional |
String |
The status of the approval. Possible values: approved, invited, refused. |
approvers[].lastEventCreatedOn optional |
Date |
The date of the approver last event. |
automatedInvitationReminderPeriod optional |
Number |
The period after which an invitation reminder is sent automatically. |
emailNotifications optional |
Object |
The email notifications. |
maxAutomatedInvitationReminders optional |
Number |
The maximum number of reminders sent automatically to each approver and signer. |
sendAutomatedInvitations optional |
Boolean |
Whether invitations should be sent automatically to the approvers and the signers. |
shortName optional |
String |
The short name of the entity. |
signers |
Signer[] |
The signers of the workflow. |
signers[].id optional |
String |
The ID of the signer. |
signers[].firstName |
String |
The first name of the signer. |
signers[].lastName |
String |
The last name of the signer. |
signers[].email optional |
String |
The email address of the signer. |
signers[].phone optional |
String |
The phone number of the signer. |
signers[].locale |
String |
The preferred locale of the signer. |
signers[].invitationMode |
String |
The invitation mode of the signer. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
signers[].authenticationMode |
String |
The authentication mode of the signer. Possible values: authenticateWithEmail, authenticateWithIdp, authenticateWithPhone, authenticateWithWhatsapp, noAuthentication. |
signers[].forceViewDocuments optional |
Boolean |
Whether the signer will be forced to view the documents before signing. |
signers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the signer once the workflow is finished. |
signers[].signatureStatus optional |
String |
The status of the signature. Possible values: invited, refused, signed. |
signers[].lastEventCreatedOn optional |
Date |
The date of the signer last event. |
space optional |
String |
The ID of the space. |
thumbnail optional |
String |
The URL or the data URI of the workflow thumbnail. |
thumbnailDocument optional |
String |
The document from which the thumbnail is taken from. |
workflowStatus optional |
String |
The status of the workflow. Possible values: draft, finished, started. |
HTTP response #
HTTP/1.1 200 OK
{
"approvers" : [ {
"email" : "ginger.veum48785@acme.com",
"firstName" : "Edison",
"id" : "apOlOPoi6poQ70",
"invitationMode" : "inviteByEmail",
"lastName" : "Bailey",
"locale" : "fr-FR",
"sendDownloadLinkOnFinished" : true
} ],
"automatedInvitationReminderPeriod" : 172800000,
"createdByUser" : "us000000000000",
"createdOn" : 1718862273217,
"emailNotifications" : {
"richie.hermiston53984@acme.com" : {
"locale" : "fr-FR",
"notificationTypes" : [ "workflowFinished" ]
}
},
"id" : "wfWn9PBGb8wQT7",
"maxAutomatedInvitationReminders" : 2,
"organization" : "og4hooJWKGw1L1",
"sendAutomatedInvitations" : true,
"shortName" : "Medical Practice #78357",
"signers" : [ {
"authenticationMode" : "authenticateWithPhone",
"email" : "cornell.greenholt99704@acme.com",
"firstName" : "Alisha",
"forceViewDocuments" : true,
"id" : "siMNW4Ynb5qQct",
"invitationMode" : "inviteByEmail",
"lastName" : "Lebsack",
"locale" : "fr-FR",
"phone" : "+1 1153099968",
"sendDownloadLinkOnFinished" : true
} ],
"space" : "spXg4xDPTgfaie",
"updatedOn" : 1718862273226,
"workflowStatus" : "draft"
}
Fields: #
| Path |
Type |
Description |
approvers |
Approver[] |
The approvers of the workflow. |
approvers[].id optional |
String |
The ID of the approver. |
approvers[].firstName |
String |
The first name of the approver. |
approvers[].lastName |
String |
The last name of the approver. |
approvers[].email optional |
String |
The email address of the approver. |
approvers[].phone optional |
String |
The phone number of the approver. |
approvers[].locale |
String |
The preferred locale of the approver. |
approvers[].invitationMode |
String |
The invitation mode of the approver. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
approvers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the approver once the workflow is finished. |
approvers[].approvalStatus optional |
String |
The status of the approval. Possible values: approved, invited, refused. |
approvers[].lastEventCreatedOn optional |
Date |
The date of the approver last event. |
automatedInvitationReminderPeriod |
Number |
The period after which an invitation reminder is sent automatically. |
createdByApiToken optional |
String |
The ID of the API token that created the workflow. |
createdByUser optional |
String |
The ID of the user that created the workflow. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: processWorkflow. |
emailNotifications |
Object |
The email notifications. |
id |
String |
The ID of the entity. |
maxAutomatedInvitationReminders |
Number |
The maximum number of reminders sent automatically to each approver and signer. |
organization |
String |
The organization. |
sendAutomatedInvitations |
Boolean |
Whether invitations should be sent automatically to the approvers and the signers. |
shortName |
String |
The short name of the entity. |
signers |
Signer[] |
The signers of the workflow. |
signers[].id optional |
String |
The ID of the signer. |
signers[].firstName |
String |
The first name of the signer. |
signers[].lastName |
String |
The last name of the signer. |
signers[].email optional |
String |
The email address of the signer. |
signers[].phone optional |
String |
The phone number of the signer. |
signers[].locale |
String |
The preferred locale of the signer. |
signers[].invitationMode |
String |
The invitation mode of the signer. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
signers[].authenticationMode |
String |
The authentication mode of the signer. Possible values: authenticateWithEmail, authenticateWithIdp, authenticateWithPhone, authenticateWithWhatsapp, noAuthentication. |
signers[].forceViewDocuments optional |
Boolean |
Whether the signer will be forced to view the documents before signing. |
signers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the signer once the workflow is finished. |
signers[].signatureStatus optional |
String |
The status of the signature. Possible values: invited, refused, signed. |
signers[].lastEventCreatedOn optional |
Date |
The date of the signer last event. |
space |
String |
The ID of the space. |
thumbnailDocument optional |
String |
The document from which the thumbnail is taken from. |
thumbnailResource optional |
String |
The thumbnail resource of the workflow. |
updatedOn |
Number |
The date of last modification of the entity. |
workflowStatus |
String |
The status of the workflow. Possible values: draft, finished, started. |
Errors: #
| Status |
Code |
Message |
400 |
FieldValueTooLong |
The specified value is too long. |
400 |
InvalidFieldValue |
An invalid value was entered. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
MissingEmail |
A recipient email is missing. |
403 |
MissingPhone |
A recipient phone is missing. |
403 |
OrganizationDisabled |
The organization is disabled. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
WorkflowNotFound |
The workflow can not be found. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Workflow documents access #
Create a document token to access the documents of a workflow. The returned token has a short validity period, so a token must be created for each document operation.
HTTP request #
POST /api/workflows/wf0WhsKYcjfsxa/documentTokens HTTP/1.1
{
"readWrite" : true
}
Path: #
/api/workflows/{workflow}/documentTokens
| Parameter |
Description |
workflow |
The ID of the workflow. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
readWrite |
Boolean |
true if the token will be used to create or update the workflow documents. false if the token will only be used to retrieve the workflow documents. |
HTTP response #
HTTP/1.1 200 OK
{
"createdOn" : 1718862245480,
"expiredOn" : 1718862845480,
"readWrite" : true,
"tokenValue" : "eyJhdCI6ImF0TjVoaTN6RXNKa29kIiwicnciOnRydWUsImlwIjoiMTI3LjAuMC4xIiwib2ciOiJvZzRob29KV0tHdzFMMSIsImV4cCI6MTcxODg2Mjg0NSwid2YiOiJ3ZjBXaHNLWWNqZnN4YSJ9.rH3DZYAx3xLqPf219MBNxaF6NZeAzhGu8R7aq8bo9iU",
"workflow" : "wf0WhsKYcjfsxa"
}
Fields: #
| Path |
Type |
Description |
createdOn |
Date |
The creation date of the entity. |
documentServiceUrl optional |
URI |
The public URL of the Document Service. |
expiredOn |
Date |
The expiration date of the token. The validity period of the token can be deduced by subtracting the createdOn value from this value. |
readWrite |
Boolean |
true if the token will be used to create or update the workflow documents. false if the token will only be used to retrieve the workflow documents. |
tokenValue |
String |
The token value. |
workflow |
String |
The ID of the workflow. |
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Send approbation invitation #
Send an invitation to a workflow approver.
HTTP request #
POST /api/workflows/wfOjUcgrJGtFBH/approvers/ap9rYUevpfdC24/invitations HTTP/1.1
Path: #
/api/workflows/{workflow}/approvers/{approver}/invitations
| Parameter |
Description |
workflow |
The ID of the workflow. |
approver |
The ID of the approver. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"approvers" : [ {
"approvalStatus" : "invited",
"email" : "joselyn.franecki67640@acme.com",
"firstName" : "Loris",
"id" : "ap9rYUevpfdC24",
"invitationMode" : "inviteByEmail",
"lastEventCreatedOn" : 1718862279460,
"lastName" : "Collier",
"locale" : "us",
"sendDownloadLinkOnFinished" : true
} ],
"automatedInvitationReminderPeriod" : 0,
"createdByUser" : "us000000000000",
"createdOn" : 1718862279169,
"emailNotifications" : { },
"id" : "wfOjUcgrJGtFBH",
"maxAutomatedInvitationReminders" : 0,
"organization" : "og4hooJWKGw1L1",
"sendAutomatedInvitations" : false,
"shortName" : "Accounting #59560",
"signers" : [ {
"authenticationMode" : "noAuthentication",
"email" : "rosario.durgan72692@acme.com",
"firstName" : "Saturnina",
"forceViewDocuments" : true,
"id" : "siUgCo3piPpgja",
"invitationMode" : "inviteByEmail",
"lastName" : "Hammes",
"locale" : "us",
"sendDownloadLinkOnFinished" : true
} ],
"space" : "spXg4xDPTgfaie",
"updatedOn" : 1718862279464,
"workflowStatus" : "started"
}
Fields: #
| Path |
Type |
Description |
approvers |
Approver[] |
The approvers of the workflow. |
approvers[].id optional |
String |
The ID of the approver. |
approvers[].firstName |
String |
The first name of the approver. |
approvers[].lastName |
String |
The last name of the approver. |
approvers[].email optional |
String |
The email address of the approver. |
approvers[].phone optional |
String |
The phone number of the approver. |
approvers[].locale |
String |
The preferred locale of the approver. |
approvers[].invitationMode |
String |
The invitation mode of the approver. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
approvers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the approver once the workflow is finished. |
approvers[].approvalStatus optional |
String |
The status of the approval. Possible values: approved, invited, refused. |
approvers[].lastEventCreatedOn optional |
Date |
The date of the approver last event. |
automatedInvitationReminderPeriod |
Number |
The period after which an invitation reminder is sent automatically. |
createdByApiToken optional |
String |
The ID of the API token that created the workflow. |
createdByUser optional |
String |
The ID of the user that created the workflow. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: processWorkflow. |
emailNotifications |
Object |
The email notifications. |
id |
String |
The ID of the entity. |
maxAutomatedInvitationReminders |
Number |
The maximum number of reminders sent automatically to each approver and signer. |
organization |
String |
The organization. |
sendAutomatedInvitations |
Boolean |
Whether invitations should be sent automatically to the approvers and the signers. |
shortName |
String |
The short name of the entity. |
signers |
Signer[] |
The signers of the workflow. |
signers[].id optional |
String |
The ID of the signer. |
signers[].firstName |
String |
The first name of the signer. |
signers[].lastName |
String |
The last name of the signer. |
signers[].email optional |
String |
The email address of the signer. |
signers[].phone optional |
String |
The phone number of the signer. |
signers[].locale |
String |
The preferred locale of the signer. |
signers[].invitationMode |
String |
The invitation mode of the signer. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
signers[].authenticationMode |
String |
The authentication mode of the signer. Possible values: authenticateWithEmail, authenticateWithIdp, authenticateWithPhone, authenticateWithWhatsapp, noAuthentication. |
signers[].forceViewDocuments optional |
Boolean |
Whether the signer will be forced to view the documents before signing. |
signers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the signer once the workflow is finished. |
signers[].signatureStatus optional |
String |
The status of the signature. Possible values: invited, refused, signed. |
signers[].lastEventCreatedOn optional |
Date |
The date of the signer last event. |
space |
String |
The ID of the space. |
thumbnailDocument optional |
String |
The document from which the thumbnail is taken from. |
thumbnailResource optional |
String |
The thumbnail resource of the workflow. |
updatedOn |
Number |
The date of last modification of the entity. |
workflowStatus |
String |
The status of the workflow. Possible values: draft, finished, started. |
Errors: #
| Status |
Code |
Message |
403 |
InvalidInvitationMode |
The invitation mode is invalid. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
TooManyInvitations |
An invitation was already sent to this recipient recently. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
WorkflowNotFound |
The workflow can not be found. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Send signature invitation #
Send an invitation to a workflow signer.
HTTP request #
POST /api/workflows/wfMuxsxNoRLmRB/signers/si36dkhC6On9Ur/invitations HTTP/1.1
Path: #
/api/workflows/{workflow}/signers/{signer}/invitations
| Parameter |
Description |
workflow |
The ID of the workflow. |
signer |
The ID of the signer. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"approvers" : [ {
"approvalStatus" : "approved",
"email" : "zella.feil9581@acme.com",
"firstName" : "Chantay",
"id" : "apQY6wAy1f5yfG",
"invitationMode" : "inviteByEmail",
"lastEventCreatedOn" : 1718862308194,
"lastName" : "Larson",
"locale" : "us",
"sendDownloadLinkOnFinished" : true
} ],
"automatedInvitationReminderPeriod" : 0,
"createdByUser" : "us000000000000",
"createdOn" : 1718862307861,
"emailNotifications" : { },
"id" : "wfMuxsxNoRLmRB",
"maxAutomatedInvitationReminders" : 0,
"organization" : "og4hooJWKGw1L1",
"sendAutomatedInvitations" : false,
"shortName" : "IT #78629",
"signers" : [ {
"authenticationMode" : "noAuthentication",
"email" : "barrett.kuhlman92136@acme.com",
"firstName" : "Andrea",
"forceViewDocuments" : true,
"id" : "si36dkhC6On9Ur",
"invitationMode" : "inviteByEmail",
"lastEventCreatedOn" : 1718862308563,
"lastName" : "Towne",
"locale" : "us",
"sendDownloadLinkOnFinished" : true,
"signatureStatus" : "invited"
} ],
"space" : "spXg4xDPTgfaie",
"updatedOn" : 1718862308572,
"workflowStatus" : "started"
}
Fields: #
| Path |
Type |
Description |
approvers |
Approver[] |
The approvers of the workflow. |
approvers[].id optional |
String |
The ID of the approver. |
approvers[].firstName |
String |
The first name of the approver. |
approvers[].lastName |
String |
The last name of the approver. |
approvers[].email optional |
String |
The email address of the approver. |
approvers[].phone optional |
String |
The phone number of the approver. |
approvers[].locale |
String |
The preferred locale of the approver. |
approvers[].invitationMode |
String |
The invitation mode of the approver. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
approvers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the approver once the workflow is finished. |
approvers[].approvalStatus optional |
String |
The status of the approval. Possible values: approved, invited, refused. |
approvers[].lastEventCreatedOn optional |
Date |
The date of the approver last event. |
automatedInvitationReminderPeriod |
Number |
The period after which an invitation reminder is sent automatically. |
createdByApiToken optional |
String |
The ID of the API token that created the workflow. |
createdByUser optional |
String |
The ID of the user that created the workflow. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: processWorkflow. |
emailNotifications |
Object |
The email notifications. |
id |
String |
The ID of the entity. |
maxAutomatedInvitationReminders |
Number |
The maximum number of reminders sent automatically to each approver and signer. |
organization |
String |
The organization. |
sendAutomatedInvitations |
Boolean |
Whether invitations should be sent automatically to the approvers and the signers. |
shortName |
String |
The short name of the entity. |
signers |
Signer[] |
The signers of the workflow. |
signers[].id optional |
String |
The ID of the signer. |
signers[].firstName |
String |
The first name of the signer. |
signers[].lastName |
String |
The last name of the signer. |
signers[].email optional |
String |
The email address of the signer. |
signers[].phone optional |
String |
The phone number of the signer. |
signers[].locale |
String |
The preferred locale of the signer. |
signers[].invitationMode |
String |
The invitation mode of the signer. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
signers[].authenticationMode |
String |
The authentication mode of the signer. Possible values: authenticateWithEmail, authenticateWithIdp, authenticateWithPhone, authenticateWithWhatsapp, noAuthentication. |
signers[].forceViewDocuments optional |
Boolean |
Whether the signer will be forced to view the documents before signing. |
signers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the signer once the workflow is finished. |
signers[].signatureStatus optional |
String |
The status of the signature. Possible values: invited, refused, signed. |
signers[].lastEventCreatedOn optional |
Date |
The date of the signer last event. |
space |
String |
The ID of the space. |
thumbnailDocument optional |
String |
The document from which the thumbnail is taken from. |
thumbnailResource optional |
String |
The thumbnail resource of the workflow. |
updatedOn |
Number |
The date of last modification of the entity. |
workflowStatus |
String |
The status of the workflow. Possible values: draft, finished, started. |
Errors: #
| Status |
Code |
Message |
403 |
InvalidInvitationMode |
The invitation mode is invalid. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
TooManyInvitations |
An invitation was already sent to this recipient recently. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
404 |
WorkflowNotFound |
The workflow can not be found. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Create approbation link #
Create an approbation link for a workflow approver who has invitationMode set to noInvitation.
HTTP request #
POST /api/workflows/wfGulznLFHe7Vj/approvers/apZ9qIZxhGM16g/approbationLinks HTTP/1.1
{
"redirectUrl" : "https://kohler88283.acme.com/callback"
}
Path: #
/api/workflows/{workflow}/approvers/{approver}/approbationLinks
| Parameter |
Description |
workflow |
The ID of the workflow. |
approver |
The ID of the approver. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
redirectUrl optional |
URI |
The URL to redirect to, once the invited recipient has finished. |
HTTP response #
HTTP/1.1 200 OK
{
"approbationLink" : "http://localhost:8789/?HVjlDO1LA0HmEKJoeqTB"
}
Fields: #
| Path |
Type |
Description |
approbationLink |
String |
The approbation link. |
Errors: #
| Status |
Code |
Message |
403 |
InvalidInvitationMode |
The invitation mode is invalid. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Create signature link #
Create an signature link for a workflow signer who has invitationMode set to noInvitation.
HTTP request #
POST /api/workflows/wf9h8gWvKL2Yat/signers/si98pfsIDj7xEh/signatureLinks HTTP/1.1
{
"redirectUrl" : "https://toy5930.acme.com/callback"
}
Path: #
/api/workflows/{workflow}/signers/{signer}/signatureLinks
| Parameter |
Description |
workflow |
The ID of the workflow. |
signer |
The ID of the signer. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
redirectUrl optional |
URI |
The URL to redirect to, once the invited recipient has finished. |
HTTP response #
HTTP/1.1 200 OK
{
"signatureLink" : "http://localhost:8789/?iJACBDVHWSa0oW9UQEOM"
}
Fields: #
| Path |
Type |
Description |
signatureLink |
String |
The signature link. |
Errors: #
| Status |
Code |
Message |
403 |
InvalidInvitationMode |
The invitation mode is invalid. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
412 |
UpdateCheckFailed |
Verification failed while trying to update. |
Search workflows #
Search workflows.
HTTP request #
GET /api/workflows?search=Community-Services+%2379830&filter=id%3Dwf0WhsKYcjfsxa%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn&maxEntities=25&offset=0 HTTP/1.1
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, activeLinks, createdByApiToken, createdByUser, createdOn, currentInvitedEmails, currentInvitedPhones, currentJobErrorCode, currentJobLockedOn, currentJobOperation, nextProcessOn, notifiedEmails, organization, pendingInvitedEmails, pendingInvitedPhones, shortName, space, startedOn, updatedOn, workflowStatus. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, activeLinks, createdByApiToken, createdByUser, createdOn, currentInvitedEmails, currentInvitedPhones, currentJobErrorCode, currentJobLockedOn, currentJobOperation, nextProcessOn, notifiedEmails, organization, pendingInvitedEmails, pendingInvitedPhones, shortName, space, startedOn, updatedOn, workflowStatus. Use the - prefix to sort in descending order. |
maxEntities |
The maximum number of entities in the search result. Maximum is 50. |
offset |
The offset of the first entity in the search result. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
{
"entities" : [ {
"approvers" : [ {
"email" : "devon.hodkiewicz14539@acme.com",
"firstName" : "Carolin",
"id" : "apU6ixeXIlldNY",
"invitationMode" : "inviteByEmail",
"lastName" : "Goyette",
"locale" : "us",
"sendDownloadLinkOnFinished" : true
} ],
"automatedInvitationReminderPeriod" : 172800000,
"createdByUser" : "us000000000000",
"createdOn" : 1718862212559,
"emailNotifications" : { },
"id" : "wf0WhsKYcjfsxa",
"maxAutomatedInvitationReminders" : 2,
"organization" : "og4hooJWKGw1L1",
"sendAutomatedInvitations" : true,
"shortName" : "Community-Services #79830",
"signers" : [ {
"authenticationMode" : "noAuthentication",
"email" : "brian.bailey39053@acme.com",
"firstName" : "Claud",
"forceViewDocuments" : true,
"id" : "si5iSgsAWBFswi",
"invitationMode" : "inviteByEmail",
"lastName" : "Schaden",
"locale" : "us",
"sendDownloadLinkOnFinished" : true
} ],
"space" : "spXg4xDPTgfaie",
"updatedOn" : 1718862212559,
"workflowStatus" : "draft"
} ],
"offset" : 0,
"totalEntities" : 1
}
Fields: #
| Path |
Type |
Description |
offset |
Number |
The offset of the first entity in the search result. |
totalEntities |
Number |
The total number of entities. |
entities |
Workflow[] |
The entities returned in the search result. |
entities[].approvers |
Approver[] |
The approvers of the workflow. |
entities[].approvers[].id optional |
String |
The ID of the approver. |
entities[].approvers[].firstName |
String |
The first name of the approver. |
entities[].approvers[].lastName |
String |
The last name of the approver. |
entities[].approvers[].email optional |
String |
The email address of the approver. |
entities[].approvers[].phone optional |
String |
The phone number of the approver. |
entities[].approvers[].locale |
String |
The preferred locale of the approver. |
entities[].approvers[].invitationMode |
String |
The invitation mode of the approver. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
entities[].approvers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the approver once the workflow is finished. |
entities[].approvers[].approvalStatus optional |
String |
The status of the approval. Possible values: approved, invited, refused. |
entities[].approvers[].lastEventCreatedOn optional |
Date |
The date of the approver last event. |
entities[].automatedInvitationReminderPeriod |
Number |
The period after which an invitation reminder is sent automatically. |
entities[].createdByApiToken optional |
String |
The ID of the API token that created the workflow. |
entities[].createdByUser optional |
String |
The ID of the user that created the workflow. |
entities[].createdOn |
Number |
The creation date of the entity. |
entities[].currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
entities[].currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: processWorkflow. |
entities[].emailNotifications |
Object |
The email notifications. |
entities[].id |
String |
The ID of the entity. |
entities[].maxAutomatedInvitationReminders |
Number |
The maximum number of reminders sent automatically to each approver and signer. |
entities[].organization |
String |
The organization. |
entities[].sendAutomatedInvitations |
Boolean |
Whether invitations should be sent automatically to the approvers and the signers. |
entities[].shortName |
String |
The short name of the entity. |
entities[].signers |
Signer[] |
The signers of the workflow. |
entities[].signers[].id optional |
String |
The ID of the signer. |
entities[].signers[].firstName |
String |
The first name of the signer. |
entities[].signers[].lastName |
String |
The last name of the signer. |
entities[].signers[].email optional |
String |
The email address of the signer. |
entities[].signers[].phone optional |
String |
The phone number of the signer. |
entities[].signers[].locale |
String |
The preferred locale of the signer. |
entities[].signers[].invitationMode |
String |
The invitation mode of the signer. Possible values: inviteByEmail, inviteByPhone, inviteByWhatsapp, noInvitation. |
entities[].signers[].authenticationMode |
String |
The authentication mode of the signer. Possible values: authenticateWithEmail, authenticateWithIdp, authenticateWithPhone, authenticateWithWhatsapp, noAuthentication. |
entities[].signers[].forceViewDocuments optional |
Boolean |
Whether the signer will be forced to view the documents before signing. |
entities[].signers[].sendDownloadLinkOnFinished optional |
Boolean |
Whether a link to download the signed documents should be sent to the signer once the workflow is finished. |
entities[].signers[].signatureStatus optional |
String |
The status of the signature. Possible values: invited, refused, signed. |
entities[].signers[].lastEventCreatedOn optional |
Date |
The date of the signer last event. |
entities[].space |
String |
The ID of the space. |
entities[].thumbnailDocument optional |
String |
The document from which the thumbnail is taken from. |
entities[].thumbnailResource optional |
String |
The thumbnail resource of the workflow. |
entities[].updatedOn |
Number |
The date of last modification of the entity. |
entities[].workflowStatus |
String |
The status of the workflow. Possible values: draft, finished, started. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Create an export of workflows #
Export workflows.
HTTP request #
POST /api/workflows/exports?search=Community-Services+%2379830&filter=id%3Dwf0WhsKYcjfsxa%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn HTTP/1.1
{
"contentType" : "text/csv",
"beforeEntities" : "",
"afterEntities" : "",
"betweenEntities" : "\n",
"entityTemplate" : "{{id}},{{shortName}}"
}
Query parameters: #
| Parameter |
Description |
search |
The searched text. |
filter |
The expression used to filter the search result. The following fields can be used in the expression: id, activeLinks, createdByApiToken, createdByUser, createdOn, currentInvitedEmails, currentInvitedPhones, currentJobErrorCode, currentJobLockedOn, currentJobOperation, nextProcessOn, notifiedEmails, organization, pendingInvitedEmails, pendingInvitedPhones, shortName, space, startedOn, updatedOn, workflowStatus. |
sortBy |
The field used to sort the search result. The following fields are allowed: id, activeLinks, createdByApiToken, createdByUser, createdOn, currentInvitedEmails, currentInvitedPhones, currentJobErrorCode, currentJobLockedOn, currentJobOperation, nextProcessOn, notifiedEmails, organization, pendingInvitedEmails, pendingInvitedPhones, shortName, space, startedOn, updatedOn, workflowStatus. Use the - prefix to sort in descending order. |
| Name |
Description |
Authorization |
A valid API token. |
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
HTTP response #
HTTP/1.1 200 OK
{
"afterEntities" : "",
"beforeEntities" : "",
"betweenEntities" : "\n",
"contentType" : "text/csv",
"createdOn" : 1718862297113,
"currentJobOperation" : "exportEntities",
"entityTemplate" : "{{id}},{{shortName}}",
"exportOperation" : "exportWorkflows",
"id" : "ex9l3SU6LrJtfL",
"organization" : "og4hooJWKGw1L1",
"searchQuery" : "search=Community-Services+%2379830&filter=id%3Dwf0WhsKYcjfsxa%26updatedOn%3E%3D1718862211203&sortBy=-updatedOn",
"updatedOn" : 1718862297113
}
Fields: #
| Path |
Type |
Description |
afterEntities optional |
String |
The text to insert at the end of the export. |
beforeEntities optional |
String |
The text to insert at the beginning of the export. |
betweenEntities optional |
String |
The text to insert between all exported entities. |
contentType optional |
String |
The content media type. |
createdOn |
Number |
The creation date of the entity. |
currentJobErrorCode optional |
String |
The error code of the last job execution (internal use only). |
currentJobOperation optional |
String |
The operation of the job currently running (internal use only). Possible values: exportEntities. |
entityTemplate optional |
String |
The template to apply on each exported entity. |
exportOperation |
String |
The export operation. Possible values: exportApiTokens, exportAuditLogs, exportContacts, exportOrganizations, exportRoles, exportSpaces, exportUsers, exportWorkflows. |
exportSize optional |
Number |
The size in bytes of the export. |
id |
String |
The ID of the entity. |
organization optional |
String |
The organization. |
ownedByUser optional |
String |
The owner user. |
searchQuery |
String |
The search query used to list the exported entities. |
totalEntities optional |
Number |
The total number of entities. |
updatedOn |
Number |
The date of last modification of the entity. |
Errors: #
| Status |
Code |
Message |
400 |
InvalidFilterParameter |
The “filter” parameter is incorrect. |
400 |
InvalidSortByParameter |
The “sortBy” parameter is incorrect. |
400 |
InvalidTemplate |
The template could not be parsed. |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |
Download the signature manifests #
Download the signature manifests of a Workflow.
HTTP request #
GET /api/workflows/wfNDpM9DrfREtu/signatureManifests HTTP/1.1
Path: #
/api/workflows/{workflow}/signatureManifests
| Parameter |
Description |
workflow |
The ID of the workflow. |
| Name |
Description |
Authorization |
A valid API token. |
HTTP response #
HTTP/1.1 200 OK
PK���=�X���������������siGjtIF24hbwJy.pdf̼ 8U��ɔ9�PG�3
�L���y�%S��y��"�̑�y
�KR
"!��C=�<���_���{��%{��{�}��^��k>uY9�(��o���4%�8]��<}ZL���� �ec�h���jP1u���ps��q�0uwr�X�:9�x8�m�N�fh������]���i'GYSwt���`
���@
���ϩ8���G$%)-�w���y��@�bgU�b�N������TJ19{w����٣{��0s2��S�p�r��QII��;�T(���b�Z0�h ���#��l4�m�3���-Њϓ^TS�Z!rws�}0o&HN3�'4�2WZ3��͓���Ƶ3�bogI�>�{Ig�k�vM��ɉ\���|�ͻ�hUM��a.�����0��ɹL��~����MV��2�y
��·�<-'�� wHW|���|N�$��!T_�5r�):'���9rlLl7N��-��
�h�47���K�H��$�NYU�z�`�3���FMˢ��EQ�ֺe�����Z��؏��ߘ�D.��缾�g��y�b��mY%�.m�7��7���x�7c�\u���]P�lka�N)��q��/����z��l�w��S����v��]����U����`(�(#s�����{5�Ѝ����`�[��m��n�*�����h��@�������w饴K�:��V�����Ƈ:
K(��ȥL�x��f6e^��g3�d��WA5i=F�s��~�\=�TR���m���f��ۋ>�⢄wc��ߎ|�������g[����e�t�ԃR�;����������s>��k�=^[���6�;-�q��W���W>���ɰ�g�����������U§- ƚ��-�g��|lZ88�\�4�Ȩ)�������ǭ�����C�9��#���D�
ܫ歇�zu���ֆ��ܤ�w��?������'��h�����#������{t���Ē����:�q�yT���=Ck��Ww�YNR��Ts��W?�H�eD��deW��$�!����[hm���W�,/sj�H����?=�x����iɝ�;�bс�E���~�[ˋKe��^��|�$I��z��ZDSS�f�O�/_hi7[g>�Gl�=�o0���bz\u��OI2�ߵ�ă�NfTHm-�V1>ͽ9\�@F|PH��0B���� ��JC�M(�I�!2 �&��+�U�����1_���)#�%������<�?"���O*:�����?Dl]�Viȅ���g2+c��BD~* ������a/a�b������J-olW�HP
��꺉�X˾�^.�ӟ�ד٪�a<��z� Ox�q��Zn{q��@�Z�mӒ�Y�\E�zS2#��u���3��$+�f���d�P������W��.��ʲ�/>Ҳ�w���j�������oyrԙ&��#2^ �3��L%~�X��y}��ɥ����T�3f�D�N�����R����� ol�S=�9�O����a@Mɐ�乓�@����o�]�/���]�ή1�+�X�3_"���ܰ�Ԋ�m\X�&`�
���l�y�VA�����M�/I88���'��J�~Z����ԥm%7�TW��N.T���odX��(!'y��_����m��O�OC\�+<׳�������p��.̵�iy?��4��T'V|�M&��df��@^���Ƕ[�'8�H�Ig�^_�TSL.Z�ț�|t:#��6"���m�-/TLsH�C�
���)�q�ZPp�b}��߿e�Ѩ<w2h�n�0 ��e����SR�Rl�mgUB!�Isu=�m�W�?�!f��q��h]$����Q��k'����k�Gn�R9�⠞'�1���r!N�� �z.��Zz����^��5('+'+i\���}��h��ɍ�Y�R
�r������O_iK�V�����A9�|�\��Ku�16����Lk4#��۴�Xy�����_�c��j(�7V�zE���?:�[jņG9</=V�9����ҥF�WG��������rrި8�'�u���.etP9��E����J�+��a��Ubb(�ַ��ˌ����D��K�.��6��
�z�$>�X?.ߋ��
�7=Vv�Z�y@u0+�샯�W�H!jNU���+Y�!��<T��H��q����.q�WF94 �|���I�J���31�X�
E��l{1���R�U,��s����4a�*gZ.�ڑG�Q��'�x9���Y��O߬ �xm(���4�e��"��J�Ȍ}��و����i��ʌ��a�>sUm�<�G�%o��5M���=�;�|JVb5������f���n����f'[/��F?��П��a��y�NտDlՃg�8���#�=x>�,�C`,�"G�1� ��F����&+_k���e�i����FS��E�̞�d˛>#���2my���{W8
[E�)���S���� ���}�����;Z "���ۀ���L�R�g%δ�ULr�:���v�+���̓o,�oh~T�6"b�%}���Eq��eeqʨ���A�%�>v����ϲW��R�G����JR�'W>�<��&KxAy��/4���tۤ��q�����}{�Uy-��T0;�|2ͽ�W��.��A�EӦ��yل��ˡ�p%��sر�{���NW/�WN"�5g�]�C���wD�|�}&3M���l�D'�W]=s����L}%�;����� �3������hZ�9y��Y��;�9����;:��M�Ĵ-���#�����������y��k��f`�C�!��$K�N��~v����/����_69����!Ƚ���U,�mL�:y�h#��h78rtG�>n���QZ�f�ꦮ���ޯ�Я�%?�����l��@ �D��_��
�?�B������8�R켍���f
�������9{�I�5��
��S�Iۻ��uS˫��;��;������Ƞ
�V�}�EY�PR
��E�-���?p������x��!�w���&n�0�f�8��ͪ:9�Y�j�g4 <4 &
��n����3�0�p������ �� ��-�2��2�@��$�q�I��%ۧ�7$&�N������q��7�)�����B�7�q�b6�����?�V(>&f���[��L�}�)`%�ù�w��)q��`���?��qc�� ]���C�����A���C]��c��A��Ʉ_��������w��)q�
S 9(�g��7n���_�\���NπaMl���)����_����!�k �?cB�c��'��&
?֤#�f�9 �{���;� A��� ���rLE��P��~����P�����
��A0�J�]
��B0�JX���lػh���}`�{�)���/n�`J� i�b���4@ ��J_P��(Aڀ �_ �����ڰw��1q���A���Sm�9B1�F�6��v#~m�bj� m���6�렘��#H0��kS`�U�.�>&n���#H`�
�bG(�6��~m�bj� m���6�젘��#H0��kS`�U�.�>&n���'H��
��H�6� ���nǯ
0Lm��
�?�|Q$S�i&~m�aj��j��E����S�i���/��aj� m�c����6� ��j_ ��8Aڀ �_`�����ڰw��1q���A>������"���_3'[F�O��sA�( �P���G8�( �o(����A����!����S��&�;8ּ#螄9
��h���}`���OE_��A��@�͆_����$�a���B;��" �5a@!��-�o �'aΆ�.�>&��a��i�O�_����$Aڀ�ۍ�����
H����ڀ/�C`j� m��¯
Lm@�Wmػh���}`j� m@��6��ڀ$H�n�_�ڀ"HP�
|�SPi
�6 1��_�a��c��6���j_����Aڀ�ۍP����
(���/��bP�
�ڀ"H0��kSP�U�.�>&n�ڀ"HP��
X�w6`j� m@a�~m@bjH��~�P�U�$H0��������{�)��!�R�_$k��((Vτ=>�1��J� X�$ ������U"$,��"�/(V��U+�/�/X�n�X�V�S���g�PX=�4��Y�%�% �$����'�@�:Vτ-�a���j�˱F�����;�X�"L5@�x���c�L�j�0|�W5�>��>a��S���y��A��^��aU�@�Y5@��«h9��0�!�p��d �W�������w�x��&;����V��7�8A����>S�O$��� ��L��k`�"�AXm ªBAe�{g���U� "�z�o��hx�AV%��
Jl4���UC "��sR�WS��K v�+��l�?�`|�
�
7ae� �:ѽ�ƃ��ʄ�S����
OPª�VR������vi�n\���?9��N ��W�������ʁ'*aU��a��5.V}(��R7�+����DXi'6~��*�V��99 �ʁ���U"��c��b�)��'A0��r`Ս��|���r����@���b�A�+V�(���X�ɱ��IAXű �
A�?V|�!V�"��SF�)�"��D`!�O�_��<DX�)6~���&V#�99��ʁ���U,"�N�S��W���*bVo
�b�~��*+X�S��W��ª�Vu��ïXť �Jf�&Ǿr�/3a�����X������݉���@��q��l/A��k�=��W<�_�د��/�ޯ��/�ܯ}�/zگvٯٯ�0��Dp�Q��3����_}�Vu~��r�_����W��v�K�9�녳T����.d��� �S�����E������=���{"�w�=��_ǽ�ث}�U��j{Ղ���7�^�`�� �W-�+������,�{E���쀽�ƀ�Ǭ�������l�_�~#����'/�����no����
�_4�/��W���_�f���ր�D����s�~��7��`?���ߎ�7���u���~��yWv��ZmWJ1U���rA�� �h����c��ml�ч`ϕ�z:��:X�~l�}�&Lh��Z,+mE�X�B��ӊ���'�ЯY�i �>�eE���TƴB�~y9�*���$�M�aCg=�/�aYB�\ӊf㰡ӳ��^|A�Ap��a��+`XV4�
���,L+�
�Æ�2~ ���aCǻ�\ӊf�డ�_z�aE����ӊf�Ⱑ�_R�iE�Aq���/����٠8l�;��;!XV4�
쿃�eE�Aq�О��n�iE��pؠh6��a���`8lP4�
�f��A�l06(�
��E��p�`h68��a����8l04�
�f����lp6�
��C��q�`h68��a���8lp4�
�fC���l68�
��G�!p��h6͆�a���8lp4�
�fC�!�lH6�
�Æ@�!q�h6$͆�aC�ِ8l4�
�fC�!�lH6$�
�ÆD��pؐh6͆�aC��P8lH4
�
�fC�!�l(6$�
�ÆD��p�Ph����Xf���Ӽ{��� B��c��B��L���C�ڽWqQ��Q*�y�āD��ā���}0��i"�y��OJ�_蟔��~=>�2�R��I �+ ��S@E$8���S�߱7�y�'T����*��k~Dž��]J�he�Qů�)X�]J�xew��ג=�y�'b�]���2`�w)qb��u��q+�y�'j�]���b�w)q��e�_+�X�]J��ew����"�y�'v�]S��a�w)q���5���7�y�'~�]v��c�w)q"��%�_�TX�]J�fwU��R�y�'����wX�]J�8fw=�w�iޥĉdvc�ߙf���e�}h��?̄�7��G4���ws�_Y�ߙ�����y���_�����Z�����_b��ꂌ�������W~�����):Z:�^0ٷ��0�O���?�������WuWK� ���^S8�(�dmܜ�M��:��}����>`B`�.�}��A!��nL�a~��⣫����$��Gk�>�x� ����tl����&����;L�����غ ��ެ��H�7��A����i��N�RR�rvHwrmz�t&�����/v�^X)(tSM/4���P�É�$@��+�������"�7�]X5�\�ե�o�H���6T��0:����/bĹ(���d���U�$��/dԁgL#N��}8����+Rx�{pJ�>h�ִ^T�N�[L��|b�w,�b�&�����@�����O��D���g�z�@2"�!�^�%`�\�S|��cVb�U6RWH�h���=t���;t�z-��͚CK�T�d
ʉ�"w�t��/��y�ݬI }�R84;@z)����u��ջ�d����Ay\��K�la��#�Y�#��,;�ޥ��~)���Kb�u�m�_����7����:63�V'"���ؑf��
|��8z�j�s;C���Y
� *���2�l����_yl�ByB��ITBOs�] �H�q���v:�$��l��� i3uʚ��۬L��U�J�O�2�v�I��u�V�h�ɮ/J��
oke���*�l�//��/�H�p�
�k��Y6��I钝�
�%��k[�
Q[�;���o�.,��]{����%�Z}���v�_�[ʕ�2���s��@�@����/vV���~(�Q����W:��XT�j~�[���?�s��A���oE���J�Yw���\-�~�K���ř���nIF]qa�y؉��Ga��U�3"�d��<|��%`���������A�m�#q��m���o�
W��>��͐�fH
���"�p&�|B��W���,�G�!�G號q��H���_�M�2���i|�(�.��I*����օYV�,�aI<r��6�&����O��9I�.pf�A���I�a�&I@a=�-���Q��8E�N���w3�����|6�1Z�������6��a�iy�Kg�ů�n_&}b�8�:.��;,�j�J�)��|�ʌ��
�D#����1J�pa`�� (�.5D�%��$���U����'}�ݟ����d
D%����y�Y���Ӧ[;ev>TҌ9���c�fpK���眲��&�ϑ-3�k�'�:}�h,M����t,��z��S)�5�6�0�}�:x���=d4�t
4������&�'�u���"�fP8�ѥ!M�3U�&YE.�8T!�YP�����
7�Fn� y[��|��z4EoO�O��+@o�ζ�m�aPX�N6�����a^W`��rQN�G�4��oA��&��@����O7f�TOw�J���
�R�+�����a���W��/)M�;0���x���Y׀�&���������=)K���D�����NOT�`.�K�`�Ȼ[:�B {��O���َx��u���"Eu?R��}�s*�֪_D���_cv��J�5�س�c�Q���_�ؓ��R��U
C���o�$k�Jܷ/�gR�gv~�}�!w��8H�QƖZ;�*��$�jp"�3�{h��zY�����U�M��e)�0��>�K�R�h�X��?���g`�h���������Z��&�F^���_yN>Q�?���!w��(65�����M���y�G�$7O�8�Ϧм�Lq
|�ES��{�HM�ذ:B�n��1�ޏ���"�t<�Ⱥw�x��6?�v5�@j�n��j�ƻE'D��ì�q�E�y��z�����ߒ�m�O�%@5X�M�e������߾����rR���ɢ�i3�O6���#����B��0��Ha��#gπO��\�JE,V���*н�Ɲ1$\v����!��ڼ�eN;w�Dž�y���>�D�{]�l8������SY`k^n9қ�Aim�
�DL�lL$�O�fKv���ô���B��F����v��l��ؽQ�H$7�v�^Ԇ���JuMTA��PY�F�����v��׆Oϲ�JIr�?���0^<�#G�����e��X��A���R����e�bSC�o��j'���~��j������V���%�
勺!F`����&0_|Y'\|t�\��
u��bb�e�-�j���������R�`�=b�/?�x���,���و�I��$'1z_uy����x�F$���ۨ�rI�����9����G ��Q=z�JK5�ݧ�"NS�j+~��c�������^D>@*���'���l�]���9�1��g�R�л�ҘR2O�F8V$O��W���Α��ﴵ`���a�I�����q���|v�Iz���p�}�R|k�5h�+����)ǻ����Vi�ܽ��#Soh�F�iYL�^q����l�r${7?-{�<���:��% ��a�2쓴��Ab]dzt)ut<CAlu�7C�W�\���~jQ8�dsk����9F��W@ʹg���3=][�'Ͼ�%#1�(�%����Eb� b�g�~D���4�Y?����?!�Tc�>�|��I�U�B�2�g5b#H�����ʻ�3��U�&=e>�o����;��f����~�1�l��#�m��e��;���B1':X�7��l1?٬y1Zʄָ9�ǩ����M_��yi>䂛g�������\�c�vV ^a��W��Wa#.М��e���A�x��t�֡���*H^tJ2nDdkq�}� ������w,MD�e��@�ͻ���<M��CUIc�n��o�K��F �s.�������o?g��p::��K<���M��z�����@JJ�ɾ�L쓶���>Fx��_���aV9?`!�$�ڳ�#�s��]ƃ��)�W�c�U��I���-%M^�K�EfP��~�_�e$��;���w;~�-�����)��������֯���[���OVI���܁�眲���6D%�jNBk�=�i�x�MCAG"M�~�%ԫ�Gh�ZB [���c��M�O)�ckY�/�\B2��<V�?�{�NZ����ș�SK�Dd���#�Z��bjW
φ)\lSy�{�m�n�Eِ���$l2���)�� ݹ7��'�����]�o�]%���wJ]I��\f�T���r�H}$C�0�}��!%e��9kf�ܹ�����yA��{����5C�܅�H�m����$���n������R�R���d�F2�E�E�Wt4�RDT�D$�빚6AP�z���\�U�x��U�,�s�ʎzC�(���,�0�
��u�y�)2���8��3ٳ����>Zi�����Ŧn������̱a+���ė��fŊ����Fvyy���˟'֕�f�*��}Q�(ټ��,ᮣ
�F�?٘f�-�q���4y�,pRFw���#����C�[�Rf4)�G�����a�N�i߰��`~����<9VZ�����T_sRO�r�sͼ�Y�W����1G��y�U��q/Çs4x�si�w2r�L@��ʑӼQ���*�d�mk4�x�ʳ��7�"[��ohI�9�����;gz2|Pv�.q�,k�]"D6k��nN諨9%���Wt g�x�4�ʟ�H�{���ŪE�4��nD]�K��tM��#��/�w\�;����l:7T��� =L$A�F�7�<�5�.�q�3��47��eA�ɩq�K��w�p��̀�vkSr�r锈 �<�Sr��sNtD�ZDž9�9Ke���y&�B1�Y�'��t�x�ʘsVH��x�xț���z ��#at��m� �������}mG�W�':%�ہ���~�v�/I+(���=/W> ��Q
���hx���d�w���OV�����tJ�[xn��SUB����s$�T^�Q
�g}���B
�r�(�ts�maQ�G�dI|$�f'Ѹ�|Y\1^�_o���N�_�jѨ
T<�*���3�d�5��:y[v��&;y6@Q\�'E���ҷK�����~�p)�_<Ϯ�C�N][6d
��J�O/b�#E��q����ƛ���N�6���ye��Y����I���쒥��
�S�G�n�>�=�#��u�4X�
�ag��kT�
hw~�X��v�ĺ���%C�#�b:��K�z0��d�c���وa�\�P�07ǵ�Q[�]��lŢ��B
���F'�ϐ�4=g��2��0df��W4w�W�YU�S�>���]�;L�
���`��Yp7�i������P`��Dj?s���*��� �>ҜC���7�Uˆ�W�so�7J�F��E�ӟ.U��{�PG^Z��My��b��_b�>:SnЯ;i�4]�Q�d�$-iT�분�����+��v�s
uU����<�y��gj�c�ĒA���%���/�dV;A9��J������,+����R�;��/����jz�9��cƆ�� Z�+!�E�q��',RJv�WO�/�٥O=����'��ܹy*�Ol�������S���hn
��seSV�)�pC�{
<�h��jQi?fxR<��Mߜ
}�/��|��ܻd8P�$�⽴i�����'�r�-h�w��9EI�N�:oV�{կvѷ�}2�g�fj��{�����|��G3{?���4��z��㴐�g~VK��I~���y�+_��z�X&�U�E�ޝ~N�7Ho+��?��������cK�i`NE&i���'���J�neu�C��EE߂�|iL���i��hvtE;���A;)�<�u�ƻ���J�7�
@��Z�������.�3��ɽ�BY�jpNYH��X9�怖pf�ÍA)NJ_66]����qqw蕨ͳ���~�/\N;��E�5���s�u���X��Ӂ�g�Zal���Q5 !<<�oz*�+����oGV�3+U<}~esJ���c�GI��d��3�,�}?��O�{!
s�kK�/%%�$rм}7a�Z���a�T� ����ÏjF�#�,����|���r��j�+=t�����
<���d�����{�9sF�{^�+/�;��S����)����Z~>Jf�ӧ�*q�&<�� �C�������E��6 �s�{%d,��eM�K��gŏ�����U]sq��Fu�y�_r��U��s9����=Oώ(?%�4���5t p
�
)u�ɛ���'��Ùh#�)�R*��2���������z�������fpiZZx�b�-E�:�e2���JRQƴ��ƾ��7XtiO��F�Pqi��*^��Ugj�j������|������[=��Vj���@Mʣwe�2�p�'�����u:�[�xRFԚl�&�N M����{&��L�y���'EE����M�E#�.]y0u�"1���T`�"+M��2'v�]afm&�<�.Qb1���~�+����+Oկ�:�*"ې��瘉{�z�
/��ǜ**�d�"��_��-�Voa���&�-�>��Zm=O��'���zRr���<��:�&9��w=9˯�'���L5,�W4��۹$f4�eQ�$,�',
#4F����F��.�Fv��m&�N�[!_-�HO^^.O��O��h�`bkM���Tć_D��a;<aYl��mrڇ��v�Q���
7^R�/Zz���t}
`!�N�__fE[q����kb
��^w6�|I!@����QO2_�rꟼ'���o_�I���9�R�8|,���"
�$���+�]�d����30�T�q��x�~����������7����2�S�J&�r��V�7��'[�2G�_%$�$��F�G�0>�l�o�����\"��r�.!���.A��{r����ڐ�N�?�S��-.�@CX�RM[�����Gu�6�o��#+S�2�f<�{��[y.��=87��rR�.�x*�7u��c_���>{����g��q�������S�R4X'��f4Ef�5+�Ǘ0ꆟ�y �28Lbb�jC?@�G�_7��]�U��25vxB�&��a�D{�Ԟ�܊|--�x��mb�'��8�l!!IA�Kq4
� ��s��I�sil���������?hjR�m-n�Ρ�|F���`��y�2�:{鶗�ݍ���A�$�ڌ
B+ϏTHL��+�͢-�p���ұ��m'��'�ON~�OЯ3_K���6��@ʍJ(%�?�� M�v��⢩��l��+7���B�����u�@�V�r��&iW�g�6�dH
H@����G GY,,x������Nu���d���e�.
w���2�5�X�z�����C���s��ϩ�w`>њ׳��ִ��lT�O~�`�O��r�5�ԯ�.&���|Il�@g�@�ov%�����WمBѬg����r��7�@�y8�3���/����n�PW�<��G�3$Y)3 �u���x��E����]�J�ï��f���u�/4u�{V2�Pt7���˞j�H)����1�_��^�>M2-/��|���̟�ҡ
gs��.Z%8'�h�T*��+Z�%�G�5�Wv�3��ff�
���F�n���HSu���GBM�q����Td�[(��Q�
��I�<��)!)�&��Mu�:�K�[��X��u�Gn�)���j.3���#�+K�(l�<�J�*�Ӥ�s�U�l^��BfCĈ�sl�4k[��=���_�����]�f`+2(������-�WbEʣ�� �L
�O'���|���R��O����L�{���~�5V��~ֻ�!��t�vf�.E0c%��G�8y��gG������>$]�bKuV��Y;�����%6�A�`��k��D�ی9m��(���AEWy�W*��!N���1�ҧK�s�����������k̽.E�t���\1�+��������ҧ�y�5
ש(̠e��l�XRB���p�S-���W�ݏڝj'����B�L�1{��/��$�\0%�$�̩Z�W�<��L���z��Jqy �(�{�~�W��r�8>�+p�M�`��� ߩ�/�-e��-�s����.%�C�F9��**Z����j���e�#�!g�^e5�Hj~�����$:IuzcF�
*���F��[�x[����V�Ĭ5�җ
6mv4 ��g>9Ve�o�a-:x�z&�r�_'!��ƢD�n��:}p�=k���8/m {����4�-
5�o>f�37U�З(9���P�=S�J:&��hk��;{jc&d����dVV��QŠ�Ԋ���9|?@�r��TK�[�w�ifN@�WKZ��f�(f���C�^:����='��%��x6%��Dze���������z�.i�ߪ��h;�ax�ȝ�H]�!��@ìUԕ��Bw.A؎c��;�ft��Y�(�j��"[��H=�8c� �F��C`m��2݇/�薕PիW��-vO
)p] ����[+�iN}䗧;N�9�>���[��c,�3) �DԘ��`qZ��^�����]�.{���4�ݴ����`f���
��ع^�]wހ�r��s~����m�ݽʗa�c&Λ+���]���p�(CK^I���*ʴ㤵�ʛ���:��
\�:��̙/&�
�=%U�m#<^����I��P�e0�#w�,����B����m`Y��=����r��w�]X`�0����f�Z�m����F�$���r�p�x�X�.�g��:�}�~��FY��6t��G]L/)�����������t�[�lδ��J�Ed�G�Q�fNv2<��}��&�~�\�h���˛f����F�f���+r�q;���]O���g�Q��������Жӂ��T�Y��Q]i����Қ���~Q�g��'�+r����G�ݖ�c/|��x�;�/���1���f/H���+�� )i�����f�G���Y�ƛ�C5Q'3���)���t]*gJ�+fu�F�������R�I����h��~vYE�e�E�v�L�~��b� ���t� �w�W��N=��7�����X%ϒ ����6�ݚ�Ǘ�텶�~�}�~~;�����v��s7��0�L�¬+ �͡��|$�_�Z����ɺ��H�}��[�(her]u�H�e�-HysnZU�+���Cl�p����eqπss�O*�[��g×�L9J���|�Q��]��zbfGh3�y�t�e�
zhɹU֥_��Df-�io���푊s��욁r���uIˮ}إ�X�Q�%S�̵��{����wc���&j��<=�W�v�"����v �Qh��5U���eZ*��"=پ���^���͗�F��~��4`�����+mwr��WW�fg�Nve��SG��_���:X��'5w�Oj$W��9*��e�9����u����d
kQB�M�Ǒ��
��g�0E��\��dF"|�����%S�|j�{�7�"u?1��x�֞��ra�<�4m�O��k�$�r�+q���3����{\�e�]9�A��h���蔺�ĕ�s�C��������sn}2��7����[F���R��B��zѦܖ������Γs��n�$��9�Q=���X�
[$����,��>��ɿ�t��J(s����d���4�P��*��7'u%[<.ds��^(�l����
�p��JR�|Õ��2*2�9ѕ���֛�rXW�H��dGIZ���e��Y�9�����S�Wވ�7�>&�~=5��J]��Nw�4q���v�gU�L��z+�Y�QW�_ݹu�5��c'�]�qԑl�*�
{`�~�Z�C�y��71uFW����\�<ڑ�E�qk� \���O�4�.S%�O��rŔ�I�$��8�I�Ɣ#�b�����,NY� ��*=ҧ���'�?�
�|ժ���U~Nb�IkO�D�°��U��7sF?�b�>��W�le��Zlѝ�:#p��+q�N�����9^�C���5�N��BN�e^�W������x@{*��D��6;�N3�����u_5��n���:2 H��9C�捃����G=��n�O�Bv-p��Yq���9�慛^�W��M��|��*&\6
�.|�3Q�(D�K�2�d�䜎oǂƣ�G�f^FW�2�6}�t�$��D���?\�%i��qNj���S=�?B�������|��hN��1��4n���%�K`�k�
I��3�?.��7�Ε���t�Eot��"��|�E��1 2빴M6��j���9�4���"�ʻ�
�:� ���|��d�A�NTޱ���if.����w�fto��Q�+����ܢ2ݔ�:@[��+f��1.�R=�-�Ε��N�ن��l�6[�� �^-�A�]��6л���):Wx�wV�z�"�\i��E�����!�.yԹ�s�m�a�5�ç,��t��?ꊱ����Ε5d^S'hK"zᳫ��f
�]s��4�+����~ЖC��
C�.��0w� л�â�ޅ>*�l���ˏޅn��E�ޅ>�f�ցΕ�辝�_���:W�8����m|���>y[�se�zh`�e.���6$�6�y�g��`ll��\�C����w�sE�z$��ǡ����u�4�?����x�c�i�v��j[V|��L7|v�L7jvZVvh��M7��F;�M�<�2���H�Sh(<��4�i�!��e��(l��G
�]}�P������ n�`"��x��v���ۮ��B_�W�y��M\tƊ�DV���$������y%� ��;Y���m^mm^���z^7G�3��;�fm�i<"]a�1�u4!U|�d��g}�H\����Ǐ�I��܃7�5��7}��ƥo�����2����[gq��e��
�F'��ΟWa"�~�ör}+0@P���%Ór9�~��Te�F��k�49��
(�y���AUSk�ޥ����,���A�����j s��r����ϩ�(��B�|��Zۨov�#M�����߲�1Սv-�ݽDo�:�j��]]���ɈSO�'7s��d s�j���zU��N�γ��B��
�zX�>��v���wMn���xŜ�^��W���|�Fd�M|��1yj��r�\X��H-־V�4�!,���˜w+Cq������ZKamZ�������q����D�^s*g�ܺ��D��:66���I��o�j�������S�x-�b���@��W/k�Ž�ʲbM�z�~t��ZF6�!L�)�Y�
����2j`A��)�&���(#�T����k��mt�D�|:�7���|+��9��17�2��R�vq[u@X�m��K=�W�?�.�1�\Ȣ9���e3�Y�H1��TO���7������U\�q'�(ZB��d������]▷�d��lt�`��Q+:����lA�yR��v���=��*�����/�4�ϩW����ʇ3��^RSg-;!x��;p8�I����=.�o!9����s�Z�\��� m���"��yY�����I9��c���H�2\��@E��٩y�u���Oq��O>˻�y��W�p���0�����xDq���OI�I��Lދ�eu!�����Jx��n�;��N(�>7~�����E^�D���)��{5D[�ÍT�(�,�4�]�[��=�����Ϲ^.��Q�����sk��E�7�D�����oeG.��?�ྷ8k>2Q%�j�Yo��s���@��k���BR�N>�O\$���6����3� c���:�3"��-��E�k^�:lPAa���ᔃ�]�.��G3h��4C^��41����ΌU�U����0�Z�9L�ZU���uM��%TT�v���њͲ��j� �On�zλ�U�KV7��M�}�h�Ώ��P�e9X���:��Cg���t��Sم�sD�H�)���+��Nzt���o��"������}t!��q6)��0Q?�9��Mb�$��]�����7/ޜ�����礉����l�]�{6Ş�����-�<�րe�N�V���9�`-_m����!�����_�,nF���:�:�Y�vr~����$��K�G���]���O�?g��{~�'�z�su<ژd�%`G�H�,��2�2�Q�%��Dw.��O�7^�O�&n�.i��6t�L����˳1-^�{��1ܕ?���V�%�w#j(G7�(-&��QZO� ��/ū�P��"s���w,�Lq7"��z����� �x��F�k�/e�E��}p"� ?&����M��'ck�q���D���o���O^�Eʳ��<����7Z�3���vߥ���u�˲��j�Pկ��ɲg�d�ol��'@���/�7�(,H��ߊ?��K��Ş ���7�?���
��F�T�]��y�D�J<��
e��_���Q�Q��:�lf�ɳ*ނ�xԤZ¤B`�?3"�Ɠd�[�TQ�Y"��,�8�C����ë��6��Ʌ�w��J0�w���{&q��Q<_P��:U��w�1�9}/>gY�i(�eĉ��z����#MY����ނ�=��������l�1.��f�����H������W`�ӹq�w�ح6�UC~8G��Z4*�1*�V7�`I�����DM�7u.����q)h��Zxt����6�]�����o�>^��EDRE?G������p����)��ϾY��1��6HML�g�k=�M~�V��t���C���D�"�����F3��O|���]P�
7�0u�5��.��qe%Y �2]$�4���b<{�M�{�n/I���q��y��~�&��Y�8�^�s-�2�;@�j��qQ�9'�ٮ$(I6�̝��vm{rR��跫n֦�1��my7@�n�F�I,�Lʵ��}�sG,u��/p7��_�p(���sm�5!%w����
)^T�}Ka����j�~��ѷh2������ea����e�h���vۂt�9ע�ݫ�4H�(��h���=2q�M�࣑{3#:�QWT>�,j���W~��r\ ��u�Y^�����~��[�#A�eb�6SA]��fz@֊��RO�]r�e%mA�^������⺣Rx,��̆Wr[k�)�'w�)�z!ٳ�qu������s?�7�x�p9�s_�U���<.Y(J�0�����`�Aiv� i��M���P��������K�Aa�g�����vi=m�Pߤb�H*�②�Р-���3=^��'�$E-��Tp_{\��-��^T��n�4s�b+0U�/�|�K�K�rq����X�K{�J��oN��[���V���!_�>
�Dr
e6M��|R++Ϫ�R����@鿮t��b�lIdaO�Gb��Z�M����L��i!I���
Q]�tYL�I\����En<��s�s7��r=��n��`��A{�=n_o�d��=9�.QN7�8s�o�¡�2��jS�"�K�³}��A�I�waͲx^jDgKK��R�1eFt�V�}��í$C��JRm�V�����5�
2���4gq]]�XKm�K��H9���t�m�����e����Wg-��go'��y�v�����nZ�"s�8;b���o�v$��-�O�"i;ɐ��3���5R]�ǻ���p�(�,�������)�o�GKD���F��l�dz���Az�d��Lq�� $�q/�)�Q����Ee�D�_T&}J I�ٹ�@����_čd!.�6 ���ƾ~WW�G9\�R�Q�;Z�w/��+^�s^�bq�t�x�$�9�&,"Qu=L�$���4Y���zbm�w=7/,_�&���Y�%_A�A��.W��5�lx��re|w#!��@Inւ�+�;�o���HG暒�ܛ��D��Oz��|:�%�K��LN
�D2Q�.�iry#�����B�3�`~�PA�QO�fO%gM)���d��97kv�Udy�Ҽ�%�ub��C{��Zۺ�uλ�
�;�l�:�|"뉒��S{����D։��I�U�r2�X�����8�]|-.��jd7�U�:��"b�Lf�e���h���lSّ2�,����A�%����w�w1��t7��X���)*�GO���U�'�r����B��)h��nE@��J�Rr[Q`+j%�B�����xԙߊBk~�����zT�f�:j�}p�H�4NW�N$K�E������vI�����^}���%Q>����ϟ����"�t�̎�~�Ǎ^{��k3/�[��4���:
`��3�۷��}��w�5��Jg�|1xs�5�^9iH�\P�Q��G��p!��%We�K?�%���+�W�.7^aZf�<x��:�^�]�C/ЊY�P�[d������L��ğ��!�$���
#"4�_�H��'].��*y��)�d[��lI2#nCN<�#��s�s6��r��a!by*�NO���߬g�{4gzQ����S�V�}�������Z��r$53�0�Z�fQ�M�P+�+�Y��$]9�ԁ�����Ћ��3T#��:@�#ġi��G�ȹ�Wg^��G.���<�,-�U/�xcc�Ԃ�S#t ��6㣧:o~l͖�?�Yv�\��ڑ-�\�遷.����d=K����3���h�iV���M*š1�mK������M�x�D�ƛ��q����v�Qr���~�F7�no���
��%zw�Ug�ս�j����3X�'ފj�'��>�����b� U�8RG{&�.uj����������넆�;v�(G��Nu!I�G �1��J[a���*�][��� �������7wTU j|H��ND�F
�I�ꧪ-�3Q�I}�U��h��k����lL��fpAi��Y��~�&L4έ�>���>��N,h�1�}�^L/J���N�=&&ɡ��}���d�
��Hթ�4u������j+/<s��Μ��|.��얿k:�t��W��Ym���U�9�=����E
<�n�.��UP)/Sqd#�HFfvĔY{��Ũ04
R��m�a1q�I���4o�,y���<^9���i0g�!5�ɰ��� iҠ�j#%��<���-lI�%;�1Dz��ܛ���\�������^R���hZH�Y����Ҍp�@)6�${ E(=���6�6??Pg���s�k�F�����o�L�cIUj48���7�����_�#mo
ylq��̞7����也��z��M�G��쬽�?��~qM�z�~���\�W�qKp�P�l��#Wd�n'C:���{��)�����/��|ӳ�r�DK����]O����!U/r�md��quu��G-~i}C娆��l�^=��oL� qR����am$��4��S� �T��,�.�)4�S�٧q�����E��LC��t�o�i-T��J�^;�Za��rw�7_��� �X���_�z��l��d�_���z}�Tw�R�)S����RGxܙ��f����^���;<��%�KM����[�Y�C��B��I��\�,y���!�2����W�n��k�W��z��e��g�.�>�+�_�^�`9(e9.��h�A�1�G��R�?Q; i~�ά�霩.�SK5>�Ú�s\��Aٟ��n�S�mV��<s��[�?�R m3��qI�#n���p:�Z�65I~��,Vb���qk�u���~7����ff~$8o
G<��LS�۫n�=>դ���2���W5���U��n��D���*yŋ1M,������/./jj$!���qQ����{v�ޤ��=v�S�/h�0�S2�|&˛Ɲ91�<��Ͽ&ywTV�P�X�EwS~�{�1
ByS��f��P]�����p��@�"^4��7a����{��gm�n�:��2�B�@\��������l�x���`��l�P��_tYf��P�"5�T��9\�%�P^iI��/-���K�㾴�ڌ��M�C��K�E4B���e�|��3Ù�(*(��V:�4x&gm�Vr�29������bS��[�-
&k��lO� Q�w�G����}ơM�"^1�b�ƚ�f�Y�\�Tj������3ڳ�̾^��w�]IG�+��~��S��Qk �t�t9�s��%`Bʢ���30���g���9�.��d���>�d�n_Qƣj5�説*U�]5�yO�.�>5���E�4u�
��
�2[\�$P��#T��d-�@���x$O���<�ŢR��N�K�-f�L'X�j��@y�3�
��B�p�7�h46�;��iZmZ������1*�b��.����w�����T\�[}W�zbY�,^UX�v�������$efDh�$3YB
5�JH؟Y�JI����)!EbA "i�%���B Ǣ��7��4�i!Y�h-<�@�z�ֻ�¡������h8\ROm)R������ڷ-�r�s�������t�L��ҲF��a����g��L-����/�>z���N|aݠ}�_=��&D����W��".���E���v��:^�{�Q��D��b��h�!��x��_H
i!+l�����m��)�A�'NY��r\�\��8�g�[��Lgdf��
a�L,����D�A}��F����^�Ne$I�F2���j�:�F5%Ya�0EG��R,o�f%k��Z��L�����������{hd�4�H�6-����/Z8����nT�Yx�����_��&����ˇ7��IFMěi�tF$�.F�.Z��O�.S��.%�J-l"�0�t�6���]���[��JUGn��F 0��W��bi���,0����=�v��I*�|Ǻ\�/�k�����yS�ۇ�=߮_�hʎG�}z����W��À��9",�h��n�'�#�K�)����8�����-k�V[J��id�w��fk���tM�g
�]!O �l6QO�� mjl���n�lq�hK*�T��64���A�e�0 �I[X=ubᐋ�F��.�ݮt�d�e:A�Lɫ2��[��@��g8��.�~���)W~v��z��I��[R'�#u"I�&��3�l���ɢ��%��A��5R(�YR��p�&\21Ù�lRD.|~��=K>X9�8)�y����ȀP;��2�Y���[=Ǟ}�5�&.�!�i����p�����x٬��S�-z̽���#eډ�6�M�R�R�!uh�i��t_Z(=�ECam\�m�l�|Z�ڕ!�� Q�|�T�GI�l���`s����z�Lߊ���ԑ�9�w<55M�۪�J[+�sfhd�(
�$��㣹��[���|�?5��{�6�;�yf$�����F���G�Ȓl��Dc��9b�e'�1%Z��]J�#
��-��%���r!h)n�E�l�K�AIy�
n�nJb��>�HN��}�u>�3z�4������5�5��T&*�*d0x��*^*&��㥊��8^������]�}A˄��[�;S;5��\����x�3�T{�vV-���#'��{0�akl�xj�%!(�b`�P����]�%Rl��R*�O�SeS"�p���o�̤{�������
ュ(����)�3�-u�?`$�ߌ�o���ҍ�M)�XX|k�Ʉ�Ѯ '?I'?�f��D+*`@= s��t�#Zwbk��`�(�����_�N�����-�{��,� �i'���6N��P{h���;J���0��i�
�_��$�@3#or`�����im3 �lv�?bI�f�D�t"�J>?���O�%�e&2�̌�$Pp
��n�-x%x�x%�H�dO��J����;S���gޭMb?�������x�Q�~��Z���XT�$�e�BKVr��D,���X��'b��Y�ƞH���%�[ĬR�VY���A.*����|�H̿�j[��fe���*)�r�DQ���V�n��e,��ky�7�'�׀2�i�,�ey"�
� �c�إu�w�DOp��:f����@��+l�\W>8�5�u��_'�6�N�l���<��Q�Z����!��!��U�`㢦t�t��f(��|�#&t�#Q�k��a '��%����6Yk@������X�։�jVK�H:�B�H֛�5]&ɠ����w�֪6�z�]� �«v
Ch����jIɲ(S�H�2��i�%� ��ꃢ��(ْ��%���)SZ��� ��U��y�H���1�غ&s!s�"yQH��2�t���ս��wފ�*�v|�1�k��9��a�R��8����ݍ_zpÕ�����z�n�4^�X������ݘ�?�����*%���u����}�/���n�2�X @��`K፺G����nHԛ�A+�(כg5m�1�����滚M�a�]�K��|S��F��:���,�:(���<���3�:����~�uͺ���ED>d!@��=�����;��X@*i����W�٢"����о�C'�CZ����!�x��
|H��>/E�
�b)J�E����b ��I���/�b�b�8�x�"��B�s�P��Yw�Т�(D�Dt_�D�d���d�Ƈf�Hq-MD+#��2Q~x�����̙)���LNaa0a�.
�V��Z!��oc20y��K��8h�!��-��(�,��!�(��P�&�w�]����DDVQ��EE8�g���u��g�������_h\q�̸�Ð�(@܄z��oi�$��%L:�����][�h�'�('�
<�bf�wI1�E�������$`@��� z�>I�M*�=N�[�Y�M�t�)��7�z�Kכ
-�
��� iZ:)��4"�K�tB"Т\\���bZ�MNN�d5��*����p_�+A���nm2�oi�y���~oc����e1�ַ��[�[<�V����ל� #�A%�%� �ߨ0�E>.��$��!F<�S'-Gi�9�7��w��<s���I螄�f�Bk�z/��6>O�F7i�&Z��w��&���kdN�u�xH:�%�ɝ�a��6ٿ�iݣ���d�_�ĶmG&�[lA[�Z-�5�d��c9��&�����܊h���K�r�_��}���XJ��|�Oc
���>����B�残֑/��(��W��`�8��oq|�A\�Npq�c���rs��g��u����y�֮.b=�b�ح�j��ϖ��w��:���D;��:O�}����hm�9b�� X0W�k����?*;�րU���]��,}~�xD;J���8�8J�L�
ކ��-�m�s���\�T�����3��v�_6��[R���G�.��B8@�8_��L�I������yȓx!
������oBZV�>-E���F��7:��>%��ʽ| �{����Z��=�R�^0.U�@��k�ztE9&�;Gu���Or�}}�tjQoo&�|2���&�1E���E)��p��u�G�i�;1m���^'��eNlQ9�.pb
�
� Z��t��%K��1�hCm�����J�� �@��_�!�o\�Z+�~��~�bs���-HL��C�ZoP|q�6 &�G5s��(\�4��j2��[�8��j=jg�y�(�j�C���*�7O��f2���S�
�1=[H�L���"���
0���J��
���6���[rWY�2��o�'�.���f���Sv��þ#���1S"��d����k0��]�ڸ�}-d6�#�X"}�e�g�D�k1<m"8��`�D�E7W7w����ψ6��{��ck�z�axR���yע�E�)&
"~� ~r1D(F�4x^KԉcZ���9�f����Z0�X�.��3�uiu�NĪ�3�jHX!�:%������x�-�}�.�g���{��!��.��n[�mW��Ǯ�7R��D�x=y
r_�C�q�ɵ�ד�A�E�?��������~G��vf��b�E�1n������{�>T�!��M�6g�s��7)����R�8ҧ���B�8����2�pI���U��(��5�W���vnG�z�.���Cy<�<U�u�|��}n��W��s':����~8��.���/Jb9\�_V���
��x�{Ay�{Y��?��B���y,E�����KJX� 3@��8���J��p~��`�#}�` �'̨���Ҵ��"P�GEQ�'��.>)����N� t ;��.�(��f� ^G�J���w������[7�P�s!�e���wΞ�MNNN�I�����
�F�8��1�
hN�כ'��U��Q�t;��@M�|y!W"��,��vCr��>1�4�ʆ���X�N�w�)8]���#��Yec�7�g�
g��*t$eq�ܾ)N%����={��������O�A
~K[u�=ښ��a�����}��s�kD����(� 7*!7J�u�yк�X� "�F=,���4g�Ih1�!�i�L����k].�Q�!�z��a��Xϴ����*��F��-E�4�d�ȸ=�^IR�p6
����]�(r�,�/�/�R�ku+c���Z�j�
�����ܮV.�B/1���A
�紙
�X*��d��M�6�!�f���q�ux��!�;d�@@�y��IN��5D�C�J ��g����G�*�B*�<�x<
�����+��UY��W%���7_9hU�z�>���G%4W[�/@ψ�@������i(��T�!N����W-��~�O�QiDH}���}���h��{�
K�>�@8��f��Yȗ��x
�<�`��<�n�;�]�a����M��\?�G��!ER!5�H���
V+bXaW?��G8͂�0���^+�f&�wu|���� y��L���+x�堇r���� c��`��� K{s�o����7K�8�ՠ�@E �vw!�ӅS�Y�Js���5nn��x�qۯ�������C��m����4�5~��a�jx/쇃/=�b�c�o4�$��}a�(�$c�%oz䛳�}��B��z���G���C������_��"n
��|:�&�T_Z�oJ}05���[_0ʄV�~�%o|,
����^I�7��X8M;�(�B����S�R��lG8]������H�|^��h��ԂAcpE���<������l�D��g!V��B�$�:��Z�֏��s�:�� ����V�8MR��$Q�F�pT�Ȫ��AV��C\"����%%K0�(�+���X�Cc"QI����H�� �A��'M�)Ď�#aq���J�H���Y(��Pruy��
�Z]�<���_~�85P�4|��o_W!ni�0-d��z�Z����͏�pY,_�}`�qEc�q���I0�e��Q�~H�p#�����p|����?�����E��@��� �@�� "O�4�_&�40�Ki�N��~�]p����6��4��3v�N8킝��H�wt
��j�:�_�c�輤��b"���,6��%�D�0 �h����;�9�tEsP�Dr�x[$�t������aj!U��F�R���
Eݓ[�5��<�.��^$�$�r/6~{�̺�w�� -���ۍ��n�����Gv�T�sx�&?p���C�[P��n\�8���'
��ėOܽ�K��?��ю�\miP&�`�Cd��Ļ+
�;�/�^ȑ+�_����_'�МH&��(�Fl��o!>"|D��)q�%~.�5�����o�q�I���=�P��������W�?�9;|0H��,��{�+�,X:h"�^�wJQ�H�x��!�(��D<%�� `�IB$���#8��G_�b�j�"gpJ/�����S��3���!�Y��0��*,]S�~�X#�������]dW�ƜM��@cΦ�>/�l/��b��>\���]�<35�7ɸCTA��B��[���3Ǫ������@��k{D�U�\��q-BQ��犑����
%X�J0͖@,���%ڔ���)=F��k�z��A��F~�+�t�y��*�S:Ednɲ$A���_"�B~�\ȉ��W7>ۨ�D{� %�+X8`�����{��5ȍߵ��"w������{q3ac��"���
�֓�[�����}b�^7����1�׀b�`��B'tV8
i�1�k�����eډ��� ��p[[�[x��nt���^������;�;'"�DaB�M�i�e��ݹK~��X�a�%{�^ ���p�vs1"
�L��.&�%�DA��U�ۗw��n�od6d6�a
_*|�:n]`]p���e��*�um�v�Vk�m�31��ۗQz��)�����T+̦���<�{��s1�Ãm��p'lE�5{�b�o�H��0�)�t�r�������aH��`��y�L�"K��1�"�2�JT�1�)��w������z�E��Į��'#2��v`L�����?�y2�
U����ȓ /��lސ�\T�' �Y�'�V�M�A�6S�SjA�m��Z����w�~~��[5�LεDkW\���5k.��)5w�)�\�������b:J���t$�X ��y��/��VXS5�\a��~s���89%�I=��f圪Aq�%ʼn��1�<z.�?B��`�BW)B�����v�
�_K��'/����ⷾy��?|��,|'S�Dp�ȵ�~��7���}�'���=��d1^Ӑw�{��K�V�z�u������j����ӟ�}S���w��gݧ��
��`8�m�?j���&bSxS�x
qM��]����s��nj�����f$=c�8i�N�jn3���wTY'�؏RÉ���XΙ�H3c9g��}�A�с��&�%�/b�<K�����fERЇ埯N������x���Ak]��Y��1���
ȡ�����]o`S���>�I@^��I�a���b����Eg���Z�<�\S��2Ͽ�%]^I%�p������i����}�ep1����I�S�a���=��졎BY�Ymq<j�|�r��k6�p�D�3֙Z[�z$EeRj�Q����|(�|�IS�C���H��pA@"���;2������7���@w0�<5�l�5�JkՊH+4A#��� ݃�� c����Aw�M�T+�'�}��bP/��Sċ)FYv�nsC7�]n�玠}�@��9����mP�����90�`�39�ʪKv<�M�ВR��B�Z�əH%�1WҖ�A�Eb9��&�Wu�����$��IIJ���T��*_��c�ki �_��҈�d�_���KQ�Oy]<�s�?YJ�Fp��09���~�Ň>1�g����D���j�KS+�?�
��)f|�7ԭ�a��=�v�{2I��N���K"E��
o����(��W�Uf�ĉ'faeQ�&;e��Si�J�έ�8��#z��ee���r�ޜ�ޤ��.s���<f5�lJ�d:kM���t0�w�S�.�,+C�%�*�r~�i���,���ਲ��A�V�Z�����kJ�
�M۩햛���n ����I��p�����'�Tv?M=h��}�`�s�g��>�<F?a~��D�1����Q��-��a����Yφ�&�������n����6�M�p�����fr�yXX�^U0���(�5Bo��
XH�5�+t�2B�R�m0=ؾ^^1�V�~gy����J�)��U�L��[ș絬9��fK(ć#� �A�N2|���x6I�)��ë���!�j��m�G�)�f�F���烡P�l�`�yx>T�t�dJ�h�(�'�=�Rt��tZUY@X-��X澇M����Z����ᔽdN)+���L�\S�R/N�7'���t�M���K�����YBA�wͪ�Fl'l��}u�C�$�4*�"��s�c��`Q�c�*<�c����eD��tk�S��%=��b�t?�O1�c���@
;�P�@�'��٫�"*>{U�Xk�����Fѣ�`�L���q�.�;���������U�[+E<r��t㇍���u9�gi|���d��7i���w�`�=�4@"�%��r����N^q��+?�O& %��<E��ܙt�YڔH(���y�x���?M;H��Y�7�*�չ���@q|�|����;�@��$]���"Ih
��j'Lϟ81˜]`pf���d/� �(YUg9�j��̀&k��"�=B����9:!ߜ{(�`�Q�(��x��أ��_�}=���=G��c^�_����;���߬�Bl�٨���Ba����'u�y�Y0 ('/������w��mL"ͱ@̷�:�*8�2��<��? ="=�7�80jhW2O���7� t+��)H�[�'{��x�/�tj-F\�0'�&�b�l�[51o
�<L��|J���xc���@2��Z��{rQ���\�ʲ�Q,�%0�U{zP&P00����UX��N(B^��<�g�IxZ`����\"����� ���D�N|�6��6c����&O�.�j���9��b�������u�!��68zP, �@�'G�`&ZXL�ư}�Ai���0>�#UpJ�˜W�>�Ct��U��#��M�mSc�U�sV5�ܧ&��=�S�i�j@A,�����b��@ح�Us4�FEV�A�SM�F:UQd}X\o��S����:�.�l����#a]�]zU4 M�%�wuC�L�*����n�(}d��qæ�g{C^�L)o4N�خ�PJ,�X�Ɵ����GF���pۜ���7j�kӥ��bL$�՜p���!xY�3�)��A&F&8�~��{�H��Pb��}X�J{��� �����Xќ#w��A'XD�hUR�U��PՐQ��|��Z��f�V��&K�/��!�z���H+!�ˋ�>��Rx�r�,�>_C&��m��J��i�0zu��z[��S-���;9��Y�1�՟5��\u�,�Xg�/�#���|��xJ��}U��1?=�R"xm�5tW�`�vAV���c����[���;��ֻ+�0��e��U�94l6-�F�{���0mqP"����,+�+*��{W,�h��z��v��V�:�m>B�n��t ���\���M�f��U[ڪ�0��[al#6��q)�a��`��,���k�-�6�,p;9����@�~����&P�\%�U��2�e��gs07��%��V.��ͳ�ƴ��u���@��PABHL'f-q:AL'`�A%�N
x���[�Wi��)͡��5M�OS�.���NNMɨ�Jf�Q���lǫ߭����S5fn�:��۲KE��rA�I�1�̯U�7T�Ō��d�-4a��b�0U��\aw�n�`�h�Ϩ�@]a�leCL:�L���C��FȑmY�z����pr
�Se1��`j���E͡摐`�pԡv���o���f���hU��U
!jZUKڪv��hQ��Ւ6��i�B���7jc�v�9:�c��=��(^�Ź�(�իGH �:,b��]������k��$QH&
��|q_�������'�,���k�l���:W�,.�iC|���h�7�Y�m���w4�[�����|v�}��Ȏ�˷�@4�k�"�1�| �s�S#�`��cwq6�r!F�!2CSx�
oG��l��Y
.�f��=^�'�Vi��0�Q}U�̧�ʳ̋�xQ�[z7��I��/@�s#Fc2P��i=G �E_篇�{[����є͖L��@xU�g�����G�,�L~�t�t���`0&�.1y��p'���(�5��`/�I����o� .|��`�1��i�~#i|�����l�}�>a����3�v�L���g�'씽ޜ}��bO|{U����n�9�)�����*�v�Y#I+�Ɉ�.���#"�V>�&^l����ˏLB��956�U�'S.=�J�\.�9����x�~6���ȅ:Н+]�n���V*i��g���g���%���� ��O�������<�{�˚�ȕ�~ �?�
��?����X�| ���&$A�8!S
כ?=�������"�.��0'���Z��&����)�|�#W1�z~�F#r�3�5�5��F��u�q�qLK����I�Fs7����-�qn<���
����q�p�¯�c���w��ޢO�~'����X�nd���c�c�K��h�b�$�'�0@Xa$8.MK�I�iz��y�%�te�5't~ח0SadSxT4h=�.�V�%�����[���$�`̀`�f4A�'>�-H��� ֡McO� 01&�ݗ�4|���+�z�����d��$&+Y���Mb�}�m��em���G��}a�z��E�����i�؋=�À�/~��[52L;H</�ccp"쁨�A��]�jJ�YwW7�2��m��&��w��b�/��b��.�䋻�qw^v�;���+бgu���n"+��ů�7����y�`4��#V�h+Y������� �>,�|V�@��D��h�����c<:C=��y��FI����fv���H��l���\�We� ey�U�3��%�����h%Itjh"��x��l��������YEE��iZ/h2�3���L�M�BK��.�Pڰ��ū���*�9�����3�М=44T. �HΗ�5|�x�a���0[���t��_�W^o\O��?KQ�)(�-C�
���ڱ�@�N˄(Qz�y�}��~q��>�J˵���^�W|�z�z�Ú��)��q/�S��P$�D��d5d��� Y��
�U�V�&"�����}�}������3#&���e4>=T1
�w�0��s�S���~�2���sH<2X>朘&e�J$�dCFi*!�cVl�^�ڟD�(`�<�<6�h�@�:��s�QW�~c��B�v����N���ɿ~g���e;t園��Y���+
�K7�v�U����ph��_���W�8r�&�_Y2����{?� p璵��a��E�i��[*M<��5��
�� �J�òmh.����O�(T�C�p�at6����XO�͗��z�O#n0�V,��k�Y�d��<[8>{N���`8��v���'��IqD�%R(P�j d�>m��᠁DE�>��$"g�G�x&p��V��Ӵ��CS��P���O -^;V�ɝz��Z�8��-\-0�=/�ƀR�bH�i!U����+˴�T��I,]��k;�e�0��������mR�4�(3m3zW�v��v��b���w��S���_0g��$��85NOP��n��9OS�R�� Ҍ���<���2/#��k�u�:���)b�{w�A�W�_���#����%N��X<�
�EL��;t=@��[
���諺Y�������}�k�z�CU��=ȳ}�
�h�Y���x�V�z���y���|;}{|���3�R�ghB��Я�$Ck�8=A�O�&� ���v#�"��8P�6�V-:���@��<�����,�ɩ����l�D)�s�I7��B$%O�����yamLF�R��j�S*L��������&� br;؟���V�9�Yc�M˩v-��H�UJ��8���x}_�Eg�ߙ�;�aV�L@
�.�.�T&(_`�����M�V����X��RR�_�nݺk�9����=���>���.��� \ѵ�6��믿�&���@��!��'zG�=��k� o6�d�nqw"��UNCj'��j^���iG�8�u��v1��Ŭ������kK4OD��83�:��&Ա`n����c�t�4���c̋��1\�b�g�����S<�tbF�&ā���k��Y17�yG��l_;�l[��^@�z���-�k���>�$��Kl�w�w،`!�SB.�K�5?�<�:�33&�"�tl���8�?��#T��5!�y>BD\��#d���2є��!_��ړ��:��A�!�!����:]̧�NG�zh|����^}�V�1^ģ�I�D$��1�u�p��쳤��Z�Y�(Wϵ;����gި���������K�ZEl"��%�d��'���K06v~�
��*�J��_�!l0�L^o�
%��5��(p�������#��JAH��;������l<�^�~b����aI�'R��s��W�|�rԓ`Qc�Kr?�+���� �7�@��.������k �aʛ.�[4T��l��}Crb3��t��vnO�ŷ-ݳ��5����\S7<c<�?�}���U��Ol>���f>(zKL��%l6~�^�U偏�V� 0Ȣ�v�~ov�=fz:�X�>���c��Q��������� 2Q���%(՛����Xv��_z^"��9xd�U�ָ��p%Rc�ՕY�:+q� �5�6�!��P�bz��)j��JK!�G�"��`fr5�'���D.��d����$�����&M`�M٣�UH�C�U�!�P*j��^ס�fw��՛?8�x�Ư1�NOu�֯Ki���|�`yO�IO�g�'҆��ng�����k,����fm��'67�SCV[y�c�g��e�YV}�����G���?i.]�!������N<����jQ!GHb��(A� ѭ��x���x��h�i��n��,� H���n�EGSsS�xcN�:�ȓz����D�dN��9f����@*�ʠO�"x�A���rmp�����$�6&O��Cm;�L�Q�j��(jwmcF7��ػ4^ ��4&��R�\$M�5�|�#�!�.C}�XUY-��`U���ɭ�K�u"\�-����!�ac������+E�je�K#Q��ņ���pI��\"������
��5�z��q�Mb~\$1�U�f�3��ZaX�5�~�m�N�s"pI��M�Xˇ�d�o���^Iٍς�pk1���RIXY�����ƿ-;H��t�7�{d�PV���ďն}�������
��,�лr�������-(�[�;��R�����3��}�f4��A�Ѵ|b��'�z\"e �f�ĥ�W|zcg�%.2_!����]�o~x�ES7��t�ُ�FJ|���e��`� ��x/�"��tc�GC��X\�-\��p��P��㰇�9�rI�-4��ʕTJ��X/�kH9]#����l��|CV�6����w4'V��z9(��u�����:H���(�pv�X�.�r���b
�ĵ���B�t��9�b'sL�g��ǘc����e�d�Bѐ*W����+e��ׂU��eK��S-������\�yK�\����hG��<�4ڗ��t��6Vڭ����*Z��+�P�B��Q���k]΄39�3�c8�3�s���Mp�g�gMi=P��L�U'��+��DR+��L�Y�2�d�th�X%�(G*K����W��I�����y�X��2a�k���`AB*�R</�Fr㹉�a:7�#� jq0�;�3�ƻ݉�Ũ�=�(u����n�-�� ���)�'C�@Rt�
#��B�00�j�����+�Z�4����{z6v
Q���}��1���>1p��vX��ثuZHa�R��J���ѻ(��B�[p@�x���o^��2��76�\�2�%�}_���z_^��ݖ�
�"�{D��~��x/��(ъ�<��Y-�K����F2$�|*�9�\o��r3*}�iI��YJ�揎���v�-�z���-v;�f���`n�_#m�vJ�� 7A�d�.`��ܠP}Y�k�k̫�B�Gb�3�^�eFF��Teͮ?��Ӹ����;���;4.����X��ڸ��;�3���Y{�J*�T�_*{ס����a0$���m��V��� �<�`�ZD�k��E�L�O�{owkD឵�:K%:� ��9��s��B�5�(������J�|�OA��O���V�%5���Iԛ��ї���.����C!��g���x~(3?�����q���8Zʇn�>X��/%)m
��5!K���oJ�bj���ϩ!tP�6le���MxȪ�o�VZ���׃��O �m�͌���y2Gj!��
��:6�t���_�0�B��"��������Bߠ,O�_\PSSP�ui�#hd��(�&�
�^�5t�OD��)���@f���ʼ�d�1�����0ުK�l.^_�u�7��õk�5���1���s�`#4뚷a���yK��`��C��<~�
4��Z���!���yp�34��.L������-z��v�J:���[�n��?���ƛ�
�dž<�P(Ɨ����љq
g��R���9�Z�H�<`�u�����P x�a."`�/<w&�4�z�A�ڑ�Lw?}�,:�`XH�#P������x�N�A���%M��A�sk���U�N�2q�vj�?��s�aϮ��a[f̞�L�V5�x":S�؇����B�V�/=�0ƑY��ן�7x��)�a�����e��F�D��pCJK�%��YO��G���h���H��������d ��X�>�|�ȡ�)t��:�T�b�Q�';O>���B��!�^z%�nY;��huG�̒���{�#��h�y����0�TC�D�sݔ`����[�(�
�r�\'ү\���:�%�����⡑���tW���SyM���5f�����e'к�l�x���*44���VS��B����S�]&��F��ċ��?�;N�#�K{��11��L3�2�<z�\����Dn풝Gޑ�c\�/��꺪�4wa�.iN��A (Q�( �����MdF���P�ߨ�Ν=oiL���X�6M��u��D������.\���gQ��Z�UQ��Z�쐙����
N�p����q�*Ex�sP6ͩyˆp���%6��
�����Q�tC���u�S���N���Vq|N��M(WA�5Uf�q�u��(����RE����u�ir���P4��� ���ᑁ_:�8����`��撨r�}�ɶ o.O1���z�Z��*�80���M�%6W��ѩ���1�])A:
y4��=*���(Rά���k�F$;n2���e�瘴��4���
��E/p��ȹ9Q�$]pi������w��4�A<��7�P�y�[��-�B����l�ю\Bdne'n?=��U
�U�ҕ1��e�9M�k�l)e��/@'n]%J�
��W�v�f��(ڞ�&��a�Zf�VғI.�7���r�,ZDlx-��[��7� uS��l�T3����e�����H^9q���/����L��c>��x��S�K9�ɉ�V�{�v��!�NJ6ASr���c���q���_���=���0�c��]w�i�ܷ��g=<ݛw�y�(a����̝���%�a�����C�x�]�J6�薽�hD;$FE�2/|�<�D�zW�\0T�؞��Ǟ����c���L9;�z�E�UJ�j,9i������H�|s�m�g�_��E������+�6�pUT�LbD#��Udw��BkT���1���Vb�*�5K�O�,{�y�%�o1�͊�C�$���'�&e�ٕD�\R�[��ݐ�G��ݡ��&��[�����0)�Ǡ轮Ɔ0?�#������ȴ65��bc?MY)���%F.L��c�B_�r��v��y��8���x�9k�}���~�`GK��Q�)�ǎ�u���-���ѽ�����۶g"m��D�Ǯ�V-Wl:Tyb]��
;9�5Į[K�_�މ$������C�>��s�~.T-N3���O��US.�1��.|�7��4���hВ����j֮maX����U�ab&�ѯ�f^uOY��Q9����CA�a8�z�|��ʈRc���ė�!���2{A��`F\pv�;۟�#���-�� ���*>���%!!�
S��v��������N��|0�%�*<B:�N�d�M���A�N�aHΘә�Awz�b��� �X�E�&�L� zS�,N/Ε��o�������j�ia]r�HC{2�e }u2ƚY
V�F���b�y,�ll ŠI�+���2$V�5�z$�ii27��q�u�D9� c�0&��FƮ ��䜉�(Zg2����jk=�٘:<M�@�X*��z����T�g I�^���^��0��#܌��|��������<<��Uf5"a�>4MF�f>���4Kً���<P+$C�+ڒ;.�
uI��?��
ҹ�
���{⫬/N���zִ��GH��5;�[��u
t���T�P��];h4���W���䶔Ϩ�#�p����U�,��V�U]���B�P���R����5�:V�i�t|���P�[嗆�^G�,f�'<|]�{䋳Y�c�{
3Ơ�f��u�o�rI'qi��:HR6o7��s�Q�u2�q �&��X�������U#ꤾ3}�̪���{�j��[�����`X�d\j��늢��$}��M:�E��ROe6����_��T�<��7�8���%�=?g<�����?���_&9�)��!��������y�f�ԩ����Q���f؟
�y3�X8d2Өi2Eo]���z�U���O?ʢTiѓ�"���q7���U�Td�i(i���kd�Mi�SLH��njI����*�BX�S��1� ����Af��E�֥��>�8X��B�Ru��Z�G�s�+�
��K����gN�#K�0C��<<��]�#u�|z]E�����}���s�Nz��A��H�Je�=���t��kZ��*"q}l���*;���g~W}[��|<W�{XY�S������~�G����8>�+���*������-�(`4�r�6b9�^ʜ��"Y
���1�\�^3����ސ$��rBm�}b��7�`7�ȘpFez���a�R�Q�i�+�
+6 {F6Y�** �A�R�Y����#�[��ӡ)��6������Q������<��ـ�ܕ��cP0E7���jmKZӸV��K7��K?�68���-�6]@W�nS]K��ۮ1>Z�T�X�
t).��ǐ�
�H���A2q��,���
4�� /?c�b�m�rA%y6��;��3���E�,�R1�H@`˛:C��;jb!ٓ֫�Z��2��/v�̺�؏X�A��ckjw���oeT�S2M$Jz'�D,����T(N����#.�A b�sI�;���u����zB}����(��{�>��ʟ�m�W;.����ϛ��uN���M�7�M��5�G��
)~�h�\��*��N��"pD*|���(�1���s�o��V�-$iɚA}���L��t���pY��X��B@A�N!\t���cY&z����:q�G��|�0u���h%��t>ƃ���&��s. �5�5�K诞#
#�`��aJ|�;�i�n��(�mᇩp��ب��d~�*�߁��g�8㽝֍v��N"��&���r�b���/��F�VcPUȘ��Y�h-,'��-*��le0µ��{ia��By�߶��z����g��1��4I���b
�&6q�%^����]�%NGf���N���~@B$;�N^�����φ;�MVA�(W��*��>`@Ŭ�&�
����e���"qc�-ӈ���=5X+�t���������z�B���ڹ��<
�:usJ��ם!�`�j����X�b
�|Y������@��\
ˢ��O�e�)�-��@�}LV4eӀ�c�MZ���x�`�)�|«.��Y���wvX_u�j9���ޟ���D«�(([�M�딠x�`�Wq�\?@�l�%�XŰ�ٔeQ3's�I�8��g���9�*XsЛ���ː�]yu�g"xY\)SʟAf���,���Mf�f5N_��V���p[a�)CY{���I�LԌr�xf��ȥ��@A�!��Ǩ,�3.�0$��o�|k�@Pu�ƈ�j�n�006�F����C��i&
�.��!&��{{$�j.���i�֗�^�G�%���{�L����"�c�)�~�^?m;��HO/f��S�N�a�Qk-.E�������Dвʢ���O4F5?a�k��@�q�)(�vFI��cP~�Z~�
쬴�w�?g>��(<�3 �>�9qO4�a*�_��W��(Q�����k=�J%�S���.!�f�M(�xR�eS�F����f���8<���\�p�YZ��Xl.�� ZT"�/#��:�6۠vT0ӌ}xwU�)�(Y��K����0��I%�8W}m��|�$���&��z<�#�3��Q��F�*ϐ(.�a4���JKvU��T��q�qx)m�ݢ��#{t�y�������y�o;fu)�S���oU�IU�V�ȇ�^a|{
X|��
<͔vBt�˦p������?%s~">� ��L������Խ5����m�]�;����Ʊ;]S�ų�pr^$�>j�����a��gn�j$4��X��q�aL~V����Y��.S����vv�&䳰*��r<g���5�t4��!��b�0�?��L%�QZ&�$�qe}�
����7|y��b��T%%�M�@9*��� ��K(v�C�jC��F�F���QEp#Sb�� �/+���HL��Z���kŐmsӪS��;��2��Q*ˢ紡���Q�w3�x�4��\j�� �kH�Q�ĺ>��U� �n�O;�ءJ��c�k�.�~yU!/������R���,md"����+Nh�a츙 }z/h��G��C�8q�
O䣥C��5�
��4�zL�^���4"��'�ǚ�U�FQ�����!�.��Ԟh*@�i̬�cS#gU����>l8p.ל,��;a��0�k�n�EG��������+l�B>IR-=�_{�G����OZ)���{F�á��5c�M�������K���*����a����g�z��ⵥ�����B�CG+m��y>�3�$��%�ق�Lњ� ,-F�"]Ͷ�!y6��Lk`ע2!�WJ�d)��hbn�3���=U4�W��o�8���0b�M�s����R�]�#A����ǃ�6����@Ā���~ ܯo�� ;o3�Z�����2��>����3�s|�<��#�T@!��PO��zհq�$��𡹹��
p<�ג�E)ܘ�9^�̶�d�b�� � ��O��*���&�];2h]��-""ozǮ�ީ"d�b6�͇�ò�������Qy�Qr�Q��Z���zh2�3� y�=��whns֢��y]cG"gV��M��4�03ևY�R�r}~\F�9�ɇ�4p�ډ4d��Q ��7��� >�\�̫�Hj�;��Q�0���dU��y��9��7�r�
'lS
��A�GL~C�K�fq AR�S�R�I�8�f� �V���0�eT�uDcO�N�}��i��� lBE���!Ḇ��I)��k��(�W�U O�m�Q��X�Z_��������8�YZ�WJ{���x�Ň�<u^uI�PBݤ-��oΘ@*��LE���8�'�fr�����gX���߄����]B��߰�g��z�0ѸluFε��"-��
�<G�j*tfK`�q8�=���wqеV ����O6�U�R�����_�P�B���jp�i�g�!mVwO;�`�o殻YE���"vbȥ��'U_���;_�V��/!��V���o(�i��>��>��rǠ#/Ƕ��zd�6��b����\�L��í��q��9Vo�d#.����-��0f[�q���d�����
�|��I
�y��o�N_���J�ُ0
k���{
�F/�-����
��Q
�y�i�x����3:��T��Wʚ�Χ��+/�����l�Q���N�����vEy곇�ɱ�~aR��c��������L�nb��b����"��!eD��?���y$��<|� ��ܣ�/�^AK{_���6���[/�h���
ܙ!Xיx����E������S�������#��GQ�E�A��̀fV9=�yQXKR����;ka��y(�8�Ym�y����;$S�6����i�i?��q?j��[�'���q�ڗ�O�Ʀ˚��t}�[�oc^P_�_h;8�� � V�l|�V)m�l2VW�V�gmi#ZlX4�.=0s=���p��Rf���h�fu�c)]�t���|'�.:�!��F���L�;X���)/�g�3X*�6���6L��Q�K
j�@����qa�I��}[B�雬��M��/D�ھ�r<v�l�+[������Y=�)i�bp����\K�g+M}S�N&ڻ��Gso���:��=�ϼ�{!J~��V�.�?��
\0��$�U�tKt\N������5�\��x�nQ����JW8��\(����^��m)�����懮E+�p@����1Ћ��&��$�E^ݧf�w9���ɦW9^z�}w$���:b1����T��
���,=1u��լ�,��Z�:�
��J'��<��(X�
ЧK*�7�;�5�Y3I�.�.��ҡq�=�݇�G�W�
%�&=oH7�-��i�L�F�;��N8/�{R�%1����>r�8��V .�A}�Ffb��*Ut
ZZ��/�}��T�'3�ʽ��`IJ\e��Pm1b�E�X���l�W��&WQB����`kO���lҴR�<��Y��(��������J�ɸ�5�u|���q��L�.0�GO��ƣ/�7�?c�Ӊm_����i*���<�eKB��}�+����lr"����( �8�S�U�$��f�E��Ynnl�d �0��Y,9�ȟ��C�v�j��R��\�ݱ��<��d����b�J�m�P�3f�rL%Uz�"6U���@kK�jp���g�=�
��E-/#�H��Mp.���Ȗ��6�?��2"�j�,K��,�d�o,�n�?��60��L���=�v�J��2�YA3�Pv�=��гv�"����'<k��@D+4�o��X��m2~X⠈� ��i!42�X��&D�^��[d�L�{Q:�n�qm�����T%�U���y�mYv����=�S�U
}Z��]��U*\�W����o~;[��m���t��肭��#z��y ��;��$Q���N�FJx�#��<I����������O��8 ��`��/ "����#�����h-|T�.������:��8q��#B�� En8"|�uET"�0�Uv�Z{A���C��BZ��7�8E�:+���Ć���BF��.�4�/��Ӥ"�(ΧC� �����`ݯ[�;ie��Ml �����*��n+n7�R7x�5��3�������p��P�Z�07@\��R���Ӳ�k�`e��凫z#�[�C-�w�[>z�X���ˎ���w���Hobj�c⡃� -�@?/;�}M,��8����t���1���oTy^��;%*���`U:@E��-��ò�bQ�F-#�����^@�j�*-�27u�B�3x@��^4�~�52�_�Y`UZ�/ej�Ա�$&�Q�^�g�t��y���W����U��kZ�չ�����®��k&li
�}G�w<4A41VڔR:L�p�Ӝ m~���_\�A������/!Z"<5��@'Wx�@h��sx�i�����ij��u@��)ħJ��ZD-J\:�Z�kV�&�����_(*zC���ܳsi��M\�4l��ڣ�X�%�~K�����ֵ����������ٙ���X�N��+���<Y#�pM>���a�)��``\��TGh.��4(��nL��;���X��KH��%�s�.6��*�M&H����&+�
>f�~���爔��8������,3aM�Y5ԼUeUuD�)L;)\��y0� �/8��x{P��ז���I�zb�E,GQ�@�K�|T�E�,ҳ��Xbn8�6��<����E>�+t�n��S��
�;�ohu����Q�2 %���:Ƴ��|��Kq�W��7%�<�Fb�����;/<i��K�n��W�{
8�s�yf�>����+NOw/k3���p4ߝ�Y�-�Ӣ(�����F�4�v&鐖}f����t�����܄��pC$��� :&w낹�:4�U[����>'yw�ϝET�J=P����_�ڻ3>ม��TAJ�.��3"�[i�t��qK�� Ú��^1�W�'녡Koq�n���`�hEx�n��My��^K6����jˈ���� I6�[����}��dl�B�I�+��~�ن��Bm~K�Hy��o|!�K78��^�,���`�s��dgս<5��&����Lɻ���s&ެ���=���ۭ4�X�o@?��ȷ���6�F|��� 0���uA�67�ur��F�3i���ɥ�/�!�����*ąPw�����A�����c3��̂c�2L����&�)�m��{��;Lx��gq�����f}д��]�b���������J��+�Gć�L������py�@%�Y[;�˟�Ic�����e!O������I0]S���_!��)��H�{���5���L�Xz�˸F9
���j
�xGcCF�� L>~��!��\�F�ґ%������@��z��L]���1^�g�EP>�B�/l��3^�-:�#By��d���-����e�[����H)�I(��A'�pódw�o�F��]A�M�� �(���YЁ��Ew���L�}�]���������� Y�r5w����%$Եb�+UØ���`sef-��\.֨<�8�?��t�1M���TÞ�B���DЇ�[6�1�E�2�ɏ�Pj
㲙��5'��#5 �;b���r�H��7Q��H�%0D�c6�(��Z�w�мI�P����_T��֠�H�T�?����ث��s���a�8��ɮ�y�������������������C��2�x؛���l�EM��-������3����V����I��M����VAYV�k������Q�������������� ��������X��l\p���&6j�&& ;���������3����� ���)�l`ma$dkfm���aa;w�6=;���"�=������`��&���%c������� 3����+L%~������
�����(�1
8��#�?eA�����L�H������p�p*vR����F)�dX8{�״���W*�lM��_n(��Y|�����ф�Q�������@��j���boomb�ON�_1����m�����,_��l@ݯ��,,,@ ����/3����u,l�m.f ''++����v.�/(����������|�,_*�66v&6f����7���Y8���_>�oV8�鿩�m�{�o���{����������u��m���8��O��?��%�2����8�3������+��[���y����G\,���W�����Zv����M��=gQ#;c8F[3g�/������Qw��U�
����z� �����)����WIG��K���rں�u�=�ћp7u렍h�̊����@�˂�7��5�Tz��c��NӨN�5`��_�MpwСx�j�&d��ܑ�]�7u"M�D�n?���㥓��D�W^�]!��*[�w��0'��ݷ`
�֏F�ϴ�\�ke�S;e����#d>?f�U��)d�&0�s��}�p�?����d{��#G�3�"+R'M,'-6C�"���O|�v�
-���r���U3������q�
�Er�l�"7��^�$��Ru�ur��m��{������$��_{������?M�^�����W���wh��5)}��b�jk���������ߎ�t&�3;+�W�?Ɨq���y���������r3OBڸL�����ca�e��-�(��M�DSH-��rMLۼQm@��ʪ�$�A�J�B����C��Ժ���d����_W����G����]�G�o���L'�@X���P/�(x��]SL�r�&�
�%;-��@�֤w�\B�
�j����Ӓ��������,oDsF0V?>�A�L H��6���
yք6DC%TD�4V����>t'8��KQ$������x�n��u ~O-!�$89��%_<}d*�V�A�v;T������ ����x����@Pt�3 �" %D�T�R���������;�$��&�(xN˵:�!zC.
�б�/�;k��Bږ�G� ��~�Y��Kk�C��Զ���"/�_g�u�F�:��w�)�P�����?B��P��l@W�w�i+�Y�B��e5�<��<�)g\D�@�r���5�'�
��#2�*��,f�Z�Z/�٧q{�c�XJ��r
� �]�� �px{��AC,C�d#Uv5�Ǯw̏u^|����wI�k���u,|Q�a���/���s�s~-�d��ڣs��M���+bC�+P�s��F(P����o���nL����㹏b ��6�ƕ�+���2�P@)��LW�~O��^�_�r�^K�G��B}{�As0�
��;w�(S��U�%���<洞�LZ��m^�A�b#&�~��~
�ۙ��<H�:����.N��:8��dK���Q"�h-G��oF.��~²�w�+���?gɇ>�$��k���h���4�x�n>�z}�
��JE��R��4>7�gc�*�i���A�b���|Y� �J]��4"�-��az�.�3a� �r��dZ�/qx�����Z��F'&%G���������;���Ia2��Q�\6f=rъ���W��������a���zRކ��+~�+��<�z����Hp�b�?�K2'����D�Hq��?r�s���\!��.� ����.�'hl,�]������7L�t|<��Is4=6
���&Ա-�.a����-YF$��#=�P^P�ͭ���l�����C��(o��]
E`43j$�d.�o$�8�*�\�}���V�TkLKlb+Rθf�-��8����l����Ӡ��At`�T@�VK����u�ͮ�����dhɿ�t�ypx6����m暕��U۶�N�Tb~]���t�G14Z2�0u�}���Mi��B�ONlp,
O�@�+�W�� LD�-o�[�@R3S���q;���zd��h����f����*�6t<�*��Q��꺛�|>��ժ&�^k�x
o^٢���t�ӧq����2�?�?��
�ԁb��\:����� �ss�i��cJ��;�Sc%���]�0J��o##L���
;����F��!��TX�#D[����)�jjF�y}�D.�K���H�[����n���qp̆F���Y��ۉ�K��
֩WƔCc�Z�v�Oc��7��G�Tr6����2R3f;��#�>�~a�͖L"�eq5�mvֹYۖLr��/��(qU����(�攕QK���q͚��P�iT���G� ���yKP2�ܣ;c��4rKQ�ilM�%�K˱G�Sz�[��&�)�Lks(�.l����㐃{��9[oT
�a�բ����t<.E�&J�L�˶��?0���Rk5A�4�4��,;�����p�Z|7���~|@��j��$����s�;|��SavQSO?�/|#`�ՓŘ�I��J��{7��ij�.�����l�w�K��!�k�I�O2���h��
{�t"�x զy2)�gu}�>Y�;�@���5�����4d��$9b�wі<b�D����`x�+�:}��mRfX<I&�-�o3Q�F�\b�(xWh���[�����#�z�%70e @P�^�~8�ٰx��f�`P� �k�o���U�_o!���@��qr3HN��]����3��_�Bw�PfF3��J��b�����n��a�DO��!R���O��Q%�^.�<'�ێA�oahco�At�!���̠KA�/�avSU_(��Z���X�Ps��N����Ka9��`D��i���� ��(G�b<�CI-�]��o�]�a��e{h7x7�YSC�kAޡ��Ԛ�R��-��nPzK�\3#Xj���$ ,#�{���Q�Fȿ9B��s�jxA�w��.���H�z+�ceH�0<q��t�t��w4"\Z�����q
�;d�J�'�b{h̢�!��mK��P&U7�(�ȘFԓ-p��X=C���;�1dR��ˢ�nu,K������0]�3Kl]>�D�s�43Hw���EÀ �+n��'�L2eI�4��8��G�?�2�� �#B7���xG�Δ>�.��4�#k�]���``j��bF}����T`�V,�Z�\�n�C��P�7$����s߂�q-���%��r
�P���<u�6����0B
��R���W���
��7��3�M�|1Va��oܱzry�@R�zSW�WT�x��y�rVds¿�/1Ns^Mdž��u�=o�0���4����{�ezp4�}�*��CZ��v��bl�BY]w,x�.�p\���xE!���S͠ Π�kl�JX���ҫO�a}h֑�&m��ƼA�Qv��h��#�iۃ����1����9Nk��0��L�.XS��������="||�L�we��L�)�h)�L�̄��>!d��2�U5}$]��
�m�ʷ��������w\1��9�׀�Ҋy���������2/�#��8o%�ަCq�b���paw��e�#ٽ�t7��hkR��g�>��Ng���zH06�7���NOٳ�d-�D[���� ��ڂ~�vE�Jc0�Sy�Vln�^e1���C�Ϝ���������KE˒Z#d/���b%��^W,��͆�� ܭ���"Op��<�9�Q��}�ށ>�g��e��l+ׅ1g����Y�}��B���+��k���c���k��_�_@��]�3J~��'x�k�l��-�Z��Wɸ~�l��JS��)s�����*&��q��R��a�R�w�lJ1����Č+*������8/��]襡b�� FIP�-�̟&�[�D�8�J%��2���&���o�9.B4�J�ʏD�%��[�8�á�wM�
����a�4�؞1�^�~�)�:� � Ӊ�th��������M[\�A}��o��z�O�GR��T`�C���禱yI{yȌy�\̅(Q��Q�[���H�P���j�~*�P��x����y#l���X�P�ö���*����X��
�a�:��_�|k��ofAZ��yʌ*E�=�*聍�����!fN,�g��w�b>�.M5*QB{���'�����*�2�������>�<�]K���C����R*�)�u�}��Q��ꬉ�u�A�{�+K��I��;�ɢ1�9P��Whh�Y��������/�7r��nю+`Ѳ1 �n�E5�Ns���y�r�=�^�"�'ƴ�p����9��|�"�h|I���m�Isd�_��u�5��o�Ѵ"�`�,����Hh�_�oge��y�twaN��^
[��cħڻ�=���>+�E�o�H��b���m��y���Q�k���7�s�#�i���\P������@���=�]S"����Je����3�ۧ��mo�����c�廸b�@�fƁ�щ]м[$��v�-��ڱ����]@�key��=r$@����a�[�$�h�**�5̄ي�o��
@�ʹ.��"�
�r8���18��Ϥ��GDL��>� ��aP^��̞��"{����@r����E��2T)��@���R���k����l��
ϴ���2��vI}�tk �G��
�#EDij��06���������N��f���oy����V���{��� UY[���1� �{�zW�=��x��e�_�*t[����������A%�3�������J�������>���-E�?�)L�ew���<���<i�9�˥#S
j��Ĕ�n��|�>���;�,W� ԼW���%,1M�������.x�g
f���R��K�zK��eF�Ɓ�����p�`pbK�v��y��7���ꝡ�H�V-q��:�I5�jy��V�ۊ�ℼ���?՟� ��;���|�:������T������Q�<�C$2*D�����t
��R�I>������;�*�{�8&R�����Р���$Q�������� sZ�'�J�*qE�F)#`��̕�Ώ��sE]��~���X�f�pȈv�p��ïGި�V�BF����-1I��^�W� -ᄜ%�Q�.3WE2�[II�p�G).�OHJ�Q�������F����탘�;��V�&�=�bpF��
X�I�F��QR�ve���{x������{4i2cYcg"����o�&ն��U�|�oP1$�a�Uܑ&��{����{����?��a����(��
�(�y7��C$��A�����o��� �*��]^J����][`t�C��
���7�J�Z�5�3%���5�?�U�*�6�L�6��+�6�<urφ�*vuJφ0h�Ѱ�_0�6�[D=�K��t��#O�� ��MFyZO���h/�ږrۣ/����7Muʾ�]"��^<��z,�m�/&�*ɧg����Z�aS��l���qSu��[~9r�N�^@m[�V��m�uT{)���oPޡ��l-<#Q`��M�ŷ�7gWb4����n�p��=�K՝�Vy��})�=���h�M8�3$��f7�Eă`U%�W>i������4�-qX�}Ͳ��ܖ�x�P��#m�XB�P}Ї�P~�Rĸ��x���k����E6�
1&�3'������>U��jy@v����e���0g����=���
κ�z�L�^i'
l#��<�g���˻����$����R3p�V�c]�ܐ���ݠ���%b]SbtFm�0�`��y���H틝�$�»#�S3n���ylu�Z�C���%�?�d���ҿ -GwЬ�<L\w��Sy��d0��P��=Ss��k�=�}uW|&�LI��z&��%�F�S�r� �я��
�N��E*��g�������.�������J��G2����W�6s�~��%���P�H�y�{M2�f�P��p��I�y� ~p��ͻ���(��_��t����)��
�ПF��<�%�~��]/~S�v9�S0B�#v�c�hHS���Ui~��`�4@Ǘ�C��ק!���xɷ�"��[Q�F��y�2օ��hi"i��ʧ��9m^�5U�����i۸f�rƩ;a6tF'�V1BЎ�#72���h&�h\�1�[��.H�ۃ�Y[ _k���-Y+�����T�Y+�z��s�M�Twl��*���]��ݧ���J��|]d�C@�FEgZ�R��4)����.�o9���B(�R�C"�8�J&}��_H�Xب�4��8���-�������$cG��?��An�(�� Y4��[���
A������A��%e�5e���4�����m5�����2j���`q=���*T�M��1��t]6D��+�辉��=�2E�3�a�:y5�Z�8\hFy~���.��l)F��k;��wJO����.fc��^C��i��+L[d�ك�+S9��k�dX�wGr���.n�%{��R�e2�B,YS ����G֙��2e��&�Ō�=�k�Ot�թ��_�L��;g�.diBAE�N��Lj�L�밄�<��-�b���wC��O1ȷ�e�9����cr�]ȜVp�6hT��#��1��`��j��bW�;���w�z;�U�w{��>�Yu��A�'���Y��U B5�ˋ��8C\���E�k��(��Xq.m��~Ejc�%�Y6���YO��+����}���`Y�ȍ[&���u��,Y�=9��HdO� 4J1^�1ĺes��2K�`��
��Y���Xư40����Z<3v��5�C�ݶ��o��<�L��g�C�� i٨6eYWk=�54jyF�r�kfU�X�ǯ*��$O>�������~��[q�I�� i��twG"5Y�fQ!K��S�뭺/Ǯ�ylA�-w�j���T� T��X(;�-{Ze��,C�i<}\�+]�]����1q�g�Da�6[�"R�����;���ET��Dui�<�P@XD���[|�ld]�y�A]���S��S������5>;�@�o���A����z�Y���(w�߭M�r��P���f�v4�v�<��
�j#rk�IF5�%��!*��5�F���}��@aO��n��/f�9<��[��Ll۶�7�mۜض'��|c'ol۶ygg?[�w�{�:]��^���]X]�ԯ�t��5�y�b!���X��.ɗ
'9Zq� �r�j�
A����2�z=�i"�j>�ֵq�0��;�ЬѦ!�ƚ������!�/H4�X�#� �V����
�Z�cw�s��e�fmw��}ޭ89HL6�]�$��z7%Te��rH�aJ�ާ/d��\2��o2�LgU�FX�Wlf
�W�W|V�5eJ��VKt������K��Е%6����*�5'w���|G9=�^�����$��m��������ݛ�H�(@\J�1�����.��W�qav�6���`�;�3Frbv�Ȋਠڀ�6��E%dU�A4:~=χ06�H�ֽU�|���1իF��]*N�G�0�K�£
�N�Z��mzT*�Y��2Ş��Vz2���㶭�`��hk������B8�H���ȯq��K�`SW�m���
�0���N�º;P�k�^����:�����NpA�`]����Iݭxd[�֚�Z���S��ݼ�1��\fc����'j7��|R�lxz�x�"ɥ�X[�!fW�<�eP�N,K�"�|�Y5X�f���c
Mʃ/�����Wp�3��+�wqL�jf/��A]1V��1��1�r����.TB�Q���Qk
�����q�+!4ܠ6��`��v�Q/�~t
<ʺ5=c`�0S�0S�0Se��
4?MC��c
�O��͛�͛��Ȯ}���_��M�
;��."��s��xh+<�zaP��G���p�67%�YooԱDb��@k���T��x}R��q��b�A�*�3#�E��M{�AbN�锓�����$��SjD^�k��d)�i��.A�R�S���y�� �#�y�x����ᓡ��&��KR��`���*�NP�I��� #S� /$�Ս�+$�(���R&3��8����k8�q��9{��M)웠�X�D�/K�Lo2ls<��ީ�P�����
O�mO
s&�b����{G1䏴ۜf��]{��̫ǴӰ�#6Ibc��)"Ő1|l x��=�R+>���c���e��!�1Mस�k#'nYS!%.�&#�S�1����lv̄�N��L�Ĺ�wo_Q��RdLiq�8&IzJn.K=O@[�s�q��^T�@�
�W�S�q��+�A�f���jߌ���i1'/��� ��n�tbh��D
�����
����R^�Ǝ���{���N��gMB����I�Hȋ�Km"�&��g��Dٸgm�����|���lg��Lb��$�J���2q���Hw���H����LoGwԢ���͂@��"9�0A�,2�ט� ��2�7��8g���Wv�&����u�c���X
n4f
�C�����5$�*��IT��7�BQ
p|�٪��X�1�J�s�1�lvef���i�����,�=\Gi�ɸg�n�� 8��m�k6�I.�~�W�Ij����`���o�Tx�!�"�5U6W�
zv�4e���t��a��*Գ.{z�fX�٫R�8�i���Zْ�bLYW�@byl�Q#f��f�����d�미����������5V��̴�]����%��]�/6��@��䠬�M�ݵ��#�UN&�Z��u
�n� יS|]�{X�5�-�\j������tyJ$���\��_*�xX����oe�Ś
�:l����fa�͈V�aXg���kOe�:զ/���:=�I�'+y�a+�"�B���M�}�6��A)�*�:�}*�7cv�R���d���,½ջ����AZnnw���k7v(D�ȋY��>��M��M��Uz�s��~M�]�o�F���^��-I���JV������o���{t9<�KM�:�N�Mn�������p���Y���ܹ�����+x��n�C��OH�;��]En���j���jWE����J����i;
^!YAAc;��z�kY93���S��nZ�:�S
� TS)��@�Y�7���a� g����1�4�'%�w)`>����|t��Zݹ�.L����e��1�������|�Zs�C����[�'��R��|��*B��!��JcGA�z�Z�X�.��_�,��,����t�ӓ*�>�l�/�1�\1�5��}�2gK%�O�"��D���&�ؖ+�
��.gK�=!+���K��n�zQ������e�>��k����$�������i
��Zyd�
df��h�H1HU3�t��ɟ���襢u��7G��O~��WЇ}�`D�۱*|t��m����J�L�0I�
����A�!��k�#'�G�� D���D&�ıJ"C��Ű�q,P�,p,p�0k ��z�B��48�����k����#$P�KB��N5I���ݠjXs��";���o�Ϋ�2bE�8�4RE�F�G���?+l����Tq5��T-/j|�����G��
��t����{⍷M��5��%���S�@YY[�4-��z�qg�i�2C ʌs��q�4�3�f���n�(݇I4�*��l��9&�7{��R���'����?;Ї��U9=����H����Ԇ���>=5��:1���W��'�Hű-�/��5=|��A�ó�"��pVsu�DM���5آ�Xc����KېJ~I�]\�>�Lk�����>J��6^�ϕ
'��
K+�m{�x%`NU
8�������ݦF�R���g�Z8:�U�V'�rGD�v}�n��KU�9bB�YZD�%�֛�IJmt��+����O�K���|Ʒ��7DN��O�����O�;��^;�V��k�����L
o�� &wOs�qr�y�=z��^�"lud�P��T���H��@��?�8�<��ϬhV-)��"m+����l�}c�H
���v��
%�W�.�0����k�y�V�J�F=�*HF�����{ϛ�;���^��ŕ�W���"!~�����C�AQ��C ��/Jb@�)#��қ:���\Ȏ�O�?�4TU-C�,
��ܼx�=�S�R��%C��'�E&�f�6l��,�����r�q������̣�|AtQ��y+����<�#�����H�a#S}������wY=�ŷ<���*,\��,��� ������fz[/|�����ґ=;�x_9D[[϶mKq��{��8+jN���{̒�7���s���~"��^9�3Nѥvs~�n�aх����D������G᮱$��������ښ��ĂB$8teP-
ڮ�Y�8��l�
'g�����3d/TI��]T����c��֊� �y���7�3��еy��a���I�09%Mm�gx[\�72�~`j����00�P��
~N��e.(mI�p���5>l��c+%����Ȯ:3�]F�����N���g۷�I~��ûG|7�y_�%�e&!s(acU��?�,:A���Rzk�Y�C��qNP��`��K8oI��
�<�$n�Ɲ7������z��'Yf�zA|y; f�;�׀ؘ�(yӄ�OS<���������Û�K��8%��B�v�g��K>�9$;o���x�ZY�Y��u;���X�n�rd��2�ט�;[�m SP��I>u�Ty�
�=u<hv�����d��h���7,�1��ۖ�Q0ε����k�����?=6���
�މ��[wc���*�>�F`L����!�
�9�#�uG�F��}
%�rw
�(�G�n���lم�0�W@%�c��1�i�qӎp;J�j/����K��V�;y9�l�dvb�2�B7;o�|�!=P��8����Ә��%>וX��$4�<=���I��a/�'�w�����,/)�ۓM{W���4x�!8��L��1wQ�:ԩh�4�y;���\�E�&��V�t#P��P����(I�̡��Y���ج��v}R:�:�;%��P49Z�_G��u�70�n
�h����?́.�\��K}M�a����C�;
Z�7+m��g�n�U�Ee�?u���s7�n�Ȥ��5d�:�FR�C�s'F��Yu�3[3�R��+��=�ˎ�I�9;�Dt�U��N���} �f�e�����!�eY�������]�I����}����ݞK��=r�{t�F��C��\�R�B5ۆpn���o��ު�Zz�A:E����zRk��`k�i�3�S�x�0]�g ��@w��^4?���mH_�ĴS?�9���_�H�Xr�h���V?:vPb �U�ѲQ��n;�Kב~��}=b��"i�EN�O
��r#>j�:b�?#����ҐĤoU�4z�y��|oq�a�{�?b�i��#*�ך.�< �M�o���5l5��X&��C���4li�����%�h�Đ�8���5`��4��d�B��e�}�k[�f U�,�8�*m�S�"V�������P�>g~]+�����B�FF���������h6Bx@S�9c&n�zA�8N��Z|\���h�M�Z�u_a�x�"�a�FfeG��.k`��gg{V�x\���D���_�H����-)ZƳ�}U̺�� �-�`l�p�FƑfh���֖9xٮ���ݎ͎���m��
��=�����z��2��=��H�=��8��E͡~���rs�>�t�u�l��+\�y��|��6���m`+&jeT��T���**WΦ���:��8�H�oKҚ�:���UY�/�����h�
z�7�A��G��E*��փI�����W4r�?�%|�Y<חϯDžoO�h�
��0�PY5鸳=q��ײ/!���HO��#Ei5t���W��Mࡸa��B��c0��C�l]�Z���(阓��3���*�!^��
{���_Ec�ы�Y2&)-��I���x�\X��i��B�ij��rx��H2�d�t%���5�NYL�|t=LؐE��)����W�*�$i�e�
���y���
�Te�Mx0��5�
���>��4��E�8h�@)Q�Z�sBZd�"x���D�� 0����u#��P�RPq߷�9���o�F�g�D�84�K#j)vTf��m�����%?��>�:7v����0p��?������h��ℳ���^���x�9�( ��Ŕ��!�����״�����P��O�v~���Cs�������@�UM�~G�0���E'+o�i �U-H�O7u\�Hk��n���1���n���rE�6�E��~'꣨Ħ�n�iu��mͿ�~%�$���I���l̯'A�/����/����͡�m�C�9�FY�z�B����v
3��s_�<U-f����,�n��~��
�M���L��,��h��q�����8t��/�=�M�6n��>�o :��o��$�OF��H gY?<�{d�+`@"6��)�&N��XO�h$��a�q����h���ku��η�<�����i�1Z�<��@�����#i]��8�^�]�>�Ng�]"�>������x�|C���IO��01lqO���>�&B�?U��_I$;�Vpژϡ���������N�I�@��
s�y��,T�T� �\N.?�l�i�G!͆Y
�m|Z(5���o�fŮ
H���P_��:shX�b{A���-�Q��_�B���n�]v�e�zw=ݕ��6�O�G�ldX778Ep�K�L��Lf&YO�6B�|d*݅�0�%m����!Ql�r|�Ǝ{�=�GD��X����?�`�Q������О�U�J'͒�T��h�&��(4L���� ��B}(�j��[�dȟ ��l�\��� *���h:{�M���Q�}\h�;�9yg"Qv���� Lv�!-sn�ն�i%~���O#\�YP�)�ƾ�������t�nl�X��Lt����T�:M�����~���dn!���x��
Kj���}�z�m��W��๘�#��?D��n�y��[����������U�lѩc��.]z��5�L��ZK��t����| =W�1�\�I���Q�*O�؆u�[�7^�.>-�g`,nd1k�
V�Q`>Ϥֳ���şAG�?���{疋G���sAf�iy��CQxHg��9U���B@8�����e��KbD�˜PK�:BSIb��SJ(Al^�I�y�WvЏ��0#x�EI%UjN�(R�b��=u��dJ�ec���;��
�}}�Z�������C8����
g�t�Gb��ʘ���,>�_ID�f�VC�"���ݲ����nwN7 �N�l^�v�qA��ݨ 1�Ӱ� ey�NJϫ�SG� (�|)?���D�iI�@A�#)�$H29Oz|+� @fr�Łj
*����PŞB�YTo��e��%��&OJ�p�Jܧ�{@�Ȩ��i����ˠ���{�f��)h�LR����V߁�����%�b�({�P($"��^�2j3�����^
���4�����[���1��q�p�|+���zik:��Dfvt��}�!s��js�ql��M<d/g���T/�k���I9d���ǂe����
��{�S-��I���
��j*��TJ[k���Toa��Ho�ͺ��iaT��t߉m�#��4l��MQ�]:o�J�T�i,���Ncafa���e�Nd�wq
y����h�PY��161gh��>�N�3M���>�qMkI�8�hҪ�v�JiN�k�����&�P�m+�J��n��Su�'�J$U�-��-��T.p�肺b�U���r�};8��6�x�7�;�Y�<by}����1�9G+l1�%�E��h,{�5{���v{�
�CQH ���n`���Rk$�E{����K(��B'k,�P��A�����������G�"0���f^��8
1Z��v�n��l��`f��L�z9S���[��*#�X�2^�1�ן�d��vY��H���79�h�VCB"��kӮ^#z������c�VHB�C�o]Ix�B��p����A�R���R�Sj"����,�q��=J�c?c%H�
'��q�~���DE�(w��ܓ���l\b�hX�=�b�B�>��%W�R�I=d��!���dZ+�Xk=�@jn���P�I�h.����N��=�>������L�
-^����0F8��T/�C&���|��H�e�R_,ǃs�/��v3&��s�Cu�{Q����HX�i��w�S��+s�g��6��i
���d����j��f��/C���?n6Gϐ��\Dek-
i��=J�(�0i1�'g�4x�'�3U�B㫖��q�a��,5U��0���˓xr�_҉�|s�%��B6��������pbȬ�!�,;�f'�Pa٤��iB%��.D�� 8����,��p�/�g�8E�)�}�Y�`���4y$e�_s4E��2�w�|�
��%n��+�&�Z��&��k��Y�S>r���\ڪ�C� �/���ik5�mYS�{섘S��
j�:��%\Ȉ�&�5\���P�1[�c�K��hŞ�~�!7[B�˥�[4�4Qhި�h�� ��="�fg�����)��9
h]i���1`�<��|�O}�k�xQn�gP�r�
x����-=�V\����8�����(�G�M���.��>!�RuO����JSZ��w�8B~
�0aГ�y���㣝/�ΣǶAV�I�pB6LZ�^�)"�ȩA�
e*��7��qiSp.�S�E}TR�;)V�tS���<��^�h-<DZ5�/�G�e��<&��_��Z�Zb�
�̖7v��6��fRT&�q�N����/�xLMD�i>}��n��d�s���b殾��.��'^�7m�\��S
��t0_��o4�z&���`�C��@@/�4�ZI���ּ�Φ�4��Y�vD�7�y�T���Ө%a���r�N�I��(
Go��$8�Ҡ(�hI��r�yò�2��0�_K./z�z�N�c��@k"[[#=��-�ʏ�+�&�8�>�Y��}ڃr���:����b-�w��k�a�0B�,����$�`��c�m�G��"թf�1U&F��N!vo=�~ߡ���c3K���xvkz��˃w��[2p4ΖZޖ�c�����T��"7.�� �L��<2�#�ӎO�ݭh�$�x4��������-�6�6@�nLRo��t�&�4��P�PSKJ�f��zV�{�|.coN;���6��#��U7d�u�qs��#[��P~S5���5*�,�*˖[F�<̳!��jr��p���Z[�F�֟������ׂ���Vc�x)^��R��m�HS��sϔٕ�s��ٻ�������մ�Tm��Bk|��`�k�M���rV�r��
}��v��I�� �$Xݩ�Ή��b�P�4�M����~�V{^�h�cs����S�W3hb�50�g���?�y>
�����Z.~�E�w�r2�-�1�9�6Pu���$�� ���f2�E����/��'�.�7V���*�
%R���u�.��]�r�n^��lF}xI�
=o�m����erS�x�'#%'�r6�.���F�44;��ݙ��i�����AK��3�,K��$�~���_�{�[$�h���E8��!�-�$�Xq�e�b�]ɜ갗�Ex�(���F�Nx�m���Mݪ�g&�B��%b�.�ٯN�N�
�>/�rg�U���4]�j��FWV�<Ni�ԭ�.3��I]wRm���.�8n��ܷ{��#m�� ���SbY���k��E|k��HtzYʘ���a�=�=+�O�wVnuH��˻ �E>e{��� �� 6��p�O�M� c�(���cـU�V�c̒W:|<6-�����Ұ�1;�l��h���y�n4*ُ�Ny��Dž[�������Ō��(��$Ǝ���m9T��G�%���CV�q��d�4`��}(�2 zڽ�^DX$������w�v��yv_�6)���!����q�ۘ��ٿ\G��S����@��=f
_
לܳF�0��yz��|�%(�E�����}�4Vŏ���хj4�:��S�t��L�҂hD9
����4iM�? �9�q0zI�}
{�Ƽ�������������~��K�|s��3^(s��$r�v�Vа� �۠��E!sz����p��Ō3��cv������zN�Z�p��&��ٓ�E���M�OQ�L*���i�_����~�ă�œ�RC�*V�"�:W �l�T��>�I��@,v��#I�6Y��<8@����
Ό�\�1�}@Q}��
�<�y�W���_S�p�M
����i@#a��珉a`�,Z�N�$)@��+۶N�(`����~�ç���
}2z�c�J��5O��5C)���NZT.�Sȕ���m��;.�<��T��`[A�j���6��x��n�$a|2�pղP7���+�b���鶓�����zq����3?�� �}�|���(��'��t��}���1:�.@�n�L�S��k���ڋ�vG��z���!�9,��,P�Қ@���f�e�
�%��<)�jA@v��4�\��eg�ɎuY �Fϭh=2�㾳��~��"�����]ŷ��x��Z��Ɩ�n~�;1�3KL~��V���
.��䠠C��"�ܘ���r��ac��#G���nzZ!;k��c�+';+���+�_#V��ab��`�{�����6���o����G'�'������GXY�����������h�?�;��h�������]��o����_����������_������
��!u���?Q7��m`~]z@�
''��~����G�%`�����r×��"T���U��sN�k��6��Q���)�O�5J���ŕ�)庮�����-�>��r���K���8��
LM[�xεi��85���ng�C#.�;�t��/�����S��-�1Yh�UI�J̸}�
�***,'z<E�U�z�?���)�"��gҎ���%GJ�(�h�o�^���Ȓ|��n�7��r%�f��{d�J��7�l���N=1$O�W��l�ػ�i�7�~AT������D��E��o����GD�W��
[���`d�oq�'��m�Cy+�|����Y�̬5XdV�۬8a-f���WVa�W4E�h�LJ�~���,��:+wc�c��c�(3�I�a<�p��hCu�
� �R�7�蚼�휼}�;��}�t{��� ��%˥ir3(����
;c�cv���f���E�-����{��������k_�����������s����ˍ��k�����
n��.�Wd����IGP�%�w�/�ﷇ��>v���_����t��迀�~��2 �з����Md긅Z���ԯ?h-�
g�(��š|�*:�:0����UG0�Jw���\�L�_����>!*54 �DF��%Ea��w�s���<4"_�O��.!Hh��+gփ.
0��عm�M���
�o�,VH�:����u�~�,�m�9�;:�6]�m�1���0�fA?�hc!l�~h ��"���NS �KV�b[j����EK���8� +p�}uͽ�v1���R
��� �Rv�C!1V�� �{�zjy3Yz M��S�o��[c���"��_��n]�>��z������A��m�]�� �7���§j^w��:�g3�W�G��hs�V��YH�w�g��/҈��'Z�'�_��a\�Ⱦ�g�D.�~W��
{/`�3��/����ƺ�ཙ�W�8#>�6��c��Nɇ2담��3�^��=���l�5ŀR�b�7�B7)�V����b,Q��hͷ��p�G�s�Zp���_2@��¬������L~���w��C����7�:0��.i�
Ƣ��۲�ZL��Nـ͊}Khl���B3�2���gl���%�X�d ��zwDR*��G�M�ά���sЈ�Ya[a�\�^����w1� �J~%�S�|�L��t
yU[PNK���\榼�m���Sb
�-���ٹ�´*W��J�2E�_�� ��9��\��L��X��J�\�֦Ӄm�N[�U#�n~�ݴЪ53��L����[I-�����>~YaUq����f��Ď��p������V�K����e��2J��W����.�XN���O����lܥt|L��FP������e�Ȋ<g>v�*�m忂�}y2��FHc�i�~���W�9��5�u��У�-��3���t~p�E��Ȇ�ξ�Zo��j�l�����h�x����b���3\��=���R�Üxw�r@�lȼT�������R�i�BeV�߾�5��8����V2���b�m�D�ӽ��k $u�:�y#�;ܝ�k\i�_���c��p����T��P{"W�̘J��
(��2r-1PRk�u����-�4�\_��� ����(���4Щ�m��G���K�C��=�I�Hsť ��i6WrE���Z���UV�����_҄3-��QXF����nd�3z�1�[����KAFF`a�I����KM���������=��5�B�rӫ ��Y/!�����q? ����I�#_��GA�'��-��K����K��ˊ�P��\KX�]�m��K�1��q�E #+�V�t=)�1x0MGS�a�`�8"��L�M"Q
)���Xl�.�K�MCz���5����~E.
O��KTggi�Y+y����s�C�}c�ǥu����2M[u}�yT�s�"9$����A��ƛoĉ/;�ղK���K���^���S�Ң��x�dQ�f��������D�c)��l��\iYB3�@u1*���$�9�.fOC�����L~Ye���.�܃h$��:����?x=��W��O{c�O����o���{��^����T�|Tz�.&�q�0��߅0�""ߜI�9��d��P���,EyK�z5Z�c���_Q[��]��@Tǃ/��ɡ�J3��w+�\�c|�u�f�3��HAdߌ�q���`�f��|�v;d�>��#�.dw�MfDI7tނ���L����1t4$�% ��/��=6�P�C�r �(QF#����%���&�Q��f��A$�8f���45Հz��]�ץ�{l�Hm�R�$$/�a �N��[P�Lb7��6�&�5�CB�1��"[P?(��f@��#����G@6�<T�7i��Ikriw��������+I����\��`� ���P�����v��Jӗ�Zc{I
#��*v"{>�ނ��e�Ym��A����;�ܵ�J�7&_�{Y����ˈ�����tɑ��nV��xܚm��Ϳz��7�|�glHH;�����6�w�A��v����{B�^�3:w�q3t�}E��S�U�D���051$b����w���?�&?�����0�d��dq���cD�{Lu1o!k2�����a�"p�v��vy�GJ�踆e4��u2g��:K��f��)\7{��L�;�O��������"��������O�}��Pջ�8S���`z����$�$�0;d�$�� ������L��
�Hg�o�Afs<\����;���QF�
�Ԛե�3-����Ӧ#��i|&cL�7���wb
��a1]�|�H0�h@Z�-��ь�+�����R��F{��R����U��ˏ�-�� �|b.C���&�8$E� rc<��%0@[ܖ�91z�mO֑�#�]R�r�mO
��H��+�m�ւڦ���5DW?~:���'�wT��i���Lȕ��H���K��J/�A�U�U�Dufa�̢̂6]���u=��S���w���a�$�?y �u��m�ܐf��4�B��5�`z��W����N����8Z~�ЂS#k:�i����:�3���o���`H����sd��|��,P�_��ds��%F��W�O������~�h���<6@�%�tlO��q6s��A�u4��Y�8��;�&.y͆���amFW�qԃ�7Ѓ߁�[Q��I�!��wnL�rp#gNꓩ�s�U�%����s�}J"@b "1H�!2S�H��f��ޘ(��6�A�Cb������J���O$8�fV�����]l����*�D�v�#w7�Һx�U���"R���(�����
��̐���/��]=�����e�Z`�z�bR²1�e-Xb�`���Op�\�⩦3�.�Y�e���E�s��'hS�,���� =�)��v]O���S�U�%�w�.�"�P�;�8�
��[��Q����Ĉ�?~C���Ӟ9�ő8����7�e��Am����C��$������ w�ed(�z��g�����L��
���``�,����_֪�
tG��������,7���H�X=�!-&S���*"6W�~��f� xуذM����D�W�:~�cn=�Lb��X�ڼ��?�^��b���|��:� ���ף�i*�#-<�6�=6dN>�%S��K��T��n��PŒ��~�,k��oi���O��]��*kܐs^�c��0�+�.��`��ᓶ6��z���\����iڙ� d��[˶Z�:��W%҃R$ɠ����df#�����i+*�w^ޯ�r���Bbm%�ܑDL$����_e���5G���4��2+��&�*�N�b����Dr�{yoS�F���!L��Lb�m�
�e����5Ujr�g�����M?G�����8���q V���;)t L$� *��|-mlL VN���ζ�jz�H�_�ܯ�}� ݓ�"�%[�d��iA����v%��cV�%C](�'��8�ϱt�x~N� A�)�J�B2���R~=��Wc�K F�d�&�iy2�=��v{K���Q�T�_�h�����NB�0r\?��3+���U���f5��� ������Z��\4�a"�^4,n,�Đ��k����B���b���_\__0 b��Q]{H^�%��q���w�+T'���1,8������`�l5�/�q�K�(덛��%ʄ��,!�������UH����
��%-������n+$�9]��S���?�y���:>P���q{[�~��jx�o�F�?�Ջ1�F�Ģ����z{_�7��M
�g�K��E��p�!���$�z�/� Ł8#��3?�n�>��g7Xҍ�o��d���_�o?�-j���~����i,��-�K~s����,�g�&*���C[>#�����cYw��bDs�j���#����EP�1K�~Y�sa=�q@F�1gE�?1L��3g<1h2$�AL�q����1"�>��p�)i������`c����A��2���3��_��`<�K�����
��4���fD�M��$�6��k8��o�up_���zB��&�#��՞�a�1��/[?�<�6�>)���"�-�=c�գC8���~�4hs��h�r� ����W���>�|�:���n'��� Ծ����
�j���7\깭E,pq�郮������o�
W;��V����������ϛ�nՎݮZK~5�;�/~M�~��%���%���hҞ���F7۞x36���g&����n3�����R���,J�kWvm�3����'�Š�ӦC,�_��Vz�m�=��߬���-ϯho���fo|��-�k�Nt�^�Nt-V���7��]�Ntµ���_���o2<Q^ϙK!�O��`�?v};!W�!;!c-�!����a�o��q��ڮ� r�s�la���v'��������
|��.g�+���wR�o�����3�u��k�g�3�6����ʄgP���gB�!g�z��7P��W������eq����~��A�K�A��E���?��z6����{��_�E�3z��3Z�OE�3�%�>zŦ{pRߢ㍾1�Es��_}��_}�z�Uw�~W�-�+*����������;���fW������>�Ώ�k�k���o�]������~u��g}B�8�߲j���濦���4���ٙ��n�zt��5z����=��}H�
��w������N��.Y��ܬ����`N��Ϟ,����E�z������%�b�h\��I�K�8�SW����p�x����d��Q�䂺7u���s�Mo��W+/�z��"���a�&5�7d*C����� �&���x�Pz!S#���4��[D&<�d�s_��u!�@
��;K�r�
rI�:WGmqC�VyEf���'��k>¾sR ��Si�s��J���;6Z}���idsr�(�'>�_�k��܋�e��cG��p���YRh`
wpS����V7nN��q�q���*�Y�F��Ֆ�����Aa�4qm�?8�?}mI�'C�͓�EV 81[���v�O+��&ϒW�w�.ʎfC�b4�+J���a�2��!1�u<�1�,�5�=�RŦk�fܾ���Z��d-�投N<8��K2��v^'�~�5�xϕ�|�Tr�p�s�u�u�;f���=y��eɒj�p��6��L��C��r���PD��J���-&� �3�g'��Nč(U�S�/ʯP]��I���g�W�1N�)��#��ޙ���ŝ����o5�x��4�e��F�gs����
�E�j�ij��G�m�u)EMNf4��n�B(�۩q?;"tXʑ_Xi��c2���F�e�؟��7O��v�����L(��ZI�S
�q�
��2��$��&��Fx�-XԵ�Y��$g��g%�CX���wg�h��Ӥ������iֶW$;��L8���MP!y��B�%�hcho�����q��E?�:�&�N�UE}�<Fe~�r��F�$����<&n�Su; �Fd$eo��m2-�]=�7�V��l�����2� ���z�d��[[���:SΒ��ϐ�lFk�[]k,�3![�yv.�T�\�4��z���HG���F^1��#�n6xF�82?�d�U�,0��g���\�Qɢ����V�����
5,P>�P����\6v9����h������U/3$]6�_��,�PX�Zo�B+*�G��W�Ѽ?�O�]0`���,e�����TI���X��l3nO9*é������6/
+5
��!���IT�8U�Ƅ}�����p.�x
Ѓq�R;�Q:�
��PO��㛥���D"� ���\mE��7�m�
��1�_��"�%��*�u����
kE��<�K+s<�Fe�]�ݺ��nX8%#��tT¢��i�~&�w� �||�]��_?��I-Ƹbژ"�j�Da~N���X����Yۯ�~Il��)B�A`ދ!*lT.�|�N�d��0����YH�'��jGY-%,b�.< ���9�v�Ii�H3�'ڲ��*���[E�:@�E��4B�ICOOO^��:�45֗�
&&fg��Ok`��X�i�.ו�%ZgfU��:�d5�����6���:�����9ˍ�B�^L�IutI�n�v��}t\k����^4ꘕ��45͍Yo����HHW�y�9[p$��OkMI��==q��rm/�7��Ɲ_�D5b�3�tLkq��D� C��~^�e<�ʤ��?�@VY�.������ ��F�D݉X(b7�]��bvca0�؊9�����qx�w�=�9�y���'��ώ��u�+�Z��u��p�͵Q��z]����m��<W���U}Qdʯ}��Y<��m|�fGk�>>�Թ��^>�q����F�~Xt�Xy����U�_zI�<�|����/��b��]f�5����ڴ���c\+�������ŧ��M�l�Y
�][<�y�\gg
�n��5����gZ����I߂ӳ�x>d�C�qo�:��x��o��H�������⺴��'��qzՀ��?
?��K6ms���x�����gϭ���)_td��w��v��s�|�
��95o��K�K�6������%<�o�L��C�:�B��\7������/x�j��RN�������*�_�>�ᨀ�s�m{y�>�[�bŊ��za僅n�V�.3+��������%�_��x���c���l�>�ݝ
�K-[���\c�4�����_Nnx����v�;���8��ͥݲ
r_���q�}���_�����1�7x�u�U�{�mQcA�&��-��������������6���^%�i�;�T��5m���ݔ-�B�3+"�y��,���*���j��� l�������m����.���t�46����p�j�4�F�c&����zf>�~�I�����=�}p*�4c�:�O�~�w��R�=�}K��
�<z*�4c�ឍ���k���A�^�C�=�r��K��~-[�zi�-�"_iгos�U�����6>o����jVo�qm��e�^�|��l��ۆ���t͜�-ԡ�����+�*�� <~������}1�xu���)���8npuo�����~<e�g����o��F�m<+ ��_h�R19��[��ӫQb�K3��s+���wƍ�Ͻi�̈�;r5�94§��Ŧ���6e���3�b�L�P�Ň&�Ծ�|���,^�҂�v�w4xi흑W��}6q�+�ߤ+��.L���x���o֪�5��]�O��Y�U/e��K����뜗sU;w4��ۦ�n�:��ijN�F�ݯQ%N�߳ܛ���]�-粽����!
|W��;V���~7y�Ǜ���o�|��VW�]I�>!Z�<��+�=۪�'y���1�����ww;�f����^L���q�S�okNL���еR}�F�@3�6^6л[{�ԇ��ViTe\��a �������ߪ����)�ԭ
B�sEx��
����Ir@XХ^K�na�(y�Ħ�j]4x՞#�������/�i�w�;}nՊ�N��6�O�վ��ͯ/�����`��3�u�V���ٝ+����#�C�-������w�^<������+5�Wiҳ�FP��\��x��~��;�.!�z7�����{�6/�+�Z��O�Zt�_c���F�l)T��"�Չ�W�|!u���Wquıs��f՚�x��i�w�_�[0���C&/�}b�g��&�3o/������䅏�OM���+��ȹ��+6�ٔ�[yb���ӊ�o�:~�Q�s�����O
~0hCZ�� m��Xe���8�i������{וQ�'�<�Tf��T�����):��z$/������!�j̣F���;5{'���&λ]a@B��ӎ��wЀ�!Ug��^�z�����|Ud��R�_Yp�����%�l�ѣ��A�����a������ʮ&w�j��$���O��5�R26�U�g��9��/J�>y������/��O�{B�E�n��{��юÎnO8�#��dtH]=�b����q��Lz<�U9=���;;o���������j��儘g{NO8�ͨ�$~f�#�;m&�K�ߚ�#�Q�zo�����wx�ʆ��o)_����5��-���p�"��3�qt�7o*8�+�9����Nz|jFxj���_�����i~~�;}k�Sc[4���܃�Ln�9��k�zc�I�[��>(rF�Bϯ��~�d�݈ᣧ;����؟����e�3w�t�s�&�~�o?tݫ�g�n(Ϧ�}{�^L�!�L�1}�wQ���aW.�����wǔx٫W��A���S.�v��!^�^{n�Z�Фѕ�v��1Bq�=�
��X�N�No>>n��jו)��~�x��̝M��� fΚjA��4{V������{}�r�o�����겯��:�[����ܴ�Z��;Od7�8q�ً�'gD5J���
Kp�P�cx�J髫�uz�<P �m��qr�[S"k�G���Nh����{w���~�5O;���Y�h�Yg���]Z/��ȥ��Kw�N�_,�ء�-�x��y��?�tP���o.�RS�%��X}���=��J��}��_�85��|�쭀�v��{���"E]��t�;�3.קM���{5�R��X�������?�qY��Q�)�}�������zpT���s9�{��0�Ȩ�M=
�)���?�u��Ƴ7k/t�0��W��Q��&!�֣���"����C,϶�O���nSS�����Y���|mk��^s��oۚ/7��78��Cۚ�:�Y�km�NG.�:/{�|k�rZ���������u�:����阘����k~��q��z���o����H������M;�s�߰r�C���?P��9�&סJ]G�������|�a]�"���>�>��r���s�,9bR������_zh���^P?6���ǣ�{��iS<��������������k�ĭ����и�����Tؚy�>����b�����?�"�7ے�z���_�ie��r��}�CTɂ�����<*�_ٸU6uy�+d_�w�b�s�oo��COp *�;�|mV��wzޒ����.�sJ��9 �m��uk�쾽�A)��딦椾�X�և) S.����<����_�TLґ�.�s9�^��O�E�E�vȾ�bު�R�]��&Gڄ�>݊��|e�۰rs�+�����㷬�ҷMr��K�vM����'~mr���(��-˲-�����#�Jֻ�>]:|w�z��������No�8d���B�锍����/�����k��e����[���Z_s���t�=�`�G���$W/C5�u��Z�P���=~;v�b�������J)��[���ۑ5$��o[��9l~���u�b{�&=4�t.�Ur��B���|L�Ƈ���~��R�j䌉Ko{|�6��E(mӭ[���j�q�|۞��x2��~���g��խ��.�+F�d�Et�[|��~�5s��,C��3�\J�uN�r��]����v��ݪ�.
۟/m����O���%L�]�i���d����7+��xvn[���\��E_������a��w!��l�D�DvX�l��z���OC�{M��
l��Yo�Z;��و��}�_���e�ϧ/��"�㤤�k.�tZ�q�.�z�\P��u�U�vYs^j�5-�Ɨ���lpwd���Z��L�̽s�g;�=R;��[{����b�OLp~q3ˋ����)N1��M��;/����h��S�.8�)x�M�z��ۡ��ë�+U���9��jn��h~����sV�FM��wz[�ۖ��[F|y��8-���7T�w+K�-*n�R�@��c��
�8n��Y��
�-�7��a����ǼI���ځ+9�)/f�(w�ǡ]�q��T�'�L���Hc<�:GO���m?���`��\z�X��ļ�/H^��A�W��F�+?0x��f��y���|X��
#O����L�^��i�k���)��f��YOԘT�?�|uL�IW=�Q��A�z��^Omf.}��������W���$����fo�ֻ��a[�ws�H����W�aU���>�q�"l��sn�T,q���F#猜��K���6�;DFLI;V��On�㺃�v����c��O���x}�֮��I�'������x�-xD�W�������]w�w߫����/+ٲ���9�hm��>b�%%��_|ܭ�({������f,]2���uUK^�,"[�3y;���z�[q�ǎ:���684��W�k����ø�ڔ�=����uv8�t��:!n����u�<�d��f茈Zi�:z�g�F�v(��L���Un��\���J_�$;�7�N�cVP��.�:~�Zedɀ�s�>/���qWÑ�BϬ�}5-�Jڪ+iﯤ��\#��M��;~��{�����I[Ů���X���L��b�����O����jD��'K��)���D˦��=�7n�ڧ��N�]��4~���=���<����eۺ[�q���m�4{r�zwGס.�fڤ�ղ�R�ޘn���3�;T�`���b���́�)svY=-��S�f�����T��+6i]�K��6#,k����k�U��,�������6���T>�u�ߒ��U����gy#�y��坣�Ϊ:p�l�g�+�hL���Z�I>����4��K���{�^�g?ݻ���c|=❣��\��~�k���;w|�����[�OT��߅.QG,��P���+�pŽy�����{V�s��(m=���_��������CV�u4��3�p� ���7R��{���=����S}r<O��2���o��m8y��q���K���T\�v����7/���"�˹�
[���o�����f7;���՞1I˹ wo;cT��J��O�{��Rh��z;<-����~dЂ�VOOri�j}�l�滄?�t��������}vIÉ�c�]�X�k��C��xo��G-��;�+�ٻDe��F�m�˦k�n�6=�:�u�Q�E������/�ek/*Vt�4�ڳD�K��*D���-o��0�
��v���L�G��4.����V����8Y(��o'�Owܜ�B�5�fFD�LJ��a�6<�ǯ_��)sz�H���W��*6���ꏒg��Ӿ��{W]7����i��G�z�W��Tl�y|��痏[HU(�Ưue3t�w��8tR�kK&صܼ^!}��#������n�D�V�mW���U����nt�����Dz����78�W^�}&=�8WN���\�C�R�J~i�}R�5����&U���zP1���%Ď�>�¾Uٛ�y�8.��ݡ�{t)�j�~y����C�l��t��S9\Iu)�jʻ��S�֔Z���\+�1�����<`X�fΣ{�����pLу���M\�iV�u�-�^8-��o3�{�b[����B�e|��z�:rՖ��S-�ؼ���>�/��+����"��е�Ol���a�/'|=�����9>p���sV������<�岥��]ZN�(��f�O��Mع�o�
�\��ً4���~��/�7l�v�r� ѫZ�^�n��:a�U8����/���s~���C��~��O���}7em������7˿u��wnɄ�6���4�F����}L_,���K��ۻ wk�ܝ��ӊb�>�������o��XTlWr�¶�������rr��ȝ[ʜ�s~��y3l^��ب�u?^���s���ztG�_>L��5�ӊ.���?�bm��;Rȿ�3��ox��|Ϛ���W^���M��
ؤϮ�t_�,����e��{2�]�\�WR=bw�������W�����ή��>_v�S˙�7�t5��uA�A[oٹs�C�gVk�a��}gM&��X5�����mֵm�&6������[��
�>�A�NwƔ�r?����%���%���g���W��/��7����uޤV��R�_�Mq������%/,�{�L���Rz�>����zM�ر��k����J�v�'l����Ó����>�p�V����ֹӟtxv��+����E���5�^d��=�=~5N��V�Z��'O&'�m�jؠ��Zqu�L����̹M\�x��I�8��{����i�{�����~�H��� ����H��ق�xǨ�#AB�G��&������z��������!|d������ڑ��S;�ߕ}��(*����O�b� �/W�_v������k�Ur5}��o����T��f{�L����K]��s�]��N�����ڏr�^�hZ����=�^���v�ٽ��y��F�l�8�J���nL�����˓�O�헫�gz�wKVJ�W|MթR���=_�d��mU�ҾǺ�t�c�:�ȩv�UQ��V�����媔��EƇ�]Yn���oj�x�1����F~G���e�[\n���krθ7�z��&�]�/�X��b��zéF����Ĵ����[5������t��� ����*���j����s����u['MX��.K�����M����u�<�#��K�7L{�@A���m�ϳ����m��h����},Os��Q4r0�>^�2�Y��:�a�L�Z��L����}V�cE>�2nau.#P�u�%9�>�a��uCmE�s9Z�\����� 2m���2���Ҍ���UL9N�\f�պ�8��.�h]�f��j_^d��˱Vq�Y��gU_�g���˼U}y������q�婵L�-�}?hK���!J�e�s�CZ�)�8��L�Dު/P"c��Dʺ,"g?����I�u�E��������V}���'�UI�`u_��.��|�X�j�LY�I���+X�E����$IV�d������V��i� TV�+s��>�:'e��4�7s�h�3�Ε��� ���Mќ�>I�+7�����"Za'�b���̱�iڊ�*��B[c Ε���V8DC�Zߗ�AY$.s�4:a�}'X��ku_�;�}��u9�}�l}��gh���>�:.�(Z�9k�����q�W�,g��4�3�����U���uh�O�ڍ��s�c�����9��?(3+YŅ���lj�9�S�9��>������8٪|�SV��Y���'�V틢X�M@�X'Y�sA����y/0V�G�i�����H[�A��n�_����/���C����YiQ��u�D��*��[�Ob����Z�xժ�m���}*X� -������1VZ�*�+!�=F��iH.�� I��,�L2�O@E2�E�[{�J3��`�P�Vy%<3�CF��>N�>��Jh7#�X�V�
��r��p��/c�1��ۤw�a�\2����P�a/{{Z��#�:[���W��&T1"��+�
�D� 7�*�d$F�����xHw�=�"ܽ�Q��~�jթ��ghAT�
v���
�;Ӥ��}? �QO8H���Z,m�2KfI�$I0EJ'DO1��[N�8
��A�Ҕ�R�J�(r���`�d|cu5�r5t)r5��D�OV1�˕
"�#8ͨ"�LZÑ�J��h��z�Ι�&P
������lA͂lɅq��$A)
*�"H/�'��i\#ˁ�9�� ����Q�C �G}3��R��
j�
�B9�| ր��Zp:��s��"!�1)�Ʋ���[�|�F߮���" T�ˌ�R�(��=���Xlru��@k�:g�m�O�g{d^�|���[�W�߉r�!�����I��8�2I�X~SPMƒ��)輢�Ns�J�&��,�Qˈ�AԐ`��"OVSuYTL�0Y�$Q�MnY�XSG�D�R��Z�A�=PyAQhC2\��:�2
GK�F钠�&ct�t2� �qkC3)C3E�4��2d,��LQ���ދcE�qiQeD��5E5e]��1wB�p#C�28U�5�B�MQ�yYU
Q�E�@�)ER�28�05td�6T��@<�h�8J��-��D�H�jB�q�.+I�eSQdAg�8FRu��Q
��@RPc���a�|�I %U4P]�eM�(�ӑ:�ց""�i� ���@�����.(H$AR�1UFQ4��$T��ps
\A%�U�Pe֤T���������$���"s��Jhq�u�"��e�ӑ�(�,���#.:Ǫ�f�h��!�AeTP(\�2������+�̑4y��DYDk���xV4x��NYA���< �H�л9VY]`-�ª蹚��J�&�UIQ
�2U�䊢2
������nP�!�]5��x��$�F @��� }EIG��NEsh#�!�_��f1��ȆlJ�MH�$��I��4�P� 1�F@b��*4rR0UeNfa�u$rU�r%�G��ʛ���d�FFȆ�6�Yԟ�4mË�� %乨�L$Y�5Y�1�l�jL�4Q�Af�(����:���V6ѱtJ��hED�1�� ���"8�C���c�3ih��1E�&d)��'�����qB�-sA��1c/9X�z�
B�q$��=�OUX
�І��"3LSEP%�L���Rp_8U��<��P/U�U���U�:/2������2V�K@WT�
�M'��B�*�2M�-�C��(:�44=�C�Nh
�_$c�Hb��H��i��:*RT�5�o���'y/�:�2�$}�2QV���j�� �9����YP6
�� z��Mt`�e�b&�gU��&�d��D���Ց��ED^��e��D�t"%"�����I��H��<����$8:8Q�T�!��Hw�I���hX4��Mܛ�4�1�Q8�Ԟ6(�g #�����>օG��5p��a��G۠/�dxRo�⌤Qk�
Z�>R%��5Q@�$��h
E�a��
D�����&�D@�eR'��Mu�)1��:0�@�)SCBr�f���=5�'(f"�����E�#g2�����*���"�55(YVXQ��G
�����^� �dT��%�@\<!bBoH"���i&C�``��|�-�����J�`.D�\DR,�����
�Ţa$�hkи�!��rHFY�4 ���E�Ii�4B�
T�b�L
M-���2M�Q�,�]�u���&���@"AE���"Z�X��J3��F㪐^���皊H@\�$��Csp<x�ɂ�4��u����4�@F�%�# �L][��~U��h^�4�K�.���bZ�����LV�(*J"��:�@��3:X�Bj*��*W�����wj���P��&�hc��@50�<����̤ҡ�É���W�NT����
G�h\����ә�t:��Y��5FQ]�
��Gl 2��g�D\4~�q�$������&�QV�o�������h�GG�L�#�O����O[xld�"4;Apҁ�Ea@9�'�OB�(�WYD iR9���a(Z�1��PX`@��Px�$�_��*BN
2Ű
O5T
�q2P<AE�&EV��U��i�Ț�(@tJh��ՠ��0YHy^AG�7e�N� ̓�AX��P��v� �H(
�PA�(���)P����"u ��T��8I2 :��2i'�Bx��A(@6��%x"�7Y
·�$&�b����+U����:�JF�t�
0 4���5h<��8���4N���T"����
�P$��!H`-�[4T�ĭd�m��(�)D�i�9�,��E�E�4%2����d!�Q9�|��qUb������$d�DrJ���#��)ߴ!v�˱d��#�ʢI�]������HL���A��>�p3ҳH��d�Lˈ���B��qot{�18�Pp0��G�L�I�DzX�c~���0h�;- h1�`���zFƝ�����CZ��d&��������JF��,5Eda�}82e�����l�J�(�ƒ��̱d(K��Z"�"K� ��%tj�dH)�"őr�x��>�:�Hˠ�n�Qh
#sk��G[����]��"���^�_��F�߆���C�u���Kw!J�?u�*��0A7�Aah��uu�(5���J��*�D|c��e�]FTȯ��A.A<u��U�^ dz�J�;��S���� �BS�`���VY�yO��&#�P�d����Jtք�3QԒ�L���(2 �P$��+�wѫM7Xj��Dwi0�3��k�����62M(&
U��&V�����t0�H �O(��GwFC����!��'�
.�D_��BI(,4n�!���s#O�
l�&i�K�
�R�/5����f���Z�E <�U�vF ��
���ĩ JAB�0�pӨ`�M�S�T�%��<�rE���i�Se!C1N�����&RW��UT �. ������� Q��M�bt2�)���T�H�DQ�m@t<�TG�TU��RL
��bF����`9��	,�bP*�Ap#W
xZb�AHV7"aT�+��D,k
�, �F43GƏ���_��ha�̱k���������|BC�r<�
��P9�5�4���@8�" �fd
����ipl���'�&$x����%k(���f�y2����?��e�`vy��F�l�DԁM@
C6���E�! (u���I�,��!��� �#���,Ɂf�%2yD��]��*D��.D���B�90|deTKZ�5U%������cEl?����?k��7�Z�I��������?����s�*'C�� ���xځ'�_L���j� �PeM�'@��AЛ4ȉ�L�(O��1��N��@*mB��:gE0�����xΐA���0v� �T�A����
|���Ĉ�*�p�L
2�[!���"�n�C��hZ���LƜ5h|����p�Qd`> �����^'������(��r� 3���pE<O���esd��"�{P��<�ԋ
�!C݂HF�F6 �!�y��B@F�n�� y��aP4PT� �`"�Y(�%� �c��
�'CY(�
n�uP�Qd��+ɸ�" o��h�"e:C������uY4Ȩ�ϐA2�G��P@��J�4�f�ĜB���ULh�s�I�
4�EhSF�Ѧ�(�N&[h�X�30y����
R����yU�BK��uD8�%�z\�c�2y �@%�O��d��f����0��#���m���q(
ځ
]!S�
YA���J������(�]�,��%�*�J<��;�p����
��J�a�xM���+�J!h<4
D���B� m��,�Gˆ*h�i�+ڔLV��Ah��J��F��L&���'$7A�$�����(�8s�R$�GEy�H�t$�L��M��Y&� "�ѠX(�ga!%F�$1xb�H ��y���cHQ��i9�8�
0k/�1֟�ɂ ���x?���+&و��W(��]���?���g���'E�,�j{
�B#���Ꟗ���?���{�c ��
*Ɠ�|Ez(�a�p40�Ǣ'($�@�hW��YQ9ʰ��aj�JD^�t�π������QD���H` ������j�7
"A%���Zv�:��|8�f`f���UG�4LS�-k6Ȍ���+C�0b�@'@K`�Bb(&�
C�Q<��AM�`��95���) l�0�#AA�%
�ېM��(�!`�5��
�)���t�<�$M֯�h�`c�
)p4�O4�IO��J�]#q4�]��B��uw���N�7��W@�<�$��|�o*p�נ���h �
AN�Qa@,@}�<ͩ�,M�:`�� /��!+:��T�D�+d��,�q§i��_H�Y��[p�>H���h_��r�IdѤ�!<��R��#C�:�����EȦd�&aj�
V#�Gd�J&�_��d�i4��Uh�+rJ 6P7L`䇌 �:�[���@8a�>��4Th��X � ��X�?��JVP�#�����4��H�K�i�V�Ȥ�����������Cc�&�(�B�9�r�@�@gj"��D�18�@c�J
BU����``�tg��2K���d�V&�]p��\4)Y���D�\
���FH�`��u�Yxc �:8�T@x�D�H%2���)����5L��a4t���Wd&��U���3Q�BM�6'@K?@b�����6���9q�G���j����R2k�D�;�I�ЋuZL�4E��ўĶʊ��I{�:�U3߃&K/��8r�f�հ�_%�!$%��I��nF���
���3*�X��dJt��B�2��%��P�d��g����w�6��'��0�"�Y��4�`u�)�p�F`.Nw��jh9A��
r�̚����pNP�&�F
�����;R
̂
��dh|�qF�oB�)ɓGjX��u�di�<+���<A|�V��#i62V�P:4�,�YD���x�M0x(dT�6d
���&���u���\�Ih)��Y1dj-�dR]�&�������P3P&BC>�xEA���
����� �b�7��
!*cZ +�2J!.XA�)B��mHo¼�}P/�ĊP@o���Ѱ�,�-Z�P 2C�A0�Пw�g�� �28�EBv�*�˲Il�r�7)�O�z7eXP_�3�*�v�.��'�8JT,���ݺ\Q���Җ���ˁu3���?�W�cN���{,�W��4Y�M��p�iu� K��A?�D�p�I@2�D(%�$
�3�;t��mS�O�OFBAͺ G3[���X�`�ڲ�<��Xb%��)���:�ßG )S�A�
Y�CK�i�Lj�!)
}
�WD2"�s}ÿ���'�����-���A��A�����n���nɺ1]�!%3bC��2�C� 2[��V>XJ X��]�EV9H(�hY�����H�d�2��($���Ȋ
�z����俾���Mg52S�Z|����d�I�%A�U�$@
C�'+�9�# ��հd�E#�V����
$�����!���g�u�0��"YH</i�E�x'�R4��.XN8@��`�~Ri���$�U�L�Ԏ�k�ZA������(2<�|��(��k�p�:(�� Hu2t2�G����@����$uL@%��u����T��������ɨ����.��)Q��\���П��)����3�4
l'+��`_��a/�2E��U
��"V��ܲ��E��>�8g\в��5R%(��9J2Yx^S� ���@ ��}2,���D��L���Hx_��̣]rߐ�H?W>���|`�ϯ|��o�����GYߏ%�~�3WJ���`i2l(�f�eNVWЂ����險�������h�KS2�*�
T�@�N�x�(�u�,���H�:W���d�,���7�.d� �E!k�)@Ǩ�U��)�,D6�_^%������&oX\0E^�Ȓ � �5���U4�H��4���P�Xh3NUC�o��d隩Дa�<B;I8Y���T�*u�+2�i��p�<SB2W��1d"Y����P��I�(���H�!������#K)��6��61�`��yօU��HEK!iSHL�`5uUL�#d��9^�`$iW�)C���� /�m�r��h
!K�sP��<aˣ�3��0�BVJY��5�Ll��y2��&��H�噖g&z�E�\���!4G�������c�g��i�MUW� ̺�{�z�ԅ�E4X������\4d1nG������P���C�!�y
9�K<����,"XAB!���vT}���$��)2�&�9+^�'�p,��Vd�2�[2,�:z ��@I��b�$�������d�Zc%�PD���"{�n� *��>���(j��Iipdh�˓�B�de#��d)"B��Qp*G:Ԛd�lu���L��0e���,�0@j��Pd��H#� �t����E���
�T%#�d|��,���3%�uU�\�G֬ ���#�pӠuXX&�W&+:y �D��d�
�����'�,�� ���~�����z�/C�(9���C�R{����g�;���ŁX��~��(5��F��~<�L�C�8�F }��LI$SQ��&C|Pd
pHr�
��,�����hd�g#
�Rw���,�t#��%�~���&E��%x-�<��Y������_� ���Ocjd�E���dh�ĩ!1$�G[ƯhI1��de����gX�haF�G�&g�1Qh�cx��<?��)�B��;��_�&ã��p3� �E&@-�L�,x��ʒis2�M�JC��3��
�]OV-
�J<���
"��%^���.���d��,�&Og2( �|�Β@���y4� ��U���Ķ"�p�&y�_�
��<F���F������"�џ%����5�7� 27U@�D��L4>�j���*� ����fB�0l:�BAV��W H3��Ԉ� *r��?��DQ�@e��=����0t0S4@��k*y�~n?�������s����~n?�������s����~n?�������s����~n?�������s����~n?��1[�//nt������o���F�k!�� ��0��!y�$���3��e��Ls��������T|�wC�V��{z�
[UE�l���*7��P��7!9���|�� ���o� /-u�1�����R|:�䥆�^�h9ʈՔo/Cto�ãG�Я������J�����4�J�����Q\��5��»m��^��qն-�.���L���D[^�Ag����iy)$��g����-�� /M��_^�)թ���ٲ`����M~W�&�z� ��D�i�?�3�䫄��=���W�~W7>��e�=��[X�{���>Z��ad�܄��z�)��ѣ���Fjby
JH�{eY���g���n�Q��p��o�!�U,o)��?H�8g��_Ɓ�ayO B�L �Jަ�p_?[~1tg���a��9�� 5���i�=,��8�����{vS4��C#�_.�Gt��%�,�b�}����i��� w�^��F��F�qL���?�7���*I�s�Yg6��_�;�r�ܗ�_"�%:�/������H�J��h�{�o_#ay9�w����C��I&Ќ�(3��/��c�x-(�e?��zmn��N��]<$��}��6G���˻ux9�{�h� 3��J�%��:����3�c���ݻz5p�Ű<�%y�̤i��_4�U�T�����w�|y�ȡ鍾Ζ7���?dŭ�������i^b��q*Үi[hq6��66��t}S�r�,g�
�Rzv�_��3�����:�g���Y��͞�HW�*�ekm�-O�V�9����ts�5�{��p��p���+�@!��*t^*796w[����i'����)��߯��E���S�L"(�t~*��>O�V^��ѹ�\d�]!�f�S���y�AS�#���H��K��Jd���p����H7�V�ݨj���\T^�eE���+��*Q7��L7UD�<l`����Gf-�},�fϒ-2�C췷�̚5��^ozn(��|t1ƾA���q��RfyF��?R���uW�+�/�<�^�Փ���1J�Uqj�����l0�~ۙ�W�Q�sߎ�f�-����Ϸ쿨��]�l�*���挨���#W���t���;���R�ݽ�`����9^� [�0O:?yާ~�v�F�a]].|\9_ݎ5�����7Zo����=i�%�+[[�տ?�y�t�̓�TXra����?�nvp�*�o����pJ�v=�b)U�Ԍ�S�y8Ҧ���/�x{Z��E�V���Ȝ&#��j�-k���"��FD"�<\�BY�~����Peȧ�ũ�������ۚbQ�&�V�C�G^�D�e���]���sd�j۟�K5����]�sDD���Q�Kj��Fz����O�n$��zZr�MS�Bh�/�U�IT�o�:�䗋�i�{f����֓���9�۬#/�Ac�dB�RU�^�&kQ'r�R��3�whDX���_ѻ'Ղ\����E5X\q��u�V#�ۿ_��nTir�|�Em�^����eJ�Ac�������ߦZ�����m6��3��l�6Y��)�+%u��Y֗����k�=��ё��y4���)�Vf/��U�#7�'�������ltS��Yv��]5��l�wb�� ���HV���`z��uW=�g����k~������u����'./S|���e����%���i)Wa��Z���r�ew�|������4ݶ���9^��+o�p]U�aܠ��J��<7��d���͛zE�7�k9,/�|hZ�:=헵�t����9��U�̘�:����������\�-��I�g�?�r]rd�!��v_��U����Mݹ���"J)]�7s+6b�ܶ>b�ϗ6Nk|�N=��ɱ�5����<by��nl˒�?u���+vڭ��������y���������'�j�ϻ�����͋����oۏ��=8Ү�5'vf��#���{�D��#�<J�����s�s��V�y�ߠؒ��J��3�vd�V�wm���.�a�
>Y�5O�z����[Ug����G�$wo[�U�CY
L,s�Ą�G���{U�f�o���*�V�mm�7�����?N��aև���Bs���l�"f�j?��䵈�:�{���H_�a7�`b��)C��)��T{vhդ����3���34f]���Q�2�W��A\u�IޗG(�ڊnF �_r#�g�q���)��� 2��
ǐ� ����'`��SL�y�w�z����]Jn輢����ܬ.v
Kfs�u��@o���ʍ�7���i|����G��]6/aZ���S�<�̺��Zp��;������|���g�\�w�!m�̂��O�q~���͵�S���8���z�O�4����g��f<��U�|s�N~Ǯ��=,o�t�s�>���h(o �΅�:31WûM��8�t�s*,x["���{~Ϻ7��ҥs��5~���'�.p
�j[:�_ry��Ň�;�u�H5��7�M�]���u�����n""s�G76�6�%ת@"����z^���'ihgr �'�A���L�6~_�+����ys���l���uxO)��0]�~�n���
m�u�O
����s��jaI\�s��/a߾|�%�.���R�M;� ��4J+�d��m�N���C���}BNo6����uI�n[��*55�_��M��� X�kZ�^7lr��������V��,�<K
w)����o��T�z~�B�J^�ߦ*�)g��g�1/;/�u��g�ů�����}\�G�8v�ߍly�w=Xs�'�b\u���OW�����z�ko�Q���ŧ?=�K�a�x���e�C{��\����g_Vi�����O���vH���!�O��[�!��5��;�''-)���Y4[}��}�
�Rʆ^��sj�ť<�!���bs;�E��J�^�1jM�B}����nI����Ə9�sQ��j�ZҧU��n��ۇkU�O��ū��b�m��eS�O��c�S�3Im鞳���e�d��A^mO\�'U����@���yS�^�v^>�ߙSr|7�IR��q�?wg�mk�Ůɱ��}����7�.
_`3�s#�^,~�y��#�i�����~��̶�
�+췵�X���j
�»�8�iIf
��Q�H_�#��B?4K��A��G��e���&B$6 ��ש�=�"�cބ���a����mk���=kc�)c��9/�GA�mó��^��mvYr�����9fy�yG�}�����n47�{�ۣ'����ͦo�o~nq��i�ӠJ{�Ǿ�t)�]/���ͩ��髇ߞ|��n罓�S�'����X�^m.ٵv��w���ͽz�M�+��{��hm̹���O87�o���Ba6�Lϧ{I[��8���g����8"y��t����+6��:�kڲV���_u�|�|뵅Gı}F]+�p�o���.�8l�Զ�/��\6�iQ���!��Ԍ�+oe�.���uzr�rي]�����;�w�����53���Y1��,���q��VC}���"���I�yۛq����]��"�<�v����%��>v��O[�K�|3P�搞s�Qӓ��,QЮN��1�/�ץ��<��][��ɶ��*�g�H�\oD���?�/V�e��oӞ��Hp�\���c�7|<�r��=�G<n��H �Y�k���1|����e}�:+%�}����#�_v�;0qzp���� g�mx�q��{fik����D�S���*��O�TN����f��S�;Уk.��tx�W��iU�F������w�L�l��h��6fv��Gym>Wo_���*��͕q�̈�.k�<8v�V1mc�`�!;��*�m�5��Z��{���9~��3��R���4��.��vzns�z�Z��)��|D����V
Q+�US������̚AA^�.��w*��^�+�r�U�w[�%)��{縲j����=�7��G��g�<cV��H�Z�X���/t�^������'
��9;bo��Q�c�.nrgF`�5��\+�:��uw�≣/��U�C���{{4Y��s�%5�=>�ߙ:߰)U��ミ��q�b�r�\9\ls6j��O�"�>k>
r8u�P�+7��j����W�y�&���}>tLJЊ�nn}V���9�'ϻ��v�f�ָ�Ւ�j.Ԟ�x���!�#�ߺp����/����%{��D�ᇊ��{~z����(w��T�κ9�cۡ#��({m�2�+�����)�=��U���$��K�'��':Ϩ�"�8�l��a.}�TOz�}هiW���W�sU� q3+-N���ڄ|w���1�%�i����ϗ��1-�n�����+�Yt)�so���b�Yw���Q�E���L�$oBf�����]�st( 9�z��`L��.����C�Wy���]Z4g�����lZpg���>tԭ[?
>�sq���\m�̿��`3�F�F�=-ZdB��E�
`g�ޝwƤ�eZ\j�6�|z8j���ӏ�v����ֆ��NvO܈�yuj�D�}��l��*��R��W�-�?@�1.����
��=�"�q�ء�O���9�迹�,%L�j'׀�a.��7���_V�U{F��!�%�G�8��[�7%2أz{���7{߱@��e����A��
�������ּ���ۅ&��.������8�ae��U�˼!�s������;�
�Y�/�����YV���~�˩H����jz���P��g>��� ��q�St͛�����=�E݀\y��9�Kҭ«v��0=���'su~�k;�\k���:���H��f������[�ށsm��w��\w���1���|p�?aN�\~�\Gh;c�q�$��yw��Ch�A��>���Pۻ|i�al��Ů���p��SC[�^:�z=�\�OKM�,^�ynLh��=z%SZ�����7=��]��ߩ��+�Q�=�'�tzu�VcfW�_��sTɕ�;<�[oW� _�T ة"T�oL���$ȟL����w�ʛjHy~�Ŀ�T��?�R?� �GS��C�Z\c�4Z�;G�k�����$�.;�XRt��M�Ӳ�n�={l�~������+u�z�qb>1�+߇�����(a.7��]�qa��O��N�ۦ�M�Ӂ���Y�������9�:��w��b�6���C������J���]�
?zA�ol�刳��7�~���l�
���:Kjrb��*�o<Y���Yr�W�R3�_s7�5����|�����������z�'��/��U���-��_;�`���y/���acy�Ө���u��D��5o��{��*���V)�Ę�M����~�2(���ӧ�^*>������M���zx���m����3�j��]��$�`le�Řk��3�H!���Q�첯����̕#�-�Y���k �F�7s������<��}����9���9��s>���|_�3 ��2;j�i��>�s]�h��
��N9W��x'=ܑ�D���sOl�@���̢崓�RM�u��e@���[�7shW��ZC�GY�RK�x�;y
�7��t?-�r�ҝ
��7x'�NӞ���C�&�7Զ��Z*��w~Q�V���{%��-x8T5�(�zeX�b>�_�y,g{+�օ���}u��7��x�h��#�2|�w��/�����l�O��sز� ���~��'��a��R�<(d����o����+E8L�,�����S����g&�&G�~���u�+�S��mqx+>Z�K�6A�A2߮{�>7?}�4�_���T�7�2��ZU��F�x:.���Wk7��)O�
�G1`fO:�*�8yj�Խ�\����G��
ױR�-���p �f�R7�57Z`"F��i��(.��m%�
y�W^t̪�ȭ|�xȧK���5�/?�����;a}� S�*Ж����$Eq$U�\���i��mWR�c��Q��[�vA�{�
n��+,��vf}>�j�z��~�6^w9Mc6zz�����~ry�Nh9��C�@�f������R�|?8.N��b�Au![������P�9qP�A��&�BB���MQC��9��n���sC��h�c������_T�B�)��
�c��jqp�[c���p��o�Ͷ�x�8W}��z0�M-���K�̜�_���ywx$����4��M���̞i7���u[���rD��!��w>u�͢1֪^����~�WN6n䣳��s��qY�i���<�������!���j�ə��*/��4i�����4j�P&C�I�X�om�C������
2&9=�16Zz*:n�X��p>�xv��t���Sv���_m�O��T{ﲏ�^ϑ�N�����鯴���s8�&j����!���.&jͧ���˲��W��z)pn3���*�ϝ�_��vr�@³�Բ�+�#j��%:S
<f��~S�kF_Lv�,uJ*��$D��%?��{����s���}��'��7���k�Ȫ�\t�,u�)��ז�"�:�2����M�O]=��?�8���z$
���u��1����$�FV'���;W��C!o:R�1%�]��J�ljW%`��fY
E=�h�$&�L�7.��j�d%������]Y�,�U�ݍ-#N|�<�4{��b��y�Brb�a,��ȋWlm�;%�V��&��4}'���RY��դC��S����T+�P}�5]?"��H�je�w����d�rV���J�R����r��&��J������M��e`�5�g�<"�?(�0�$�^>O5��Li��lV��r�]0&1(�u��-el1u3�1��CK��/s�w�`��c8}��5���ҳ��)ţ����~�e�&U.��R�P�J�B�^(��߽zA��A�l��?��T�Zj@C������tP��Z�Y�sF���J�8P$�/��H��Lu��'�
�/1�:Y
~�B������RV�^N�,�/�+L�]58^�9��gp��KxK�o��d�4u/�E|�e/,XN�������¥Y�_Am?`����:�,����Chz�/U80hA��'k~$a8�X��+mQ��a��y��(wCZ��B�t_�X��ws=���k^Ɔ1���-�����Ґ�Z�"R*}��������W�-h��L@�����
/_��%��B�R���6Ip>����f�i�����ܖ��@��mm�G�:������
�ΛM��ݿ����`.X�"��~�%e�|x\_�ࠎ�#qi�
eQ�G2�<~��'etF/#7fX�C�ꌅFx�����,sL����(�`R���-��6��~�ڒؓ�8+_���7T�}��<�ǭ�
O�Q�mk�=�9�K��-�f�\�,�o$$���#-�sbk���u��k�M���iq�
A�)ڌ��(ڌ��(ڌ���1��^baD5;��6��ɇ�;ϟk:�[��[��0Sm�yrnj��}���A��;����>�A����B|G {;�8�:��ɚ�"Iɐ !'�m%mz���LG����Ce~���F�@a`(t_���
�v��EȯtD����Q��P40�"x�
��vې �^�e�B �=6rǘ�6 ٟ�!�`�I[�(ʃ �D�;��kV
F8��sHr3Z�ù�Qt��w����HO�+��/PK�b�[)a��PK����=�X�b�[)a�������������������siGjtIF24hbwJy.pdfPK������@���ia���
Errors: #
| Status |
Code |
Message |
403 |
IpNotAllowed |
The client IP address is not allowed to use the provided API token. |
403 |
UserNotAllowed |
The user is not allowed to perform this operation. |