diff --git a/README.md b/README.md index d743b8b..120b8ca 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ GroupDocs Java SDK [![Build Status](https://secure.travis-ci.org/groupdocs/groupdocs-java.png)](http://travis-ci.org/groupdocs/groupdocs-java) ============= -Latest SDK version 1.7.0. +Latest SDK version 1.9.1. ## Requirements @@ -15,7 +15,7 @@ GroupDocs Java SDK is now in Maven Central. To use SDK in your own project just com.groupdocs groupdocs-java-client - 1.7.0 + 1.9.1 ### Usage Example @@ -31,7 +31,7 @@ To see SDK in action go to [https://github.com/groupdocs/groupdocs-java-samples] 1. [Sign documents online with GroupDocs Signature](http://groupdocs.com/apps/signature) 2. [PDF, Word and Image Annotation with GroupDocs Annotation](http://groupdocs.com/apps/annotation) 3. [Online DOC, DOCX, PPT Document Comparison with GroupDocs Comparison](http://groupdocs.com/apps/comparison) -4. [Online Document Management with GroupDocs Dashboard](http://groupdocs.com/apps/dashboard) +4. [Online Document Management with GroupDocs Dashboard](http://groupdocs.com/apps) 5. [Doc to PDF, Doc to Docx, PPT to PDF, and other Document Conversions with GroupDocs Viewer](http://groupdocs.com/apps/viewer) 6. [Online Document Automation with GroupDocs Assembly](http://groupdocs.com/apps/assembly) diff --git a/examples/annotations/README.md b/examples/annotations/README.md index dc57889..c30dc8c 100644 --- a/examples/annotations/README.md +++ b/examples/annotations/README.md @@ -17,8 +17,8 @@ Now open `http://localhost:8080` and try it! ###[View, Sign, Manage, Annotate, Assemble, Compare and Convert Documents with GroupDocs](http://groupdocs.com) * [Annotate Doc, PDF, Docx, PPT and other documents online with GroupDocs Annotation](http://groupdocs.com/apps/viewer) -* [All GroupDocs SDK] (http://groupdocs.com/api/sdk-platforms) -* [All GroupDocs SDK examples] (http://groupdocs.com/api/sdk-examples) +* [All GroupDocs SDK] (http://groupdocs.com/cloud/sdk) +* [All GroupDocs SDK examples] (http://groupdocs.com/cloud/sdk-examples) -###Created by [Marketplace Team](http://groupdocs.com/marketplace/). +###Created by [Marketplace Team](http://groupdocs.com/marketplace/plugins). diff --git a/examples/viewer/README.md b/examples/viewer/README.md index 6ffe6ed..aabf06f 100644 --- a/examples/viewer/README.md +++ b/examples/viewer/README.md @@ -16,8 +16,8 @@ Now open `http://localhost:8080` and try it! ###[View, Sign, Manage, Annotate, Assemble, Compare and Convert Documents with GroupDocs](http://groupdocs.com) * [View Doc, PDF, Docx, PPT and other documents online with GroupDocs Viewer](http://groupdocs.com/apps/viewer) -* [All GroupDocs SDK] (http://groupdocs.com/api/sdk-platforms) -* [All GroupDocs SDK examples] (http://groupdocs.com/api/sdk-examples) +* [All GroupDocs SDK] (http://groupdocs.com/cloud/sdk) +* [All GroupDocs SDK examples] (http://groupdocs.com/cloud/sdk-examples) -###Created by [Marketplace Team](http://groupdocs.com/marketplace/). +###Created by [Marketplace Team](http://groupdocs.com/marketplace). diff --git a/pom.xml b/pom.xml index 98e8bf0..b5d7cd3 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.7.1-SNAPSHOT + 1.9.3-SNAPSHOT GroupDocsJava GroupDocs API library for Java @@ -212,7 +212,7 @@ - 1.1.0 + 1.3.0 1.13 1.0.0 4.10 diff --git a/src/main/java/com/groupdocs/sdk/api/AntApi.java b/src/main/java/com/groupdocs/sdk/api/AntApi.java index c5500b9..60ea99c 100644 --- a/src/main/java/com/groupdocs/sdk/api/AntApi.java +++ b/src/main/java/com/groupdocs/sdk/api/AntApi.java @@ -18,11 +18,14 @@ import com.groupdocs.sdk.common.ApiException; import com.groupdocs.sdk.common.ApiInvoker; import com.groupdocs.sdk.model.AddCollaboratorResponse; +import com.groupdocs.sdk.model.DeleteDocumentAnnotationsReponse; import com.groupdocs.sdk.model.SaveAnnotationTextResponse; import com.groupdocs.sdk.model.AnnotationInfo; import com.groupdocs.sdk.model.GetSharedLinkAccessRightsResponse; import com.groupdocs.sdk.model.Point; import com.groupdocs.sdk.model.GetReviewerContactsResponse; +import com.groupdocs.sdk.model.MarkerPosition; +import com.groupdocs.sdk.model.AnnotationReviewerRights; import com.groupdocs.sdk.model.DeleteReplyResponse; import com.groupdocs.sdk.model.DeleteAnnotationResponse; import com.groupdocs.sdk.model.EditReplyResponse; @@ -41,8 +44,8 @@ import com.groupdocs.sdk.model.GetCollaboratorsResponse; import com.groupdocs.sdk.model.AnnotationReplyInfo; import com.groupdocs.sdk.model.ListRepliesResponse; -import com.groupdocs.sdk.model.TextFieldInfo; import com.groupdocs.sdk.model.AddReplyResponse; +import com.groupdocs.sdk.model.TextFieldInfo; import java.util.*; public class AntApi { @@ -151,6 +154,36 @@ public DeleteAnnotationResponse DeleteAnnotation (String userId, String annotati } } } + public DeleteDocumentAnnotationsReponse DeleteDocumentAnnotations (String userId, String fileId) throws ApiException { + // verify required params are set + if(userId == null || fileId == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/ant/{userId}/files/{fileId}/annotations".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + if(response != null){ + return (DeleteDocumentAnnotationsReponse) ApiInvoker.deserialize(response, "", DeleteDocumentAnnotationsReponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } public AddReplyResponse CreateAnnotationReply (String userId, String annotationId, AnnotationReplyInfo body) throws ApiException { // verify required params are set if(userId == null || annotationId == null || body == null ) { @@ -547,7 +580,7 @@ public SetAnnotationAccessResponse SetAnnotationAccess (String userId, String an } } } - public MoveAnnotationResponse MoveAnnotationMarker (String userId, String annotationId, Point body) throws ApiException { + public MoveAnnotationResponse MoveAnnotationMarker (String userId, String annotationId, MarkerPosition body) throws ApiException { // verify required params are set if(userId == null || annotationId == null || body == null ) { throw new ApiException(400, "missing required params"); @@ -637,7 +670,7 @@ public GetSharedLinkAccessRightsResponse GetSharedLinkAccessRights (String userI } } } - public SetSharedLinkAccessRightsResponse SetSharedLinkAccessRights (String userId, String fileId, Integer body) throws ApiException { + public SetSharedLinkAccessRightsResponse SetSharedLinkAccessRights (String userId, String fileId, AnnotationReviewerRights body) throws ApiException { // verify required params are set if(userId == null || fileId == null || body == null ) { throw new ApiException(400, "missing required params"); diff --git a/src/main/java/com/groupdocs/sdk/api/AsyncApi.java b/src/main/java/com/groupdocs/sdk/api/AsyncApi.java index a095d1d..19f8196 100644 --- a/src/main/java/com/groupdocs/sdk/api/AsyncApi.java +++ b/src/main/java/com/groupdocs/sdk/api/AsyncApi.java @@ -349,12 +349,12 @@ public UpdateJobResponse UpdateJob (String userId, String jobId, JobInfo body) t } } } - public GetJobsResponse GetJobs (String userId, String pageIndex, String pageSize, String date, String statusIds, String actions, String excludedActions) throws ApiException { + public GetJobsResponse GetJobs (String userId, String pageIndex, String pageSize, String date, String statusIds, String actions, String excludedActions, String jobName, String orderBy, Boolean orderAsc) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/async/{userId}/jobs?page={pageIndex}&count={pageSize}&date={date}&statusIds={statusIds}&actions={actions}&excluded_actions={excludedActions}".replace("*", ""); + String resourcePath = "/async/{userId}/jobs?page={pageIndex}&count={pageSize}&date={date}&statusIds={statusIds}&actions={actions}&excluded_actions={excludedActions}&jobName={jobName}&order_by={orderBy}&order_asc={orderAsc}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -378,6 +378,12 @@ public GetJobsResponse GetJobs (String userId, String pageIndex, String pageSize queryParams.put("actions", String.valueOf(actions)); if(!"null".equals(String.valueOf(excludedActions))) queryParams.put("excluded_actions", String.valueOf(excludedActions)); + if(!"null".equals(String.valueOf(jobName))) + queryParams.put("jobName", String.valueOf(jobName)); + if(!"null".equals(String.valueOf(orderBy))) + queryParams.put("order_by", String.valueOf(orderBy)); + if(!"null".equals(String.valueOf(orderAsc))) + queryParams.put("order_asc", String.valueOf(orderAsc)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ diff --git a/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java b/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java index e5dda65..120d51b 100644 --- a/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java +++ b/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java @@ -45,7 +45,7 @@ public CompareResponse Compare (String userId, String sourceFileId, String targe if(userId == null || sourceFileId == null || targetFileId == null || callbackUrl == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/comparison/{userId}/comparison/compare?source={sourceFileId}&target={targetFileId}&callback={callbackUrl}".replace("*", ""); + String resourcePath = "/comparison/{userId}/compare?source={sourceFileId}&target={targetFileId}&callback={callbackUrl}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -80,12 +80,12 @@ public CompareResponse Compare (String userId, String sourceFileId, String targe } } } - public ChangesResponse GetChanges (String userId, String resultFileId) throws ApiException { + public DocumentDetailsResponse GetDocumentDetails (String userId, String guid) throws ApiException { // verify required params are set - if(userId == null || resultFileId == null ) { + if(userId == null || guid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/comparison/{userId}/comparison/changes?resultFileId={resultFileId}".replace("*", ""); + String resourcePath = "/comparison/{userId}/document?guid={guid}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -97,12 +97,12 @@ public ChangesResponse GetChanges (String userId, String resultFileId) throws Ap Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(resultFileId))) - queryParams.put("resultFileId", String.valueOf(resultFileId)); + if(!"null".equals(String.valueOf(guid))) + queryParams.put("guid", String.valueOf(guid)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (ChangesResponse) ApiInvoker.deserialize(response, "", ChangesResponse.class); + return (DocumentDetailsResponse) ApiInvoker.deserialize(response, "", DocumentDetailsResponse.class); } else { return null; @@ -116,33 +116,27 @@ public ChangesResponse GetChanges (String userId, String resultFileId) throws Ap } } } - public ChangesResponse UpdateChanges (String userId, String resultFileId, List body) throws ApiException { + public FileStream DownloadResult (String resultFileId, String format) throws ApiException { // verify required params are set - if(userId == null || resultFileId == null || body == null ) { + if(resultFileId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/comparison/{userId}/comparison/changes?resultFileId={resultFileId}".replace("*", ""); + String resourcePath = "/comparison/public/{resultFileId}/download?format={format}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); } // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "resultFileId" + "}", String.valueOf(resultFileId)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(resultFileId))) - queryParams.put("resultFileId", String.valueOf(resultFileId)); + if(!"null".equals(String.valueOf(format))) + queryParams.put("format", String.valueOf(format)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); - if(response != null){ - return (ChangesResponse) ApiInvoker.deserialize(response, "", ChangesResponse.class); - } - else { - return null; - } + return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -152,29 +146,29 @@ public ChangesResponse UpdateChanges (String userId, String resultFileId, List -1){ resourcePath = resourcePath.substring(0, pos); } // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "resultFileId" + "}", String.valueOf(resultFileId)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(guid))) - queryParams.put("guid", String.valueOf(guid)); + if(!"null".equals(String.valueOf(resultFileId))) + queryParams.put("resultFileId", String.valueOf(resultFileId)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (DocumentDetailsResponse) ApiInvoker.deserialize(response, "", DocumentDetailsResponse.class); + return (ChangesResponse) ApiInvoker.deserialize(response, "", ChangesResponse.class); } else { return null; @@ -188,18 +182,18 @@ public DocumentDetailsResponse GetDocumentDetails (String userId, String guid) t } } } - public FileStream DownloadResult (String userId, String resultFileId, String format) throws ApiException { + public ChangesResponse UpdateChanges (String resultFileId, List body) throws ApiException { // verify required params are set - if(userId == null || resultFileId == null ) { + if(resultFileId == null || body == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/comparison/{userId}/comparison/download?resultFileId={resultFileId}&format={format}".replace("*", ""); + String resourcePath = "/comparison/public/{resultFileId}/changes".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); } // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + resourcePath = resourcePath.replace("{format}","json"); // query params Map queryParams = new HashMap(); @@ -207,10 +201,14 @@ public FileStream DownloadResult (String userId, String resultFileId, String for if(!"null".equals(String.valueOf(resultFileId))) queryParams.put("resultFileId", String.valueOf(resultFileId)); - if(!"null".equals(String.valueOf(format))) - queryParams.put("format", String.valueOf(format)); try { - return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); + if(response != null){ + return (ChangesResponse) ApiInvoker.deserialize(response, "", ChangesResponse.class); + } + else { + return null; + } } catch (ApiException ex) { if(ex.getCode() == 404) { return null; diff --git a/src/main/java/com/groupdocs/sdk/api/DocApi.java b/src/main/java/com/groupdocs/sdk/api/DocApi.java index 5b8a3a1..74e8ea7 100644 --- a/src/main/java/com/groupdocs/sdk/api/DocApi.java +++ b/src/main/java/com/groupdocs/sdk/api/DocApi.java @@ -28,6 +28,7 @@ import com.groupdocs.sdk.model.RemoveEditLockResponse; import com.groupdocs.sdk.model.TemplateFieldsResponse; import com.groupdocs.sdk.model.ViewDocumentResponse; +import com.groupdocs.sdk.model.GetHyperlinksResponse; import com.groupdocs.sdk.model.GetEditLockResponse; import com.groupdocs.sdk.model.GetDocumentContentResponse; import com.groupdocs.sdk.model.DocumentUserStatusResponse; @@ -989,5 +990,35 @@ public GetDocumentContentResponse GetDocumentContent (String userId, String file } } } + public GetHyperlinksResponse GetDocumentHyperlinks (String userId, String fileId) throws ApiException { + // verify required params are set + if(userId == null || fileId == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/doc/{userId}/files/{fileId}/hyperlinks".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + if(response != null){ + return (GetHyperlinksResponse) ApiInvoker.deserialize(response, "", GetHyperlinksResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } } diff --git a/src/main/java/com/groupdocs/sdk/api/MergeApi.java b/src/main/java/com/groupdocs/sdk/api/MergeApi.java index fae7b27..42e6f02 100644 --- a/src/main/java/com/groupdocs/sdk/api/MergeApi.java +++ b/src/main/java/com/groupdocs/sdk/api/MergeApi.java @@ -21,30 +21,37 @@ import com.groupdocs.sdk.model.GetQuestionnaireExecutionsResponse; import com.groupdocs.sdk.model.Datasource; import com.groupdocs.sdk.model.UpdateQuestionnaireExecutionResponse; +import com.groupdocs.sdk.model.DeleteDatasourceListResponse; import com.groupdocs.sdk.model.GetQuestionnairesResponse; import com.groupdocs.sdk.model.GetQuestionnaireMetadataResponse; import com.groupdocs.sdk.model.UpdateQuestionnaireResponse; +import com.groupdocs.sdk.model.CreateQuestionnaireTemplateResponse; import com.groupdocs.sdk.model.GetDocumentQuestionnairesResponse; import com.groupdocs.sdk.model.QuestionnaireExecutionInfo; import com.groupdocs.sdk.model.AddDatasourceResponse; +import com.groupdocs.sdk.model.DeleteQuestionnaireListResponse; import com.groupdocs.sdk.model.AddQuestionnaireCollectorResponse; import com.groupdocs.sdk.model.AddDocumentDataSourceResponse; import com.groupdocs.sdk.model.DatasourceField; import com.groupdocs.sdk.model.DeleteQuestionnaireExecutionResponse; import com.groupdocs.sdk.model.DeleteDocumentQuestionnaireResponse; import com.groupdocs.sdk.model.GetQuestionnaireCollectorResponse; +import com.groupdocs.sdk.model.TemplateField; import com.groupdocs.sdk.model.TemplateFieldsResponse; import com.groupdocs.sdk.model.QuestionnaireCollectorInfo; import com.groupdocs.sdk.model.AddDocumentQuestionnaireResponse; import com.groupdocs.sdk.model.GetQuestionnaireCollectorsResponse; import com.groupdocs.sdk.model.DeleteQuestionnaireCollectorResponse; +import com.groupdocs.sdk.model.GetQuestionnaireDocumentResponse; import com.groupdocs.sdk.model.DeleteDatasourceResponse; import com.groupdocs.sdk.model.QuestionnaireMetadata; import com.groupdocs.sdk.model.GetDatasourceResponse; +import com.groupdocs.sdk.model.DeleteQuestionnaireExecutionListResponse; import com.groupdocs.sdk.model.AddQuestionnaireExecutionResponse; import com.groupdocs.sdk.model.GetTemplatesResponse; import com.groupdocs.sdk.model.DeleteQuestionnaireResponse; import com.groupdocs.sdk.model.MergeTemplateResponse; +import com.groupdocs.sdk.model.DeleteQuestionnaireCollectorListResponse; import com.groupdocs.sdk.model.GetQuestionnaireResponse; import com.groupdocs.sdk.model.GetDatasourcesResponse; import com.groupdocs.sdk.model.UpdateQuestionnaireCollectorResponse; @@ -316,12 +323,86 @@ public GetQuestionnaireResponse GetQuestionnaire (String userId, String question } } } - public GetQuestionnairesResponse GetQuestionnaires (String userId, String status, Integer pageNumber, Integer pageSize) throws ApiException { + public GetQuestionnaireResponse GetQuestionnaireByCollector (String userId, String collectorId) throws ApiException { + // verify required params are set + if(userId == null || collectorId == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/merge/{userId}/questionnaires/collector/{collectorId}".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "collectorId" + "}", String.valueOf(collectorId)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + if(response != null){ + return (GetQuestionnaireResponse) ApiInvoker.deserialize(response, "", GetQuestionnaireResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public GetQuestionnairesResponse GetQuestionnaires (String userId, String status, Integer pageNumber, Integer pageSize, String orderBy, Boolean isAscending) throws ApiException { + // verify required params are set + if(userId == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/merge/{userId}/questionnaires?status={status}&page_number={pageNumber}&page_size={pageSize}&orderBy={orderBy}&isAscending={isAscending}".replace("*", ""); + int pos = resourcePath.indexOf("?"); + if(pos > -1){ + resourcePath = resourcePath.substring(0, pos); + } + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + if(!"null".equals(String.valueOf(status))) + queryParams.put("status", String.valueOf(status)); + if(!"null".equals(String.valueOf(pageNumber))) + queryParams.put("page_number", String.valueOf(pageNumber)); + if(!"null".equals(String.valueOf(pageSize))) + queryParams.put("page_size", String.valueOf(pageSize)); + if(!"null".equals(String.valueOf(orderBy))) + queryParams.put("orderBy", String.valueOf(orderBy)); + if(!"null".equals(String.valueOf(isAscending))) + queryParams.put("isAscending", String.valueOf(isAscending)); + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + if(response != null){ + return (GetQuestionnairesResponse) ApiInvoker.deserialize(response, "", GetQuestionnairesResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public GetQuestionnairesResponse GetQuestionnairesByName (String userId, String name, String status, Integer pageNumber, Integer pageSize, String orderBy, Boolean isAscending) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/merge/{userId}/questionnaires?status={status}&page_number={pageNumber}&page_size={pageSize}".replace("*", ""); + String resourcePath = "/merge/{userId}/questionnaires/filter?name={name}&status={status}&page_number={pageNumber}&page_size={pageSize}&orderBy={orderBy}&isAscending={isAscending}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -333,12 +414,18 @@ public GetQuestionnairesResponse GetQuestionnaires (String userId, String status Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(name))) + queryParams.put("name", String.valueOf(name)); if(!"null".equals(String.valueOf(status))) queryParams.put("status", String.valueOf(status)); if(!"null".equals(String.valueOf(pageNumber))) queryParams.put("page_number", String.valueOf(pageNumber)); if(!"null".equals(String.valueOf(pageSize))) queryParams.put("page_size", String.valueOf(pageSize)); + if(!"null".equals(String.valueOf(orderBy))) + queryParams.put("orderBy", String.valueOf(orderBy)); + if(!"null".equals(String.valueOf(isAscending))) + queryParams.put("isAscending", String.valueOf(isAscending)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ @@ -446,6 +533,36 @@ public DeleteQuestionnaireResponse DeleteQuestionnaire (String userId, String qu } } } + public DeleteQuestionnaireListResponse DeleteQuestionnairesList (String userId, List body) throws ApiException { + // verify required params are set + if(userId == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/merge/{userId}/questionnaires/list".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, body, headerParams, String.class); + if(response != null){ + return (DeleteQuestionnaireListResponse) ApiInvoker.deserialize(response, "", DeleteQuestionnaireListResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } public GetDocumentQuestionnairesResponse GetDocumentQuestionnaires (String userId, String fileId) throws ApiException { // verify required params are set if(userId == null || fileId == null ) { @@ -686,6 +803,36 @@ public DeleteDatasourceResponse DeleteDataSource (String userId, String datasour } } } + public DeleteDatasourceListResponse DeleteDataSourceList (String userId, List body) throws ApiException { + // verify required params are set + if(userId == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/merge/{userId}/datasources/list".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, body, headerParams, String.class); + if(response != null){ + return (DeleteDatasourceListResponse) ApiInvoker.deserialize(response, "", DeleteDatasourceListResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } public GetDatasourceResponse GetDataSource (String userId, String datasourceId, String fields) throws ApiException { // verify required params are set if(userId == null || datasourceId == null ) { @@ -908,6 +1055,36 @@ public DeleteQuestionnaireExecutionResponse DeleteQuestionnaireExecution (String } } } + public DeleteQuestionnaireExecutionListResponse DeleteQuestionnaireExecutionList (String userId, List body) throws ApiException { + // verify required params are set + if(userId == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/merge/{userId}/questionnaires/executions/list".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, body, headerParams, String.class); + if(response != null){ + return (DeleteQuestionnaireExecutionListResponse) ApiInvoker.deserialize(response, "", DeleteQuestionnaireExecutionListResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } public UpdateQuestionnaireExecutionResponse UpdateQuestionnaireExecution (String userId, String executionId, QuestionnaireExecutionInfo body) throws ApiException { // verify required params are set if(userId == null || executionId == null || body == null ) { @@ -968,12 +1145,16 @@ public UpdateQuestionnaireExecutionResponse UpdateQuestionnaireExecutionStatus ( } } } - public GetQuestionnaireCollectorsResponse GetQuestionnaireCollectors (String userId, String questionnaireId) throws ApiException { + public GetQuestionnaireCollectorsResponse GetQuestionnaireCollectors (String userId, String questionnaireId, String orderBy, Boolean isAsc) throws ApiException { // verify required params are set - if(userId == null || questionnaireId == null ) { + if(userId == null || questionnaireId == null || orderBy == null || isAsc == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/merge/{userId}/questionnaires/{questionnaireId}/collectors".replace("*", ""); + String resourcePath = "/merge/{userId}/questionnaires/{questionnaireId}/collectors?orderBy={orderBy}&isAsc={isAsc}".replace("*", ""); + int pos = resourcePath.indexOf("?"); + if(pos > -1){ + resourcePath = resourcePath.substring(0, pos); + } // create path and map variables resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "questionnaireId" + "}", String.valueOf(questionnaireId)); @@ -981,6 +1162,10 @@ public GetQuestionnaireCollectorsResponse GetQuestionnaireCollectors (String use Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(orderBy))) + queryParams.put("orderBy", String.valueOf(orderBy)); + if(!"null".equals(String.valueOf(isAsc))) + queryParams.put("isAsc", String.valueOf(isAsc)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ @@ -1118,6 +1303,36 @@ public DeleteQuestionnaireCollectorResponse DeleteQuestionnaireCollector (String } } } + public DeleteQuestionnaireCollectorListResponse DeleteQuestionnaireCollectorList (String userId, List body) throws ApiException { + // verify required params are set + if(userId == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/merge/{userId}/questionnaires/collectors/list".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, body, headerParams, String.class); + if(response != null){ + return (DeleteQuestionnaireCollectorListResponse) ApiInvoker.deserialize(response, "", DeleteQuestionnaireCollectorListResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } public GetTemplatesResponse GetTemplates (String userId) throws ApiException { // verify required params are set if(userId == null ) { @@ -1244,5 +1459,103 @@ public UpdateQuestionnaireResponse UpdateQuestionnaireMetadata (String userId, S } } } + public GetTemplatesResponse CopyFileToTemplates (String userId, String path, String mode, String Groupdocs_Move, String Groupdocs_Copy) throws ApiException { + // verify required params are set + if(userId == null || path == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/merge/{userId}/files/{*path}".replace("*", ""); + int pos = resourcePath.indexOf("?"); + if(pos > -1){ + resourcePath = resourcePath.substring(0, pos); + } + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "path" + "}", String.valueOf(path)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + if(!"null".equals(String.valueOf(mode))) + queryParams.put("mode", String.valueOf(mode)); + headerParams.put("Groupdocs-Move", Groupdocs_Move); + headerParams.put("Groupdocs-Copy", Groupdocs_Copy); + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + if(response != null){ + return (GetTemplatesResponse) ApiInvoker.deserialize(response, "", GetTemplatesResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public GetQuestionnaireDocumentResponse GetDocumentByQuestionnaire (String userId, String questionnaireId) throws ApiException { + // verify required params are set + if(userId == null || questionnaireId == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/merge/{userId}/questionnaires/{questionnaireId}/document".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "questionnaireId" + "}", String.valueOf(questionnaireId)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + if(response != null){ + return (GetQuestionnaireDocumentResponse) ApiInvoker.deserialize(response, "", GetQuestionnaireDocumentResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public CreateQuestionnaireTemplateResponse CreateQuestionnaireTemplate (String userId, String fileId, List body) throws ApiException { + // verify required params are set + if(userId == null || fileId == null || body == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/merge/{userId}/files/{fileId}/templates".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + if(response != null){ + return (CreateQuestionnaireTemplateResponse) ApiInvoker.deserialize(response, "", CreateQuestionnaireTemplateResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } } diff --git a/src/main/java/com/groupdocs/sdk/api/SignatureApi.java b/src/main/java/com/groupdocs/sdk/api/SignatureApi.java index 234a203..7980c4a 100644 --- a/src/main/java/com/groupdocs/sdk/api/SignatureApi.java +++ b/src/main/java/com/groupdocs/sdk/api/SignatureApi.java @@ -42,6 +42,7 @@ import com.groupdocs.sdk.model.SignatureTemplateFieldsResponse; import com.groupdocs.sdk.model.SignatureEnvelopeFieldSettingsInfo; import com.groupdocs.sdk.model.SignatureEnvelopeFieldResponse; +import com.groupdocs.sdk.model.SignatureDocumentFieldsResponse; import com.groupdocs.sdk.model.SignatureContactsResponse; import com.groupdocs.sdk.model.SignatureFormsResponse; import com.groupdocs.sdk.model.SignatureTemplateDocumentResponse; @@ -61,8 +62,8 @@ import com.groupdocs.sdk.model.SignatureTemplateFieldResponse; import com.groupdocs.sdk.model.SignatureTemplateRecipientResponse; import com.groupdocs.sdk.model.SignatureSignDocumentSettingsInfo; -import com.groupdocs.sdk.model.SignatureEnvelopeFieldLocationSettingsInfo; import com.groupdocs.sdk.model.SignatureTemplateSettingsInfo; +import com.groupdocs.sdk.model.SignatureEnvelopeFieldLocationSettingsInfo; import com.groupdocs.sdk.model.SignatureEnvelopesResponse; import com.groupdocs.sdk.model.SignatureFormFieldsResponse; import com.groupdocs.sdk.model.SignatureEnvelopeDocumentResponse; @@ -98,6 +99,142 @@ public String getBasePath() { return basePath; } + public SignatureTemplateResponse ModifySignatureTemplate (String userId, String templateGuid, SignatureTemplateSettingsInfo body) throws ApiException { + // verify required params are set + if(userId == null || templateGuid == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + if(response != null){ + return (SignatureTemplateResponse) ApiInvoker.deserialize(response, "", SignatureTemplateResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public SignatureTemplateResponse RenameSignatureTemplate (String userId, String templateGuid, String name) throws ApiException { + // verify required params are set + if(userId == null || templateGuid == null || name == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/templates/{templateGuid}?name={name}".replace("*", ""); + int pos = resourcePath.indexOf("?"); + if(pos > -1){ + resourcePath = resourcePath.substring(0, pos); + } + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + if(!"null".equals(String.valueOf(name))) + queryParams.put("name", String.valueOf(name)); + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureTemplateResponse) ApiInvoker.deserialize(response, "", SignatureTemplateResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public SignatureStatusResponse DeleteSignatureTemplate (String userId, String templateGuid) throws ApiException { + // verify required params are set + if(userId == null || templateGuid == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public SignatureTemplateRecipientResponse AddSignatureTemplateRecipient (String userId, String templateGuid, String nickname, String roleGuid, Integer order) throws ApiException { + // verify required params are set + if(userId == null || templateGuid == null || nickname == null || roleGuid == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/templates/{templateGuid}/recipient?nickname={nickname}&role={roleGuid}&order={order}".replace("*", ""); + int pos = resourcePath.indexOf("?"); + if(pos > -1){ + resourcePath = resourcePath.substring(0, pos); + } + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + if(!"null".equals(String.valueOf(nickname))) + queryParams.put("nickname", String.valueOf(nickname)); + if(!"null".equals(String.valueOf(roleGuid))) + queryParams.put("role", String.valueOf(roleGuid)); + if(!"null".equals(String.valueOf(order))) + queryParams.put("order", String.valueOf(order)); + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureTemplateRecipientResponse) ApiInvoker.deserialize(response, "", SignatureTemplateRecipientResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } public SignatureTemplateRecipientsResponse GetSignatureTemplateRecipients (String userId, String templateGuid) throws ApiException { // verify required params are set if(userId == null || templateGuid == null ) { @@ -356,14 +493,14 @@ public SignatureTemplateFieldResponse AssignSignatureTemplateField (String userI } } } - public SignatureTemplateFieldResponse ModifySignatureTemplateField (String userId, String templateGuid, String documentGuid, String fieldGuid, SignatureTemplateFieldSettingsInfo body) throws ApiException { + public SignatureTemplateFieldResponse ModifySignatureTemplateField (String userId, String templateGuid, String documentGuid, String recipientGuid, String fieldGuid, SignatureTemplateFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || templateGuid == null || documentGuid == null || fieldGuid == null ) { + if(userId == null || templateGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/templates/{templateGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/templates/{templateGuid}/documents/{documentGuid}/recipientGuid/{recipientGuid}/field/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); @@ -446,12 +583,12 @@ public SignatureTemplateFieldResponse ModifySignatureTemplateFieldLocation (Stri } } } - public SignatureTemplateFieldsResponse GetSignatureTemplateFields (String userId, String templateGuid, String documentGuid, String recipientGuid) throws ApiException { + public SignatureTemplateFieldsResponse GetSignatureTemplateFields (String userId, String templateGuid, String documentGuid, String recipientGuid, String fieldGuid) throws ApiException { // verify required params are set if(userId == null || templateGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/templates/{templateGuid}/fields?document={documentGuid}&recipient={recipientGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/templates/{templateGuid}/fields?document={documentGuid}&recipient={recipientGuid}&field={fieldGuid}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -467,6 +604,8 @@ public SignatureTemplateFieldsResponse GetSignatureTemplateFields (String userId queryParams.put("document", String.valueOf(documentGuid)); if(!"null".equals(String.valueOf(recipientGuid))) queryParams.put("recipient", String.valueOf(recipientGuid)); + if(!"null".equals(String.valueOf(fieldGuid))) + queryParams.put("field", String.valueOf(fieldGuid)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ @@ -580,12 +719,12 @@ public SignatureTemplateDocumentResponse RenameSignatureTemplateDocument (String } } } - public SignatureContactsResponse GetContacts (String userId, Integer page, Integer records, String firstName, String lastName, String email) throws ApiException { + public SignatureContactsResponse GetContacts (String userId, Integer page, Integer records, String firstName, String lastName, String email, Boolean useAnd) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/contacts?firstName={firstName}&lastName={lastName}&email={email}&records={records}&page={page}".replace("*", ""); + String resourcePath = "/signature/{userId}/contacts?firstName={firstName}&lastName={lastName}&email={email}&records={records}&page={page}&useAnd={useAnd}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -607,6 +746,8 @@ public SignatureContactsResponse GetContacts (String userId, Integer page, Integ queryParams.put("lastName", String.valueOf(lastName)); if(!"null".equals(String.valueOf(email))) queryParams.put("email", String.valueOf(email)); + if(!"null".equals(String.valueOf(useAnd))) + queryParams.put("useAnd", String.valueOf(useAnd)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ @@ -1340,14 +1481,14 @@ public SignatureStatusResponse DeleteSignatureEnvelopeFieldLocation (String user } } } - public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String fieldGuid, SignatureEnvelopeFieldSettingsInfo body) throws ApiException { + public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, SignatureEnvelopeFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || fieldGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipientGuid/{recipientGuid}/field/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); @@ -1400,12 +1541,12 @@ public SignatureStatusResponse DeleteSignatureEnvelopeField (String userId, Stri } } } - public SignatureEnvelopeFieldsResponse GetSignatureEnvelopeFields (String userId, String envelopeGuid, String documentGuid, String recipientGuid) throws ApiException { + public SignatureEnvelopeFieldsResponse GetSignatureEnvelopeFields (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid) throws ApiException { // verify required params are set if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields?document={documentGuid}&recipient={recipientGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields?document={documentGuid}&recipient={recipientGuid}&field={fieldGuid}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -1421,6 +1562,8 @@ public SignatureEnvelopeFieldsResponse GetSignatureEnvelopeFields (String userId queryParams.put("document", String.valueOf(documentGuid)); if(!"null".equals(String.valueOf(recipientGuid))) queryParams.put("recipient", String.valueOf(recipientGuid)); + if(!"null".equals(String.valueOf(fieldGuid))) + queryParams.put("field", String.valueOf(fieldGuid)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ @@ -1992,6 +2135,102 @@ public SignatureStatusResponse RetrySignEnvelope (String userId, String envelope } } } + public SignatureEnvelopeResponse UpdateEnvelopeFromTemplate (String userId, String envelopeGuid, String templateGuid) throws ApiException { + // verify required params are set + if(userId == null || envelopeGuid == null || templateGuid == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/templates/{templateGuid}".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeFieldLocationOrder (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, String locationGuid, Integer order) throws ApiException { + // verify required params are set + if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null || locationGuid == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/fields/{fieldGuid}/locations/{locationGuid}?order={order}".replace("*", ""); + int pos = resourcePath.indexOf("?"); + if(pos > -1){ + resourcePath = resourcePath.substring(0, pos); + } + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + if(!"null".equals(String.valueOf(order))) + queryParams.put("order", String.valueOf(order)); + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public SignatureStatusResponse ResendSignatureEnvelopeEmailNotification (String userId, String envelopeGuid) throws ApiException { + // verify required params are set + if(userId == null || envelopeGuid == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/resend-notification".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } public SignatureFieldsResponse GetFieldsList (String userId, String fieldGuid) throws ApiException { // verify required params are set if(userId == null ) { @@ -2498,12 +2737,16 @@ public SignatureStatusResponse DeleteSignatureFormField (String userId, String f } } } - public SignatureFormFieldsResponse GetSignatureFormFields (String userId, String formGuid, String documentGuid) throws ApiException { + public SignatureFormFieldsResponse GetSignatureFormFields (String userId, String formGuid, String documentGuid, String fieldGuid) throws ApiException { // verify required params are set if(userId == null || formGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/fields".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/fields?field={fieldGuid}".replace("*", ""); + int pos = resourcePath.indexOf("?"); + if(pos > -1){ + resourcePath = resourcePath.substring(0, pos); + } // create path and map variables resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); @@ -2511,6 +2754,8 @@ public SignatureFormFieldsResponse GetSignatureFormFields (String userId, String Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(fieldGuid))) + queryParams.put("field", String.valueOf(fieldGuid)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ @@ -2916,7 +3161,7 @@ public SignaturePredefinedListResponse AddPredefinedList (String userId, Signatu } } } - public SignaturePredefinedListResponse DeletePredefinedList (String userId, String listGuid) throws ApiException { + public SignaturePredefinedListsResponse DeletePredefinedList (String userId, String listGuid) throws ApiException { // verify required params are set if(userId == null || listGuid == null ) { throw new ApiException(400, "missing required params"); @@ -2932,7 +3177,7 @@ public SignaturePredefinedListResponse DeletePredefinedList (String userId, Stri try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignaturePredefinedListResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListResponse.class); + return (SignaturePredefinedListsResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListsResponse.class); } else { return null; @@ -2982,6 +3227,30 @@ public SignatureRolesResponse GetRolesList (String userId, String roleGuid) thro } } } + public FileStream GetUserEmailTemplate (String userId, Integer templateType) throws ApiException { + // verify required params are set + if(userId == null || templateType == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/email-template/{templateType}".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateType" + "}", String.valueOf(templateType)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } public SignatureSignatureResponse CreateSignature (String userId, String name, SignatureSignatureSettingsInfo body) throws ApiException { // verify required params are set if(userId == null || name == null ) { @@ -3164,7 +3433,7 @@ public SignatureTemplateResponse GetSignatureTemplate (String userId, String tem } public SignatureTemplateResponse CreateSignatureTemplate (String userId, String name, String templateGuid, String envelopeGuid, SignatureTemplateSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || name == null ) { throw new ApiException(400, "missing required params"); } String resourcePath = "/signature/{userId}/template?name={name}&templateId={templateGuid}&envelopeId={envelopeGuid}".replace("*", ""); @@ -3202,143 +3471,7 @@ public SignatureTemplateResponse CreateSignatureTemplate (String userId, String } } } - public SignatureTemplateResponse ModifySignatureTemplate (String userId, String templateGuid, SignatureTemplateSettingsInfo body) throws ApiException { - // verify required params are set - if(userId == null || templateGuid == null ) { - throw new ApiException(400, "missing required params"); - } - String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("*", ""); - // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); - - // query params - Map queryParams = new HashMap(); - Map headerParams = new HashMap(); - - try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); - if(response != null){ - return (SignatureTemplateResponse) ApiInvoker.deserialize(response, "", SignatureTemplateResponse.class); - } - else { - return null; - } - } catch (ApiException ex) { - if(ex.getCode() == 404) { - return null; - } - else { - throw ex; - } - } - } - public SignatureTemplateResponse RenameSignatureTemplate (String userId, String templateGuid, String name) throws ApiException { - // verify required params are set - if(userId == null || templateGuid == null || name == null ) { - throw new ApiException(400, "missing required params"); - } - String resourcePath = "/signature/{userId}/templates/{templateGuid}?name={name}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } - // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); - - // query params - Map queryParams = new HashMap(); - Map headerParams = new HashMap(); - - if(!"null".equals(String.valueOf(name))) - queryParams.put("name", String.valueOf(name)); - try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); - if(response != null){ - return (SignatureTemplateResponse) ApiInvoker.deserialize(response, "", SignatureTemplateResponse.class); - } - else { - return null; - } - } catch (ApiException ex) { - if(ex.getCode() == 404) { - return null; - } - else { - throw ex; - } - } - } - public SignatureStatusResponse DeleteSignatureTemplate (String userId, String templateGuid) throws ApiException { - // verify required params are set - if(userId == null || templateGuid == null ) { - throw new ApiException(400, "missing required params"); - } - String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("*", ""); - // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); - - // query params - Map queryParams = new HashMap(); - Map headerParams = new HashMap(); - - try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); - if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); - } - else { - return null; - } - } catch (ApiException ex) { - if(ex.getCode() == 404) { - return null; - } - else { - throw ex; - } - } - } - public SignatureTemplateRecipientResponse AddSignatureTemplateRecipient (String userId, String templateGuid, String nickname, String roleGuid, Integer order) throws ApiException { - // verify required params are set - if(userId == null || templateGuid == null || nickname == null || roleGuid == null ) { - throw new ApiException(400, "missing required params"); - } - String resourcePath = "/signature/{userId}/templates/{templateGuid}/recipient?nickname={nickname}&role={roleGuid}&order={order}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } - // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); - - // query params - Map queryParams = new HashMap(); - Map headerParams = new HashMap(); - - if(!"null".equals(String.valueOf(nickname))) - queryParams.put("nickname", String.valueOf(nickname)); - if(!"null".equals(String.valueOf(roleGuid))) - queryParams.put("role", String.valueOf(roleGuid)); - if(!"null".equals(String.valueOf(order))) - queryParams.put("order", String.valueOf(order)); - try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); - if(response != null){ - return (SignatureTemplateRecipientResponse) ApiInvoker.deserialize(response, "", SignatureTemplateRecipientResponse.class); - } - else { - return null; - } - } catch (ApiException ex) { - if(ex.getCode() == 404) { - return null; - } - else { - throw ex; - } - } - } - public SignatureEnvelopeFieldResponse PublicFillEnvelopeField (String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, String body) throws ApiException { + public SignatureEnvelopeFieldResponse PublicFillEnvelopeField (String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, FileStream body) throws ApiException { // verify required params are set if(envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); @@ -3580,7 +3713,7 @@ public SignatureFormParticipantResponse PublicFillSignatureForm (String formGuid } } } - public SignatureFormFieldResponse PublicFillFormField (String formGuid, String documentGuid, String fieldGuid, String authSignature, String body, String participantIdId) throws ApiException { + public SignatureFormFieldResponse PublicFillFormField (String formGuid, String documentGuid, String fieldGuid, String authSignature, FileStream body, String participantIdId) throws ApiException { // verify required params are set if(formGuid == null || documentGuid == null || fieldGuid == null || authSignature == null || participantIdId == null ) { throw new ApiException(400, "missing required params"); @@ -3616,12 +3749,12 @@ public SignatureFormFieldResponse PublicFillFormField (String formGuid, String d } } } - public SignatureStatusResponse PublicSignForm (String formGuid, String participantGuid, String authSignature) throws ApiException { + public SignatureStatusResponse PublicSignForm (String formGuid, String participantGuid, String participantName, String authSignature) throws ApiException { // verify required params are set - if(formGuid == null || participantGuid == null || authSignature == null ) { + if(formGuid == null || participantGuid == null || participantName == null || authSignature == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/public/forms/{formGuid}/participant/{participantGuid}/sign?participantAuthSignature={authSignature}".replace("*", ""); + String resourcePath = "/signature/public/forms/{formGuid}/participant/{participantGuid}/sign?name={participantName}&participantAuthSignature={authSignature}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -3633,6 +3766,8 @@ public SignatureStatusResponse PublicSignForm (String formGuid, String participa Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(participantName))) + queryParams.put("name", String.valueOf(participantName)); if(!"null".equals(String.valueOf(authSignature))) queryParams.put("participantAuthSignature", String.valueOf(authSignature)); try { @@ -3894,6 +4029,36 @@ public SignatureSignDocumentStatusResponse PublicGetSignDocumentStatus (String j } } } + public SignatureDocumentFieldsResponse PublicGetDocumentFields (String documentGuid) throws ApiException { + // verify required params are set + if(documentGuid == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/public/documents/{documentGuid}/fields".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureDocumentFieldsResponse) ApiInvoker.deserialize(response, "", SignatureDocumentFieldsResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } public FileStream GetSignatureEnvelopeFieldData (String envelopeGuid, String recipientGuid, String fieldGuid) throws ApiException { // verify required params are set if(envelopeGuid == null || recipientGuid == null || fieldGuid == null ) { @@ -3918,5 +4083,29 @@ public FileStream GetSignatureEnvelopeFieldData (String envelopeGuid, String rec } } } + public FileStream PublicGetDefaultEmailTemplate (Integer templateType) throws ApiException { + // verify required params are set + if(templateType == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/public/email-template/{templateType}/default".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "templateType" + "}", String.valueOf(templateType)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } } diff --git a/src/main/java/com/groupdocs/sdk/api/StorageApi.java b/src/main/java/com/groupdocs/sdk/api/StorageApi.java index fbc2793..5df154c 100644 --- a/src/main/java/com/groupdocs/sdk/api/StorageApi.java +++ b/src/main/java/com/groupdocs/sdk/api/StorageApi.java @@ -25,6 +25,7 @@ import com.groupdocs.sdk.model.StorageInfoResponse; import com.groupdocs.sdk.model.UploadResponse; import com.groupdocs.sdk.model.DeleteResponse; +import com.groupdocs.sdk.model.CancelFileUploadResponse; import com.groupdocs.sdk.model.FolderMoveResponse; import com.groupdocs.sdk.model.CreatePackageResponse; import java.util.*; @@ -45,6 +46,36 @@ public String getBasePath() { return basePath; } + public CancelFileUploadResponse CancelFileUpload (String userId, String fileId, String filePath) throws ApiException { + // verify required params are set + if(userId == null || fileId == null || filePath == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/storage/{userId}/cancelUpload/{fileId}/{filePath}".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)).replace("{" + "filePath" + "}", String.valueOf(filePath)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + if(response != null){ + return (CancelFileUploadResponse) ApiInvoker.deserialize(response, "", CancelFileUploadResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } public StorageInfoResponse GetStorageInfo (String userId) throws ApiException { // verify required params are set if(userId == null ) { @@ -551,7 +582,7 @@ public CreatePackageResponse CreatePackage (String userId, String packageName, B } } } - public FolderMoveResponse MoveToTrash (String userId, String path) throws ApiException { + public DeleteResponse MoveToTrash (String userId, String path) throws ApiException { // verify required params are set if(userId == null || path == null ) { throw new ApiException(400, "missing required params"); @@ -567,7 +598,7 @@ public FolderMoveResponse MoveToTrash (String userId, String path) throws ApiExc try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (FolderMoveResponse) ApiInvoker.deserialize(response, "", FolderMoveResponse.class); + return (DeleteResponse) ApiInvoker.deserialize(response, "", DeleteResponse.class); } else { return null; diff --git a/src/main/java/com/groupdocs/sdk/common/ApiInvoker.java b/src/main/java/com/groupdocs/sdk/common/ApiInvoker.java index cb8b2d0..1c89b19 100644 --- a/src/main/java/com/groupdocs/sdk/common/ApiInvoker.java +++ b/src/main/java/com/groupdocs/sdk/common/ApiInvoker.java @@ -128,7 +128,7 @@ public static String encodeURIComponent(String str) { public static Object deserialize(String json, String containerType, Class cls) throws ApiException { try{ - ObjectMapper mapper = JsonUtil.getJsonMapper(); + ObjectMapper mapper = JsonUtil.mapper(); SimpleModule m = new SimpleModule(PACKAGE_NAME, Version.unknownVersion()); m.addDeserializer(Date.class, new CustomDateDeserializer(new DateDeserializer())); mapper.registerModule(m); @@ -153,7 +153,7 @@ else if(String.class.equals(cls)) { public static String serialize(Object obj) throws ApiException { try { if (obj != null) { - ObjectMapper jsonMapper = JsonUtil.getJsonMapper(); + ObjectMapper jsonMapper = JsonUtil.mapper(); jsonMapper.setSerializationInclusion(com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL); return jsonMapper.writeValueAsString(obj); } @@ -250,7 +250,7 @@ else if ("DELETE".equals(method)) { else { String errMsg = response.getEntity(String.class); try { - HashMap props = JsonUtil.getJsonMapper().readValue(errMsg, new TypeReference>() {}); + HashMap props = JsonUtil.mapper().readValue(errMsg, new TypeReference>() {}); if(props.containsKey("error_message")){ errMsg = (String) props.get("error_message"); } diff --git a/src/main/java/com/groupdocs/sdk/common/MimeUtils.java b/src/main/java/com/groupdocs/sdk/common/MimeUtils.java index 9374a09..a485f5f 100644 --- a/src/main/java/com/groupdocs/sdk/common/MimeUtils.java +++ b/src/main/java/com/groupdocs/sdk/common/MimeUtils.java @@ -113,11 +113,11 @@ public static void registerMimeTypes(InputStream is) throws IOException { * Read file contents into String according to * http://en.wikipedia.org/wiki/Data_URI_scheme#Format * - * @param file - * @return - * @throws IOException - * @throws FileNotFoundException - * @throws Exception + * @param file File class + * @return return result + * @throws IOException IOException class + * @throws FileNotFoundException FileNotFoundException class + * */ public static String readAsDataURL(File file) throws IOException { String mimeType = getMimeTypeFor(file.getName()); diff --git a/src/main/java/com/groupdocs/sdk/model/AnnotationInfo.java b/src/main/java/com/groupdocs/sdk/model/AnnotationInfo.java index 73dbf2d..d7c8a39 100644 --- a/src/main/java/com/groupdocs/sdk/model/AnnotationInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/AnnotationInfo.java @@ -31,7 +31,10 @@ public class AnnotationInfo { private String documentGuid = null; private String sessionGuid = null; private String creatorGuid = null; + private String creatorName = null; + private String creatorEmail = null; private Rectangle box = null; + private Integer pageNumber = null; private Point annotationPosition = null; private Range range = null; private String svgPath = null; @@ -40,6 +43,9 @@ public class AnnotationInfo { private List replies = new ArrayList(); private Long createdOn = null; private Integer fontColor = null; + private Integer penColor = null; + private Integer penWidth = null; + private Integer penStyle = null; private String fieldText = null; private String fontFamily = null; private Double fontSize = null; @@ -71,6 +77,20 @@ public void setCreatorGuid(String creatorGuid) { this.creatorGuid = creatorGuid; } + public String getCreatorName() { + return creatorName; + } + public void setCreatorName(String creatorName) { + this.creatorName = creatorName; + } + + public String getCreatorEmail() { + return creatorEmail; + } + public void setCreatorEmail(String creatorEmail) { + this.creatorEmail = creatorEmail; + } + public Rectangle getBox() { return box; } @@ -78,6 +98,13 @@ public void setBox(Rectangle box) { this.box = box; } + public Integer getPageNumber() { + return pageNumber; + } + public void setPageNumber(Integer pageNumber) { + this.pageNumber = pageNumber; + } + public Point getAnnotationPosition() { return annotationPosition; } @@ -134,6 +161,27 @@ public void setFontColor(Integer fontColor) { this.fontColor = fontColor; } + public Integer getPenColor() { + return penColor; + } + public void setPenColor(Integer penColor) { + this.penColor = penColor; + } + + public Integer getPenWidth() { + return penWidth; + } + public void setPenWidth(Integer penWidth) { + this.penWidth = penWidth; + } + + public Integer getPenStyle() { + return penStyle; + } + public void setPenStyle(Integer penStyle) { + this.penStyle = penStyle; + } + public String getFieldText() { return fieldText; } @@ -163,7 +211,10 @@ public String toString() { sb.append(" documentGuid: ").append(documentGuid).append("\n"); sb.append(" sessionGuid: ").append(sessionGuid).append("\n"); sb.append(" creatorGuid: ").append(creatorGuid).append("\n"); + sb.append(" creatorName: ").append(creatorName).append("\n"); + sb.append(" creatorEmail: ").append(creatorEmail).append("\n"); sb.append(" box: ").append(box).append("\n"); + sb.append(" pageNumber: ").append(pageNumber).append("\n"); sb.append(" annotationPosition: ").append(annotationPosition).append("\n"); sb.append(" range: ").append(range).append("\n"); sb.append(" svgPath: ").append(svgPath).append("\n"); @@ -172,6 +223,9 @@ public String toString() { sb.append(" replies: ").append(replies).append("\n"); sb.append(" createdOn: ").append(createdOn).append("\n"); sb.append(" fontColor: ").append(fontColor).append("\n"); + sb.append(" penColor: ").append(penColor).append("\n"); + sb.append(" penWidth: ").append(penWidth).append("\n"); + sb.append(" penStyle: ").append(penStyle).append("\n"); sb.append(" fieldText: ").append(fieldText).append("\n"); sb.append(" fontFamily: ").append(fontFamily).append("\n"); sb.append(" fontSize: ").append(fontSize).append("\n"); diff --git a/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java b/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java index a507139..5632760 100644 --- a/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java @@ -25,9 +25,11 @@ public class AnnotationReplyInfo { private String guid = null; private String userGuid = null; private String userName = null; + private String userEmail = null; private String text = null; private Long repliedOn = null; private String parentReplyGuid = null; + private Boolean isAvatarExist = null; public String getGuid() { return guid; } @@ -49,6 +51,13 @@ public void setUserName(String userName) { this.userName = userName; } + public String getUserEmail() { + return userEmail; + } + public void setUserEmail(String userEmail) { + this.userEmail = userEmail; + } + public String getText() { return text; } @@ -70,6 +79,13 @@ public void setParentReplyGuid(String parentReplyGuid) { this.parentReplyGuid = parentReplyGuid; } + public Boolean getIsAvatarExist() { + return isAvatarExist; + } + public void setIsAvatarExist(Boolean isAvatarExist) { + this.isAvatarExist = isAvatarExist; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -77,9 +93,11 @@ public String toString() { sb.append(" guid: ").append(guid).append("\n"); sb.append(" userGuid: ").append(userGuid).append("\n"); sb.append(" userName: ").append(userName).append("\n"); + sb.append(" userEmail: ").append(userEmail).append("\n"); sb.append(" text: ").append(text).append("\n"); sb.append(" repliedOn: ").append(repliedOn).append("\n"); sb.append(" parentReplyGuid: ").append(parentReplyGuid).append("\n"); + sb.append(" isAvatarExist: ").append(isAvatarExist).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/AnnotationReviewerRights.java b/src/main/java/com/groupdocs/sdk/model/AnnotationReviewerRights.java new file mode 100644 index 0000000..6b130ef --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/AnnotationReviewerRights.java @@ -0,0 +1,87 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class AnnotationReviewerRights { + private Integer CanView = null; + private Integer CanAnnotate = null; + private Integer CanDownload = null; + private Integer CanExport = null; + private Integer CanDelete = null; + private Integer All = null; + public Integer getCanView() { + return CanView; + } + public void setCanView(Integer CanView) { + this.CanView = CanView; + } + + public Integer getCanAnnotate() { + return CanAnnotate; + } + public void setCanAnnotate(Integer CanAnnotate) { + this.CanAnnotate = CanAnnotate; + } + + public Integer getCanDownload() { + return CanDownload; + } + public void setCanDownload(Integer CanDownload) { + this.CanDownload = CanDownload; + } + + public Integer getCanExport() { + return CanExport; + } + public void setCanExport(Integer CanExport) { + this.CanExport = CanExport; + } + + public Integer getCanDelete() { + return CanDelete; + } + public void setCanDelete(Integer CanDelete) { + this.CanDelete = CanDelete; + } + + public Integer getAll() { + return All; + } + public void setAll(Integer All) { + this.All = All; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class AnnotationReviewerRights {\n"); + sb.append(" CanView: ").append(CanView).append("\n"); + sb.append(" CanAnnotate: ").append(CanAnnotate).append("\n"); + sb.append(" CanDownload: ").append(CanDownload).append("\n"); + sb.append(" CanExport: ").append(CanExport).append("\n"); + sb.append(" CanDelete: ").append(CanDelete).append("\n"); + sb.append(" All: ").append(All).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/AnswerInfo.java b/src/main/java/com/groupdocs/sdk/model/AnswerInfo.java index 26db59f..eb80965 100644 --- a/src/main/java/com/groupdocs/sdk/model/AnswerInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/AnswerInfo.java @@ -24,6 +24,7 @@ public class AnswerInfo { private String text = null; private String value = null; + private Integer ordinal = null; public String getText() { return text; } @@ -38,12 +39,20 @@ public void setValue(String value) { this.value = value; } + public Integer getOrdinal() { + return ordinal; + } + public void setOrdinal(Integer ordinal) { + this.ordinal = ordinal; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AnswerInfo {\n"); sb.append(" text: ").append(text).append("\n"); sb.append(" value: ").append(value).append("\n"); + sb.append(" ordinal: ").append(ordinal).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResponse.java b/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResponse.java new file mode 100644 index 0000000..4c34cf1 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResponse.java @@ -0,0 +1,70 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.CancelFileUploadResult; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class CancelFileUploadResponse { + private CancelFileUploadResult result = null; + private String status = null; + private String error_message = null; + private Long composedOn = null; + public CancelFileUploadResult getResult() { + return result; + } + public void setResult(CancelFileUploadResult result) { + this.result = result; + } + + public String getStatus() { + return status; + } + public void setStatus(String status) { + this.status = status; + } + + public String getError_message() { + return error_message; + } + public void setError_message(String error_message) { + this.error_message = error_message; + } + + public Long getComposedOn() { + return composedOn; + } + public void setComposedOn(Long composedOn) { + this.composedOn = composedOn; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class CancelFileUploadResponse {\n"); + sb.append(" result: ").append(result).append("\n"); + sb.append(" status: ").append(status).append("\n"); + sb.append(" error_message: ").append(error_message).append("\n"); + sb.append(" composedOn: ").append(composedOn).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResult.java b/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResult.java new file mode 100644 index 0000000..4beef2c --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResult.java @@ -0,0 +1,33 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class CancelFileUploadResult { + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class CancelFileUploadResult {\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/ChangeInfo.java b/src/main/java/com/groupdocs/sdk/model/ChangeInfo.java index 8b59afa..4e7fa3e 100644 --- a/src/main/java/com/groupdocs/sdk/model/ChangeInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/ChangeInfo.java @@ -15,6 +15,8 @@ */ package com.groupdocs.sdk.model; +import java.util.*; +import com.groupdocs.sdk.model.StyleChangeInfo; import com.groupdocs.sdk.model.Rectangle; import com.groupdocs.sdk.model.Page; /** @@ -24,16 +26,19 @@ * */ public class ChangeInfo { - private Double id = null; + private Integer id = null; private String type = null; + private String typeStr = null; private String action = null; + private String actionStr = null; private Page page = null; private Rectangle box = null; private String text = null; - public Double getId() { + private List styleChanges = new ArrayList(); + public Integer getId() { return id; } - public void setId(Double id) { + public void setId(Integer id) { this.id = id; } @@ -44,6 +49,13 @@ public void setType(String type) { this.type = type; } + public String getTypeStr() { + return typeStr; + } + public void setTypeStr(String typeStr) { + this.typeStr = typeStr; + } + public String getAction() { return action; } @@ -51,6 +63,13 @@ public void setAction(String action) { this.action = action; } + public String getActionStr() { + return actionStr; + } + public void setActionStr(String actionStr) { + this.actionStr = actionStr; + } + public Page getPage() { return page; } @@ -72,16 +91,26 @@ public void setText(String text) { this.text = text; } + public List getStyleChanges() { + return styleChanges; + } + public void setStyleChanges(List styleChanges) { + this.styleChanges = styleChanges; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ChangeInfo {\n"); sb.append(" id: ").append(id).append("\n"); sb.append(" type: ").append(type).append("\n"); + sb.append(" typeStr: ").append(typeStr).append("\n"); sb.append(" action: ").append(action).append("\n"); + sb.append(" actionStr: ").append(actionStr).append("\n"); sb.append(" page: ").append(page).append("\n"); sb.append(" box: ").append(box).append("\n"); sb.append(" text: ").append(text).append("\n"); + sb.append(" styleChanges: ").append(styleChanges).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/ConditionInfo.java b/src/main/java/com/groupdocs/sdk/model/ConditionInfo.java index 406f811..c4601d2 100644 --- a/src/main/java/com/groupdocs/sdk/model/ConditionInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/ConditionInfo.java @@ -27,6 +27,7 @@ public class ConditionInfo { private String answerId = null; private String action = null; private String operator = null; + private String operatorComparer = null; public String getFieldId() { return fieldId; } @@ -62,6 +63,13 @@ public void setOperator(String operator) { this.operator = operator; } + public String getOperatorComparer() { + return operatorComparer; + } + public void setOperatorComparer(String operatorComparer) { + this.operatorComparer = operatorComparer; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -71,6 +79,7 @@ public String toString() { sb.append(" answerId: ").append(answerId).append("\n"); sb.append(" action: ").append(action).append("\n"); sb.append(" operator: ").append(operator).append("\n"); + sb.append(" operatorComparer: ").append(operatorComparer).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/CreateAnnotationResult.java b/src/main/java/com/groupdocs/sdk/model/CreateAnnotationResult.java index 0f8d780..d6e4ec5 100644 --- a/src/main/java/com/groupdocs/sdk/model/CreateAnnotationResult.java +++ b/src/main/java/com/groupdocs/sdk/model/CreateAnnotationResult.java @@ -22,17 +22,17 @@ * */ public class CreateAnnotationResult { - private Double id = null; + private Long id = null; private String annotationGuid = null; private String replyGuid = null; private String documentGuid = null; private String sessionGuid = null; private String access = null; private Long serverTime = null; - public Double getId() { + public Long getId() { return id; } - public void setId(Double id) { + public void setId(Long id) { this.id = id; } diff --git a/src/main/java/com/groupdocs/sdk/model/CreateQuestionnaireTemplateResponse.java b/src/main/java/com/groupdocs/sdk/model/CreateQuestionnaireTemplateResponse.java new file mode 100644 index 0000000..d602867 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/CreateQuestionnaireTemplateResponse.java @@ -0,0 +1,71 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import java.util.*; +import com.groupdocs.sdk.model.TemplateField; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class CreateQuestionnaireTemplateResponse { + private List result = new ArrayList(); + private String status = null; + private String error_message = null; + private Long composedOn = null; + public List getResult() { + return result; + } + public void setResult(List result) { + this.result = result; + } + + public String getStatus() { + return status; + } + public void setStatus(String status) { + this.status = status; + } + + public String getError_message() { + return error_message; + } + public void setError_message(String error_message) { + this.error_message = error_message; + } + + public Long getComposedOn() { + return composedOn; + } + public void setComposedOn(Long composedOn) { + this.composedOn = composedOn; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class CreateQuestionnaireTemplateResponse {\n"); + sb.append(" result: ").append(result).append("\n"); + sb.append(" status: ").append(status).append("\n"); + sb.append(" error_message: ").append(error_message).append("\n"); + sb.append(" composedOn: ").append(composedOn).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteAccountUserResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteAccountUserResult.java index aaf60b0..766d793 100644 --- a/src/main/java/com/groupdocs/sdk/model/DeleteAccountUserResult.java +++ b/src/main/java/com/groupdocs/sdk/model/DeleteAccountUserResult.java @@ -22,13 +22,13 @@ * */ public class DeleteAccountUserResult { - private Double id = null; + private Long id = null; private String guid = null; private String primary_email = null; - public Double getId() { + public Long getId() { return id; } - public void setId(Double id) { + public void setId(Long id) { this.id = id; } diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResponse.java b/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResponse.java new file mode 100644 index 0000000..4772ef4 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResponse.java @@ -0,0 +1,70 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.DeleteDatasourceListResult; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class DeleteDatasourceListResponse { + private DeleteDatasourceListResult result = null; + private String status = null; + private String error_message = null; + private Long composedOn = null; + public DeleteDatasourceListResult getResult() { + return result; + } + public void setResult(DeleteDatasourceListResult result) { + this.result = result; + } + + public String getStatus() { + return status; + } + public void setStatus(String status) { + this.status = status; + } + + public String getError_message() { + return error_message; + } + public void setError_message(String error_message) { + this.error_message = error_message; + } + + public Long getComposedOn() { + return composedOn; + } + public void setComposedOn(Long composedOn) { + this.composedOn = composedOn; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DeleteDatasourceListResponse {\n"); + sb.append(" result: ").append(result).append("\n"); + sb.append(" status: ").append(status).append("\n"); + sb.append(" error_message: ").append(error_message).append("\n"); + sb.append(" composedOn: ").append(composedOn).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResult.java new file mode 100644 index 0000000..469f35c --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResult.java @@ -0,0 +1,52 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import java.util.*; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class DeleteDatasourceListResult { + private List deletedItems = new ArrayList(); + private List errors = new ArrayList(); + public List getDeletedItems() { + return deletedItems; + } + public void setDeletedItems(List deletedItems) { + this.deletedItems = deletedItems; + } + + public List getErrors() { + return errors; + } + public void setErrors(List errors) { + this.errors = errors; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DeleteDatasourceListResult {\n"); + sb.append(" deletedItems: ").append(deletedItems).append("\n"); + sb.append(" errors: ").append(errors).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsReponse.java b/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsReponse.java new file mode 100644 index 0000000..8011ec8 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsReponse.java @@ -0,0 +1,70 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.DeleteDocumentAnnotationsResult; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class DeleteDocumentAnnotationsReponse { + private DeleteDocumentAnnotationsResult result = null; + private String status = null; + private String error_message = null; + private Long composedOn = null; + public DeleteDocumentAnnotationsResult getResult() { + return result; + } + public void setResult(DeleteDocumentAnnotationsResult result) { + this.result = result; + } + + public String getStatus() { + return status; + } + public void setStatus(String status) { + this.status = status; + } + + public String getError_message() { + return error_message; + } + public void setError_message(String error_message) { + this.error_message = error_message; + } + + public Long getComposedOn() { + return composedOn; + } + public void setComposedOn(Long composedOn) { + this.composedOn = composedOn; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DeleteDocumentAnnotationsReponse {\n"); + sb.append(" result: ").append(result).append("\n"); + sb.append(" status: ").append(status).append("\n"); + sb.append(" error_message: ").append(error_message).append("\n"); + sb.append(" composedOn: ").append(composedOn).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsResult.java new file mode 100644 index 0000000..893e7aa --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsResult.java @@ -0,0 +1,51 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class DeleteDocumentAnnotationsResult { + private Double id = null; + private String guid = null; + public Double getId() { + return id; + } + public void setId(Double id) { + this.id = id; + } + + public String getGuid() { + return guid; + } + public void setGuid(String guid) { + this.guid = guid; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DeleteDocumentAnnotationsResult {\n"); + sb.append(" id: ").append(id).append("\n"); + sb.append(" guid: ").append(guid).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResponse.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResponse.java new file mode 100644 index 0000000..d6c44a0 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResponse.java @@ -0,0 +1,70 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.DeleteQuestionnaireCollectorListResult; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class DeleteQuestionnaireCollectorListResponse { + private DeleteQuestionnaireCollectorListResult result = null; + private String status = null; + private String error_message = null; + private Long composedOn = null; + public DeleteQuestionnaireCollectorListResult getResult() { + return result; + } + public void setResult(DeleteQuestionnaireCollectorListResult result) { + this.result = result; + } + + public String getStatus() { + return status; + } + public void setStatus(String status) { + this.status = status; + } + + public String getError_message() { + return error_message; + } + public void setError_message(String error_message) { + this.error_message = error_message; + } + + public Long getComposedOn() { + return composedOn; + } + public void setComposedOn(Long composedOn) { + this.composedOn = composedOn; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DeleteQuestionnaireCollectorListResponse {\n"); + sb.append(" result: ").append(result).append("\n"); + sb.append(" status: ").append(status).append("\n"); + sb.append(" error_message: ").append(error_message).append("\n"); + sb.append(" composedOn: ").append(composedOn).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResult.java new file mode 100644 index 0000000..1bab5fb --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResult.java @@ -0,0 +1,52 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import java.util.*; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class DeleteQuestionnaireCollectorListResult { + private List deletedItems = new ArrayList(); + private List errors = new ArrayList(); + public List getDeletedItems() { + return deletedItems; + } + public void setDeletedItems(List deletedItems) { + this.deletedItems = deletedItems; + } + + public List getErrors() { + return errors; + } + public void setErrors(List errors) { + this.errors = errors; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DeleteQuestionnaireCollectorListResult {\n"); + sb.append(" deletedItems: ").append(deletedItems).append("\n"); + sb.append(" errors: ").append(errors).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResponse.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResponse.java new file mode 100644 index 0000000..c40ff26 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResponse.java @@ -0,0 +1,70 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.DeleteQuestionnaireExecutionListResult; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class DeleteQuestionnaireExecutionListResponse { + private DeleteQuestionnaireExecutionListResult result = null; + private String status = null; + private String error_message = null; + private Long composedOn = null; + public DeleteQuestionnaireExecutionListResult getResult() { + return result; + } + public void setResult(DeleteQuestionnaireExecutionListResult result) { + this.result = result; + } + + public String getStatus() { + return status; + } + public void setStatus(String status) { + this.status = status; + } + + public String getError_message() { + return error_message; + } + public void setError_message(String error_message) { + this.error_message = error_message; + } + + public Long getComposedOn() { + return composedOn; + } + public void setComposedOn(Long composedOn) { + this.composedOn = composedOn; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DeleteQuestionnaireExecutionListResponse {\n"); + sb.append(" result: ").append(result).append("\n"); + sb.append(" status: ").append(status).append("\n"); + sb.append(" error_message: ").append(error_message).append("\n"); + sb.append(" composedOn: ").append(composedOn).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResult.java new file mode 100644 index 0000000..17cb2d3 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResult.java @@ -0,0 +1,52 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import java.util.*; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class DeleteQuestionnaireExecutionListResult { + private List deletedItems = new ArrayList(); + private List execution_id = new ArrayList(); + public List getDeletedItems() { + return deletedItems; + } + public void setDeletedItems(List deletedItems) { + this.deletedItems = deletedItems; + } + + public List getExecution_id() { + return execution_id; + } + public void setExecution_id(List execution_id) { + this.execution_id = execution_id; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DeleteQuestionnaireExecutionListResult {\n"); + sb.append(" deletedItems: ").append(deletedItems).append("\n"); + sb.append(" execution_id: ").append(execution_id).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResponse.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResponse.java new file mode 100644 index 0000000..fbf79e2 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResponse.java @@ -0,0 +1,70 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.DeleteQuestionnaireListResult; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class DeleteQuestionnaireListResponse { + private DeleteQuestionnaireListResult result = null; + private String status = null; + private String error_message = null; + private Long composedOn = null; + public DeleteQuestionnaireListResult getResult() { + return result; + } + public void setResult(DeleteQuestionnaireListResult result) { + this.result = result; + } + + public String getStatus() { + return status; + } + public void setStatus(String status) { + this.status = status; + } + + public String getError_message() { + return error_message; + } + public void setError_message(String error_message) { + this.error_message = error_message; + } + + public Long getComposedOn() { + return composedOn; + } + public void setComposedOn(Long composedOn) { + this.composedOn = composedOn; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DeleteQuestionnaireListResponse {\n"); + sb.append(" result: ").append(result).append("\n"); + sb.append(" status: ").append(status).append("\n"); + sb.append(" error_message: ").append(error_message).append("\n"); + sb.append(" composedOn: ").append(composedOn).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResult.java new file mode 100644 index 0000000..996f65d --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResult.java @@ -0,0 +1,52 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import java.util.*; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class DeleteQuestionnaireListResult { + private List questionnaires = new ArrayList(); + private List errors = new ArrayList(); + public List getQuestionnaires() { + return questionnaires; + } + public void setQuestionnaires(List questionnaires) { + this.questionnaires = questionnaires; + } + + public List getErrors() { + return errors; + } + public void setErrors(List errors) { + this.errors = errors; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DeleteQuestionnaireListResult {\n"); + sb.append(" questionnaires: ").append(questionnaires).append("\n"); + sb.append(" errors: ").append(errors).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteReplyResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteReplyResult.java index a594302..a4330d9 100644 --- a/src/main/java/com/groupdocs/sdk/model/DeleteReplyResult.java +++ b/src/main/java/com/groupdocs/sdk/model/DeleteReplyResult.java @@ -27,6 +27,7 @@ public class DeleteReplyResult { private String replyGuid = null; private String annotationGuid = null; private List replies = new ArrayList(); + private Long serverTime = null; public String getReplyGuid() { return replyGuid; } @@ -48,6 +49,13 @@ public void setReplies(List replies) { this.replies = replies; } + public Long getServerTime() { + return serverTime; + } + public void setServerTime(Long serverTime) { + this.serverTime = serverTime; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -55,6 +63,7 @@ public String toString() { sb.append(" replyGuid: ").append(replyGuid).append("\n"); sb.append(" annotationGuid: ").append(annotationGuid).append("\n"); sb.append(" replies: ").append(replies).append("\n"); + sb.append(" serverTime: ").append(serverTime).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/DocumentHyperlink.java b/src/main/java/com/groupdocs/sdk/model/DocumentHyperlink.java new file mode 100644 index 0000000..30e7f33 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/DocumentHyperlink.java @@ -0,0 +1,70 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.Rectangle; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class DocumentHyperlink { + private Integer page = null; + private Integer toPage = null; + private String url = null; + private Rectangle rect = null; + public Integer getPage() { + return page; + } + public void setPage(Integer page) { + this.page = page; + } + + public Integer getToPage() { + return toPage; + } + public void setToPage(Integer toPage) { + this.toPage = toPage; + } + + public String getUrl() { + return url; + } + public void setUrl(String url) { + this.url = url; + } + + public Rectangle getRect() { + return rect; + } + public void setRect(Rectangle rect) { + this.rect = rect; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DocumentHyperlink {\n"); + sb.append(" page: ").append(page).append("\n"); + sb.append(" toPage: ").append(toPage).append("\n"); + sb.append(" url: ").append(url).append("\n"); + sb.append(" rect: ").append(rect).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/GetDocumentQuestionnairesResult.java b/src/main/java/com/groupdocs/sdk/model/GetDocumentQuestionnairesResult.java index 6ca96de..920b8ce 100644 --- a/src/main/java/com/groupdocs/sdk/model/GetDocumentQuestionnairesResult.java +++ b/src/main/java/com/groupdocs/sdk/model/GetDocumentQuestionnairesResult.java @@ -26,6 +26,7 @@ public class GetDocumentQuestionnairesResult { private Double document_id = null; private List questionnaires = new ArrayList(); + private Integer totalCount = null; public Double getDocument_id() { return document_id; } @@ -40,12 +41,20 @@ public void setQuestionnaires(List questionnaires) { this.questionnaires = questionnaires; } + public Integer getTotalCount() { + return totalCount; + } + public void setTotalCount(Integer totalCount) { + this.totalCount = totalCount; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class GetDocumentQuestionnairesResult {\n"); sb.append(" document_id: ").append(document_id).append("\n"); sb.append(" questionnaires: ").append(questionnaires).append("\n"); + sb.append(" totalCount: ").append(totalCount).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResponse.java b/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResponse.java new file mode 100644 index 0000000..bda6493 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResponse.java @@ -0,0 +1,70 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.GetHyperlinksResult; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class GetHyperlinksResponse { + private GetHyperlinksResult result = null; + private String status = null; + private String error_message = null; + private Long composedOn = null; + public GetHyperlinksResult getResult() { + return result; + } + public void setResult(GetHyperlinksResult result) { + this.result = result; + } + + public String getStatus() { + return status; + } + public void setStatus(String status) { + this.status = status; + } + + public String getError_message() { + return error_message; + } + public void setError_message(String error_message) { + this.error_message = error_message; + } + + public Long getComposedOn() { + return composedOn; + } + public void setComposedOn(Long composedOn) { + this.composedOn = composedOn; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class GetHyperlinksResponse {\n"); + sb.append(" result: ").append(result).append("\n"); + sb.append(" status: ").append(status).append("\n"); + sb.append(" error_message: ").append(error_message).append("\n"); + sb.append(" composedOn: ").append(composedOn).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResult.java b/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResult.java new file mode 100644 index 0000000..d662f95 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResult.java @@ -0,0 +1,53 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import java.util.*; +import com.groupdocs.sdk.model.DocumentHyperlink; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class GetHyperlinksResult { + private Double document_id = null; + private List links = new ArrayList(); + public Double getDocument_id() { + return document_id; + } + public void setDocument_id(Double document_id) { + this.document_id = document_id; + } + + public List getLinks() { + return links; + } + public void setLinks(List links) { + this.links = links; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class GetHyperlinksResult {\n"); + sb.append(" document_id: ").append(document_id).append("\n"); + sb.append(" links: ").append(links).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResponse.java b/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResponse.java new file mode 100644 index 0000000..340a134 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResponse.java @@ -0,0 +1,70 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.GetQuestionnaireDocumentResult; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class GetQuestionnaireDocumentResponse { + private GetQuestionnaireDocumentResult result = null; + private String status = null; + private String error_message = null; + private Long composedOn = null; + public GetQuestionnaireDocumentResult getResult() { + return result; + } + public void setResult(GetQuestionnaireDocumentResult result) { + this.result = result; + } + + public String getStatus() { + return status; + } + public void setStatus(String status) { + this.status = status; + } + + public String getError_message() { + return error_message; + } + public void setError_message(String error_message) { + this.error_message = error_message; + } + + public Long getComposedOn() { + return composedOn; + } + public void setComposedOn(Long composedOn) { + this.composedOn = composedOn; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class GetQuestionnaireDocumentResponse {\n"); + sb.append(" result: ").append(result).append("\n"); + sb.append(" status: ").append(status).append("\n"); + sb.append(" error_message: ").append(error_message).append("\n"); + sb.append(" composedOn: ").append(composedOn).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResult.java b/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResult.java new file mode 100644 index 0000000..c10ca28 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResult.java @@ -0,0 +1,61 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.QuestionnaireInfo; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class GetQuestionnaireDocumentResult { + private Double document_id = null; + private String document_guid = null; + private QuestionnaireInfo questionnaire = null; + public Double getDocument_id() { + return document_id; + } + public void setDocument_id(Double document_id) { + this.document_id = document_id; + } + + public String getDocument_guid() { + return document_guid; + } + public void setDocument_guid(String document_guid) { + this.document_guid = document_guid; + } + + public QuestionnaireInfo getQuestionnaire() { + return questionnaire; + } + public void setQuestionnaire(QuestionnaireInfo questionnaire) { + this.questionnaire = questionnaire; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class GetQuestionnaireDocumentResult {\n"); + sb.append(" document_id: ").append(document_id).append("\n"); + sb.append(" document_guid: ").append(document_guid).append("\n"); + sb.append(" questionnaire: ").append(questionnaire).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/GetQuestionnairesResult.java b/src/main/java/com/groupdocs/sdk/model/GetQuestionnairesResult.java index 13ce838..52d9590 100644 --- a/src/main/java/com/groupdocs/sdk/model/GetQuestionnairesResult.java +++ b/src/main/java/com/groupdocs/sdk/model/GetQuestionnairesResult.java @@ -25,6 +25,7 @@ */ public class GetQuestionnairesResult { private List questionnaires = new ArrayList(); + private Integer totalCount = null; public List getQuestionnaires() { return questionnaires; } @@ -32,11 +33,19 @@ public void setQuestionnaires(List questionnaires) { this.questionnaires = questionnaires; } + public Integer getTotalCount() { + return totalCount; + } + public void setTotalCount(Integer totalCount) { + this.totalCount = totalCount; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class GetQuestionnairesResult {\n"); sb.append(" questionnaires: ").append(questionnaires).append("\n"); + sb.append(" totalCount: ").append(totalCount).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/GetSharedLinkAccessRightsResult.java b/src/main/java/com/groupdocs/sdk/model/GetSharedLinkAccessRightsResult.java index 5f36e32..0b5242c 100644 --- a/src/main/java/com/groupdocs/sdk/model/GetSharedLinkAccessRightsResult.java +++ b/src/main/java/com/groupdocs/sdk/model/GetSharedLinkAccessRightsResult.java @@ -22,11 +22,11 @@ * */ public class GetSharedLinkAccessRightsResult { - private Integer accessRights = null; - public Integer getAccessRights() { + private String accessRights = null; + public String getAccessRights() { return accessRights; } - public void setAccessRights(Integer accessRights) { + public void setAccessRights(String accessRights) { this.accessRights = accessRights; } diff --git a/src/main/java/com/groupdocs/sdk/model/MarkerPosition.java b/src/main/java/com/groupdocs/sdk/model/MarkerPosition.java new file mode 100644 index 0000000..53382de --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/MarkerPosition.java @@ -0,0 +1,52 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.Point; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class MarkerPosition { + private Point position = null; + private Integer page = null; + public Point getPosition() { + return position; + } + public void setPosition(Point position) { + this.position = position; + } + + public Integer getPage() { + return page; + } + public void setPage(Integer page) { + this.page = page; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class MarkerPosition {\n"); + sb.append(" position: ").append(position).append("\n"); + sb.append(" page: ").append(page).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/PublicSignatureSignDocumentSignerSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/PublicSignatureSignDocumentSignerSettingsInfo.java index dd9ca4d..99946c9 100644 --- a/src/main/java/com/groupdocs/sdk/model/PublicSignatureSignDocumentSignerSettingsInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/PublicSignatureSignDocumentSignerSettingsInfo.java @@ -15,6 +15,8 @@ */ package com.groupdocs.sdk.model; +import java.util.*; +import com.groupdocs.sdk.model.SignatureDocumentFieldInfo; /** * *

@@ -31,6 +33,7 @@ public class PublicSignatureSignDocumentSignerSettingsInfo { private Double height = null; private String placeSignatureOn = null; private String data = null; + private List fields = new ArrayList(); public String getWaterMarkText() { return waterMarkText; } @@ -94,6 +97,13 @@ public void setData(String data) { this.data = data; } + public List getFields() { + return fields; + } + public void setFields(List fields) { + this.fields = fields; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -107,6 +117,7 @@ public String toString() { sb.append(" height: ").append(height).append("\n"); sb.append(" placeSignatureOn: ").append(placeSignatureOn).append("\n"); sb.append(" data: ").append(data).append("\n"); + sb.append(" fields: ").append(fields).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/QuestionInfo.java b/src/main/java/com/groupdocs/sdk/model/QuestionInfo.java index 86afe02..37a8f5b 100644 --- a/src/main/java/com/groupdocs/sdk/model/QuestionInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/QuestionInfo.java @@ -17,6 +17,7 @@ import java.util.*; import com.groupdocs.sdk.model.ConditionInfo; +import com.groupdocs.sdk.model.Rectangle; import com.groupdocs.sdk.model.AnswerInfo; /** * @@ -33,6 +34,9 @@ public class QuestionInfo { private String type = null; private List answers = new ArrayList(); private List conditions = new ArrayList(); + private List acceptableValues = new ArrayList(); + private Integer max_length = null; + private Rectangle rect = null; public String getField() { return field; } @@ -89,6 +93,27 @@ public void setConditions(List conditions) { this.conditions = conditions; } + public List getAcceptableValues() { + return acceptableValues; + } + public void setAcceptableValues(List acceptableValues) { + this.acceptableValues = acceptableValues; + } + + public Integer getMax_length() { + return max_length; + } + public void setMax_length(Integer max_length) { + this.max_length = max_length; + } + + public Rectangle getRect() { + return rect; + } + public void setRect(Rectangle rect) { + this.rect = rect; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -101,6 +126,9 @@ public String toString() { sb.append(" type: ").append(type).append("\n"); sb.append(" answers: ").append(answers).append("\n"); sb.append(" conditions: ").append(conditions).append("\n"); + sb.append(" acceptableValues: ").append(acceptableValues).append("\n"); + sb.append(" max_length: ").append(max_length).append("\n"); + sb.append(" rect: ").append(rect).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/ReviewerInfo.java b/src/main/java/com/groupdocs/sdk/model/ReviewerInfo.java index 9705fe4..b757404 100644 --- a/src/main/java/com/groupdocs/sdk/model/ReviewerInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/ReviewerInfo.java @@ -15,6 +15,7 @@ */ package com.groupdocs.sdk.model; +import java.util.*; /** * *

@@ -27,9 +28,10 @@ public class ReviewerInfo { private String primary_email = null; private String firstName = null; private String lastName = null; - private Integer access_rights = null; + private String access_rights = null; private Integer color = null; private String customEmailMessage = null; + private List avatar = new ArrayList(); public Double getId() { return id; } @@ -65,10 +67,10 @@ public void setLastName(String lastName) { this.lastName = lastName; } - public Integer getAccess_rights() { + public String getAccess_rights() { return access_rights; } - public void setAccess_rights(Integer access_rights) { + public void setAccess_rights(String access_rights) { this.access_rights = access_rights; } @@ -86,6 +88,13 @@ public void setCustomEmailMessage(String customEmailMessage) { this.customEmailMessage = customEmailMessage; } + public List getAvatar() { + return avatar; + } + public void setAvatar(List avatar) { + this.avatar = avatar; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -98,6 +107,7 @@ public String toString() { sb.append(" access_rights: ").append(access_rights).append("\n"); sb.append(" color: ").append(color).append("\n"); sb.append(" customEmailMessage: ").append(customEmailMessage).append("\n"); + sb.append(" avatar: ").append(avatar).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResponse.java b/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResponse.java new file mode 100644 index 0000000..f74ff23 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResponse.java @@ -0,0 +1,70 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import com.groupdocs.sdk.model.SignatureDocumentFieldsResult; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class SignatureDocumentFieldsResponse { + private SignatureDocumentFieldsResult result = null; + private String status = null; + private String error_message = null; + private Long composedOn = null; + public SignatureDocumentFieldsResult getResult() { + return result; + } + public void setResult(SignatureDocumentFieldsResult result) { + this.result = result; + } + + public String getStatus() { + return status; + } + public void setStatus(String status) { + this.status = status; + } + + public String getError_message() { + return error_message; + } + public void setError_message(String error_message) { + this.error_message = error_message; + } + + public Long getComposedOn() { + return composedOn; + } + public void setComposedOn(Long composedOn) { + this.composedOn = composedOn; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class SignatureDocumentFieldsResponse {\n"); + sb.append(" result: ").append(result).append("\n"); + sb.append(" status: ").append(status).append("\n"); + sb.append(" error_message: ").append(error_message).append("\n"); + sb.append(" composedOn: ").append(composedOn).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResult.java b/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResult.java new file mode 100644 index 0000000..75feabe --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResult.java @@ -0,0 +1,53 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +import java.util.*; +import com.groupdocs.sdk.model.SignatureDocumentFieldInfo; +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class SignatureDocumentFieldsResult { + private String documentId = null; + private List fields = new ArrayList(); + public String getDocumentId() { + return documentId; + } + public void setDocumentId(String documentId) { + this.documentId = documentId; + } + + public List getFields() { + return fields; + } + public void setFields(List fields) { + this.fields = fields; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class SignatureDocumentFieldsResult {\n"); + sb.append(" documentId: ").append(documentId).append("\n"); + sb.append(" fields: ").append(fields).append("\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldInfo.java index bc70693..c859307 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldInfo.java @@ -41,6 +41,8 @@ public class SignatureEnvelopeFieldInfo { private String defaultValue = null; private String tooltip = null; private String guidanceText = null; + private String groupName = null; + private String settings = null; public String getId() { return id; } @@ -160,6 +162,20 @@ public void setGuidanceText(String guidanceText) { this.guidanceText = guidanceText; } + public String getGroupName() { + return groupName; + } + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + public String getSettings() { + return settings; + } + public void setSettings(String settings) { + this.settings = settings; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -181,6 +197,8 @@ public String toString() { sb.append(" defaultValue: ").append(defaultValue).append("\n"); sb.append(" tooltip: ").append(tooltip).append("\n"); sb.append(" guidanceText: ").append(guidanceText).append("\n"); + sb.append(" groupName: ").append(groupName).append("\n"); + sb.append(" settings: ").append(settings).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationInfo.java index d829c19..f558434 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationInfo.java @@ -37,6 +37,7 @@ public class SignatureEnvelopeFieldLocationInfo { private Boolean fontItalic = null; private Boolean fontUnderline = null; private Integer align = null; + private Integer order = null; public String getId() { return id; } @@ -142,6 +143,13 @@ public void setAlign(Integer align) { this.align = align; } + public Integer getOrder() { + return order; + } + public void setOrder(Integer order) { + this.order = order; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -161,6 +169,7 @@ public String toString() { sb.append(" fontItalic: ").append(fontItalic).append("\n"); sb.append(" fontUnderline: ").append(fontUnderline).append("\n"); sb.append(" align: ").append(align).append("\n"); + sb.append(" order: ").append(order).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationSettingsInfo.java index 5e02a52..eed764f 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationSettingsInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationSettingsInfo.java @@ -35,6 +35,8 @@ public class SignatureEnvelopeFieldLocationSettingsInfo { private Boolean fontUnderline = null; private Boolean forceNewField = null; private Integer align = null; + private Integer pageWidth = null; + private Integer pageHeight = null; public Integer getPage() { return page; } @@ -126,6 +128,20 @@ public void setAlign(Integer align) { this.align = align; } + public Integer getPageWidth() { + return pageWidth; + } + public void setPageWidth(Integer pageWidth) { + this.pageWidth = pageWidth; + } + + public Integer getPageHeight() { + return pageHeight; + } + public void setPageHeight(Integer pageHeight) { + this.pageHeight = pageHeight; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -143,6 +159,8 @@ public String toString() { sb.append(" fontUnderline: ").append(fontUnderline).append("\n"); sb.append(" forceNewField: ").append(forceNewField).append("\n"); sb.append(" align: ").append(align).append("\n"); + sb.append(" pageWidth: ").append(pageWidth).append("\n"); + sb.append(" pageHeight: ").append(pageHeight).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldSettingsInfo.java index 4e020d5..4896ef0 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldSettingsInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldSettingsInfo.java @@ -43,6 +43,11 @@ public class SignatureEnvelopeFieldSettingsInfo { private String tooltip = null; private Integer align = null; private String guidanceText = null; + private String groupName = null; + private Integer fieldType = null; + private String settings = null; + private Integer pageWidth = null; + private Integer pageHeight = null; public String getName() { return name; } @@ -190,6 +195,41 @@ public void setGuidanceText(String guidanceText) { this.guidanceText = guidanceText; } + public String getGroupName() { + return groupName; + } + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + public Integer getFieldType() { + return fieldType; + } + public void setFieldType(Integer fieldType) { + this.fieldType = fieldType; + } + + public String getSettings() { + return settings; + } + public void setSettings(String settings) { + this.settings = settings; + } + + public Integer getPageWidth() { + return pageWidth; + } + public void setPageWidth(Integer pageWidth) { + this.pageWidth = pageWidth; + } + + public Integer getPageHeight() { + return pageHeight; + } + public void setPageHeight(Integer pageHeight) { + this.pageHeight = pageHeight; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -215,6 +255,11 @@ public String toString() { sb.append(" tooltip: ").append(tooltip).append("\n"); sb.append(" align: ").append(align).append("\n"); sb.append(" guidanceText: ").append(guidanceText).append("\n"); + sb.append(" groupName: ").append(groupName).append("\n"); + sb.append(" fieldType: ").append(fieldType).append("\n"); + sb.append(" settings: ").append(settings).append("\n"); + sb.append(" pageWidth: ").append(pageWidth).append("\n"); + sb.append(" pageHeight: ").append(pageHeight).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldInfo.java index 8ac2904..9157f3e 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldInfo.java @@ -38,6 +38,8 @@ public class SignatureFormFieldInfo { private String defaultValue = null; private String tooltip = null; private String guidanceText = null; + private String groupName = null; + private String settings = null; public String getId() { return id; } @@ -136,6 +138,20 @@ public void setGuidanceText(String guidanceText) { this.guidanceText = guidanceText; } + public String getGroupName() { + return groupName; + } + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + public String getSettings() { + return settings; + } + public void setSettings(String settings) { + this.settings = settings; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -154,6 +170,8 @@ public String toString() { sb.append(" defaultValue: ").append(defaultValue).append("\n"); sb.append(" tooltip: ").append(tooltip).append("\n"); sb.append(" guidanceText: ").append(guidanceText).append("\n"); + sb.append(" groupName: ").append(groupName).append("\n"); + sb.append(" settings: ").append(settings).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationInfo.java index 25791d6..66ce460 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationInfo.java @@ -37,6 +37,7 @@ public class SignatureFormFieldLocationInfo { private Boolean fontItalic = null; private Boolean fontUnderline = null; private Integer align = null; + private Integer order = null; public String getId() { return id; } @@ -142,6 +143,13 @@ public void setAlign(Integer align) { this.align = align; } + public Integer getOrder() { + return order; + } + public void setOrder(Integer order) { + this.order = order; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -161,6 +169,7 @@ public String toString() { sb.append(" fontItalic: ").append(fontItalic).append("\n"); sb.append(" fontUnderline: ").append(fontUnderline).append("\n"); sb.append(" align: ").append(align).append("\n"); + sb.append(" order: ").append(order).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationSettingsInfo.java index 304c1ad..3bf64a2 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationSettingsInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationSettingsInfo.java @@ -35,6 +35,8 @@ public class SignatureFormFieldLocationSettingsInfo { private Boolean fontUnderline = null; private Boolean forceNewField = null; private Integer align = null; + private Integer pageWidth = null; + private Integer pageHeight = null; public Integer getPage() { return page; } @@ -126,6 +128,20 @@ public void setAlign(Integer align) { this.align = align; } + public Integer getPageWidth() { + return pageWidth; + } + public void setPageWidth(Integer pageWidth) { + this.pageWidth = pageWidth; + } + + public Integer getPageHeight() { + return pageHeight; + } + public void setPageHeight(Integer pageHeight) { + this.pageHeight = pageHeight; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -143,6 +159,8 @@ public String toString() { sb.append(" fontUnderline: ").append(fontUnderline).append("\n"); sb.append(" forceNewField: ").append(forceNewField).append("\n"); sb.append(" align: ").append(align).append("\n"); + sb.append(" pageWidth: ").append(pageWidth).append("\n"); + sb.append(" pageHeight: ").append(pageHeight).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldSettingsInfo.java index 7cc6a61..0eb0702 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldSettingsInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldSettingsInfo.java @@ -43,6 +43,11 @@ public class SignatureFormFieldSettingsInfo { private String tooltip = null; private Integer align = null; private String guidanceText = null; + private String groupName = null; + private Integer fieldType = null; + private String settings = null; + private Integer pageWidth = null; + private Integer pageHeight = null; public String getName() { return name; } @@ -190,6 +195,41 @@ public void setGuidanceText(String guidanceText) { this.guidanceText = guidanceText; } + public String getGroupName() { + return groupName; + } + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + public Integer getFieldType() { + return fieldType; + } + public void setFieldType(Integer fieldType) { + this.fieldType = fieldType; + } + + public String getSettings() { + return settings; + } + public void setSettings(String settings) { + this.settings = settings; + } + + public Integer getPageWidth() { + return pageWidth; + } + public void setPageWidth(Integer pageWidth) { + this.pageWidth = pageWidth; + } + + public Integer getPageHeight() { + return pageHeight; + } + public void setPageHeight(Integer pageHeight) { + this.pageHeight = pageHeight; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -215,6 +255,11 @@ public String toString() { sb.append(" tooltip: ").append(tooltip).append("\n"); sb.append(" align: ").append(align).append("\n"); sb.append(" guidanceText: ").append(guidanceText).append("\n"); + sb.append(" groupName: ").append(groupName).append("\n"); + sb.append(" fieldType: ").append(fieldType).append("\n"); + sb.append(" settings: ").append(settings).append("\n"); + sb.append(" pageWidth: ").append(pageWidth).append("\n"); + sb.append(" pageHeight: ").append(pageHeight).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java index f01ccaf..d513cd5 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java @@ -40,6 +40,8 @@ public class SignatureFormInfo { private Double fieldsCount = null; private Boolean notifyOwnerOnSign = null; private Boolean attachSignedDocument = null; + private String notifyOtherOnSign = null; + private Boolean canParticipantPrintForm = null; public String getId() { return id; } @@ -159,6 +161,20 @@ public void setAttachSignedDocument(Boolean attachSignedDocument) { this.attachSignedDocument = attachSignedDocument; } + public String getNotifyOtherOnSign() { + return notifyOtherOnSign; + } + public void setNotifyOtherOnSign(String notifyOtherOnSign) { + this.notifyOtherOnSign = notifyOtherOnSign; + } + + public Boolean getCanParticipantPrintForm() { + return canParticipantPrintForm; + } + public void setCanParticipantPrintForm(Boolean canParticipantPrintForm) { + this.canParticipantPrintForm = canParticipantPrintForm; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -180,6 +196,8 @@ public String toString() { sb.append(" fieldsCount: ").append(fieldsCount).append("\n"); sb.append(" notifyOwnerOnSign: ").append(notifyOwnerOnSign).append("\n"); sb.append(" attachSignedDocument: ").append(attachSignedDocument).append("\n"); + sb.append(" notifyOtherOnSign: ").append(notifyOtherOnSign).append("\n"); + sb.append(" canParticipantPrintForm: ").append(canParticipantPrintForm).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java index 92497f0..9c1fbb6 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java @@ -29,6 +29,8 @@ public class SignatureFormSettingsInfo { private String waterMarkImage = null; private Boolean notifyOwnerOnSign = null; private Boolean attachSignedDocument = null; + private String notifyOtherOnSign = null; + private Boolean canParticipantPrintForm = null; public String getName() { return name; } @@ -78,6 +80,20 @@ public void setAttachSignedDocument(Boolean attachSignedDocument) { this.attachSignedDocument = attachSignedDocument; } + public String getNotifyOtherOnSign () { + return notifyOtherOnSign ; + } + public void setNotifyOtherOnSign (String notifyOtherOnSign ) { + this.notifyOtherOnSign = notifyOtherOnSign ; + } + + public Boolean getCanParticipantPrintForm() { + return canParticipantPrintForm; + } + public void setCanParticipantPrintForm(Boolean canParticipantPrintForm) { + this.canParticipantPrintForm = canParticipantPrintForm; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -89,6 +105,8 @@ public String toString() { sb.append(" waterMarkImage: ").append(waterMarkImage).append("\n"); sb.append(" notifyOwnerOnSign : ").append(notifyOwnerOnSign ).append("\n"); sb.append(" attachSignedDocument: ").append(attachSignedDocument).append("\n"); + sb.append(" notifyOtherOnSign : ").append(notifyOtherOnSign ).append("\n"); + sb.append(" canParticipantPrintForm: ").append(canParticipantPrintForm).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureSignDocumentSignerSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureSignDocumentSignerSettingsInfo.java index 9824d09..350609f 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureSignDocumentSignerSettingsInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureSignDocumentSignerSettingsInfo.java @@ -15,6 +15,8 @@ */ package com.groupdocs.sdk.model; +import java.util.*; +import com.groupdocs.sdk.model.SignatureFieldInfo; /** * *

@@ -29,6 +31,7 @@ public class SignatureSignDocumentSignerSettingsInfo { private Double height = null; private String placeSignatureOn = null; private String data = null; + private List fields = new ArrayList(); public String getName() { return name; } @@ -78,6 +81,13 @@ public void setData(String data) { this.data = data; } + public List getFields() { + return fields; + } + public void setFields(List fields) { + this.fields = fields; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -89,6 +99,7 @@ public String toString() { sb.append(" height: ").append(height).append("\n"); sb.append(" placeSignatureOn: ").append(placeSignatureOn).append("\n"); sb.append(" data: ").append(data).append("\n"); + sb.append(" fields: ").append(fields).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldInfo.java index 217ce51..ba6eb66 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldInfo.java @@ -38,6 +38,8 @@ public class SignatureTemplateFieldInfo { private String defaultValue = null; private String tooltip = null; private String guidanceText = null; + private String groupName = null; + private String settings = null; public String getId() { return id; } @@ -136,6 +138,20 @@ public void setGuidanceText(String guidanceText) { this.guidanceText = guidanceText; } + public String getGroupName() { + return groupName; + } + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + public String getSettings() { + return settings; + } + public void setSettings(String settings) { + this.settings = settings; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -154,6 +170,8 @@ public String toString() { sb.append(" defaultValue: ").append(defaultValue).append("\n"); sb.append(" tooltip: ").append(tooltip).append("\n"); sb.append(" guidanceText: ").append(guidanceText).append("\n"); + sb.append(" groupName: ").append(groupName).append("\n"); + sb.append(" settings: ").append(settings).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldLocationSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldLocationSettingsInfo.java index d2db01d..5215394 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldLocationSettingsInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldLocationSettingsInfo.java @@ -35,6 +35,8 @@ public class SignatureTemplateFieldLocationSettingsInfo { private Boolean fontUnderline = null; private Boolean forceNewField = null; private Integer align = null; + private Integer pageWidth = null; + private Integer pageHeight = null; public Integer getPage() { return page; } @@ -126,6 +128,20 @@ public void setAlign(Integer align) { this.align = align; } + public Integer getPageWidth() { + return pageWidth; + } + public void setPageWidth(Integer pageWidth) { + this.pageWidth = pageWidth; + } + + public Integer getPageHeight() { + return pageHeight; + } + public void setPageHeight(Integer pageHeight) { + this.pageHeight = pageHeight; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -143,6 +159,8 @@ public String toString() { sb.append(" fontUnderline: ").append(fontUnderline).append("\n"); sb.append(" forceNewField: ").append(forceNewField).append("\n"); sb.append(" align: ").append(align).append("\n"); + sb.append(" pageWidth: ").append(pageWidth).append("\n"); + sb.append(" pageHeight: ").append(pageHeight).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldSettingsInfo.java index a6ed674..670aa11 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldSettingsInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldSettingsInfo.java @@ -43,6 +43,11 @@ public class SignatureTemplateFieldSettingsInfo { private String tooltip = null; private Integer align = null; private String guidanceText = null; + private String groupName = null; + private Integer fieldType = null; + private String settings = null; + private Integer pageWidth = null; + private Integer pageHeight = null; public String getName() { return name; } @@ -190,6 +195,41 @@ public void setGuidanceText(String guidanceText) { this.guidanceText = guidanceText; } + public String getGroupName() { + return groupName; + } + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + public Integer getFieldType() { + return fieldType; + } + public void setFieldType(Integer fieldType) { + this.fieldType = fieldType; + } + + public String getSettings() { + return settings; + } + public void setSettings(String settings) { + this.settings = settings; + } + + public Integer getPageWidth() { + return pageWidth; + } + public void setPageWidth(Integer pageWidth) { + this.pageWidth = pageWidth; + } + + public Integer getPageHeight() { + return pageHeight; + } + public void setPageHeight(Integer pageHeight) { + this.pageHeight = pageHeight; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -215,6 +255,11 @@ public String toString() { sb.append(" tooltip: ").append(tooltip).append("\n"); sb.append(" align: ").append(align).append("\n"); sb.append(" guidanceText: ").append(guidanceText).append("\n"); + sb.append(" groupName: ").append(groupName).append("\n"); + sb.append(" fieldType: ").append(fieldType).append("\n"); + sb.append(" settings: ").append(settings).append("\n"); + sb.append(" pageWidth: ").append(pageWidth).append("\n"); + sb.append(" pageHeight: ").append(pageHeight).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/StorageInfoResult.java b/src/main/java/com/groupdocs/sdk/model/StorageInfoResult.java index b31c435..73cb98a 100644 --- a/src/main/java/com/groupdocs/sdk/model/StorageInfoResult.java +++ b/src/main/java/com/groupdocs/sdk/model/StorageInfoResult.java @@ -28,6 +28,7 @@ public class StorageInfoResult { private Integer avail_credits = null; private Integer total_documents = null; private Long avail_documents = null; + private Long maxViewingFileSize = null; public Long getTotal_space() { return total_space; } @@ -70,6 +71,13 @@ public void setAvail_documents(Long avail_documents) { this.avail_documents = avail_documents; } + public Long getMaxViewingFileSize() { + return maxViewingFileSize; + } + public void setMaxViewingFileSize(Long maxViewingFileSize) { + this.maxViewingFileSize = maxViewingFileSize; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -80,6 +88,7 @@ public String toString() { sb.append(" avail_credits: ").append(avail_credits).append("\n"); sb.append(" total_documents: ").append(total_documents).append("\n"); sb.append(" avail_documents: ").append(avail_documents).append("\n"); + sb.append(" maxViewingFileSize: ").append(maxViewingFileSize).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/StyleChangeInfo.java b/src/main/java/com/groupdocs/sdk/model/StyleChangeInfo.java new file mode 100644 index 0000000..6726a43 --- /dev/null +++ b/src/main/java/com/groupdocs/sdk/model/StyleChangeInfo.java @@ -0,0 +1,33 @@ +/** + * Copyright 2012 GroupDocs. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.groupdocs.sdk.model; + +/** + * + *

+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. + * + */ +public class StyleChangeInfo { + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class StyleChangeInfo {\n"); + sb.append("}\n"); + return sb.toString(); + } +} + diff --git a/src/main/java/com/groupdocs/sdk/model/TemplateField.java b/src/main/java/com/groupdocs/sdk/model/TemplateField.java index d063533..c443535 100644 --- a/src/main/java/com/groupdocs/sdk/model/TemplateField.java +++ b/src/main/java/com/groupdocs/sdk/model/TemplateField.java @@ -15,6 +15,7 @@ */ package com.groupdocs.sdk.model; +import java.util.*; import com.groupdocs.sdk.model.Rectangle; /** * @@ -27,6 +28,10 @@ public class TemplateField { private String name = null; private String type = null; private Rectangle rect = null; + private Integer maxlength = null; + private Boolean mandatory = null; + private String fieldtype = null; + private List acceptableValues = new ArrayList(); public Integer getPage() { return page; } @@ -55,6 +60,34 @@ public void setRect(Rectangle rect) { this.rect = rect; } + public Integer getMaxlength() { + return maxlength; + } + public void setMaxlength(Integer maxlength) { + this.maxlength = maxlength; + } + + public Boolean getMandatory() { + return mandatory; + } + public void setMandatory(Boolean mandatory) { + this.mandatory = mandatory; + } + + public String getFieldtype() { + return fieldtype; + } + public void setFieldtype(String fieldtype) { + this.fieldtype = fieldtype; + } + + public List getAcceptableValues() { + return acceptableValues; + } + public void setAcceptableValues(List acceptableValues) { + this.acceptableValues = acceptableValues; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -63,6 +96,10 @@ public String toString() { sb.append(" name: ").append(name).append("\n"); sb.append(" type: ").append(type).append("\n"); sb.append(" rect: ").append(rect).append("\n"); + sb.append(" maxlength: ").append(maxlength).append("\n"); + sb.append(" mandatory: ").append(mandatory).append("\n"); + sb.append(" fieldtype: ").append(fieldtype).append("\n"); + sb.append(" acceptableValues: ").append(acceptableValues).append("\n"); sb.append("}\n"); return sb.toString(); } diff --git a/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java b/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java index be870b4..f1e3919 100644 --- a/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java @@ -24,6 +24,10 @@ public class TemplateInfo { private String name = null; private Integer field_count = null; + private Long size = null; + private String fileType = null; + private Integer dependent_questionnaires_count = null; + private Long upload_time = null; private Double id = null; private String guid = null; public String getName() { @@ -40,6 +44,34 @@ public void setField_count(Integer field_count) { this.field_count = field_count; } + public Long getSize() { + return size; + } + public void setSize(Long size) { + this.size = size; + } + + public String getFileType() { + return fileType; + } + public void setFileType(String fileType) { + this.fileType = fileType; + } + + public Integer getDependent_questionnaires_count() { + return dependent_questionnaires_count; + } + public void setDependent_questionnaires_count(Integer dependent_questionnaires_count) { + this.dependent_questionnaires_count = dependent_questionnaires_count; + } + + public Long getUpload_time() { + return upload_time; + } + public void setUpload_time(Long upload_time) { + this.upload_time = upload_time; + } + public Double getId() { return id; } @@ -60,6 +92,10 @@ public String toString() { sb.append("class TemplateInfo {\n"); sb.append(" name: ").append(name).append("\n"); sb.append(" field_count: ").append(field_count).append("\n"); + sb.append(" size: ").append(size).append("\n"); + sb.append(" fileType: ").append(fileType).append("\n"); + sb.append(" dependent_questionnaires_count: ").append(dependent_questionnaires_count).append("\n"); + sb.append(" upload_time: ").append(upload_time).append("\n"); sb.append(" id: ").append(id).append("\n"); sb.append(" guid: ").append(guid).append("\n"); sb.append("}\n"); diff --git a/src/main/java/com/groupdocs/sdk/model/UpdateAccountUserResult.java b/src/main/java/com/groupdocs/sdk/model/UpdateAccountUserResult.java index 56daed6..e7d1c70 100644 --- a/src/main/java/com/groupdocs/sdk/model/UpdateAccountUserResult.java +++ b/src/main/java/com/groupdocs/sdk/model/UpdateAccountUserResult.java @@ -22,13 +22,13 @@ * */ public class UpdateAccountUserResult { - private Double id = null; + private Long id = null; private String guid = null; private String primary_email = null; - public Double getId() { + public Long getId() { return id; } - public void setId(Double id) { + public void setId(Long id) { this.id = id; } diff --git a/src/main/java/com/groupdocs/sdk/model/UploadRequestResult.java b/src/main/java/com/groupdocs/sdk/model/UploadRequestResult.java index 307f1da..30eb7db 100644 --- a/src/main/java/com/groupdocs/sdk/model/UploadRequestResult.java +++ b/src/main/java/com/groupdocs/sdk/model/UploadRequestResult.java @@ -30,6 +30,7 @@ public class UploadRequestResult { private Integer version = null; private Double view_job_id = null; private String thumbnail = null; + private Long upload_time = null; private Double id = null; private String guid = null; public String getAdj_name() { @@ -88,6 +89,13 @@ public void setThumbnail(String thumbnail) { this.thumbnail = thumbnail; } + public Long getUpload_time() { + return upload_time; + } + public void setUpload_time(Long upload_time) { + this.upload_time = upload_time; + } + public Double getId() { return id; } @@ -114,6 +122,7 @@ public String toString() { sb.append(" version: ").append(version).append("\n"); sb.append(" view_job_id: ").append(view_job_id).append("\n"); sb.append(" thumbnail: ").append(thumbnail).append("\n"); + sb.append(" upload_time: ").append(upload_time).append("\n"); sb.append(" id: ").append(id).append("\n"); sb.append(" guid: ").append(guid).append("\n"); sb.append("}\n"); diff --git a/src/main/java/com/groupdocs/sdk/model/UserIdentity.java b/src/main/java/com/groupdocs/sdk/model/UserIdentity.java index 8319d4b..72c08da 100644 --- a/src/main/java/com/groupdocs/sdk/model/UserIdentity.java +++ b/src/main/java/com/groupdocs/sdk/model/UserIdentity.java @@ -22,13 +22,13 @@ * */ public class UserIdentity { - private Double id = null; + private Long id = null; private String guid = null; private String primary_email = null; - public Double getId() { + public Long getId() { return id; } - public void setId(Double id) { + public void setId(Long id) { this.id = id; } diff --git a/src/main/java/com/groupdocs/sdk/model/UserInfo.java b/src/main/java/com/groupdocs/sdk/model/UserInfo.java index 1b72ca6..46d5225 100644 --- a/src/main/java/com/groupdocs/sdk/model/UserInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/UserInfo.java @@ -39,6 +39,7 @@ public class UserInfo { private Boolean alerts_eanbled = null; private Boolean support_eanbled = null; private String support_email = null; + private String apps = null; private Boolean annotation_branded = null; private Boolean viewer_branded = null; private Boolean is_real_time_broadcast_enabled = null; @@ -85,7 +86,20 @@ public class UserInfo { private Integer webhook_notification_retries = null; private String webhook_notification_failed_recipients = null; private String signature_color = null; - private Double id = null; + private Boolean signature_save_field_changes_automatically = null; + private Boolean signature_use_custom_email_templates = null; + private String signature_envelope_sent_owner_template = null; + private String signature_envelope_sent_other_template = null; + private String signature_envelope_completed_template = null; + private String signature_envelope_signed_template = null; + private String signature_envelope_declined_template = null; + private String signature_envelope_failed_template = null; + private String signature_envelope_cancelled_template = null; + private String signature_envelope_expired_template = null; + private String signature_envelope_step_expired_template = null; + private String signature_envelope_recipient_reminder_template = null; + private String signature_form_signed_template = null; + private Long id = null; private String guid = null; private String primary_email = null; public String getNickname() { @@ -193,6 +207,13 @@ public void setSupport_email(String support_email) { this.support_email = support_email; } + public String getApps() { + return apps; + } + public void setApps(String apps) { + this.apps = apps; + } + public Boolean getAnnotation_branded() { return annotation_branded; } @@ -515,10 +536,101 @@ public void setSignature_color(String signature_color) { this.signature_color = signature_color; } - public Double getId() { + public Boolean getSignature_save_field_changes_automatically() { + return signature_save_field_changes_automatically; + } + public void setSignature_save_field_changes_automatically(Boolean signature_save_field_changes_automatically) { + this.signature_save_field_changes_automatically = signature_save_field_changes_automatically; + } + + public Boolean getSignature_use_custom_email_templates() { + return signature_use_custom_email_templates; + } + public void setSignature_use_custom_email_templates(Boolean signature_use_custom_email_templates) { + this.signature_use_custom_email_templates = signature_use_custom_email_templates; + } + + public String getSignature_envelope_sent_owner_template() { + return signature_envelope_sent_owner_template; + } + public void setSignature_envelope_sent_owner_template(String signature_envelope_sent_owner_template) { + this.signature_envelope_sent_owner_template = signature_envelope_sent_owner_template; + } + + public String getSignature_envelope_sent_other_template() { + return signature_envelope_sent_other_template; + } + public void setSignature_envelope_sent_other_template(String signature_envelope_sent_other_template) { + this.signature_envelope_sent_other_template = signature_envelope_sent_other_template; + } + + public String getSignature_envelope_completed_template() { + return signature_envelope_completed_template; + } + public void setSignature_envelope_completed_template(String signature_envelope_completed_template) { + this.signature_envelope_completed_template = signature_envelope_completed_template; + } + + public String getSignature_envelope_signed_template() { + return signature_envelope_signed_template; + } + public void setSignature_envelope_signed_template(String signature_envelope_signed_template) { + this.signature_envelope_signed_template = signature_envelope_signed_template; + } + + public String getSignature_envelope_declined_template() { + return signature_envelope_declined_template; + } + public void setSignature_envelope_declined_template(String signature_envelope_declined_template) { + this.signature_envelope_declined_template = signature_envelope_declined_template; + } + + public String getSignature_envelope_failed_template() { + return signature_envelope_failed_template; + } + public void setSignature_envelope_failed_template(String signature_envelope_failed_template) { + this.signature_envelope_failed_template = signature_envelope_failed_template; + } + + public String getSignature_envelope_cancelled_template() { + return signature_envelope_cancelled_template; + } + public void setSignature_envelope_cancelled_template(String signature_envelope_cancelled_template) { + this.signature_envelope_cancelled_template = signature_envelope_cancelled_template; + } + + public String getSignature_envelope_expired_template() { + return signature_envelope_expired_template; + } + public void setSignature_envelope_expired_template(String signature_envelope_expired_template) { + this.signature_envelope_expired_template = signature_envelope_expired_template; + } + + public String getSignature_envelope_step_expired_template() { + return signature_envelope_step_expired_template; + } + public void setSignature_envelope_step_expired_template(String signature_envelope_step_expired_template) { + this.signature_envelope_step_expired_template = signature_envelope_step_expired_template; + } + + public String getSignature_envelope_recipient_reminder_template() { + return signature_envelope_recipient_reminder_template; + } + public void setSignature_envelope_recipient_reminder_template(String signature_envelope_recipient_reminder_template) { + this.signature_envelope_recipient_reminder_template = signature_envelope_recipient_reminder_template; + } + + public String getSignature_form_signed_template() { + return signature_form_signed_template; + } + public void setSignature_form_signed_template(String signature_form_signed_template) { + this.signature_form_signed_template = signature_form_signed_template; + } + + public Long getId() { return id; } - public void setId(Double id) { + public void setId(Long id) { this.id = id; } @@ -555,6 +667,7 @@ public String toString() { sb.append(" alerts_eanbled: ").append(alerts_eanbled).append("\n"); sb.append(" support_eanbled: ").append(support_eanbled).append("\n"); sb.append(" support_email: ").append(support_email).append("\n"); + sb.append(" apps: ").append(apps).append("\n"); sb.append(" annotation_branded: ").append(annotation_branded).append("\n"); sb.append(" viewer_branded: ").append(viewer_branded).append("\n"); sb.append(" is_real_time_broadcast_enabled: ").append(is_real_time_broadcast_enabled).append("\n"); @@ -601,6 +714,19 @@ public String toString() { sb.append(" webhook_notification_retries: ").append(webhook_notification_retries).append("\n"); sb.append(" webhook_notification_failed_recipients: ").append(webhook_notification_failed_recipients).append("\n"); sb.append(" signature_color: ").append(signature_color).append("\n"); + sb.append(" signature_save_field_changes_automatically: ").append(signature_save_field_changes_automatically).append("\n"); + sb.append(" signature_use_custom_email_templates: ").append(signature_use_custom_email_templates).append("\n"); + sb.append(" signature_envelope_sent_owner_template: ").append(signature_envelope_sent_owner_template).append("\n"); + sb.append(" signature_envelope_sent_other_template: ").append(signature_envelope_sent_other_template).append("\n"); + sb.append(" signature_envelope_completed_template: ").append(signature_envelope_completed_template).append("\n"); + sb.append(" signature_envelope_signed_template: ").append(signature_envelope_signed_template).append("\n"); + sb.append(" signature_envelope_declined_template: ").append(signature_envelope_declined_template).append("\n"); + sb.append(" signature_envelope_failed_template: ").append(signature_envelope_failed_template).append("\n"); + sb.append(" signature_envelope_cancelled_template: ").append(signature_envelope_cancelled_template).append("\n"); + sb.append(" signature_envelope_expired_template: ").append(signature_envelope_expired_template).append("\n"); + sb.append(" signature_envelope_step_expired_template: ").append(signature_envelope_step_expired_template).append("\n"); + sb.append(" signature_envelope_recipient_reminder_template: ").append(signature_envelope_recipient_reminder_template).append("\n"); + sb.append(" signature_form_signed_template: ").append(signature_form_signed_template).append("\n"); sb.append(" id: ").append(id).append("\n"); sb.append(" guid: ").append(guid).append("\n"); sb.append(" primary_email: ").append(primary_email).append("\n"); diff --git a/src/main/java/com/groupdocs/sdk/model/ViewDocumentResult.java b/src/main/java/com/groupdocs/sdk/model/ViewDocumentResult.java index bfc1394..d2eabfc 100644 --- a/src/main/java/com/groupdocs/sdk/model/ViewDocumentResult.java +++ b/src/main/java/com/groupdocs/sdk/model/ViewDocumentResult.java @@ -35,6 +35,9 @@ public class ViewDocumentResult { private String pageHtml = null; private String pageCss = null; private String password = null; + private Boolean lic = null; + private String pdfPrintUrl = null; + private String htmlPrintUrl = null; private Double id = null; private String guid = null; public String getName() { @@ -114,6 +117,27 @@ public void setPassword(String password) { this.password = password; } + public Boolean getLic() { + return lic; + } + public void setLic(Boolean lic) { + this.lic = lic; + } + + public String getPdfPrintUrl() { + return pdfPrintUrl; + } + public void setPdfPrintUrl(String pdfPrintUrl) { + this.pdfPrintUrl = pdfPrintUrl; + } + + public String getHtmlPrintUrl() { + return htmlPrintUrl; + } + public void setHtmlPrintUrl(String htmlPrintUrl) { + this.htmlPrintUrl = htmlPrintUrl; + } + public Double getId() { return id; } @@ -143,6 +167,9 @@ public String toString() { sb.append(" pageHtml: ").append(pageHtml).append("\n"); sb.append(" pageCss: ").append(pageCss).append("\n"); sb.append(" password: ").append(password).append("\n"); + sb.append(" lic: ").append(lic).append("\n"); + sb.append(" pdfPrintUrl: ").append(pdfPrintUrl).append("\n"); + sb.append(" htmlPrintUrl: ").append(htmlPrintUrl).append("\n"); sb.append(" id: ").append(id).append("\n"); sb.append(" guid: ").append(guid).append("\n"); sb.append("}\n"); diff --git a/src/test/java/com/groupdocs/sdk/api/AbstractUnitTest.java b/src/test/java/com/groupdocs/sdk/api/AbstractUnitTest.java index 85a9ecd..c6015b8 100644 --- a/src/test/java/com/groupdocs/sdk/api/AbstractUnitTest.java +++ b/src/test/java/com/groupdocs/sdk/api/AbstractUnitTest.java @@ -46,7 +46,7 @@ import com.wordnik.swagger.core.util.JsonUtil; public abstract class AbstractUnitTest { - public static ObjectMapper jsonMapper = JsonUtil.getJsonMapper(); + public static ObjectMapper jsonMapper = JsonUtil.mapper(); protected static String userId; private static final Boolean enableLogging; private static final SimpleDateFormat dateFormat = new SimpleDateFormat(ApiInvoker.DATE_FORMAT); diff --git a/src/test/java/com/groupdocs/sdk/api/AntApiTest.java b/src/test/java/com/groupdocs/sdk/api/AntApiTest.java index fab604f..7fa66e9 100644 --- a/src/test/java/com/groupdocs/sdk/api/AntApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/AntApiTest.java @@ -37,11 +37,14 @@ import com.groupdocs.sdk.common.ApiException; import com.groupdocs.sdk.model.AddCollaboratorResponse; +import com.groupdocs.sdk.model.DeleteDocumentAnnotationsReponse; import com.groupdocs.sdk.model.SaveAnnotationTextResponse; import com.groupdocs.sdk.model.AnnotationInfo; import com.groupdocs.sdk.model.GetSharedLinkAccessRightsResponse; import com.groupdocs.sdk.model.Point; import com.groupdocs.sdk.model.GetReviewerContactsResponse; +import com.groupdocs.sdk.model.MarkerPosition; +import com.groupdocs.sdk.model.AnnotationReviewerRights; import com.groupdocs.sdk.model.DeleteReplyResponse; import com.groupdocs.sdk.model.DeleteAnnotationResponse; import com.groupdocs.sdk.model.EditReplyResponse; @@ -60,8 +63,8 @@ import com.groupdocs.sdk.model.GetCollaboratorsResponse; import com.groupdocs.sdk.model.AnnotationReplyInfo; import com.groupdocs.sdk.model.ListRepliesResponse; -import com.groupdocs.sdk.model.TextFieldInfo; import com.groupdocs.sdk.model.AddReplyResponse; +import com.groupdocs.sdk.model.TextFieldInfo; public class AntApiTest extends AbstractUnitTest { @@ -162,6 +165,34 @@ public void testDeleteAnnotation() throws Exception { } + @Test + public void testDeleteDocumentAnnotations() throws Exception { + // sample parameters + String userId = "userId"; + String fileId = "fileId"; + + String resourcePath = "/ant/{userId}/files/{fileId}/annotations".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.DELETE).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("ant/DeleteDocumentAnnotations.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + DeleteDocumentAnnotationsReponse response = api.DeleteDocumentAnnotations(userId, fileId); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testCreateAnnotationReply() throws Exception { // sample parameters @@ -541,7 +572,7 @@ public void testMoveAnnotationMarker() throws Exception { // sample parameters String userId = "userId"; String annotationId = "annotationId"; - Point body = getSampleRequest("ant/payload/MoveAnnotationMarker.json", new TypeReference(){}); + MarkerPosition body = getSampleRequest("ant/payload/MoveAnnotationMarker.json", new TypeReference(){}); String resourcePath = "/ant/{userId}/annotations/{annotationId}/markerPosition".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "annotationId" + "}", String.valueOf(annotationId)); @@ -627,7 +658,7 @@ public void testSetSharedLinkAccessRights() throws Exception { // sample parameters String userId = "userId"; String fileId = "fileId"; - Integer body = 0; + AnnotationReviewerRights body = getSampleRequest("ant/payload/SetSharedLinkAccessRights.json", new TypeReference(){}); String resourcePath = "/ant/{userId}/files/{fileId}/sharedLinkAccessRights".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)); diff --git a/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java b/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java index a9ebc22..dc6c0b9 100644 --- a/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java @@ -343,6 +343,9 @@ public void testGetJobs() throws Exception { String statusIds = "statusIds"; String actions = "actions"; String excludedActions = "excludedActions"; + String jobName = "jobName"; + String orderBy = "orderBy"; + Boolean orderAsc = Boolean.TRUE; String resourcePath = "/async/{userId}/jobs".replace("{" + "userId" + "}", String.valueOf(userId)); @@ -354,6 +357,9 @@ public void testGetJobs() throws Exception { mockRequest = mockRequest.withParam("statusIds", statusIds); mockRequest = mockRequest.withParam("actions", actions); mockRequest = mockRequest.withParam("excluded_actions", excludedActions); + mockRequest = mockRequest.withParam("jobName", jobName); + mockRequest = mockRequest.withParam("order_by", orderBy); + mockRequest = mockRequest.withParam("order_asc", orderAsc); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file String responseBody = getSampleResponse("async/GetJobs.json"); @@ -362,7 +368,7 @@ public void testGetJobs() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - GetJobsResponse response = api.GetJobs(userId, pageIndex, pageSize, date, statusIds, actions, excludedActions); + GetJobsResponse response = api.GetJobs(userId, pageIndex, pageSize, date, statusIds, actions, excludedActions, jobName, orderBy, orderAsc); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); diff --git a/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java b/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java index d8fbff5..1afa89e 100644 --- a/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java @@ -64,7 +64,7 @@ public void testCompare() throws Exception { String targetFileId = "targetFileId"; String callbackUrl = "callbackUrl"; - String resourcePath = "/comparison/{userId}/comparison/compare".replace("{" + "userId" + "}", String.valueOf(userId)); + String resourcePath = "/comparison/{userId}/compare".replace("{" + "userId" + "}", String.valueOf(userId)); ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); // add query parameters to expectation @@ -90,25 +90,25 @@ public void testCompare() throws Exception { } @Test - public void testGetChanges() throws Exception { + public void testGetDocumentDetails() throws Exception { // sample parameters String userId = "userId"; - String resultFileId = "resultFileId"; + String guid = "guid"; - String resourcePath = "/comparison/{userId}/comparison/changes".replace("{" + "userId" + "}", String.valueOf(userId)); + String resourcePath = "/comparison/{userId}/document".replace("{" + "userId" + "}", String.valueOf(userId)); ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); // add query parameters to expectation - mockRequest = mockRequest.withParam("resultFileId", resultFileId); + mockRequest = mockRequest.withParam("guid", guid); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file - String responseBody = getSampleResponse("comparison/GetChanges.json"); + String responseBody = getSampleResponse("comparison/GetDocumentDetails.json"); ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); driver.addExpectation(mockRequest, mockResponse); try { - ChangesResponse response = api.GetChanges(userId, resultFileId); + DocumentDetailsResponse response = api.GetDocumentDetails(userId, guid); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -119,28 +119,26 @@ public void testGetChanges() throws Exception { } @Test - public void testUpdateChanges() throws Exception { + public void testDownloadResult() throws Exception { // sample parameters - String userId = "userId"; String resultFileId = "resultFileId"; - List body = getSampleRequest("comparison/payload/UpdateChanges.json", new TypeReference>(){}); + String format = "format"; - String resourcePath = "/comparison/{userId}/comparison/changes".replace("{" + "userId" + "}", String.valueOf(userId)); + String resourcePath = "/comparison/public/{resultFileId}/download".replace("{" + "resultFileId" + "}", String.valueOf(resultFileId)); - ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.APPLICATION_JSON); + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); // add query parameters to expectation - mockRequest = mockRequest.withParam("resultFileId", resultFileId); + mockRequest = mockRequest.withParam("format", format); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file - String responseBody = getSampleResponse("comparison/UpdateChanges.json"); + String responseBody = getSampleResponse("comparison/DownloadResult.json"); ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); driver.addExpectation(mockRequest, mockResponse); try { - ChangesResponse response = api.UpdateChanges(userId, resultFileId, body); - // this ensures that json was successfully deserialized into corresponding model object - assertSameJson(responseBody, response); + FileStream response = api.DownloadResult(resultFileId, format); + assertThat(response.getInputStream(), not(nullValue())); } catch(ApiException e){ log(e.getCode() + ": " + e.getMessage()); @@ -149,25 +147,24 @@ public void testUpdateChanges() throws Exception { } @Test - public void testGetDocumentDetails() throws Exception { + public void testGetChanges() throws Exception { // sample parameters - String userId = "userId"; - String guid = "guid"; + String resultFileId = "resultFileId"; - String resourcePath = "/comparison/{userId}/comparison/document".replace("{" + "userId" + "}", String.valueOf(userId)); + String resourcePath = "/comparison/public/{resultFileId}/changes"; ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); // add query parameters to expectation - mockRequest = mockRequest.withParam("guid", guid); + mockRequest = mockRequest.withParam("resultFileId", resultFileId); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file - String responseBody = getSampleResponse("comparison/GetDocumentDetails.json"); + String responseBody = getSampleResponse("comparison/GetChanges.json"); ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); driver.addExpectation(mockRequest, mockResponse); try { - DocumentDetailsResponse response = api.GetDocumentDetails(userId, guid); + ChangesResponse response = api.GetChanges(resultFileId); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -178,29 +175,27 @@ public void testGetDocumentDetails() throws Exception { } @Test - public void testDownloadResult() throws Exception { + public void testUpdateChanges() throws Exception { // sample parameters - String userId = "userId"; String resultFileId = "resultFileId"; - String format = "format"; + List body = getSampleRequest("comparison/payload/UpdateChanges.json", new TypeReference>(){}); - String resourcePath = "/comparison/{userId}/comparison/download".replace("{" + "userId" + "}", String.valueOf(userId)); + String resourcePath = "/comparison/public/{resultFileId}/changes"; - ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.APPLICATION_JSON); // add query parameters to expectation mockRequest = mockRequest.withParam("resultFileId", resultFileId); - mockRequest = mockRequest.withParam("format", format); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file - String responseBody = getSampleResponse("comparison/DownloadResult.json"); + String responseBody = getSampleResponse("comparison/UpdateChanges.json"); ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); driver.addExpectation(mockRequest, mockResponse); try { - FileStream response = api.DownloadResult(userId, resultFileId, format); - assertThat(response, not(nullValue())); - assertThat(response.getInputStream(), not(nullValue())); + ChangesResponse response = api.UpdateChanges(resultFileId, body); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); } catch(ApiException e){ log(e.getCode() + ": " + e.getMessage()); diff --git a/src/test/java/com/groupdocs/sdk/api/DocApiTest.java b/src/test/java/com/groupdocs/sdk/api/DocApiTest.java index 3fd5410..e4ed9ea 100644 --- a/src/test/java/com/groupdocs/sdk/api/DocApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/DocApiTest.java @@ -47,6 +47,7 @@ import com.groupdocs.sdk.model.RemoveEditLockResponse; import com.groupdocs.sdk.model.TemplateFieldsResponse; import com.groupdocs.sdk.model.ViewDocumentResponse; +import com.groupdocs.sdk.model.GetHyperlinksResponse; import com.groupdocs.sdk.model.GetEditLockResponse; import com.groupdocs.sdk.model.GetDocumentContentResponse; import com.groupdocs.sdk.model.DocumentUserStatusResponse; @@ -920,6 +921,34 @@ public void testGetDocumentContent() throws Exception { } + @Test + public void testGetDocumentHyperlinks() throws Exception { + // sample parameters + String userId = "userId"; + String fileId = "fileId"; + + String resourcePath = "/doc/{userId}/files/{fileId}/hyperlinks".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("doc/GetDocumentHyperlinks.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + GetHyperlinksResponse response = api.GetDocumentHyperlinks(userId, fileId); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + } diff --git a/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java b/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java index 3b9b697..c0c224f 100644 --- a/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java +++ b/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java @@ -96,7 +96,7 @@ public void testPrimitiveDeserilization() throws Exception { @Test public void testSimpleObjectSerilizationDeserilization() throws Exception { - String annotationId = "7543a176c2d98310"; + String annotationId = "8257702b138f2b55"; AnnotationReplyInfo reply = new AnnotationReplyInfo(); reply.setText("test message from java client library"); reply.setParentReplyGuid("6a215585"); @@ -165,16 +165,16 @@ public void testListOfPrimitivesDeserilization() { @Test public void testListOfObjectsSerilization() throws Exception { ReviewerInfo rev1 = new ReviewerInfo(); - rev1.setAccess_rights(1); + rev1.setAccess_rights("1"); rev1.setId(1232d); ReviewerInfo rev2 = new ReviewerInfo(); - rev2.setAccess_rights(0); + rev2.setAccess_rights("0"); rev2.setId(1233d); List collaborators = Arrays.asList(rev1, rev2); String fileId = "SomeFileGuid"; String resourcePath = "/ant/{userId}/files/{fileId}/reviewerRights".replace("{userId}", userId).replace("{fileId}", fileId); - String body = "[{\"id\":1232.0,\"access_rights\":1},{\"id\":1233.0,\"access_rights\":0}]"; + String body = "[{\"id\":1232,\"access_rights\":\"1\",\"avatar\":[]},{\"id\":1233,\"access_rights\":\"0\",\"avatar\":[]}]"; driver.addExpectation(onRequestTo(resourcePath).withAnyParams() .withMethod(Method.PUT).withBody(body, MediaType.APPLICATION_JSON), giveResponse(getSampleResponse("ant/SetReviewerRights.json")).withStatus(200)); diff --git a/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java b/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java index a1252ba..913b3a0 100644 --- a/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java @@ -40,30 +40,37 @@ import com.groupdocs.sdk.model.GetQuestionnaireExecutionsResponse; import com.groupdocs.sdk.model.Datasource; import com.groupdocs.sdk.model.UpdateQuestionnaireExecutionResponse; +import com.groupdocs.sdk.model.DeleteDatasourceListResponse; import com.groupdocs.sdk.model.GetQuestionnairesResponse; import com.groupdocs.sdk.model.GetQuestionnaireMetadataResponse; import com.groupdocs.sdk.model.UpdateQuestionnaireResponse; +import com.groupdocs.sdk.model.CreateQuestionnaireTemplateResponse; import com.groupdocs.sdk.model.GetDocumentQuestionnairesResponse; import com.groupdocs.sdk.model.QuestionnaireExecutionInfo; import com.groupdocs.sdk.model.AddDatasourceResponse; +import com.groupdocs.sdk.model.DeleteQuestionnaireListResponse; import com.groupdocs.sdk.model.AddQuestionnaireCollectorResponse; import com.groupdocs.sdk.model.AddDocumentDataSourceResponse; import com.groupdocs.sdk.model.DatasourceField; import com.groupdocs.sdk.model.DeleteQuestionnaireExecutionResponse; import com.groupdocs.sdk.model.DeleteDocumentQuestionnaireResponse; import com.groupdocs.sdk.model.GetQuestionnaireCollectorResponse; +import com.groupdocs.sdk.model.TemplateField; import com.groupdocs.sdk.model.TemplateFieldsResponse; import com.groupdocs.sdk.model.QuestionnaireCollectorInfo; import com.groupdocs.sdk.model.AddDocumentQuestionnaireResponse; import com.groupdocs.sdk.model.GetQuestionnaireCollectorsResponse; import com.groupdocs.sdk.model.DeleteQuestionnaireCollectorResponse; +import com.groupdocs.sdk.model.GetQuestionnaireDocumentResponse; import com.groupdocs.sdk.model.DeleteDatasourceResponse; import com.groupdocs.sdk.model.QuestionnaireMetadata; import com.groupdocs.sdk.model.GetDatasourceResponse; +import com.groupdocs.sdk.model.DeleteQuestionnaireExecutionListResponse; import com.groupdocs.sdk.model.AddQuestionnaireExecutionResponse; import com.groupdocs.sdk.model.GetTemplatesResponse; import com.groupdocs.sdk.model.DeleteQuestionnaireResponse; import com.groupdocs.sdk.model.MergeTemplateResponse; +import com.groupdocs.sdk.model.DeleteQuestionnaireCollectorListResponse; import com.groupdocs.sdk.model.GetQuestionnaireResponse; import com.groupdocs.sdk.model.GetDatasourcesResponse; import com.groupdocs.sdk.model.UpdateQuestionnaireCollectorResponse; @@ -310,6 +317,34 @@ public void testGetQuestionnaire() throws Exception { } + @Test + public void testGetQuestionnaireByCollector() throws Exception { + // sample parameters + String userId = "userId"; + String collectorId = "collectorId"; + + String resourcePath = "/merge/{userId}/questionnaires/collector/{collectorId}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "collectorId" + "}", String.valueOf(collectorId)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("merge/GetQuestionnaireByCollector.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + GetQuestionnaireResponse response = api.GetQuestionnaireByCollector(userId, collectorId); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testGetQuestionnaires() throws Exception { // sample parameters @@ -317,6 +352,8 @@ public void testGetQuestionnaires() throws Exception { String status = "status"; Integer pageNumber = 0; Integer pageSize = 0; + String orderBy = "orderBy"; + Boolean isAscending = Boolean.TRUE; String resourcePath = "/merge/{userId}/questionnaires".replace("{" + "userId" + "}", String.valueOf(userId)); @@ -325,6 +362,8 @@ public void testGetQuestionnaires() throws Exception { mockRequest = mockRequest.withParam("status", status); mockRequest = mockRequest.withParam("page_number", pageNumber); mockRequest = mockRequest.withParam("page_size", pageSize); + mockRequest = mockRequest.withParam("orderBy", orderBy); + mockRequest = mockRequest.withParam("isAscending", isAscending); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file String responseBody = getSampleResponse("merge/GetQuestionnaires.json"); @@ -333,7 +372,46 @@ public void testGetQuestionnaires() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - GetQuestionnairesResponse response = api.GetQuestionnaires(userId, status, pageNumber, pageSize); + GetQuestionnairesResponse response = api.GetQuestionnaires(userId, status, pageNumber, pageSize, orderBy, isAscending); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + + @Test + public void testGetQuestionnairesByName() throws Exception { + // sample parameters + String userId = "userId"; + String name = "name"; + String status = "status"; + Integer pageNumber = 0; + Integer pageSize = 0; + String orderBy = "orderBy"; + Boolean isAscending = Boolean.TRUE; + + String resourcePath = "/merge/{userId}/questionnaires/filter".replace("{" + "userId" + "}", String.valueOf(userId)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("name", name); + mockRequest = mockRequest.withParam("status", status); + mockRequest = mockRequest.withParam("page_number", pageNumber); + mockRequest = mockRequest.withParam("page_size", pageSize); + mockRequest = mockRequest.withParam("orderBy", orderBy); + mockRequest = mockRequest.withParam("isAscending", isAscending); + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("merge/GetQuestionnairesByName.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + GetQuestionnairesResponse response = api.GetQuestionnairesByName(userId, name, status, pageNumber, pageSize, orderBy, isAscending); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -428,6 +506,34 @@ public void testDeleteQuestionnaire() throws Exception { } + @Test + public void testDeleteQuestionnairesList() throws Exception { + // sample parameters + String userId = "userId"; + List body = getSampleRequest("merge/payload/DeleteQuestionnairesList.json", new TypeReference>(){}); + + String resourcePath = "/merge/{userId}/questionnaires/list".replace("{" + "userId" + "}", String.valueOf(userId)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.DELETE).withHeader("Content-Type", MediaType.APPLICATION_JSON); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("merge/DeleteQuestionnairesList.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + DeleteQuestionnaireListResponse response = api.DeleteQuestionnairesList(userId, body); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testGetDocumentQuestionnaires() throws Exception { // sample parameters @@ -657,6 +763,34 @@ public void testDeleteDataSource() throws Exception { } + @Test + public void testDeleteDataSourceList() throws Exception { + // sample parameters + String userId = "userId"; + List body = getSampleRequest("merge/payload/DeleteDataSourceList.json", new TypeReference>(){}); + + String resourcePath = "/merge/{userId}/datasources/list".replace("{" + "userId" + "}", String.valueOf(userId)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.DELETE).withHeader("Content-Type", MediaType.APPLICATION_JSON); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("merge/DeleteDataSourceList.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + DeleteDatasourceListResponse response = api.DeleteDataSourceList(userId, body); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testGetDataSource() throws Exception { // sample parameters @@ -858,6 +992,34 @@ public void testDeleteQuestionnaireExecution() throws Exception { } + @Test + public void testDeleteQuestionnaireExecutionList() throws Exception { + // sample parameters + String userId = "userId"; + List body = getSampleRequest("merge/payload/DeleteQuestionnaireExecutionList.json", new TypeReference>(){}); + + String resourcePath = "/merge/{userId}/questionnaires/executions/list".replace("{" + "userId" + "}", String.valueOf(userId)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.DELETE).withHeader("Content-Type", MediaType.APPLICATION_JSON); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("merge/DeleteQuestionnaireExecutionList.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + DeleteQuestionnaireExecutionListResponse response = api.DeleteQuestionnaireExecutionList(userId, body); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testUpdateQuestionnaireExecution() throws Exception { // sample parameters @@ -921,11 +1083,15 @@ public void testGetQuestionnaireCollectors() throws Exception { // sample parameters String userId = "userId"; String questionnaireId = "questionnaireId"; + String orderBy = "orderBy"; + Boolean isAsc = Boolean.TRUE; String resourcePath = "/merge/{userId}/questionnaires/{questionnaireId}/collectors".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "questionnaireId" + "}", String.valueOf(questionnaireId)); ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); // add query parameters to expectation + mockRequest = mockRequest.withParam("orderBy", orderBy); + mockRequest = mockRequest.withParam("isAsc", isAsc); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file String responseBody = getSampleResponse("merge/GetQuestionnaireCollectors.json"); @@ -934,7 +1100,7 @@ public void testGetQuestionnaireCollectors() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - GetQuestionnaireCollectorsResponse response = api.GetQuestionnaireCollectors(userId, questionnaireId); + GetQuestionnaireCollectorsResponse response = api.GetQuestionnaireCollectors(userId, questionnaireId, orderBy, isAsc); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -1058,6 +1224,34 @@ public void testDeleteQuestionnaireCollector() throws Exception { } + @Test + public void testDeleteQuestionnaireCollectorList() throws Exception { + // sample parameters + String userId = "userId"; + List body = getSampleRequest("merge/payload/DeleteQuestionnaireCollectorList.json", new TypeReference>(){}); + + String resourcePath = "/merge/{userId}/questionnaires/collectors/list".replace("{" + "userId" + "}", String.valueOf(userId)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.DELETE).withHeader("Content-Type", MediaType.APPLICATION_JSON); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("merge/DeleteQuestionnaireCollectorList.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + DeleteQuestionnaireCollectorListResponse response = api.DeleteQuestionnaireCollectorList(userId, body); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testGetTemplates() throws Exception { // sample parameters @@ -1172,6 +1366,95 @@ public void testUpdateQuestionnaireMetadata() throws Exception { } + @Test + public void testCopyFileToTemplates() throws Exception { + // sample parameters + String userId = "userId"; + String path = "path"; + String mode = "mode"; + String Groupdocs_Move = "Groupdocs_Move"; + String Groupdocs_Copy = "Groupdocs_Copy"; + + String resourcePath = "/merge/{userId}/files/{path}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "path" + "}", String.valueOf(path)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("mode", mode); + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("merge/CopyFileToTemplates.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + GetTemplatesResponse response = api.CopyFileToTemplates(userId, path, mode, Groupdocs_Move, Groupdocs_Copy); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + + @Test + public void testGetDocumentByQuestionnaire() throws Exception { + // sample parameters + String userId = "userId"; + String questionnaireId = "questionnaireId"; + + String resourcePath = "/merge/{userId}/questionnaires/{questionnaireId}/document".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "questionnaireId" + "}", String.valueOf(questionnaireId)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("merge/GetDocumentByQuestionnaire.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + GetQuestionnaireDocumentResponse response = api.GetDocumentByQuestionnaire(userId, questionnaireId); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + + @Test + public void testCreateQuestionnaireTemplate() throws Exception { + // sample parameters + String userId = "userId"; + String fileId = "fileId"; + List body = getSampleRequest("merge/payload/CreateQuestionnaireTemplate.json", new TypeReference>(){}); + + String resourcePath = "/merge/{userId}/files/{fileId}/templates".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.POST).withHeader("Content-Type", MediaType.APPLICATION_JSON); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("merge/CreateQuestionnaireTemplate.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + CreateQuestionnaireTemplateResponse response = api.CreateQuestionnaireTemplate(userId, fileId, body); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + } diff --git a/src/test/java/com/groupdocs/sdk/api/SignatureApiTest.java b/src/test/java/com/groupdocs/sdk/api/SignatureApiTest.java index f0ca65a..ba3ebff 100644 --- a/src/test/java/com/groupdocs/sdk/api/SignatureApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/SignatureApiTest.java @@ -61,6 +61,7 @@ import com.groupdocs.sdk.model.SignatureTemplateFieldsResponse; import com.groupdocs.sdk.model.SignatureEnvelopeFieldSettingsInfo; import com.groupdocs.sdk.model.SignatureEnvelopeFieldResponse; +import com.groupdocs.sdk.model.SignatureDocumentFieldsResponse; import com.groupdocs.sdk.model.SignatureContactsResponse; import com.groupdocs.sdk.model.SignatureFormsResponse; import com.groupdocs.sdk.model.SignatureTemplateDocumentResponse; @@ -80,8 +81,8 @@ import com.groupdocs.sdk.model.SignatureTemplateFieldResponse; import com.groupdocs.sdk.model.SignatureTemplateRecipientResponse; import com.groupdocs.sdk.model.SignatureSignDocumentSettingsInfo; -import com.groupdocs.sdk.model.SignatureEnvelopeFieldLocationSettingsInfo; import com.groupdocs.sdk.model.SignatureTemplateSettingsInfo; +import com.groupdocs.sdk.model.SignatureEnvelopeFieldLocationSettingsInfo; import com.groupdocs.sdk.model.SignatureEnvelopesResponse; import com.groupdocs.sdk.model.SignatureFormFieldsResponse; import com.groupdocs.sdk.model.SignatureEnvelopeDocumentResponse; @@ -114,6 +115,127 @@ public void setUpBefore() throws Exception { api.setBasePath(driver.getBaseUrl()); } + @Test + public void testModifySignatureTemplate() throws Exception { + // sample parameters + String userId = "userId"; + String templateGuid = "templateGuid"; + SignatureTemplateSettingsInfo body = getSampleRequest("signature/payload/ModifySignatureTemplate.json", new TypeReference(){}); + + String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.POST).withHeader("Content-Type", MediaType.APPLICATION_JSON); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("signature/ModifySignatureTemplate.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + SignatureTemplateResponse response = api.ModifySignatureTemplate(userId, templateGuid, body); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + + @Test + public void testRenameSignatureTemplate() throws Exception { + // sample parameters + String userId = "userId"; + String templateGuid = "templateGuid"; + String name = "name"; + + String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("name", name); + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("signature/RenameSignatureTemplate.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + SignatureTemplateResponse response = api.RenameSignatureTemplate(userId, templateGuid, name); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + + @Test + public void testDeleteSignatureTemplate() throws Exception { + // sample parameters + String userId = "userId"; + String templateGuid = "templateGuid"; + + String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.DELETE).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("signature/DeleteSignatureTemplate.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + SignatureStatusResponse response = api.DeleteSignatureTemplate(userId, templateGuid); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + + @Test + public void testAddSignatureTemplateRecipient() throws Exception { + // sample parameters + String userId = "userId"; + String templateGuid = "templateGuid"; + String nickname = "nickname"; + String roleGuid = "roleGuid"; + Integer order = 0; + + String resourcePath = "/signature/{userId}/templates/{templateGuid}/recipient".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.POST).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("nickname", nickname); + mockRequest = mockRequest.withParam("role", roleGuid); + mockRequest = mockRequest.withParam("order", order); + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("signature/AddSignatureTemplateRecipient.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + SignatureTemplateRecipientResponse response = api.AddSignatureTemplateRecipient(userId, templateGuid, nickname, roleGuid, order); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testGetSignatureTemplateRecipients() throws Exception { // sample parameters @@ -365,10 +487,11 @@ public void testModifySignatureTemplateField() throws Exception { String userId = "userId"; String templateGuid = "templateGuid"; String documentGuid = "documentGuid"; + String recipientGuid = "recipientGuid"; String fieldGuid = "fieldGuid"; SignatureTemplateFieldSettingsInfo body = getSampleRequest("signature/payload/ModifySignatureTemplateField.json", new TypeReference(){}); - String resourcePath = "/signature/{userId}/templates/{templateGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + String resourcePath = "/signature/{userId}/templates/{templateGuid}/documents/{documentGuid}/recipientGuid/{recipientGuid}/field/{fieldGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.APPLICATION_JSON); // add query parameters to expectation @@ -380,7 +503,7 @@ public void testModifySignatureTemplateField() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - SignatureTemplateFieldResponse response = api.ModifySignatureTemplateField(userId, templateGuid, documentGuid, fieldGuid, body); + SignatureTemplateFieldResponse response = api.ModifySignatureTemplateField(userId, templateGuid, documentGuid, recipientGuid, fieldGuid, body); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -460,6 +583,7 @@ public void testGetSignatureTemplateFields() throws Exception { String templateGuid = "templateGuid"; String documentGuid = "documentGuid"; String recipientGuid = "recipientGuid"; + String fieldGuid = "fieldGuid"; String resourcePath = "/signature/{userId}/templates/{templateGuid}/fields".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); @@ -467,6 +591,7 @@ public void testGetSignatureTemplateFields() throws Exception { // add query parameters to expectation mockRequest = mockRequest.withParam("document", documentGuid); mockRequest = mockRequest.withParam("recipient", recipientGuid); + mockRequest = mockRequest.withParam("field", fieldGuid); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file String responseBody = getSampleResponse("signature/GetSignatureTemplateFields.json"); @@ -475,7 +600,7 @@ public void testGetSignatureTemplateFields() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - SignatureTemplateFieldsResponse response = api.GetSignatureTemplateFields(userId, templateGuid, documentGuid, recipientGuid); + SignatureTemplateFieldsResponse response = api.GetSignatureTemplateFields(userId, templateGuid, documentGuid, recipientGuid, fieldGuid); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -581,6 +706,7 @@ public void testGetContacts() throws Exception { String firstName = "firstName"; String lastName = "lastName"; String email = "email"; + Boolean useAnd = Boolean.TRUE; String resourcePath = "/signature/{userId}/contacts".replace("{" + "userId" + "}", String.valueOf(userId)); @@ -591,6 +717,7 @@ public void testGetContacts() throws Exception { mockRequest = mockRequest.withParam("firstName", firstName); mockRequest = mockRequest.withParam("lastName", lastName); mockRequest = mockRequest.withParam("email", email); + mockRequest = mockRequest.withParam("useAnd", useAnd); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file String responseBody = getSampleResponse("signature/GetContacts.json"); @@ -599,7 +726,7 @@ public void testGetContacts() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - SignatureContactsResponse response = api.GetContacts(userId, page, records, firstName, lastName, email); + SignatureContactsResponse response = api.GetContacts(userId, page, records, firstName, lastName, email, useAnd); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -1303,10 +1430,11 @@ public void testModifySignatureEnvelopeField() throws Exception { String userId = "userId"; String envelopeGuid = "envelopeGuid"; String documentGuid = "documentGuid"; + String recipientGuid = "recipientGuid"; String fieldGuid = "fieldGuid"; SignatureEnvelopeFieldSettingsInfo body = getSampleRequest("signature/payload/ModifySignatureEnvelopeField.json", new TypeReference(){}); - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipientGuid/{recipientGuid}/field/{fieldGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.APPLICATION_JSON); // add query parameters to expectation @@ -1318,7 +1446,7 @@ public void testModifySignatureEnvelopeField() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - SignatureEnvelopeFieldResponse response = api.ModifySignatureEnvelopeField(userId, envelopeGuid, documentGuid, fieldGuid, body); + SignatureEnvelopeFieldResponse response = api.ModifySignatureEnvelopeField(userId, envelopeGuid, documentGuid, recipientGuid, fieldGuid, body); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -1364,6 +1492,7 @@ public void testGetSignatureEnvelopeFields() throws Exception { String envelopeGuid = "envelopeGuid"; String documentGuid = "documentGuid"; String recipientGuid = "recipientGuid"; + String fieldGuid = "fieldGuid"; String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); @@ -1371,6 +1500,7 @@ public void testGetSignatureEnvelopeFields() throws Exception { // add query parameters to expectation mockRequest = mockRequest.withParam("document", documentGuid); mockRequest = mockRequest.withParam("recipient", recipientGuid); + mockRequest = mockRequest.withParam("field", fieldGuid); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file String responseBody = getSampleResponse("signature/GetSignatureEnvelopeFields.json"); @@ -1379,7 +1509,7 @@ public void testGetSignatureEnvelopeFields() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - SignatureEnvelopeFieldsResponse response = api.GetSignatureEnvelopeFields(userId, envelopeGuid, documentGuid, recipientGuid); + SignatureEnvelopeFieldsResponse response = api.GetSignatureEnvelopeFields(userId, envelopeGuid, documentGuid, recipientGuid, fieldGuid); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -1886,6 +2016,97 @@ public void testRetrySignEnvelope() throws Exception { } + @Test + public void testUpdateEnvelopeFromTemplate() throws Exception { + // sample parameters + String userId = "userId"; + String envelopeGuid = "envelopeGuid"; + String templateGuid = "templateGuid"; + + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/templates/{templateGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.POST).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("signature/UpdateEnvelopeFromTemplate.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + SignatureEnvelopeResponse response = api.UpdateEnvelopeFromTemplate(userId, envelopeGuid, templateGuid); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + + @Test + public void testModifySignatureEnvelopeFieldLocationOrder() throws Exception { + // sample parameters + String userId = "userId"; + String envelopeGuid = "envelopeGuid"; + String documentGuid = "documentGuid"; + String recipientGuid = "recipientGuid"; + String fieldGuid = "fieldGuid"; + String locationGuid = "locationGuid"; + Integer order = 0; + + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("order", order); + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("signature/ModifySignatureEnvelopeFieldLocationOrder.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + SignatureEnvelopeFieldResponse response = api.ModifySignatureEnvelopeFieldLocationOrder(userId, envelopeGuid, documentGuid, recipientGuid, fieldGuid, locationGuid, order); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + + @Test + public void testResendSignatureEnvelopeEmailNotification() throws Exception { + // sample parameters + String userId = "userId"; + String envelopeGuid = "envelopeGuid"; + + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/resend-notification".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("signature/ResendSignatureEnvelopeEmailNotification.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + SignatureStatusResponse response = api.ResendSignatureEnvelopeEmailNotification(userId, envelopeGuid); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testGetFieldsList() throws Exception { // sample parameters @@ -2369,11 +2590,13 @@ public void testGetSignatureFormFields() throws Exception { String userId = "userId"; String formGuid = "formGuid"; String documentGuid = "documentGuid"; + String fieldGuid = "fieldGuid"; String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/fields".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); // add query parameters to expectation + mockRequest = mockRequest.withParam("field", fieldGuid); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file String responseBody = getSampleResponse("signature/GetSignatureFormFields.json"); @@ -2382,7 +2605,7 @@ public void testGetSignatureFormFields() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - SignatureFormFieldsResponse response = api.GetSignatureFormFields(userId, formGuid, documentGuid); + SignatureFormFieldsResponse response = api.GetSignatureFormFields(userId, formGuid, documentGuid, fieldGuid); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -2766,7 +2989,7 @@ public void testDeletePredefinedList() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - SignaturePredefinedListResponse response = api.DeletePredefinedList(userId, listGuid); + SignaturePredefinedListsResponse response = api.DeletePredefinedList(userId, listGuid); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -2805,6 +3028,33 @@ public void testGetRolesList() throws Exception { } + @Test + public void testGetUserEmailTemplate() throws Exception { + // sample parameters + String userId = "userId"; + Integer templateType = 0; + + String resourcePath = "/signature/{userId}/email-template/{templateType}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateType" + "}", String.valueOf(templateType)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("signature/GetUserEmailTemplate.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + FileStream response = api.GetUserEmailTemplate(userId, templateType); + assertThat(response.getInputStream(), not(nullValue())); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testCreateSignature() throws Exception { // sample parameters @@ -2995,127 +3245,6 @@ public void testCreateSignatureTemplate() throws Exception { } - @Test - public void testModifySignatureTemplate() throws Exception { - // sample parameters - String userId = "userId"; - String templateGuid = "templateGuid"; - SignatureTemplateSettingsInfo body = getSampleRequest("signature/payload/ModifySignatureTemplate.json", new TypeReference(){}); - - String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); - - ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.POST).withHeader("Content-Type", MediaType.APPLICATION_JSON); - // add query parameters to expectation - mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); - // read response json from file - String responseBody = getSampleResponse("signature/ModifySignatureTemplate.json"); - - ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); - driver.addExpectation(mockRequest, mockResponse); - - try { - SignatureTemplateResponse response = api.ModifySignatureTemplate(userId, templateGuid, body); - // this ensures that json was successfully deserialized into corresponding model object - assertSameJson(responseBody, response); - - } catch(ApiException e){ - log(e.getCode() + ": " + e.getMessage()); - } - - } - - @Test - public void testRenameSignatureTemplate() throws Exception { - // sample parameters - String userId = "userId"; - String templateGuid = "templateGuid"; - String name = "name"; - - String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); - - ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.TEXT_HTML); - // add query parameters to expectation - mockRequest = mockRequest.withParam("name", name); - mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); - // read response json from file - String responseBody = getSampleResponse("signature/RenameSignatureTemplate.json"); - - ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); - driver.addExpectation(mockRequest, mockResponse); - - try { - SignatureTemplateResponse response = api.RenameSignatureTemplate(userId, templateGuid, name); - // this ensures that json was successfully deserialized into corresponding model object - assertSameJson(responseBody, response); - - } catch(ApiException e){ - log(e.getCode() + ": " + e.getMessage()); - } - - } - - @Test - public void testDeleteSignatureTemplate() throws Exception { - // sample parameters - String userId = "userId"; - String templateGuid = "templateGuid"; - - String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); - - ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.DELETE).withHeader("Content-Type", MediaType.TEXT_HTML); - // add query parameters to expectation - mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); - // read response json from file - String responseBody = getSampleResponse("signature/DeleteSignatureTemplate.json"); - - ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); - driver.addExpectation(mockRequest, mockResponse); - - try { - SignatureStatusResponse response = api.DeleteSignatureTemplate(userId, templateGuid); - // this ensures that json was successfully deserialized into corresponding model object - assertSameJson(responseBody, response); - - } catch(ApiException e){ - log(e.getCode() + ": " + e.getMessage()); - } - - } - - @Test - public void testAddSignatureTemplateRecipient() throws Exception { - // sample parameters - String userId = "userId"; - String templateGuid = "templateGuid"; - String nickname = "nickname"; - String roleGuid = "roleGuid"; - Integer order = 0; - - String resourcePath = "/signature/{userId}/templates/{templateGuid}/recipient".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); - - ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.POST).withHeader("Content-Type", MediaType.TEXT_HTML); - // add query parameters to expectation - mockRequest = mockRequest.withParam("nickname", nickname); - mockRequest = mockRequest.withParam("role", roleGuid); - mockRequest = mockRequest.withParam("order", order); - mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); - // read response json from file - String responseBody = getSampleResponse("signature/AddSignatureTemplateRecipient.json"); - - ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); - driver.addExpectation(mockRequest, mockResponse); - - try { - SignatureTemplateRecipientResponse response = api.AddSignatureTemplateRecipient(userId, templateGuid, nickname, roleGuid, order); - // this ensures that json was successfully deserialized into corresponding model object - assertSameJson(responseBody, response); - - } catch(ApiException e){ - log(e.getCode() + ": " + e.getMessage()); - } - - } - @Test public void testPublicFillEnvelopeField() throws Exception { // sample parameters @@ -3123,11 +3252,11 @@ public void testPublicFillEnvelopeField() throws Exception { String documentGuid = "documentGuid"; String recipientGuid = "recipientGuid"; String fieldGuid = "fieldGuid"; - String body = "body"; + FileStream body = new FileStream(getClass().getClassLoader().getResourceAsStream("test.doc")); String resourcePath = "/signature/public/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/field/{fieldGuid}".replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); - ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.APPLICATION_JSON); + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", Pattern.compile(".*")); // add query parameters to expectation mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file @@ -3351,11 +3480,11 @@ public void testPublicFillFormField() throws Exception { String fieldGuid = "fieldGuid"; String participantIdId = "participantIdId"; String authSignature = "authSignature"; - String body = "body"; + FileStream body = new FileStream(getClass().getClassLoader().getResourceAsStream("test.doc")); String resourcePath = "/signature/public/forms/{formGuid}/documents/{documentGuid}/participant/{participantGuid}/field/{fieldGuid}".replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "participantIdId" + "}", String.valueOf(participantIdId)); - ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.APPLICATION_JSON); + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", Pattern.compile(".*")); // add query parameters to expectation mockRequest = mockRequest.withParam("participantAuthSignature", authSignature); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); @@ -3381,12 +3510,14 @@ public void testPublicSignForm() throws Exception { // sample parameters String formGuid = "formGuid"; String participantGuid = "participantGuid"; + String participantName = "participantName"; String authSignature = "authSignature"; String resourcePath = "/signature/public/forms/{formGuid}/participant/{participantGuid}/sign".replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "participantGuid" + "}", String.valueOf(participantGuid)); ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.TEXT_HTML); // add query parameters to expectation + mockRequest = mockRequest.withParam("name", participantName); mockRequest = mockRequest.withParam("participantAuthSignature", authSignature); mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file @@ -3396,7 +3527,7 @@ public void testPublicSignForm() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - SignatureStatusResponse response = api.PublicSignForm(formGuid, participantGuid, authSignature); + SignatureStatusResponse response = api.PublicSignForm(formGuid, participantGuid, participantName, authSignature); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -3628,6 +3759,33 @@ public void testPublicGetSignDocumentStatus() throws Exception { } + @Test + public void testPublicGetDocumentFields() throws Exception { + // sample parameters + String documentGuid = "documentGuid"; + + String resourcePath = "/signature/public/documents/{documentGuid}/fields".replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("signature/PublicGetDocumentFields.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + SignatureDocumentFieldsResponse response = api.PublicGetDocumentFields(documentGuid); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testGetSignatureEnvelopeFieldData() throws Exception { // sample parameters @@ -3656,6 +3814,32 @@ public void testGetSignatureEnvelopeFieldData() throws Exception { } + @Test + public void testPublicGetDefaultEmailTemplate() throws Exception { + // sample parameters + Integer templateType = 0; + + String resourcePath = "/signature/public/email-template/{templateType}/default".replace("{" + "templateType" + "}", String.valueOf(templateType)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("signature/PublicGetDefaultEmailTemplate.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + FileStream response = api.PublicGetDefaultEmailTemplate(templateType); + assertThat(response.getInputStream(), not(nullValue())); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + } diff --git a/src/test/java/com/groupdocs/sdk/api/StorageApiTest.java b/src/test/java/com/groupdocs/sdk/api/StorageApiTest.java index e892488..6cece37 100644 --- a/src/test/java/com/groupdocs/sdk/api/StorageApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/StorageApiTest.java @@ -44,6 +44,7 @@ import com.groupdocs.sdk.model.StorageInfoResponse; import com.groupdocs.sdk.model.UploadResponse; import com.groupdocs.sdk.model.DeleteResponse; +import com.groupdocs.sdk.model.CancelFileUploadResponse; import com.groupdocs.sdk.model.FolderMoveResponse; import com.groupdocs.sdk.model.CreatePackageResponse; @@ -61,6 +62,35 @@ public void setUpBefore() throws Exception { api.setBasePath(driver.getBaseUrl()); } + @Test + public void testCancelFileUpload() throws Exception { + // sample parameters + String userId = "userId"; + String fileId = "fileId"; + String filePath = "filePath"; + + String resourcePath = "/storage/{userId}/cancelUpload/{fileId}/{filePath}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)).replace("{" + "filePath" + "}", String.valueOf(filePath)); + + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); + // add query parameters to expectation + mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); + // read response json from file + String responseBody = getSampleResponse("storage/CancelFileUpload.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + CancelFileUploadResponse response = api.CancelFileUpload(userId, fileId, filePath); + // this ensures that json was successfully deserialized into corresponding model object + assertSameJson(responseBody, response); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testGetStorageInfo() throws Exception { // sample parameters @@ -371,8 +401,8 @@ public void testMoveFile() throws Exception { String userId = "userId"; String path = "path"; String mode = "mode"; - String Groupdocs_Copy = "Groupdocs_Copy"; String Groupdocs_Move = "Groupdocs_Move"; + String Groupdocs_Copy = "Groupdocs_Copy"; String resourcePath = "/storage/{userId}/files/{path}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "path" + "}", String.valueOf(path)); @@ -387,7 +417,7 @@ public void testMoveFile() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - FileMoveResponse response = api.MoveFile(userId, path, mode, Groupdocs_Copy, Groupdocs_Move); + FileMoveResponse response = api.MoveFile(userId, path, mode, Groupdocs_Move, Groupdocs_Copy); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -535,7 +565,7 @@ public void testMoveToTrash() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - FolderMoveResponse response = api.MoveToTrash(userId, path); + DeleteResponse response = api.MoveToTrash(userId, path); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); diff --git a/src/test/resources/GroupDocs_Signature_Demo.pdf b/src/test/resources/GroupDocs_Signature_Demo.pdf deleted file mode 100644 index 2583450..0000000 Binary files a/src/test/resources/GroupDocs_Signature_Demo.pdf and /dev/null differ diff --git a/src/test/resources/interactiveform_enabled.pdf b/src/test/resources/interactiveform_enabled.pdf deleted file mode 100644 index ec35b55..0000000 Binary files a/src/test/resources/interactiveform_enabled.pdf and /dev/null differ diff --git a/src/test/resources/requests/ant/payload/SetSharedLinkAccessRights.json b/src/test/resources/requests/ant/payload/SetSharedLinkAccessRights.json index 3f10ffe..6ac67a7 100644 --- a/src/test/resources/requests/ant/payload/SetSharedLinkAccessRights.json +++ b/src/test/resources/requests/ant/payload/SetSharedLinkAccessRights.json @@ -1 +1,8 @@ -15 \ No newline at end of file +{ + "result": { + "accessRights": "15" + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375207822039 +} \ No newline at end of file diff --git a/src/test/resources/responses/ant/AddAnnotationCollaborator.json b/src/test/resources/responses/ant/AddAnnotationCollaborator.json index 53cadec..568e3a7 100644 --- a/src/test/resources/responses/ant/AddAnnotationCollaborator.json +++ b/src/test/resources/responses/ant/AddAnnotationCollaborator.json @@ -10,7 +10,8 @@ "lastName": "Strashniy", "access_rights": null, "color": null, - "customEmailMessage": null + "customEmailMessage": null, + "avatar": null }, "collaborators": [ { @@ -19,7 +20,8 @@ "primary_email": "user_one@mailinator.com", "firstName": "John", "lastName": "Smith", - "access_rights": 15, + "access_rights": "15", + "avatar": null, "color": 13828740, "customEmailMessage": null } diff --git a/src/test/resources/responses/ant/CreateAnnotationReply.json b/src/test/resources/responses/ant/CreateAnnotationReply.json index ba8ee2f..b8c04e8 100644 --- a/src/test/resources/responses/ant/CreateAnnotationReply.json +++ b/src/test/resources/responses/ant/CreateAnnotationReply.json @@ -1,10 +1,10 @@ { - "result": { - "replyGuid": "688a648b", - "annotationGuid": "7543a176c2d98310", - "replyDateTime": "2013-07-30T18:06:04.657Z" - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375207486195 + "result": { + "replyGuid": "688a648b", + "annotationGuid": "8257702b138f2b55", + "replyDateTime": "2013-07-30T18:06:04.657Z" + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375207486195 } \ No newline at end of file diff --git a/src/test/resources/responses/ant/DeleteDocumentReviewer.json b/src/test/resources/responses/ant/DeleteDocumentReviewer.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/ant/DeleteDocumentReviewer.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/ant/GetAnnotationCollaborators.json b/src/test/resources/responses/ant/GetAnnotationCollaborators.json index 1e96f59..ed93603 100644 --- a/src/test/resources/responses/ant/GetAnnotationCollaborators.json +++ b/src/test/resources/responses/ant/GetAnnotationCollaborators.json @@ -10,7 +10,8 @@ "lastName": "Strashniy", "access_rights": null, "color": null, - "customEmailMessage": null + "customEmailMessage": null, + "avatar": [] }, "collaborators": [ diff --git a/src/test/resources/responses/ant/GetSharedLinkAccessRights.json b/src/test/resources/responses/ant/GetSharedLinkAccessRights.json index 697bcd4..5fd0acc 100644 --- a/src/test/resources/responses/ant/GetSharedLinkAccessRights.json +++ b/src/test/resources/responses/ant/GetSharedLinkAccessRights.json @@ -1,6 +1,6 @@ { "result": { - "accessRights": 1 + "accessRights": "1" }, "status": "Ok", "error_message": null, diff --git a/src/test/resources/responses/ant/ListAnnotations.json b/src/test/resources/responses/ant/ListAnnotations.json index 1056db2..d8954d6 100644 --- a/src/test/resources/responses/ant/ListAnnotations.json +++ b/src/test/resources/responses/ant/ListAnnotations.json @@ -1,2122 +1,2122 @@ { - "result":{ - "documentGuid":"6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", - "sessionGuid":"2eaff6cea4f7fc21", - "annotations":[ - { - "guid":"d71705c6b7ed8498", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207363133, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"9247c81ff0887880", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207366367, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"f4b5ee8e543ce8b2", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207370133, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"fc45947141e01afa", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207372900, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"a550752dc8f4b4d0", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207375633, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"69a155e1d0c967a5", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207378447, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"2ae4733289936065", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207381163, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"2ad27688411aa2f0", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207383710, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"75df5549211de191", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207386133, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"29e9f2ab761774db", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207389163, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"69ba536d3eaef4f5", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207392040, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"40faf4596a39b3e4", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207394743, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"0ad17fd53c7c2fb6", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207397477, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"535f709709677c87", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207400337, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"f3f4fb3aac62b673", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207403163, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"56668faee8f72f4b", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207406007, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"6bb2b09ab7583883", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207408947, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"778adcc2494988e2", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207411790, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"957c51837232688f", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207414743, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"24466493beeb5f63", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207417507, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"d8d199abc8f4808d", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207420273, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"6c136fb84e8b6f28", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207423100, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"4079f1fd936f8eaa", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207425867, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"ca2f60e73d31bfa8", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207428757, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"832d5c19389752e0", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207431773, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"7f0a33afffd770a7", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207434773, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"d16f645d2d6abf2e", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207437210, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"c716a81724716932", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207439727, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"e5776763a0aa97cc", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207442303, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"3f89084b03c3a0a8", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207444743, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"9637e7d6e7838681", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207447023, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"8b6b89d551e128c1", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207449507, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"6d9badae2cc1ab02", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207451913, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"7543a176c2d98310", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - { - "guid":"688a648b", - "userGuid":"ea103bbe8cb8ce07", - "userName":"Pavel Strashniy", - "text":"Reply text", - "repliedOn":1375207487007, - "parentReplyGuid":null - } - ], - "createdOn":1375207485710, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"ee800f33a38147f3", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - { - "guid":"951bf0e0", - "userGuid":"ea103bbe8cb8ce07", - "userName":"Pavel Strashniy", - "text":"Reply text", - "repliedOn":1375207489163, - "parentReplyGuid":null - } - ], - "createdOn":1375207488430, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"4426b519c57526e4", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - { - "guid":"b8af7c3b", - "userGuid":"ea103bbe8cb8ce07", - "userName":"Pavel Strashniy", - "text":"Reply text", - "repliedOn":1375207491773, - "parentReplyGuid":null - } - ], - "createdOn":1375207490947, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"a0e1857d01912394", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - { - "guid":"90e42484", - "userGuid":"ea103bbe8cb8ce07", - "userName":"Pavel Strashniy", - "text":"Reply text", - "repliedOn":1375207494337, - "parentReplyGuid":null - } - ], - "createdOn":1375207493507, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"586ca3c1c11c510f", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Text", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207527383, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"423149f77099ea1e", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Text", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207529087, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"5a38daec40578f54", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Text", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207530710, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"b0fc4a0e83f7cbb6", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Text", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207532320, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"abf1a98b06fe295a", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Text", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207533883, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"f436d8160955fd52", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Text", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207536900, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"d77b333c72f4688f", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Area", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207539820, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"558f56f2a02a6d92", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207542850, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"f04df3f20831df5e", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"TextStrikeout", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207545803, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"4bcf6e75b0f90e67", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Polyline", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207548710, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"207030cf199a5463", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Text", - "access":"Private", - "replies":[ - - ], - "createdOn":1375207551587, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"5a19450e75ef5b12", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Text", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207554617, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"ec61f052de419cbb", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":0, - "height":0 - }, - "annotationPosition":null, - "range":null, - "svgPath":null, - "type":"Text", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207558023, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"06431efe20fa9830", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207591383, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"4745772570c406b8", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207594007, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"96e1aed704b83aeb", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207596493, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"54ccfaf157d11fca", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - { - "guid":"8b4f6992", - "userGuid":"ea103bbe8cb8ce07", - "userName":"Pavel Strashniy", - "text":"New reply text", - "repliedOn":1375207673837, - "parentReplyGuid":null - } - ], - "createdOn":1375207673100, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"f5b9ac3ccc7a779b", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - { - "guid":"dec9ccaf", - "userGuid":"ea103bbe8cb8ce07", - "userName":"Pavel Strashniy", - "text":"New reply text", - "repliedOn":1375207676663, - "parentReplyGuid":null - } - ], - "createdOn":1375207675913, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"bda6bbe6b8d5539e", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - { - "guid":"6a6c0df9", - "userGuid":"ea103bbe8cb8ce07", - "userName":"Pavel Strashniy", - "text":"New reply text", - "repliedOn":1375207679710, - "parentReplyGuid":null - } - ], - "createdOn":1375207678977, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"537c17444befb32f", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207713210, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"cd9a50f54ec2e8a1", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207714850, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"f0b16b938b2f4c95", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207716553, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"b13afab668e33286", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207718413, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"d66f16fd9711b222", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207720070, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"831f4c41fcb6c574", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207722040, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"a9d0f644517f6161", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207724007, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"0b52d566532dcf4f", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207725710, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"2f727722cab52fbf", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207727413, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"b9fa704c39c25de9", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207729180, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"0e9dd58f2b67ed65", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207730900, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"bffc45e596549bc2", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207733493, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"72af2cbb317893e1", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207736087, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"c298d213de6d2445", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207738617, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"35a6bd72b1178c37", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207741023, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"2648b083081b1e37", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207744150, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"3ca98834903ea726", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207747273, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"d35ba3fe053079ad", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207749960, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - }, - { - "guid":"e5c7755f1b25d0dc", - "documentGuid":null, - "sessionGuid":null, - "creatorGuid":"ea103bbe8cb8ce07", - "box":{ - "x":10, - "y":10, - "width":10, - "height":10 - }, - "annotationPosition":{ - "x":10, - "y":10 - }, - "range":null, - "svgPath":null, - "type":"Point", - "access":"Public", - "replies":[ - - ], - "createdOn":1375207752743, - "fontColor":0, - "fieldText":null, - "fontFamily":null, - "fontSize":null - } - ], - "serverTime":1375207881590 - }, - "status":"Ok", - "error_message":null, - "composedOn":1375207879840 + "result": { + "documentGuid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", + "sessionGuid": "2eaff6cea4f7fc21", + "annotations": [ + { + "guid": "d71705c6b7ed8498", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207363133, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "9247c81ff0887880", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207366367, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "f4b5ee8e543ce8b2", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207370133, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "fc45947141e01afa", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207372900, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "a550752dc8f4b4d0", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207375633, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "69a155e1d0c967a5", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207378447, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "2ae4733289936065", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207381163, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "2ad27688411aa2f0", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207383710, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "75df5549211de191", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207386133, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "29e9f2ab761774db", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207389163, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "69ba536d3eaef4f5", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207392040, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "40faf4596a39b3e4", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207394743, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "0ad17fd53c7c2fb6", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207397477, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "535f709709677c87", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207400337, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "f3f4fb3aac62b673", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207403163, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "56668faee8f72f4b", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207406007, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "6bb2b09ab7583883", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207408947, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "778adcc2494988e2", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207411790, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "957c51837232688f", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207414743, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "24466493beeb5f63", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207417507, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "d8d199abc8f4808d", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207420273, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "6c136fb84e8b6f28", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207423100, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "4079f1fd936f8eaa", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207425867, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "ca2f60e73d31bfa8", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207428757, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "832d5c19389752e0", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207431773, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "7f0a33afffd770a7", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207434773, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "d16f645d2d6abf2e", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207437210, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "c716a81724716932", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207439727, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "e5776763a0aa97cc", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207442303, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "3f89084b03c3a0a8", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207444743, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "9637e7d6e7838681", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207447023, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "8b6b89d551e128c1", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207449507, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "6d9badae2cc1ab02", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207451913, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "7543a176c2d98310", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + { + "guid": "688a648b", + "userGuid": "ea103bbe8cb8ce07", + "userName": "Pavel Strashniy", + "text": "Reply text", + "repliedOn": 1375207487007, + "parentReplyGuid": null + } + ], + "createdOn": 1375207485710, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "ee800f33a38147f3", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + { + "guid": "951bf0e0", + "userGuid": "ea103bbe8cb8ce07", + "userName": "Pavel Strashniy", + "text": "Reply text", + "repliedOn": 1375207489163, + "parentReplyGuid": null + } + ], + "createdOn": 1375207488430, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "4426b519c57526e4", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + { + "guid": "b8af7c3b", + "userGuid": "ea103bbe8cb8ce07", + "userName": "Pavel Strashniy", + "text": "Reply text", + "repliedOn": 1375207491773, + "parentReplyGuid": null + } + ], + "createdOn": 1375207490947, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "a0e1857d01912394", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + { + "guid": "90e42484", + "userGuid": "ea103bbe8cb8ce07", + "userName": "Pavel Strashniy", + "text": "Reply text", + "repliedOn": 1375207494337, + "parentReplyGuid": null + } + ], + "createdOn": 1375207493507, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "586ca3c1c11c510f", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Text", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207527383, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "423149f77099ea1e", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Text", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207529087, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "5a38daec40578f54", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Text", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207530710, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "b0fc4a0e83f7cbb6", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Text", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207532320, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "abf1a98b06fe295a", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Text", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207533883, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "f436d8160955fd52", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Text", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207536900, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "d77b333c72f4688f", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Area", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207539820, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "558f56f2a02a6d92", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207542850, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "f04df3f20831df5e", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "TextStrikeout", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207545803, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "4bcf6e75b0f90e67", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Polyline", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207548710, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "207030cf199a5463", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Text", + "access": "Private", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207551587, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "5a19450e75ef5b12", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Text", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207554617, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "ec61f052de419cbb", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 0.0, + "height": 0.0 + }, + "annotationPosition": null, + "range": null, + "svgPath": null, + "type": "Text", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207558023, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "06431efe20fa9830", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207591383, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "4745772570c406b8", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207594007, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "96e1aed704b83aeb", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207596493, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "54ccfaf157d11fca", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + { + "guid": "8b4f6992", + "userGuid": "ea103bbe8cb8ce07", + "userName": "Pavel Strashniy", + "text": "New reply text", + "repliedOn": 1375207673837, + "parentReplyGuid": null + } + ], + "createdOn": 1375207673100, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "f5b9ac3ccc7a779b", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + { + "guid": "dec9ccaf", + "userGuid": "ea103bbe8cb8ce07", + "userName": "Pavel Strashniy", + "text": "New reply text", + "repliedOn": 1375207676663, + "parentReplyGuid": null + } + ], + "createdOn": 1375207675913, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "bda6bbe6b8d5539e", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + { + "guid": "6a6c0df9", + "userGuid": "ea103bbe8cb8ce07", + "userName": "Pavel Strashniy", + "text": "New reply text", + "repliedOn": 1375207679710, + "parentReplyGuid": null + } + ], + "createdOn": 1375207678977, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "537c17444befb32f", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207713210, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "cd9a50f54ec2e8a1", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207714850, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "f0b16b938b2f4c95", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207716553, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "b13afab668e33286", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207718413, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "d66f16fd9711b222", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207720070, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "831f4c41fcb6c574", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207722040, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "a9d0f644517f6161", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207724007, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "0b52d566532dcf4f", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207725710, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "2f727722cab52fbf", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207727413, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "b9fa704c39c25de9", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207729180, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "0e9dd58f2b67ed65", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207730900, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "bffc45e596549bc2", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207733493, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "72af2cbb317893e1", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207736087, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "c298d213de6d2445", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207738617, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "35a6bd72b1178c37", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207741023, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "2648b083081b1e37", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207744150, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "3ca98834903ea726", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207747273, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "d35ba3fe053079ad", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207749960, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + }, + { + "guid": "e5c7755f1b25d0dc", + "documentGuid": null, + "sessionGuid": null, + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "pageNumber": null, "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + + ], + "createdOn": 1375207752743, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, + "fieldText": null, + "fontFamily": null, + "fontSize": null + } + ], + "serverTime": 1375207881590 + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375207879840 } \ No newline at end of file diff --git a/src/test/resources/responses/ant/ResizeAnnotation.json b/src/test/resources/responses/ant/ResizeAnnotation.json deleted file mode 100644 index 9e26dfe..0000000 --- a/src/test/resources/responses/ant/ResizeAnnotation.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/test/resources/responses/ant/SetAnnotationAccess.json b/src/test/resources/responses/ant/SetAnnotationAccess.json index e20696e..c33c7bc 100644 --- a/src/test/resources/responses/ant/SetAnnotationAccess.json +++ b/src/test/resources/responses/ant/SetAnnotationAccess.json @@ -1,35 +1,35 @@ { - "result": { - "annotation": { - "guid": "540c01ab8fdfad06", - "documentGuid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", - "sessionGuid": "2eaff6cea4f7fc21", - "creatorGuid": "ea103bbe8cb8ce07", - "box": { - "x": 10, - "y": 10, - "width": 10, - "height": 10 - }, - "annotationPosition": { - "x": 10, - "y": 10 - }, - "range": null, - "svgPath": null, - "type": "Point", - "access": "Public", - "replies": [ + "result": { + "annotation": { + "guid": "540c01ab8fdfad06", + "documentGuid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", + "sessionGuid": "2eaff6cea4f7fc21", + "creatorGuid": "ea103bbe8cb8ce07", + "box": { + "x": 10, + "y": 10, + "width": 10, + "height": 10 + }, + "annotationPosition": { + "x": 10, + "y": 10 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ - ], - "createdOn": 1375208092467, - "fontColor": 0, - "fieldText": null, - "fontFamily": null, - "fontSize": null - } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375208092918 + ], + "createdOn": 1375208092467, + "fontColor": 0, + "fieldText": null, + "fontFamily": null, + "fontSize": null + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375208092918 } \ No newline at end of file diff --git a/src/test/resources/responses/ant/SetAnnotationCollaborators.json b/src/test/resources/responses/ant/SetAnnotationCollaborators.json index 14cf2ae..1c09369 100644 --- a/src/test/resources/responses/ant/SetAnnotationCollaborators.json +++ b/src/test/resources/responses/ant/SetAnnotationCollaborators.json @@ -10,7 +10,8 @@ "lastName": "Strashniy", "access_rights": null, "color": null, - "customEmailMessage": null + "customEmailMessage": null, + "avatar": [] }, "collaborators": [ { @@ -19,9 +20,10 @@ "primary_email": "user_one@mailinator.com", "firstName": "John", "lastName": "Smith", - "access_rights": 15, + "access_rights": "15", "color": 7220678, - "customEmailMessage": null + "customEmailMessage": null, + "avatar": [] }, { "id": 22103, @@ -29,9 +31,10 @@ "primary_email": "user_two@mailinator.com", "firstName": null, "lastName": null, - "access_rights": 15, + "access_rights": "15", "color": 16515083, - "customEmailMessage": null + "customEmailMessage": null, + "avatar": [] } ] }, diff --git a/src/test/resources/responses/ant/SetReviewerRights.json b/src/test/resources/responses/ant/SetReviewerRights.json index 97a6645..8868927 100644 --- a/src/test/resources/responses/ant/SetReviewerRights.json +++ b/src/test/resources/responses/ant/SetReviewerRights.json @@ -1,5 +1,6 @@ { "result": { + }, "status": "Ok", "error_message": null, diff --git a/src/test/resources/responses/ant/SetSessionCallbackUrl.json b/src/test/resources/responses/ant/SetSessionCallbackUrl.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/ant/SetSessionCallbackUrl.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/ant/SetTextFieldColor.json b/src/test/resources/responses/ant/SetTextFieldColor.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/ant/SetTextFieldColor.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/async/DeleteJob.json b/src/test/resources/responses/async/DeleteJob.json deleted file mode 100644 index 4a80cee..0000000 --- a/src/test/resources/responses/async/DeleteJob.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "result": { - "job_id": 801916 - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375208465325 -} \ No newline at end of file diff --git a/src/test/resources/responses/async/GetJobDocuments.json b/src/test/resources/responses/async/GetJobDocuments.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/async/GetJobDocuments.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/async/GetJobJson.json b/src/test/resources/responses/async/GetJobJson.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/async/GetJobJson.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/async/GetJobResources.json b/src/test/resources/responses/async/GetJobResources.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/async/GetJobResources.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/async/GetJobsDocuments.json b/src/test/resources/responses/async/GetJobsDocuments.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/async/GetJobsDocuments.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/comparison/Compare.json b/src/test/resources/responses/comparison/Compare.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/comparison/Compare.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/comparison/DownloadResult.json b/src/test/resources/responses/comparison/DownloadResult.json deleted file mode 100644 index 9e26dfe..0000000 --- a/src/test/resources/responses/comparison/DownloadResult.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/test/resources/responses/comparison/GetChanges.json b/src/test/resources/responses/comparison/GetChanges.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/comparison/GetChanges.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/comparison/GetDocumentDetails.json b/src/test/resources/responses/comparison/GetDocumentDetails.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/comparison/GetDocumentDetails.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/comparison/UpdateChanges.json b/src/test/resources/responses/comparison/UpdateChanges.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/comparison/UpdateChanges.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/GetDocumentContent.json b/src/test/resources/responses/doc/GetDocumentContent.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/GetDocumentContent.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/GetDocumentMetadataByPath.json b/src/test/resources/responses/doc/GetDocumentMetadataByPath.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/GetDocumentMetadataByPath.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/GetDocumentPageHtml.json b/src/test/resources/responses/doc/GetDocumentPageHtml.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/GetDocumentPageHtml.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/GetDocumentPageHtmlFixed.json b/src/test/resources/responses/doc/GetDocumentPageHtmlFixed.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/GetDocumentPageHtmlFixed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/GetDocumentPageImage.json b/src/test/resources/responses/doc/GetDocumentPageImage.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/GetDocumentPageImage.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/GetDocumentPagesHtmlUrls.json b/src/test/resources/responses/doc/GetDocumentPagesHtmlUrls.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/GetDocumentPagesHtmlUrls.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/GetDocumentPagesImageUrls.json b/src/test/resources/responses/doc/GetDocumentPagesImageUrls.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/GetDocumentPagesImageUrls.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/GetDocumentTags.json b/src/test/resources/responses/doc/GetDocumentTags.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/GetDocumentTags.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/GetEditLock.json b/src/test/resources/responses/doc/GetEditLock.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/GetEditLock.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/GetSharedDocuments.json b/src/test/resources/responses/doc/GetSharedDocuments.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/GetSharedDocuments.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/RemoveDocumentTags.json b/src/test/resources/responses/doc/RemoveDocumentTags.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/RemoveDocumentTags.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/RemoveEditLock.json b/src/test/resources/responses/doc/RemoveEditLock.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/RemoveEditLock.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/SetDocumentPassword.json b/src/test/resources/responses/doc/SetDocumentPassword.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/SetDocumentPassword.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/SetDocumentTags.json b/src/test/resources/responses/doc/SetDocumentTags.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/SetDocumentTags.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/SetDocumentUserStatus.json b/src/test/resources/responses/doc/SetDocumentUserStatus.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/SetDocumentUserStatus.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/ViewDocument.json b/src/test/resources/responses/doc/ViewDocument.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/ViewDocument.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/doc/ViewDocumentAsHtml.json b/src/test/resources/responses/doc/ViewDocumentAsHtml.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/doc/ViewDocumentAsHtml.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/merge/DeleteDataSource.json b/src/test/resources/responses/merge/DeleteDataSource.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/merge/DeleteDataSource.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/merge/DeleteDocumentQuestionnaire.json b/src/test/resources/responses/merge/DeleteDocumentQuestionnaire.json deleted file mode 100644 index 2b12b92..0000000 --- a/src/test/resources/responses/merge/DeleteDocumentQuestionnaire.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "result": { - "document_id": 317869, - "questionnaire_id": null - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375212226053 -} \ No newline at end of file diff --git a/src/test/resources/responses/merge/DeleteQuestionnaire.json b/src/test/resources/responses/merge/DeleteQuestionnaire.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/merge/DeleteQuestionnaire.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/merge/FillExecution.json b/src/test/resources/responses/merge/FillExecution.json deleted file mode 100644 index f6f5018..0000000 --- a/src/test/resources/responses/merge/FillExecution.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "result": { - "job_id": null, - "document_id": 317869, - "datasource_id": null - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375212226053 -} \ No newline at end of file diff --git a/src/test/resources/responses/merge/FillQuestionnaire.json b/src/test/resources/responses/merge/FillQuestionnaire.json deleted file mode 100644 index f6f5018..0000000 --- a/src/test/resources/responses/merge/FillQuestionnaire.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "result": { - "job_id": null, - "document_id": 317869, - "datasource_id": null - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375212226053 -} \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetDocumentQuestionnaires.json b/src/test/resources/responses/merge/GetDocumentQuestionnaires.json index 0bef693..521f86a 100644 --- a/src/test/resources/responses/merge/GetDocumentQuestionnaires.json +++ b/src/test/resources/responses/merge/GetDocumentQuestionnaires.json @@ -15,11 +15,14 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, + "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null, "max_length": null, + + } ], "conditions": null @@ -59,11 +62,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -103,11 +106,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -147,11 +150,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -191,11 +194,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -237,11 +240,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -281,11 +284,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -325,11 +328,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -369,11 +372,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -413,11 +416,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -459,11 +462,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -503,11 +506,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -547,11 +550,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -591,11 +594,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -635,11 +638,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -681,11 +684,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -725,11 +728,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -769,11 +772,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -813,11 +816,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -857,11 +860,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -903,11 +906,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -947,11 +950,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -991,11 +994,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1035,11 +1038,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1079,11 +1082,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1125,11 +1128,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1169,11 +1172,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1213,11 +1216,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1257,11 +1260,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1301,11 +1304,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1347,11 +1350,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1391,11 +1394,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1435,11 +1438,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1479,11 +1482,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1523,11 +1526,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1569,11 +1572,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1613,11 +1616,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1657,11 +1660,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1701,11 +1704,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1745,11 +1748,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1791,11 +1794,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1835,11 +1838,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1879,11 +1882,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null @@ -1923,11 +1926,11 @@ "def_answer": "Answer", "required": true, "disabled": false, - "type": "GenericText", + "type": "GenericText", "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", "ordinal": null } ], "conditions": null diff --git a/src/test/resources/responses/merge/GetQuestionnaire.json b/src/test/resources/responses/merge/GetQuestionnaire.json index 211cb5b..5d373e8 100644 --- a/src/test/resources/responses/merge/GetQuestionnaire.json +++ b/src/test/resources/responses/merge/GetQuestionnaire.json @@ -14,9 +14,14 @@ "required": true, "disabled": false, "type": "GenericText", + "max_length": null, + "rect": null, + "acceptableValues": null, "answers": [ { "text": "Text", + "ordinal": null, + "value": "Value" } ], diff --git a/src/test/resources/responses/merge/GetQuestionnaireExecution.json b/src/test/resources/responses/merge/GetQuestionnaireExecution.json index 65764be..8cf36a2 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireExecution.json +++ b/src/test/resources/responses/merge/GetQuestionnaireExecution.json @@ -14,10 +14,14 @@ "required": true, "disabled": false, "type": "GenericText", + "acceptableValues": null, + "max_length": null, + "rect": null, "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", + "ordinal": null } ], "conditions": null diff --git a/src/test/resources/responses/merge/GetQuestionnaireFields.json b/src/test/resources/responses/merge/GetQuestionnaireFields.json index 8cc10b8..78c53db 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireFields.json +++ b/src/test/resources/responses/merge/GetQuestionnaireFields.json @@ -4,6 +4,10 @@ { "page": 0, "name": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "acceptableValues": null, + "fieldtype": null, + "mandatory": null, + "maxlength": null, "type": null, "rect": null } diff --git a/src/test/resources/responses/merge/GetQuestionnaires.json b/src/test/resources/responses/merge/GetQuestionnaires.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/merge/GetQuestionnaires.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/merge/UpdateDataSourceFields.json b/src/test/resources/responses/merge/UpdateDataSourceFields.json deleted file mode 100644 index 9e26dfe..0000000 --- a/src/test/resources/responses/merge/UpdateDataSourceFields.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/CreateUserLogin.json b/src/test/resources/responses/mgmt/CreateUserLogin.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/CreateUserLogin.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/DeleteAccount.json b/src/test/resources/responses/mgmt/DeleteAccount.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/DeleteAccount.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/DeleteAccountUser.json b/src/test/resources/responses/mgmt/DeleteAccountUser.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/DeleteAccountUser.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GenerateKeyForUser.json b/src/test/resources/responses/mgmt/GenerateKeyForUser.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GenerateKeyForUser.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetAccount.json b/src/test/resources/responses/mgmt/GetAccount.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetAccount.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetAccountUsers.json b/src/test/resources/responses/mgmt/GetAccountUsers.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetAccountUsers.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetAlienUserProfile.json b/src/test/resources/responses/mgmt/GetAlienUserProfile.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetAlienUserProfile.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetRoles.json b/src/test/resources/responses/mgmt/GetRoles.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetRoles.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetStorageProviders.json b/src/test/resources/responses/mgmt/GetStorageProviders.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetStorageProviders.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetUserEmbedKey.json b/src/test/resources/responses/mgmt/GetUserEmbedKey.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetUserEmbedKey.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetUserEmbedKeyFromGuid.json b/src/test/resources/responses/mgmt/GetUserEmbedKeyFromGuid.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetUserEmbedKeyFromGuid.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetUserProfile.json b/src/test/resources/responses/mgmt/GetUserProfile.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetUserProfile.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetUserProfileByClaimedToken.json b/src/test/resources/responses/mgmt/GetUserProfileByClaimedToken.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetUserProfileByClaimedToken.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetUserProfileByResetToken.json b/src/test/resources/responses/mgmt/GetUserProfileByResetToken.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetUserProfileByResetToken.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetUserProfileByVerifToken.json b/src/test/resources/responses/mgmt/GetUserProfileByVerifToken.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetUserProfileByVerifToken.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/GetUserRoles.json b/src/test/resources/responses/mgmt/GetUserRoles.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/GetUserRoles.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/ResetUserPassword.json b/src/test/resources/responses/mgmt/ResetUserPassword.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/ResetUserPassword.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/mgmt/Revoke.json b/src/test/resources/responses/mgmt/Revoke.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/mgmt/Revoke.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/post/CompressByPost.json b/src/test/resources/responses/post/CompressByPost.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/post/CompressByPost.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/post/DeleteByPost.json b/src/test/resources/responses/post/DeleteByPost.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/post/DeleteByPost.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/post/DeleteFromFolderByPost.json b/src/test/resources/responses/post/DeleteFromFolderByPost.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/post/DeleteFromFolderByPost.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/post/RenameByPost.json b/src/test/resources/responses/post/RenameByPost.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/post/RenameByPost.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/shared/Download.json b/src/test/resources/responses/shared/Download.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/shared/Download.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/shared/GetHtml.json b/src/test/resources/responses/shared/GetHtml.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/shared/GetHtml.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/shared/GetPackage.json b/src/test/resources/responses/shared/GetPackage.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/shared/GetPackage.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/shared/GetXml.json b/src/test/resources/responses/shared/GetXml.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/shared/GetXml.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/shared/LoginUser.json b/src/test/resources/responses/shared/LoginUser.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/shared/LoginUser.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddContactIntegration.json b/src/test/resources/responses/signature/AddContactIntegration.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/AddContactIntegration.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddSignatureEnvelopeField.json b/src/test/resources/responses/signature/AddSignatureEnvelopeField.json index 79ac99b..8fdd3ee 100644 --- a/src/test/resources/responses/signature/AddSignatureEnvelopeField.json +++ b/src/test/resources/responses/signature/AddSignatureEnvelopeField.json @@ -1,11 +1,47 @@ { - "result": { - "envelopeId": "0cd5d92195bcde2133abc831856c3c0b", - "fields": [ - - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375214942918 + "result": { + "envelopeId": "0cd5d92195bcde2133abc831856c3c0b", + "documentId": "6c6cd2b7d02ad6704c2f45ab3d75b847679dc815518b08a8d83be512b35d514c", + "recipientId": "eaace2d6f009b1926c46ae24710b7ac9", + "fields": { + "id": "90c6661a45e2c51ec9487b47783ed15b", + "envelopeId": "0cd5d92195bcde2133abc831856c3c0b", + "recipientId": "eaace2d6f009b1926c46ae24710b7ac9", + "name": "Signature", + "mandatory": true, + "order": 0, + "regularExpression": "^.+$", + "getDataFrom": null, + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "signatureFieldId": 1, + "locations": [ + { + "id": "703787254fc0ecf23967d476f1616c03", + "documentId": "6c6cd2b7d02ad6704c2f45ab3d75b847679dc815518b08a8d83be512b35d514c", + "fieldId": "90c6661a45e2c51ec9487b47783ed15b", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90.0, + "locationHeight": 30.0, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0 + } + ], + "fieldType": 1, + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Signature", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375214942918 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddSignatureFormField.json b/src/test/resources/responses/signature/AddSignatureFormField.json index 6b99723..dad1eef 100644 --- a/src/test/resources/responses/signature/AddSignatureFormField.json +++ b/src/test/resources/responses/signature/AddSignatureFormField.json @@ -1,44 +1,44 @@ { - "result": { - "formId": "cfe3b0c0d78efd69d8604d12fcd31485", - "documentId": "bcff63ed734a125995c65abbed33b6bd77b2f8658761db0aeac8a527678def0f", - "participantId": null, - "field": { - "id": "a7e8ed61945a869b9545d71cebe310be", - "formGuid": "cfe3b0c0d78efd69d8604d12fcd31485", - "participantGuid": "", - "name": "Signature", - "mandatory": true, - "regularExpression": "^.+$", - "data": null, - "fillTimeStamp": "1/1/1970 12:00:00 AM", - "locations": [ - { - "id": "0a859f45ff40a8c5a2b92faff8ee272f", - "documentGuid": "bcff63ed734a125995c65abbed33b6bd77b2f8658761db0aeac8a527678def0f", - "fieldGuid": "a7e8ed61945a869b9545d71cebe310be", - "page": 1, - "locationX": 0.1, - "locationY": 0.1, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Arial", - "fontColor": "black", - "fontSize": 10, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "align": 0 - } - ], - "fieldType": 1, - "acceptableValues": null, - "defaultValue": null, - "tooltip": "Signature", - "guidanceText": "" + "result": { + "formId": "cfe3b0c0d78efd69d8604d12fcd31485", + "documentId": "bcff63ed734a125995c65abbed33b6bd77b2f8658761db0aeac8a527678def0f", + "participantId": null, + "field": { + "id": "a7e8ed61945a869b9545d71cebe310be", + "formGuid": "cfe3b0c0d78efd69d8604d12fcd31485", + "participantGuid": "", + "name": "Signature", + "mandatory": true, + "regularExpression": "^.+$", + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "locations": [ + { + "id": "0a859f45ff40a8c5a2b92faff8ee272f", + "documentGuid": "bcff63ed734a125995c65abbed33b6bd77b2f8658761db0aeac8a527678def0f", + "fieldGuid": "a7e8ed61945a869b9545d71cebe310be", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375215104090 + ], + "fieldType": 1, + "acceptableValues": null, + "defaultValue": null, + "tooltip": "Signature", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375215104090 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddSignatureTemplateField.json b/src/test/resources/responses/signature/AddSignatureTemplateField.json index f381df7..5129b92 100644 --- a/src/test/resources/responses/signature/AddSignatureTemplateField.json +++ b/src/test/resources/responses/signature/AddSignatureTemplateField.json @@ -1,11 +1,44 @@ { - "result": { - "templateId": "b9fd52a9023dbe1eb077c1bf3e0ee985", - "documentId": null, - "recipientId": null, - "field": null - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375217736330 + "result": { + "templateId": "07ebf782805ab99b4203389ef0eb0aa6", + "documentId": "f487ba8303555ae51dc04f911f534d33af24fb93d0de0a1ce332ae051e7e99e3", + "recipientId": "253b7da38fa68a43f2a7053fe3a1bf7f", + "field": { + "id": "a32761c984ea1ef128fd859b5424df64", + "templateId": "07ebf782805ab99b4203389ef0eb0aa6", + "recipientId": "253b7da38fa68a43f2a7053fe3a1bf7f", + "name": "Signature", + "mandatory": true, + "order": 0, + "regularExpression": "^.+$", + "signatureFieldId": 1, + "locations": [ + { + "id": "8313a9e53db3d3ea3f43ad187fe2dd7c", + "documentId": "f487ba8303555ae51dc04f911f534d33af24fb93d0de0a1ce332ae051e7e99e3", + "fieldId": "a32761c984ea1ef128fd859b5424df64", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0 + } + ], + "fieldType": 1, + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Signature", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375215213372 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ArchiveSignatureEnvelope.json b/src/test/resources/responses/signature/ArchiveSignatureEnvelope.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/ArchiveSignatureEnvelope.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/AssignSignatureEnvelopeField.json b/src/test/resources/responses/signature/AssignSignatureEnvelopeField.json index 7944b39..218e6c8 100644 --- a/src/test/resources/responses/signature/AssignSignatureEnvelopeField.json +++ b/src/test/resources/responses/signature/AssignSignatureEnvelopeField.json @@ -1,47 +1,47 @@ { - "result": { - "envelopeId": "0cbb85fe4ab392429cef97f0fc4f1b63", - "documentId": "430dbf5f86250f1e49a2a81ae61cb0d002a154fc8e9d896d7c82e679b053fdfb", - "recipientId": "73d7b0dfc7c146e15ad4dab74c83a711", - "field": { - "id": "5f54ae3eed76028049d0e80c0ae7d150", - "envelopeId": "0cbb85fe4ab392429cef97f0fc4f1b63", - "recipientId": "73d7b0dfc7c146e15ad4dab74c83a711", - "name": "Signature", - "mandatory": true, - "order": 0, - "regularExpression": "", - "getDataFrom": null, - "data": null, - "fillTimeStamp": "1/1/1970 12:00:00 AM", - "signatureFieldId": 1, - "locations": [ - { - "id": "786969ad2fdcf8eecb0b0c6bd7eccedc", - "documentId": "430dbf5f86250f1e49a2a81ae61cb0d002a154fc8e9d896d7c82e679b053fdfb", - "fieldId": "5f54ae3eed76028049d0e80c0ae7d150", - "page": 1, - "locationX": 0.1, - "locationY": 0.1, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Arial", - "fontColor": "black", - "fontSize": 10, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "align": 0 - } - ], - "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Signature", - "guidanceText": "" + "result": { + "envelopeId": "0cbb85fe4ab392429cef97f0fc4f1b63", + "documentId": "430dbf5f86250f1e49a2a81ae61cb0d002a154fc8e9d896d7c82e679b053fdfb", + "recipientId": "73d7b0dfc7c146e15ad4dab74c83a711", + "field": { + "id": "5f54ae3eed76028049d0e80c0ae7d150", + "envelopeId": "0cbb85fe4ab392429cef97f0fc4f1b63", + "recipientId": "73d7b0dfc7c146e15ad4dab74c83a711", + "name": "Signature", + "mandatory": true, + "order": 0, + "regularExpression": "", + "getDataFrom": null, + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "signatureFieldId": 1, + "locations": [ + { + "id": "786969ad2fdcf8eecb0b0c6bd7eccedc", + "documentId": "430dbf5f86250f1e49a2a81ae61cb0d002a154fc8e9d896d7c82e679b053fdfb", + "fieldId": "5f54ae3eed76028049d0e80c0ae7d150", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375215375043 + ], + "fieldType": 1, + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Signature", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375215375043 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AssignSignatureTemplateField.json b/src/test/resources/responses/signature/AssignSignatureTemplateField.json index b37d16c..5d2a110 100644 --- a/src/test/resources/responses/signature/AssignSignatureTemplateField.json +++ b/src/test/resources/responses/signature/AssignSignatureTemplateField.json @@ -1,44 +1,44 @@ { - "result": { - "templateId": "3d5b8a8183c2303f4f39ae52482f1cea", - "documentId": "ef18ca622c70d042d0d90e0b2bd29d886b9fe63c537b80ade8dc2e12cad214ec", - "recipientId": "7e6545a640da60fd0ced9a0506be3593", - "field": { - "id": "04bc674b1ee8d501625e413bc6e75c49", - "templateId": "3d5b8a8183c2303f4f39ae52482f1cea", - "recipientId": "7e6545a640da60fd0ced9a0506be3593", - "name": "Signature", - "mandatory": true, - "order": 0, - "regularExpression": "", - "signatureFieldId": 1, - "locations": [ - { - "id": "5a03a46d44422facc678cdddcf632c55", - "documentId": "ef18ca622c70d042d0d90e0b2bd29d886b9fe63c537b80ade8dc2e12cad214ec", - "fieldId": "04bc674b1ee8d501625e413bc6e75c49", - "page": 1, - "locationX": 0.1, - "locationY": 0.1, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Arial", - "fontColor": "black", - "fontSize": 10, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "align": 0 - } - ], - "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Signature", - "guidanceText": "" + "result": { + "templateId": "3d5b8a8183c2303f4f39ae52482f1cea", + "documentId": "ef18ca622c70d042d0d90e0b2bd29d886b9fe63c537b80ade8dc2e12cad214ec", + "recipientId": "7e6545a640da60fd0ced9a0506be3593", + "field": { + "id": "04bc674b1ee8d501625e413bc6e75c49", + "templateId": "3d5b8a8183c2303f4f39ae52482f1cea", + "recipientId": "7e6545a640da60fd0ced9a0506be3593", + "name": "Signature", + "mandatory": true, + "order": 0, + "regularExpression": "", + "signatureFieldId": 1, + "locations": [ + { + "id": "5a03a46d44422facc678cdddcf632c55", + "documentId": "ef18ca622c70d042d0d90e0b2bd29d886b9fe63c537b80ade8dc2e12cad214ec", + "fieldId": "04bc674b1ee8d501625e413bc6e75c49", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375215473543 + ], + "fieldType": 1, + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Signature", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375215473543 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CancelSignatureEnvelope.json b/src/test/resources/responses/signature/CancelSignatureEnvelope.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/CancelSignatureEnvelope.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeletePredefinedList.json b/src/test/resources/responses/signature/DeletePredefinedList.json index 331f49e..b3ccabf 100644 --- a/src/test/resources/responses/signature/DeletePredefinedList.json +++ b/src/test/resources/responses/signature/DeletePredefinedList.json @@ -1,6 +1,6 @@ { "result": { - "list": { + "lists": { "id": "38d51389a5cd1b4a4c42fcb01ac4eaed", "name": "List 90026545089663", "values": "value1;value2", diff --git a/src/test/resources/responses/signature/DeleteSignatureTemplateDocument.json b/src/test/resources/responses/signature/DeleteSignatureTemplateDocument.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/DeleteSignatureTemplateDocument.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureTemplateField.json b/src/test/resources/responses/signature/DeleteSignatureTemplateField.json index a962ee8..402511f 100644 --- a/src/test/resources/responses/signature/DeleteSignatureTemplateField.json +++ b/src/test/resources/responses/signature/DeleteSignatureTemplateField.json @@ -1,8 +1,7 @@ { - "result": { - "template": null - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375216537845 + "result": { + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375216537845 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetContacts.json b/src/test/resources/responses/signature/GetContacts.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/GetContacts.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignDocumentStatus.json b/src/test/resources/responses/signature/GetSignDocumentStatus.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/GetSignDocumentStatus.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureEnvelopeFieldData.json b/src/test/resources/responses/signature/GetSignatureEnvelopeFieldData.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/GetSignatureEnvelopeFieldData.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureEnvelopeFields.json b/src/test/resources/responses/signature/GetSignatureEnvelopeFields.json index 8520490..61ed628 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopeFields.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopeFields.json @@ -1,47 +1,47 @@ { - "result": { + "result": { + "envelopeId": "ee63173e3b74757d5c0e13096fd1dd01", + "fields": [ + { + "id": "1219b36c8f33a776b1b3a9dc843052fc", "envelopeId": "ee63173e3b74757d5c0e13096fd1dd01", - "fields": [ - { - "id": "1219b36c8f33a776b1b3a9dc843052fc", - "envelopeId": "ee63173e3b74757d5c0e13096fd1dd01", - "recipientId": "1c5bb235a13dbf064d78295d4bc878b4", - "name": "Signature", - "mandatory": true, - "order": 0, - "regularExpression": "", - "getDataFrom": null, - "data": null, - "fillTimeStamp": "1/1/1970 12:00:00 AM", - "signatureFieldId": 1, - "locations": [ - { - "id": "67fb68afe59f0e4ba99c3bd95f6d7349", - "documentId": "d55f95241389b63add7dd780688ea386a02a6068253ba8cdf30e1bc6a4720782", - "fieldId": "1219b36c8f33a776b1b3a9dc843052fc", - "page": 1, - "locationX": 0.1, - "locationY": 0.1, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Arial", - "fontColor": "black", - "fontSize": 10, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "align": 0 - } - ], - "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Signature", - "guidanceText": "" - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375217117892 + "recipientId": "1c5bb235a13dbf064d78295d4bc878b4", + "name": "Signature", + "mandatory": true, + "order": 0, + "regularExpression": "", + "getDataFrom": null, + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "signatureFieldId": 1, + "locations": [ + { + "id": "67fb68afe59f0e4ba99c3bd95f6d7349", + "documentId": "d55f95241389b63add7dd780688ea386a02a6068253ba8cdf30e1bc6a4720782", + "fieldId": "1219b36c8f33a776b1b3a9dc843052fc", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0 + } + ], + "fieldType": 1, + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Signature", + "guidanceText": "" + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375217117892 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureEnvelopeResources.json b/src/test/resources/responses/signature/GetSignatureEnvelopeResources.json index 8478c61..7960a3a 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopeResources.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopeResources.json @@ -1,33 +1,23304 @@ { - "result": { - "documents": [ + "result": { + "documents": [ + { + "documentId": "ee5729654be08a887194b11c38e216f5de44c988acff84cfc293c86269475e92", + "envelopeId": "", + "order": 1, + "name": "document_one_sign.pdf", + "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", + "finalDocumentMD5": "49b7eecc3102f50f11e793ecd94fe603", + "originalDocumentPagesCount": 1, + "fieldsCount": 0, + "originalDocumentImportedFields": [ ], - "recipients": [ - { - "id": "eeb57ed729ef9ce3f5d54969f7168e8b", - "firstName": null, - "lastName": null, - "email": null, - "userGuid": null, - "order": 0, - "roleId": 2, - "status": null, - "statusMessage": null, - "statusDateTime": null, - "delegatedRecipientId": null, - "signatureFingerprint": null, - "signatureHost": null, - "signatureLocation": null, - "signatureBrowser": null, - "embedUrl": null - } + "originalDocumentId": "ee5729654be08a887194b11c38e216f5de44c988acff84cfc293c86269475e92" + }, + { + "documentId": "bd23d6993bc46054f524080f8fc2d5f65e115bc94711574c7ca3aa22a6b1e412", + "envelopeId": "", + "order": 0, + "name": "document_one_sign.pdf", + "originalDocumentMD5": "641d22d9cebbd1c3bdae719a0f1ea6a4", + "finalDocumentMD5": "", + "originalDocumentPagesCount": 1, + "fieldsCount": 0, + "originalDocumentImportedFields": [ + + ], + "originalDocumentId": "bd23d6993bc46054f524080f8fc2d5f65e115bc94711574c7ca3aa22a6b1e412" + }, + { + "documentId": "de3aa7ea290fe07cdf24f3020bc3838742c11745bd4f1061591d176071576592", + "envelopeId": "", + "order": 0, + "name": "GroupDocs_Signature_Demo_sign.pdf", + "originalDocumentMD5": "ad08a5df30d76198da5ecde668bb0bcb", + "finalDocumentMD5": "61b4dceb516349dbc05f0b42848e3453", + "originalDocumentPagesCount": 1, + "fieldsCount": 0, + "originalDocumentImportedFields": [ + { + "id": "67c641f6512bf71b2ded7de8917315da", + "name": "Signature", + "mandatory": false, + "signatureFieldId": null, + "locations": [ + { + "id": "6f82cc8eca38dd976cb97eda8e4e722d", + "fieldId": null, + "page": 1, + "locationX": 0.55268, + "locationY": 0.3954, + "locationWidth": 200, + "locationHeight": 66, + "fontName": "Helvetica", + "fontColor": "#000000", + "fontSize": 0 + } + ], + "fieldType": 1, + "acceptableValues": "", + "defaultValue": null, + "tooltip": null + }, + { + "id": "8a7267a10558c163c77acc45b302a257", + "name": "City", + "mandatory": true, + "signatureFieldId": null, + "locations": [ + { + "id": "85811db04a95a1a6a9ff33bec4cfb726", + "fieldId": null, + "page": 1, + "locationX": 0.55268, + "locationY": 0.30513, + "locationWidth": 210, + "locationHeight": 30, + "fontName": "Unknown", + "fontColor": "#000000", + "fontSize": 12 + } + ], + "fieldType": 2, + "acceptableValues": "", + "defaultValue": null, + "tooltip": null + } ], - "dates": [ + "originalDocumentId": "de3aa7ea290fe07cdf24f3020bc3838742c11745bd4f1061591d176071576592" + }, + { + "documentId": "fe07139b49b38989b528db6e37496e964fc7b6d6eab2e159a1995d44a8505ab9", + "envelopeId": "", + "order": 0, + "name": "document_one_sign.pdf", + "originalDocumentMD5": "edf5f871f275bdc5158ad6b3c4a5e9f4", + "finalDocumentMD5": "0c4f082d4404c8451c3116008bffa79f", + "originalDocumentPagesCount": 1, + "fieldsCount": 0, + "originalDocumentImportedFields": [ - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375217736330 + ], + "originalDocumentId": "fe07139b49b38989b528db6e37496e964fc7b6d6eab2e159a1995d44a8505ab9" + }, + { + "documentId": "3a659bfa3d026ddf07fcd3ceef55069c8063e09978992668d6282cdae493c61c", + "envelopeId": "", + "order": 1, + "name": "document_one_docx_sign.pdf", + "originalDocumentMD5": "8cf89bdc1c58444a969f2a88d1623b4f", + "finalDocumentMD5": "", + "originalDocumentPagesCount": 1, + "fieldsCount": 0, + "originalDocumentImportedFields": [ + + ], + "originalDocumentId": "3a659bfa3d026ddf07fcd3ceef55069c8063e09978992668d6282cdae493c61c" + } + ], + "recipients": [ + { + "id": "4d7291859aafc0ecf688f9701853a72c", + "firstName": "sadf", + "lastName": "asdf", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 0, + "roleId": 2, + "status": 4, + "statusMessage": null, + "statusDateTime": "2012-12-03T10:28:36.3300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": "66.76.27.32", + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dba7c9b4d1e937b13ad0a9dbfa0b8463", + "firstName": "John", + "lastName": "Smith", + "email": "john@smith.com", + "userGuid": "07821256758a81f8", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-01-31T21:36:49.3430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dfa43f659417c01c50f786b276ddf3fe", + "firstName": "John", + "lastName": "Smith", + "email": "averkiev.jr@gmail.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 4, + "statusMessage": null, + "statusDateTime": "2013-02-01T04:17:12.4530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": "195.189.16.125", + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "af88e8156c232dc61497b6b78de54f53", + "firstName": "John", + "lastName": "Smith", + "email": "john+1@smith.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-02-11T09:02:45.3270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b1788be0d8f66136aa63d9b9f929662d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9206728655707215@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7b63efc88d15ac3b19a47bd3b1af6d21", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-09383019258934455@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a82e63ca5d99b3af6ffc2d6aeb4e6904", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9070569751675689@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f19c48f5b1b0306b10ec6f1affb6774e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6461044579751362@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9198c2d1fcf47615d6925ce62a2129a6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-07643618210985414@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "31164e4899f81e77102021a0758834b1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4719817319695657@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0e54937598e6a4a49b3f96f5eb4a7567", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-43740937168804384@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T13:27:57.6200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c3d10c982a17216406c34b1ae9cb2137", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-40370183746577293@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T14:08:03.9270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "281aa81c15c5a7a3dccdea3d0898b80a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4350460384736726@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T14:10:15.5500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3fffc030c971929d12d13857db8a89d1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8843818224553833@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T14:10:40.0830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7932c466903c421ee3f9dd0b36e07c7c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7853082354901888@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T14:11:07.0030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "916776d1233c532e01cc076a75c82eec", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4014856644505582@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T14:14:37.6530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6cc182949d0a622a50f81b9650a24188", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3135801193085397@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T14:16:23.9330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ca09c53a9db39ef499cb1a9c98865576", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2827397496941514@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T14:23:23.2300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d97a0dc99173236d6152c6ba0e107e45", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8927465062748162@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T14:25:01.1230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "61a0be6ae855db0e65def94302fb06e7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-24287876280543175@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:20:07.6970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3c53f9e78127cd0edc4bd8901183035c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5808653112799861@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:20:39.9630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "36f71605c16ced619eb4306f721d2abb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-24299759261855458@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:21:13.2130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "479530557cf45003a80c465adb17c39f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07064828336670415@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:21:44.4330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d50ac33b6ea9c4a346fbc2ff23a2b843", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3893927072533042@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:22:17.3070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a573a09a59684cb135d20bebc0c43098", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-04407537801754724@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:22:48.3400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "08b734ca959c6bb9d358e34c637ff074", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5848130456380978@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:23:19.7130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9e0ea3cce339306b9b02404a4e0e20be", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-016861464038545937@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:23:53.2930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8799f72c58ba318466bc1429688d8dff", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4349248141891744@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:24:26.4170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a5498ea69ef3a041f191e1c05610326f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-010301165014037883@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:24:58.4470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "faceb1232a3c13095d54ae5bdc137d52", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6333479368303288@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:25:29.7930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9621bd62aff248b3e827b9952303b2e1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1998480018485581@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:26:02.4470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "be8aaae932432171ac7b43a670d3dedc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8518579175006114@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:26:34.0430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3ec4d8de4f9aa86bdd1a163ea24b545c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8764719215117406@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:27:06.7600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d7fceacb844e74860451c7431087e09d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8097011132392192@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:27:40.2770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "46cdb0fa4f5a5d8a77ef04027d8c82ae", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9493944680853794@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:28:12.7930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "504ab77d3feef3919ebe17088bca75c1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-44514284929451997@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:28:45.2230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6c2fbae4d064e6a356295933eedd67fa", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6541381469183847@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:29:17.2870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d80e25ecda86c062de4bff91f2af72fe", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9794184663492925@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:29:50.0830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "abd4e8686975795ccd88bba59b353ab1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4226307334422631@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:30:20.6470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "40b217a377f5e97edf5a65d075baabc0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07243045173134022@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:30:51.7530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "823e93c87d55799b07b69bd9bd3d68b6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7498482770411473@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:31:25.5670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e9b044b2075ab555b7df93398ff92ca3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-24872058087812954@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:31:58.8330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c537387b5474f57b49c4a1dc8875d2e2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-24304161519140033@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:32:29.9570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "619f59f7358bab0ce149d6a61c9c6ddc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-19234143639013346@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:33:04.0500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6ea2330f4013dda6d630a052ec1c1be4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-19408500678185314@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:33:36.6300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5ea0c8b5b3ab73e8c6964f9bce9e5a97", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8973104267340949@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:34:08.5370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "13cb2926a5a7a8f9af7f863bd6f802a8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-11297095984204208@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:34:41.5830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f0e37c1b7cfb2651ee5bb6b29804912a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-623616329181309@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:35:14.0100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "42c652ab7f50ed73b2274f94cebb4ff4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-569285373154538@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:35:47.5370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "26396b8e13509192930c5447236e3cd8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-24872350994458436@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:36:20.5530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c558b55150f16f780c62eea6f1921326", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2911927735002309@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:36:54.6630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "eb2e16f9fdc4d0e936b50b0bfb0d9666", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5941392645031991@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:37:29.4130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5de804dbdf94e0c1fb4154852ee75180", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2559092025987365@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:38:02.9430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "239345ec8015aae3a98a335f7546bee8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5504521500710458@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:38:36.6470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0177f5aa5d9f95657131a4557cfda43d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6070415686354678@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:39:11.0200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "092ddb93bf08786c97467a33408197ba", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9989080615390356@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:47:22.3700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0eae88f14ec9e80f2b5b46acfd44c082", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5778564526809552@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:50:54.1970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5cc8b1afe322a23b4efa6fcb06180236", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4397924099956064@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:51:33.0730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ffa4cb60cbe6586f963e045cfadad5bb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6992081643057364@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:52:05.3530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "894871b913c797ef1e024e57e6531a72", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5257876840199842@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:52:36.6670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f8cb683bb1eeea59f0e82edc4643c960", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7943946885038354@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:53:09.9170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c0e91e60ed55cbfe764f7b0a46f914d4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4294093555494335@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:53:41.7670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f9fcffb8024fe3d15d3e204a798ad9e8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-23014605280723766@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:54:14.9570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "195832e242556c7ad2e14332d772f9d9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-014493241795133671@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:54:48.4700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3c7d235252e537889754795450bea695", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3984129224658761@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:55:20.2370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2c5420d7ac3ef8aa2ae5145aff75e3bd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-38179284959024984@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:55:54.4100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "21a21275f304e0fc39cfc370db18d519", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07702164512774345@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:56:27.8930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2bf77fa84a82f1c54bd59e2447116a4e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09782799810737719@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:57:02.6430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "97a4862ff3422f71bb8eaef4e68ac374", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5762037822967221@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:57:37.2830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5a17d35757cfb2669f90a0e2b5aa38e3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9642658973155347@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:58:11.4400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8a1812b38d5d7025aa88b1f6ecead9c7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9383411932098629@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:58:46.8470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d296fb4d18748ae025fcf0a9e4a2c01e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8647063797662804@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:59:20.9870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3ed3701a91851fb01e40bdc527f414a6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6401597306002792@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T15:59:55.8470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d91feb1762fe66ad875ce630f1a33bd3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-27250517534037044@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:00:27.1270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1069ca578a16504cb8f9c86546790c94", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6202810831320013@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:01:00.9100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3c8f8fe74c95c8a9d2f2de39a6fbfeea", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6266633585549269@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:01:34.5800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0d6d607540808e0661f9c00ac90163b7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6225122411459068@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:02:07.9700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cdbf05018868ba4fc09bd858ec912a14", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8245370985265535@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:02:42.1600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "225f2a32cb0449729bcc04dcd1bc08c0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-41413463850342@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:03:15.3770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "10e3063ad53f4fc59663e6b1b3cb36c0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-79164384497076@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:03:49.5070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f0cf189c358bf859870ec00830f8772e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07045637274932326@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:04:22.1800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "46646fe4eb65c484de2d1e619b8bb30e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09162701922321204@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:04:56.0400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "15a2f389760ed3d8177dc17918127e55", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5502188660971453@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:05:29.5400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b513a58d6e1a37ae98055a66d6543fbb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4622354919265349@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:06:01.7430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "43a4ea7a4042ace515ada1f3e480909d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3835467946604747@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:06:36.4930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0ec18b13ed4fcb4ef2a5ed4f35bd3549", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7790018874630215@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:07:11.1030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0a2c5dcce38de3811218731ba7d4e921", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-278887075925746@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:07:45.6970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a572a8eb8f7ce097c73a8a0b415e9141", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8252629471151048@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:08:21.1630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f9c3e03981b70bad9d595e71a975a128", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9991943571587234@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:08:53.9470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6741f649ab5ffb78cd130385094c129a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-50786222672034@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:09:27.0570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e105ca39466779b09bc5d6ac5ed3f2a6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-12136416833127717@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:10:00.3830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "21401303a145f7a22dd80881a46bf4db", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-32716941990454573@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-03-10T16:10:33.5700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4ffd6d1b0f7f531161d158c7df0750ba", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-642072178043681@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-17T22:46:17.9030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4d5b4162e1b42f4b7afa2705c4d3f294", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-40935933919770284@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-17T22:46:18.3870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c5e36a771a0eda44c08bdc40a87fe89b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5647628934906905@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-17T22:46:18.8100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e8dd2981fcaa92c9d0f3fd646fb2e308", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3942873420210642@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-17T22:46:19.1700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "07de5ef9b12b4cd513b095e983b2c818", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6743116158278719@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-17T22:46:19.4970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7084b621f22390e798a1530c16e4575f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3122437567166634@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-17T22:46:19.8270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bc6e3403d1fbd60c44548728d29e54a5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-18505894982806037@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-17T22:46:20.1530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e26a54fda24314ba0e3b684a7c033f9e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-15762472105257241@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "511d87db0d689f1d4c0f68b79312d0ef", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8139440236535144@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "70d7863535db849f62719c53c4bfd0d2", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3939938296666543@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c3fc240f929b3ed9b399d3077c402012", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7565842690010821@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "52978d2a314cc7d7e479846d3e8afd46", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-443571059425551@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-18T09:23:35.6000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1198bfbcee830d43a4aacce3123a87e7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-45448455310969427@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-18T09:23:36.9430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "88e892ac76b0d77685c105b530b0a5f8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-08613279302421117@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-18T09:24:12.3500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "da970da4378afd106a8087fe2df10f4c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-020458534603180478@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-18T09:24:12.7570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "81df2a2565b1e5d43ef4abb865cd62b0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4512013922846434@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-18T09:24:13.0070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0a1766c626d5040c9fc8cedf0d8b684e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9248931650916692@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-18T09:24:13.3500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c3a1d955e5586e65c4b49bed84501fe1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1963939379523999@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-18T09:24:14.1470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d49169db35a26c29efe9829c990f47dc", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5360641682705809@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "48602a313cb718be7f386e90677aefd9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9550320383316303@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f0c326ddef8558e7d7588e2a89ef1cc1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6620222215909731@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "893985a8dcea83730fbaca4d874e14b6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5940058825665663@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f52183835a24b465219634340f9e37ad", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8718315815911554@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T05:39:21.0630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ddba555ee1e607164caf7fa7e43d43e4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8077843927566373@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T05:40:26.3770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "14c5c8f8cd349637063bbe40fe6db760", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5707992925948325@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T05:40:26.8770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e427f612140edea4da923ebfe7dbcf34", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7807335447660004@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T05:40:27.2670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b5d0b7072a6c8bff6b96d8b0fdfc54ef", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-008360014490725654@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T05:40:36.3600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "81a7b5a44ad0c830e307343d4d5835fc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-49735142503186125@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T05:40:40.8130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4f0579d1f702cd84150baf8022c7efbc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3989069114069891@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T05:40:41.2030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d7d5bf4fdaa855aa5cc1c8d35b47173e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5480694823720446@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ad6e431c1d850bf7c4f7c3c169490f07", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-573930626090376@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5d3878eba7e4130a2118b4ac83aecf2e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8005977653586692@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "938239343ac17f5cd60ab29913b92fff", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5384361447872407@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ed490c9ce34bafbfabfadbb98ae318dd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-152804520336161@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T10:43:08.7100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7de123c5c7717cdd6aef86503311aece", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-46784346515881825@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T10:43:09.1470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "876b5e41f731eda9f06ab9127d85f8f1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07007568553132737@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T10:44:10.1300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "12a8e2be432c0e1e75906a39c0118a71", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5367151918224916@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T10:44:10.5830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "65788240898c99c7906d16c2c66a5082", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4459097047856976@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T10:44:11.1770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4b2895a275f5521ca7bff13a2a10ea05", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5776056049416477@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T10:44:11.6630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c11d1cf7c611c503c322ce5283ec1285", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9422636225020389@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-19T10:44:12.2230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "450d388da5b7ec148b3a45b2827df88c", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5274782975571047@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e0e0cd54fe0c05742740adaab9ff4586", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-36634741881618893@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bd633bd86bcd4e35566524c0ae172e46", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-06807144961676814@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4c3f3de4890c8ad3d562b895e19f15dd", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8963197183814202@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8ea73e64acd8055732fd774445fe5b91", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3908486069945708@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T05:43:20.3800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "26e00d60311013ee884d4e83bfb727b3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9564421804614175@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T05:44:21.3200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "aea94577ef5ee996e9164f2c571ed00c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-43035021390657036@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T05:44:21.6170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "18641d68c887f8cbeb4810689bca8de3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-10450753153698367@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T05:44:22.0070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ae996d732e16a55fadaa19a2f85f5093", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8765256758821187@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T05:44:22.2100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3c2b5da3c2e1732edf5296c6919f074e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9869828041178128@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T05:44:22.3670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b3a9e34bcc7487644b70c8e3c4d7760f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7240191865046121@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T05:44:22.6770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fc3524451499c13dd946588c2677fbae", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7058488833524673@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "06e1498746102fa4a8c371f5b02102b9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4296562986107636@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4070c0a109962c3c087a3d4c1f0d7670", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2596297759549103@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "56d974fd7d6f16f4f7b42928c4b5ff53", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6222838138010307@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "75ca78101fa655e1bf85b28ec5c2e3e7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22000502112022013@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T11:00:22.7870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "758aaa6dd1c22f657ae5f68bee52b609", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22707028101095605@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T11:00:23.1770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b82d4bb9755fac5ffdff11fd753fca3e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5890324459175382@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T11:00:23.5200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ddca88919ef45ef3bafe057847a2ca79", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4480079210831769@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T11:00:23.8000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1f80e9fa88af4a845b2a896f73bf1e79", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3875911405750614@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T11:01:25.6770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "19ba8246c925ba79851286f1cf859b1b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8756851145831438@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T11:01:26.1300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e8382b7d7c3a0622f2c898a870d4ca74", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-0017751875951652618@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-20T11:01:26.5670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d50245c8a0efb7a3cdc5e457a5b980e1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-29890219921173744@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f395292f604f3096b7f818c4c78446d0", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-1736955702190952@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "02d143198785aa29dff3c3a20974622a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5795236135016284@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d5fed5f998192087118f69f788c2937d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9473581036380162@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c801e4e72b0631853f7f4f6cb0950536", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7517249906466011@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T05:41:24.2430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8cd2578157b0bc538498bc67874902ee", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4971932159117206@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T05:41:25.3370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6d7808b67a17eee4e5d84eb0acc1d2ea", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9176070802678374@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T05:41:25.8670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "26be26e9d1d55d01a6f51724f44d8db1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8977357024535199@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T05:41:26.3830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d6b2271516b4c4ff9a9b4ca31cc51ddb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6411221343305712@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T05:41:33.8200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f2d9bca3c9b8e9842f3872c2a0f94232", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-44149518478116856@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T05:41:36.0570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5c9be3c3282db7ebcaef62fe5fa7870c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-30123503975277144@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T05:42:08.0870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d766dc85c23a2ed2965c524c07281d78", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9305030427222922@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "85edae14a029dde9bc188355a18c5c2d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8734171176970449@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d3ba3030b6e24ca8ddd85fcfe9ac0a3a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-18851858247923647@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2a138b1354475aea8f8020ae155384b8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5908669876047263@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "78621b1d76ca0c0689f8e76ea4221511", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6305261591983666@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T11:01:26.5100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bcb273b2515c37c90c643df894062718", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-15020133804158065@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T11:02:27.3870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "79217b55e09fbc0659a33c8d749e9520", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-053705749907575595@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T11:02:27.9030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "faf27c822c7a75465ae34e2c26202840", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9641261533904368@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T11:02:28.5730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8ebaa8b66594ca8418a6f26c2646e73a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7708147403874857@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T11:02:29.1830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "353e0afbb492ccea9815ec4d278182f9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-31588109604321535@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T11:02:29.7600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "34ff2c95a6a23d9eab695dbbfda9ae0b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5961919029309909@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-21T11:02:30.2600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7cffbb62111586e51bd423bef222eb21", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-35710277283659597@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dcb70cba09f096fc614c156f9f8d0c43", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8726032933391191@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dd8d5553cc8b4b9d29f4554b6b3a0d59", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3796503487290932@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c58abd29dc25857a7a3e4a7a75f007f3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-22695063892775447@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1ff9a2260615dcab05cc7576d77993c6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5833346149536001@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-22T09:35:10.6530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "51a848471d8dc5c71ad231e8aadbf887", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-23772888357229183@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-22T09:35:11.1200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6940a94fd209d80e8aa8738dad7f2bc4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-37829044785564025@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-22T09:35:11.6030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7d73a5637b9449bd72c627b4198ae36d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7565006292453038@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-22T09:35:12.1200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "78074e62088e43ee14690793bd0622a0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-08667222608356495@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-22T09:35:12.6030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c13da487caed189c64ffb5c5236a7f4b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6201572755250552@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-22T09:36:14.0100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3f9ccc29fd525ac615780983310ccfde", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-811575727403244@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-22T09:36:14.5900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a4572eace41369e7513bca1b34168caa", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9745087026490431@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4fc97f10593fbe3ddb694f6644b7039a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-23257290221827587@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "891504266e08ebb62ade70e205350a42", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5114998956682687@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "973c2425343cf17fad5940cccdc471f6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-41704505204921627@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "89ad9657dc089eb96781a891aeda3808", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-25086788861858733@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T05:57:07.3000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "12ddd13fe1ee843dc757bc7b97e549cb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3762019174442751@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T05:57:07.4870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "848f2c58e7a52d6535187f2d7e652955", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-47838215240732107@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T05:57:07.6770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "06261d3fa1073a0edc4c6f3e12e1a06b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5565703687559224@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T05:58:08.3000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bc07963299ab7de0fe57562d8895b7b9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6857815804884205@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T05:58:08.4400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bb41b40d7b3edfe1ea337a57a876b278", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-38563270202555355@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T05:58:08.6600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "342ea0376d0f77dc90f0ffcaf0231084", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8042858415162975@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T05:58:08.8300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1218ad5690b1bb21aa429191ba7a082d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5829796682242602@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "498db1ba9a80d7c5611fd0ff2a1f0519", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-38374499739031276@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8b6e44685abb60cf6d7d84319472816a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8445080069058166@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "774df310d35170aad08335711270bd49", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-952761764487846@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f0e7929d17eaeae5b85961e9f1470304", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-27742419882063674@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T11:11:26.5000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "88656f2ef9fd5466f87c1ec47fbcc64a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3083506259269675@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T11:12:31.0800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fb7c0d63c2cf668a5989e72f516f03af", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8461568547048178@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T11:12:31.4700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "058ac72b527bf7e48ac7586578df2ca9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6970484781118814@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T11:12:31.8130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a26201a03d95abb726ee7bbf1675b004", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8105089974986341@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T11:12:32.3130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e3b85cd225959179a64b2e6ad8f2fd2c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6520698560991589@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T11:12:32.9070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f9d1178463eccac475f7a0b0e680d6bd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-14900945372029128@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-23T11:12:41.2030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9a7fdd0fb375b501b1191d70c47adfb6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9795442593487093@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fb05416e04dd3c2dc8ea32aa8a9d5af9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5042784003167168@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9832eccb0f296dcab03d9b70292589b3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-21990399981886077@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b019991d8cf7eeccc571ff1d5c446fda", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-29693159352778065@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "eef3b4328a7c87c4edd110bdebba8007", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-020940046982125038@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-24T09:18:07.8600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e4e673764494cefefb328bcd51ffde9b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-025964769737534144@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-24T09:19:13.2370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5127d69f69d122acd6425561b0cb80ae", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5257566311005618@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-24T09:19:13.6730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bd0497d1c8487a8f92df14df1cba3ff3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7376129919942375@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-24T09:19:13.9230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "16563e8c8bbe4441cd1aab62a0f45df2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9331111875469363@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-24T09:19:14.1430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1a3f3d4ff955b81921dcaec35ecf3365", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4117243099812128@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-24T09:19:14.6900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6d2ca62eee19b443610820843a13515b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-19286397474490657@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-24T09:19:16.9870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cd062e5fa8c6d6fbf53cfc9c2afb14b8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-28300069158773955@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0774cad7eec0c0f4af213aacc5f12264", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-41245485676684224@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "28fbd1202ec29cb0e59ce2fee1c6e025", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-14662335215027922@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8d7c6dcf6c3312a79a6d577a12a28093", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-30420044146652925@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a57f8cb50a6ff3cd4fdf4d7047d40c05", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-01936796589919254@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T01:08:29.2330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "95a8220932be0c6fe2dfcae59ae613e0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8503146118112355@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T01:08:29.5130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4f0e4115e0a76f125aa89dd6e024d747", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6625670631292119@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T01:08:29.8100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cbd78209f4e52518a17f34df207374fd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4113109124543205@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T01:08:30.0600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ff9775ec2ed2e0d5a058bb06f9dfb607", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3886627391905999@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T01:08:30.2930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "519737434493ee3ca6e536a982e76ee7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8034294555552339@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T01:08:30.6400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a40b6f78a4e649e1cc65cc177f2374a1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6958762891986809@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T01:08:30.9200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c330e190fd4dc87d64879e7bfc762cc3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6092898829903984@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7add2e4ba7426e1855ec56e4a2f5bf35", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6910301377087352@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e6e0f278bc57814b3a79f543a2fbc5a6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-1903954212788792@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3f84eb7c536a61fd5c9d23ca93595ed6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6835982693856288@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3bebb6b01d274c5ec8ab8bb194a0420c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6094573060910173@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T05:58:01.2070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f13aac056bf16d6b1df430a7d7739d7f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8578549231641706@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T05:58:01.5500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e4b74599acec6097c377ef5cf1994b9d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6519016028959463@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T05:58:01.8130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f1aba4fa3799ca379b0f0d2b71164d7d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6218768928596906@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T05:59:04.2530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e774590fb294e1ac479fd2a11faee148", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5190996889956394@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T05:59:04.7200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "89e366026a1f5a3063a8d73ed0957279", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8591895742858782@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T05:59:05.0970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fa30f2f92c1fced6703df14e8117089f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5087546377550733@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T05:59:05.4230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "113f65ac68c2ca7fc5e28549af5e8ecb", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7521106213153488@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "35f8a6dbc97be75d7965840f6f9775e4", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7945374384056356@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0a4b82923d31e254eb7ca4d7a91311e3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-07914366589184507@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a28886e39c34bbf5a5270c9673d5972a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-15135573472171648@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "72603d20d297cc275ebf1a7afa8baded", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5828565776423545@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T12:30:10.3370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "15fa5cb9fa7a0cb83eaf50a6bc13c83e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3168643043300361@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T12:30:10.8370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "758a4f81d94265ad17935e5064efa389", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8005508699956936@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T12:31:11.9800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5f021268bc984cd84d95d0167dcb0605", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7031563358607359@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T12:31:12.5400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e7ec03d8a8dafbc09fec9da1586e9ea8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3930547361804859@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T12:31:13.0730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "459e6a11a8c0f23c13a81f133b3b104c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22141326849597986@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T12:31:13.5870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "66998f8924e01f9460550692025a602e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-19941654695585243@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-26T12:31:14.1500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "44dce2312bf91f3d2133770d02a724d1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2124950832131749@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1271c6ce2128b2f8397add850fd13586", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-10784645216408129@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f0393758b82f5c4f7a68d1d277cfc4e7", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-30095565035091887@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e3daca4d717275c4a29a2b651bde7895", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8784167451703556@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a61c8d8331f9098650ce7ed5db6950c4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-02905661752735511@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T05:59:29.6970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5aa78c905ca913e96fa03914735a7224", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6000660731210559@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T05:59:29.9300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "871ad12c61a2e79045cddf2f1fdfd16a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9194359189968179@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T05:59:30.1970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5ccc50c02b88d7f4bf58ef9688b78b43", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5724541079200439@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T05:59:30.4470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2d0f1e744572d546084a0e7e94db2725", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-33600455482719904@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T06:00:01.0730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8aa03027ffb816e41584d3dddca27bc0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5136627412166497@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T06:00:01.4300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ef7c2bebfb49cb6f3446943aa563c140", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4225993269620726@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T06:00:01.6330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fe70d585804076717388bf823e869084", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-07652864903982148@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "444e836f936f6c62372ebebbaf3558ec", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7217922114193054@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "68a6812fc28adc838ee793bcd1ae5587", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8313792177309104@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bb42383b1bdd5e8e491476acdb16db7c", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-017044789165839958@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "29fd73223b26f30ee323e1466204c6d6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8694532863347677@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T11:02:16.3670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "10d43168a09d582fb296d33e3a315472", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-025838652804046625@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T11:02:16.6970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "870cdc4b967a0c3baa20e94e88d4b663", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8379158705740428@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T11:02:17.1500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e444ea1008981d6b2e5c556085aa7552", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22871436919066224@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T11:02:17.5530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ed3955ea465efe032206418ede2a94d2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-34955127994356283@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T11:03:18.3830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0e721c0f9073a4ac370132d62ef5c851", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-37180697044544@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T11:03:18.6970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e70c200a447eadd80d36e91b55dea6e6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4819415063832442@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-27T11:03:19.0530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ff4a515d226470b8f65c7d071623451b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7629498307202404@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e62f5bf070a7bbbd2013ad8d124b311b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-624429934284483@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "adc1809407508aac94d2fef8a98ccfc1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2235750752410569@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d48f3bb93231e4fc0a4a2d516b252c60", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8125520582747011@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d7d215ab37bc0771ae74128179f44ac9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8092808159057446@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T05:58:34.0930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8721db4abc0ed2574df894d743420e3a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9777613138006082@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T05:58:37.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ed22b2a9b14cd380b33938e9a92ac30f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8599868895810922@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T05:58:37.5770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "13f8cdf59f0ebebe839efc0f7f637b69", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3407121908739916@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T05:58:43.1100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "534ed0adf87c3a747938d484f78c6e78", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09399849995418519@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T05:58:49.6100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1a7a60a1dacf1cec06aa2806b2e85942", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5013165248110554@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T05:58:50.1100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9535688f29196577021c0debd150c16a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4397462020043098@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T05:59:28.9530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8a2891fcb864baa48fc08a9fd7b48fa3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-822496357833248@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5da349da0fbb03b1127c4fc8dd724bd8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6556071049845738@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "af56bc2ff55653a59d37895f303bd6ad", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-48993839947335605@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "192b757a56825c1f4a272a5c953e98a1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7599812896845034@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e254cda7eecd9dd406fb46f7ae48f9e1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09225858387247787@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T11:00:23.9430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c4dc14617d44828ebe998ad20ee1ca60", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-941860929304994@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T11:00:24.7100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "160e9ec5e5552336cc7ab0235e26e050", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-21292460240288014@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T11:01:27.7270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1a43d889ee722958e479df44bb8f3853", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-31471154397895496@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T11:01:28.1630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "554ed4b2101493d1fa9b5e177dc3ff67", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7321517092162513@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T11:01:28.6470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "567661de8d3a4e9a126e74c0ee147d67", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4025781006945859@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T11:01:29.3030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "37bcc9c1e534f7f6b2dead075f221639", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-39315004623899985@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-28T11:01:29.8670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "882628c1f3873c33be96d1768205e919", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-31922085645293397@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a9822a4905b6ec34f488f473170fccbc", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5098671402997644@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "73bf15c395eb99e7d4ccd1e07f90f486", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4349107676852013@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9ae28f51b66942a1132a5241c2fa77d0", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-299311084001459@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e1c4b31b522907035ea2234d51c99308", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-46419939837149715@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T05:35:20.4800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9a520d7eaebac01d7616f64baa9b3b30", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4116034150436171@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T05:35:21.2000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "35cf11fd149efa61439b5d137bfe4ab4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2869419867864218@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T05:35:21.9030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "076f641b1a852de783b5b086124c4bd0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-26912595999978683@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T05:35:34.1670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6adc65a20f0c90e5c30113c39946a842", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5741454511480878@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T05:35:35.0100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "768b4d16a96afee67d85c1e1ec700c49", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-44092468267455087@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T05:36:13.0100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d716b91c6dc91b6911d19f0326c805b9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3333594821094451@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T05:36:13.6670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f93d13703fbe8d91678150bfee875c54", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9192377621743699@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8e24c89595492f45aa22d8d1eeaaa3f0", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9543263141192001@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2f0ee0c5b74aa8c9831ac346bc0fd00a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7978564435240029@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "518b56da832f047ddbdf0a2ca836ad7a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-04316446376980887@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "aff2a1a6ad724c9e542f67325947b0ca", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9324936278376316@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T10:36:02.4500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e963b441cf4a463c3b21a1a6719b339c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6676009587620082@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T10:36:03.1200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "19ae98f22f5b66bb9b92cec87f9d31e3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-49892190496595723@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T10:36:03.6370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "eea45ddba9a55b52ca35649d9f863875", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6706161747863368@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T10:36:04.2930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4ed17b95f608e79cd52c906a82e1c8ed", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-526954566653682@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T10:36:04.9330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1d5dc25bc5a87cf6fce8520b2b20460f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1624551384048204@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T10:36:05.6200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0affcaf1fda2d3fdc0c8d9ba5f822eaa", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-019488886385803816@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-29T10:37:06.7000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "142d2dbafd0d4c670ee472daeab1f8cc", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-19457574144830514@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "65f0c59b23f4efb71b82bdd589420cfa", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8888392028859368@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9ff1b36bb30e2d4d20def68b2f30c029", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5056998161727206@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2fb85c0e6646c33f844dff9147848880", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6702487739663049@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5b20e80a743be926a62df3e586f5bab2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6187876366673951@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T05:43:01.7770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "48e875864b124958c7f46e4c83751caf", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-45366993657157206@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T05:43:01.9670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9d69ed096d832a7aa93b01d56f979673", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7670283089469162@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T05:43:02.1530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ea25df43b1a610d7eb632b735644d3b9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5359820610590943@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T05:43:02.3400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7361efc12293c6a6d4bfe49efc3da3f3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-40385451319714794@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T05:43:02.5270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f8214c63c31caa7b6efafd18fb76b95b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7824141605132291@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T05:43:02.7470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "88e572632a3327665c85caaf530ac029", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-36991296254128414@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T05:44:03.3700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "80800d52a0ff9bb0f5a792ec2931b907", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5634388727148746@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "338cb4266fb63f550f4115659873347b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-39288545543563136@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0273c393d1d4e3c95f49da6a7837621f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8094915847520294@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2499cb8d4bdd499bdc29a5d08c2ca9ba", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-06327896823857482@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8a05195bd054099961da81b6a95c150d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2915203735409605@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T10:29:25.1630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2587c16684bc22d34e27619d52fb84a5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6509931412536251@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T10:29:25.4300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e6e955bdd6b3b631f180fa4216cedacb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7942174353970372@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T10:30:26.3670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d2a8a1f046801f90e9bd6c1fe4d76440", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5870616650537483@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T10:30:26.8370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "380167f43e1a60f9123c66706907be16", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3064663519635594@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T10:30:27.2430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ff6e4b3e6cab4d7eca219dc7f385fa4d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6393251585736219@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T10:30:27.6970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "892c19e07906408430fd220a4ed24a88", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6543120138114584@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-04-30T10:30:28.2900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d8f246193c0c470cb04b8595c1eb8acb", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-32795793824305375@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "02728e632efb3f3fb2decca7950c649b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7186148509663886@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "97d92551ae539c744b9a33154c65e2d0", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-27938119064401434@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fb73d5b545ba2157e0398b370a41d84f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9114951786477588@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "087864bf6b49a364df952f130be8fadb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8689379942506841@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-01T09:42:16.9830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2fe746e6bbedd7a89d4448108d7a7abc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4512358114644869@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-01T09:42:20.9830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c08381d8d5288f61e2308d3b93993a4b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5329753689971257@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-01T09:42:21.2970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "afa67644f8535168b102a5744d25a802", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7432205609429303@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-01T09:42:21.5770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bcb75dfbf498eaa7fcc75ec59d0b6fb4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-26351600558308963@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-01T09:42:21.9370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "66d5e470b8019cb0e5042c71d8a8dc92", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-03309191420321966@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-01T09:42:27.1230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "305025bba0f9f4e1f68a360ef93eea48", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-04573300278427406@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-01T09:43:30.5300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bd85baf71444842f96521d726c5af495", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8592144663574013@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "db6f426bb0a61fd415028aa8b65b8f3f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-08478000095777238@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "810f6711328ee0c91561d12f6d6e4459", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4221625175944461@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9681e76daae2c563aaa49e236856a231", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-38416808376404443@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ca8819a2fb5393a1782721c2211e3065", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-27034707940672165@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T01:09:30.9000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5abb3b9195ca1538049a51d49e2ef0e9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-013880750510998463@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T01:09:31.3830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a1f5b839c8b5d89e9d07627411fedd2c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-772915874649715@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T01:09:31.8830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "57533c05b6fa1ec32918a6699c7e67bd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09234315914254532@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T01:09:32.3700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "99cdddbb3d82d21c724863c583339a81", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9974293560730182@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T01:09:32.7770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2ca27223b5d46e2ecebc7c9a7c36082c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09436049760919774@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T01:09:33.1670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1f7f230efde38e32a08f6d506c869136", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-32488969315164706@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T01:09:33.4470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a1c594bcbf345369945bd84ba3dcf43f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-07269337949720789@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "773ac714af7a8c7001bc1dc6c8ff48f3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2316084830072802@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f323a516ef2c39641e04758fa22442d4", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-753911810241033@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8dafa48e3368429bcecb2c97a6d3b90b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-02819896452814119@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fb7f1d584f16798abf72219f3d47ad2e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-14487164170921873@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T05:47:10.6330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "39ba7a669959d031f4cfec7a8f825e5a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-18455208088336772@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T05:47:11.0400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "44781f76e1e2d13fe825a2c08194d372", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-689344131497082@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T05:47:11.4170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "58f144ef89a4e063447e0219cb521ed5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9158768111003298@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T05:47:11.8830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "46d363f36b2688b92fbfc8501a443561", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5472023463098963@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T05:47:12.3070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "80ff50c3703a2e5664f4e217f99540dd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2938093076888417@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T05:48:13.3530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4c8b988a5e5037fb5b97258a565debbc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1802617532081795@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T05:48:13.7770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1a32f9b9ba4e9fda8d82756eb489e58b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-701218402342221@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5787699c08a665abcd9d2ab88de71aa2", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5134645434982348@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ddd635f79a92827ce2596bb614d9878e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5424392198636038@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "89d70444e6a90a3ee5856f850485ed06", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6588644452194112@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1116f651098d48aad0e878de2625e43b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4517815778165324@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T10:52:07.5000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4022c98c4cc949a14f13130acd29b7bf", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-08147641744062639@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T10:53:08.9370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4c273e870b6c8d9bf2013507ec81c6cd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5989540762047658@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T10:53:09.5470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c3d37441ccdedc3c841fad1da0ed5c0d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-04093021435046129@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T10:53:10.1230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8338451f880baeab37a788b910c9e6c4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8086796670236585@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T10:53:10.7030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f53feeefbd352de07bb368879c9474df", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-017181983250194932@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T10:53:11.3430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c1d8cbabaa19ab5ab0c3d8ac71d2a1bb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4740209117232239@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-03T10:53:12.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0aae801fe91c6df1ea491d1385bb476b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-09712893783168075@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "74ea2fb78fa4864d8e5e534e5871019f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8454954262705553@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "922dfb0e1c5407a13e75535f42a58cbb", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2412614368912629@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fe23d007bb05a20c2a607d58185d2c50", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-53343461899065@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "77c12b7c6b11d51c416226d83eeb10f4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-38358036760028813@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T05:35:16.9100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4efbe4f9729178637d9d5f8f9e11b904", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7157124833147488@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T05:36:19.4270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bb9546bb6fea94412c2f6d145e27abf6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5222225504850623@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T05:36:19.6930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e8f34f56c35dd41939ba0a129a90af7d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8786630478667339@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T05:36:19.9100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a2ca42f396a52e342ce6877b1c8c2bd8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2932512036862469@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T05:36:20.1770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "100aa3b3cb6a4421c543b506f59b8105", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6039786672523044@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T05:36:20.4100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f20d7d16f5bca75ee387a080fbfe95d8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-04318940793534021@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T05:36:20.6470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "96bba03e2cd597db7a1acdfbcc4c1b65", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-44079155510332013@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "43774fc6fdc70db8e6f9257cbf70db2b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-889605124071755@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6ff6d1525effb7c87b9de04f1341604d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-18443851665505173@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bd4826208a2c0fb35ff8c0f3795fcceb", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-28579798710274573@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6a90bbaeb7727c20d94b496c4463c21d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8417994534826865@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T10:28:04.6330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0f0daba96341a66a6b4618b540ca13df", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5588575784688801@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T10:28:05.0870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d739ed11c9d4cbc42082606685a92f5e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5661394975200951@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T10:28:05.5400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cdae49fcb6e173deb55bc2b318ae090d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8073773188029442@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T10:28:05.9630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1bce18324a60eb4f45ebc6661aa965b5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7699774753103842@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T10:28:06.4300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "44ddc9c9559ddb1f1528a56ea51e6245", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-368239577107322@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T10:29:07.4470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a058ecdd2fbf6f4af336fc7984ea72ce", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-05233246329502472@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-04T10:29:07.8370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b70615d36fe3ee7af52bf525defaf9ee", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-16748704070547538@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "89caa809bea526ffe2be9cc18996b84e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-23217020421108292@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "efa2d6c772c306efec6aebf7e5de6069", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9875594123847204@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3960ab9c8490c553cc750c06e88dd2d2", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6744667285490396@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1f3cd1ddccca07d9bc7739f902a5a0a8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-370274899495609@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T05:53:31.3830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "366d83425830a2150884e0f1dcb2b568", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9349659980906496@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T05:53:31.6170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6c3f64cd060d87e6d1f1f1a11d484df3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-296492264579162@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T05:53:31.8200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0aef2fc9c2919218e2f0ac5e155d8eff", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-18193023241261097@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T05:54:09.6500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b642f4ace6bc8b9eb0661fe7e7abe15f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4494051459774834@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T05:54:09.9600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "37e40528546e0dd17da3ea115ed7a790", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7114545821156141@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T05:54:10.2270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fc65fd9013a212f45f815f4a227a77b7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3476787955799886@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T05:54:10.4130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d70e648f02a2fe507744b656a880d405", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3382976545486326@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ea9deea6f34556be4ab87a6b2316444c", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2681198465470963@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "98ba95cca88582493d4eb8765b17a657", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-11215441812553517@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "975eeef6f61c91f4e121060325c7b114", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-23443373778871268@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d5e038c19713bc62166890a2fb483c29", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9608801500480486@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T12:00:16.0300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3283bc5f34a44005e8ed592a4847d23f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2729045075571487@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T12:00:16.5470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3002cc988f3f11d76f825f7bd67ba7d4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6012071399877967@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T12:01:17.4970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5adb37e4ddba33f4a33bc80818f6bf83", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-21445721288551822@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T12:01:18.0470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "773bd259f7cae9ce1954809aa1b8d4aa", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8750312134562822@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T12:01:18.6400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c9477bb310fab8adb31ce2855ac8085d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1041139302446934@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T12:01:19.1230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ce9f4a2659bb8696f438cd8627cbd11c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-826461195518272@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-05T12:01:19.7000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2d493220a9103b5faa07d0b6269c9c2d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8141692948462791@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e909846fccfdcbb4191cbe54ace10dfa", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8248439654088985@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "92b536c41fa28d206fb7a0b499aeba2c", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4988474181286673@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7f94aed2fd9b47ba2ecf85df62860638", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-06485660343449184@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a94eb102f0dde7740e8eca1ad373f6e7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5891804716991612@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T05:35:11.1230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f354b5c83f146af17a99ffcdc2d6a2fe", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5208509081134098@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T05:35:11.7630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c886f726127c71dbe2eed174896ac984", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-85239054857423@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T05:35:12.3270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7c7b3bcd5f15d92a72c591357c6eae95", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-20329927608553422@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T05:35:23.2170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1a92262659587e12c49656bb9c28da1a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-05512814639508912@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T05:35:23.8430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b49c2a214d983f877d224b69cfb837b1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7012235453632032@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T05:35:24.2970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3dd7eb3ef9cb183803e4740f8820bf41", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-45864522012588416@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T05:35:34.5130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cc8412eb7454918285a3a4cb2c3047a3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9188222363019755@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "339666459868694d95e5bd6e9a5f37e6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9619088120173671@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b3f639f826fdc5e43d0d93d95cb55daa", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5598910799420188@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9f4676f5e4a6c5d0c4fe6bff1e3258e3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5443410940926896@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9f172a3c8932fb92bab4e62f8c0b20c6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7186227115772542@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T10:30:18.2330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8603e86c969e1a7a9bda483a5fe47604", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6558450377613132@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T10:30:18.5300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f555c3094cf50a727ff6338056faebf7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7346683156061521@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T10:30:18.7970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a0263af4977a4814b4b9d52fefbd8383", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6109508100293063@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T10:30:19.1070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1a4f5f70ae3edee7a530a1d170ea21c1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6126700450085706@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T10:30:19.3730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e640bbcac76ab571ec611585d9bc3708", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6882104305993774@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T10:30:22.4830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c481da9317e6e56bc689d06e5f67d7f9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-02575010438026637@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-06T10:31:37.1700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "02dba0db9df907ac11e9aa8f51e41348", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7857754412223434@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b209da0f21ef3567abd092c0930ba831", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9694205092057455@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "36b0040de96e9b7307bf388988ea0c98", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-44901053798767554@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c0b8e643c302afeb9990c044cfffaa7f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4375369839277228@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9095f2482c046165a67a28bdad843337", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3617923577147437@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-07T05:30:19.6770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b7a908efcee5161fffea2001eaed6c1f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-641008837770262@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-07T05:30:20.0370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9bc1f2e042fc8a7ac27c656029a07045", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8099342355626343@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-07T05:31:22.3930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b169cf55a5b6f527649a3d3f153cd53f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-46141071251815935@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-07T05:31:22.8330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b01dcad155d95e3ddf7fcd3111bde3c0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-05805613710274149@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-07T05:31:23.2070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "81390ddd17e15fbd31c8fb4326ff3bd3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-06768663304982259@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-07T05:31:25.6300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1d45bbf208658c99134ea8facbafe07d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2797003725726902@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-07T05:31:35.3630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "df2a34c1d79ea67d2f84e0de7d21cf9d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9893128612405673@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d70f9f11124034ea2478633e6e765137", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2445739893766049@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f3bbf6c848b37555537447bd558e8b4c", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-14362597625160278@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "84afc3883a632b64fc56f385e551531c", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-650776738119112@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "793bdcdea209d87271e5422ab7af1923", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8210169410761953@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T01:09:10.6000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b85870de80b2be9e64baab0774fb75be", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7083159184917601@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T01:09:11.4600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dac3360152218d56642f58f149d1a1b9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9193777022839276@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T01:09:11.8830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8cdf65a9e61d0a178ef83f1b3bd7e2cc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8242890997646675@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T01:09:12.2730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "189f7bfb3ed535cf72e034802a18a216", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7590558243294571@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T01:09:12.7870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "82e3179c067b39550de34ec6a3d32680", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-17157397947368958@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T01:09:13.0530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8a960f8bb15ff12c81a5a5769c30adbe", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5266605507025603@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T01:09:13.3830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "966c7b82075f2e522213c81e111de8b4", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9131152868527083@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e810f3881754af6d27396cf856d0b467", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-20296885836556977@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ba899d7b14fb2e6cd2ab6166755d9315", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7291163472166807@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bca87963eacf2895da130fb3043c843f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-23203760493866876@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fd98b3de8f20795780a416c62bc42172", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-31470518138072134@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T09:41:23.6200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ed3187dcb1290e765b6bbd076ae474d4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8307412448750356@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T09:41:24.0730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9630fb4810b21cd5b1ac4ed8b4f9b7fa", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-48546324135051777@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T09:41:27.5400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "012647821be6710b1f2e721a317c8dad", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5049965153481525@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T09:42:13.0100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6f88617483ee852ceb8b47422cb042a3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6896268544766434@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T09:42:13.4170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "97109fc66418ae97e1a9619156feea01", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5022014295262816@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T09:42:13.9000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5a17d5304fa452058ebcbf4d5d15228b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7479565906923099@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-08T09:42:19.5100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8c3961ac5ed19af5ff078c712cb71157", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-315621904600748@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "884ce5bb963889d0c6275d63e2f3a35a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-42923455677918054@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5bf4f260206c332751134ad312853614", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-38203015181691335@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6f1e87a09fbbfe20fc2b8d551ed0d84f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8232929765885536@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a8143d5c5c89ef72f57e108ed8eb9b24", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3519259169411989@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-09T12:45:14.4230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "797ff4d1affe8f98f698edcf4afd82ad", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8983137198458102@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-09T12:45:14.7830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4b6ddff0395ae4c29a7720786b1f8b13", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07792998546895558@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-09T12:45:15.1600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "aaa2fa6d39ea4b1eb0d7fa6d1875e670", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7816514196870314@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-09T12:46:16.1430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b3f7a8c4353695da7cdf5a326e8b513a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-04540094029070252@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-09T12:46:16.5500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5f05cd8574b56f0d0fd94a30041b8b1d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8159178325624947@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-09T12:46:16.9570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "01f0ffe1dabd2ad40de4a224a4a875b1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3490486454666549@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-09T12:46:17.3130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "27012ebdfd3c233f2efa3a34f954d5ee", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-24296144941758313@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c026b6b3787042f8afc92c93f35d1fa4", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6733899726718475@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4269604bef65bdf190194103d8d58671", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-1808770416931451@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "322d79e96fd27415f69c8e6c283299f1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-21845001417072096@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fdf045e68950877117b9c0797af6502c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-02472346585834484@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-07T14:51:54.2700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "26564d57a90cc82d301125a4a888bd8d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8083693336208038@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-07T14:52:05.0830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "85dfc29b3363917e03aac437a2656184", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1232549017342981@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-07T14:52:13.6130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ba019f6a0b7032f06b51736e93d54947", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-47132976434222584@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-07T14:52:22.9900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3f91e5d9bf9d06f6a005102f35c7654f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-36104016351050927@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-07T14:52:31.5830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ea36dce7cc0168dd9001373b591f204f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8503108681399815@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-07T14:52:40.3170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "60a99a836d299dda9c6be7deb1404ac4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3749152968098932@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-07T14:52:49.6430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6e13e6462cbdd862c3b75d559773916b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9373055432830352@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "962550e2e2f962f1f2300c2fe05e7d19", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-08718546288604778@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c3986c649a1b0124490d4d7ea4975242", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6797134237565837@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "89456188989efff6b55cee9e6a0a30ad", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-31557640959696587@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "03679e3f86eaa1a8d1e723ba348e131a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-21265396532323355@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T05:40:58.8030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c4174168fef2c73228dc7b3851bb1b14", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7732681354588797@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T05:41:10.8200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "766599033ed46639db4e38bec960ed68", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9863100108188184@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T05:41:20.6800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "601e6eb124911caca3202e72e48bdebe", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5334656554861799@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T05:41:29.7870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d5b041871585f80b93da1611f6ee7515", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8482955137073964@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T05:41:39.6470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "23ce25b22c50888c340a4b98e83141b4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-933582694687633@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T05:41:49.2400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ac04fea95adbfd0ff920b349539bea87", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6221849299403209@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T05:41:58.6000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1580552ebee05408bcabdbedb48d37b0", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9933692856611551@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "990144ebb22a25038697ec307941315f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8250683879229889@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c29d9e752597d5975621a4d1215798f5", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-33771296806424267@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c5d405a4bf3655e985963b0dd195c5c8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-23402578414586228@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "df92e816061a3327c1abc541dbcc1976", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8845823624649561@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T11:04:22.2600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "699922fc1ab487973c0fc77a9d9f1540", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-15694724717781694@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T11:04:33.4630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "208108143737896f931a27a66e8e7e3d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9352755368334309@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T11:04:43.2430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c25e76d6644269167b4dd75326ec0264", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5174693381365298@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T11:04:52.5270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "22554d8be4d4b5f7dd1d8625ef661a41", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6219558208752937@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T11:05:02.1670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dabb1b112c0d9ba99953ea0a013630de", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-20308148427707273@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T11:05:11.8530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "197c1c83b28c8449fd226dd89f9a3b94", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5061616816590886@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-05-08T11:05:20.9330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e386d0135df6bc2417e47dd2ded051eb", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2484356303359071@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "10f76a2c7396ab1c38561f7373550298", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8717048570658472@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f48b5a378cc454cf4da26a0b4a313e1e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-04439906040779196@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fc5e6df8c2f020973fe1d68fe2de1d63", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8373250211756098@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6b86e3a5d5b9de7523e7f36d20b9e3e1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6785871914699351@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:13.3430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bd54cfd477c7c5cb7fc9c619d76a23ca", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-298102154165952@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:14.0470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "56672c1efb0f019a6c8ee131e9f06b5c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3832009064531836@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:14.6870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c207cfc56568ac3126ebc82ecdbbe7bb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-12771942155310068@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:15.5130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "89f5ebcecec8e6b7228b363f7334a1e4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9088665349816953@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:16.3900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "04b872863325e1602eec51c4a21a0e50", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3952213871941751@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:17.1870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "13c33f6b14a1f9eca441f75a4e71aea2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2258251706455241@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:18.0600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5a648c0acdcc9a2871ae0958e4552292", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8795501823348547@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cbb8f35e73913a076b2bb0ddd7ec35ca", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7065348818798043@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bd3695518482fbabcf915f779b2eae66", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5290169045228632@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "972d2c56ca76a58adbe412ef809b8aeb", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2599037132033264@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a0f47c6fcc97e46ab35c064064d67c35", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9758151927095013@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:33.7170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0b5cc2680638fb55f57e19c0b2032518", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-21691149251612252@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:34.4830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7d580464be98f26032af19cd39060370", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1730380578044458@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:35.3430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5c77076f1e48108c3c839ad0673520be", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5217438657046878@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:36.1870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4002468d26a02ff4eeac3758b88071a1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4939561237698217@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:36.8570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f21063520c2c1baa8cee7a540103945c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-08454517386018978@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:37.5770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6b335f017f07b0bedf302c9d2656f8ec", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5027859204410249@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-14T13:58:38.3730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9cdeefe138d169496586980cdd92a0eb", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-23848453123471114@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e8c925f4ce4f9b6f42e4e18165bbabd5", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9513656980843752@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "889fac69871becdc9e3e1ef8e14c272c", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-30617312832038857@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1b8676df119a549708e41a0eeb5503f9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9383189360830037@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "688802778157b69a7bd9213704d3904d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5760008160011961@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-19T05:54:14.7030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a34e04cb8eef5ae1f5489f43497b0e89", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-15021970920661798@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-19T05:54:14.9530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2ac4db852e8f71478207a7e7a5177613", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7464452542352462@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-19T05:55:23.4230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "48147a8a47f43074ba92c00339e9a78c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2175431089078117@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-19T05:55:25.5170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "43f8161d45cd13bef962dbbdc43463b6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-04780639908993034@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-19T05:55:25.9070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fe2d2aad8b048353cc766dbfb730600d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3165548841403132@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-19T05:55:26.2800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0661d02c2bc060e4d43dc65d55a69cd2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9805100638568794@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-19T05:55:26.6100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "da2fba6bc8e33194fa54f35ba9ccc465", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9390638904744386@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2233eb70b4337b4e91ebec52026524ed", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6807440711025917@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0d767b50862780b0e82353c147644ab5", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7204511708623281@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7c19a31dc3fbf0bcef56a456ccb7abf1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7568143426836487@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "eeeb27e7c17e6eb6aef04d0129c79a97", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2111104563070868@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-21T09:34:28.1370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e5dd8ae3f06281a0b7e4f15e7206fa7c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6875586230824109@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-21T09:34:28.3570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "027d1103778be8017b110321e2107633", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7711669953975302@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-21T09:34:28.5130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "81698da698fd1b3fc389e77712a6b644", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7575015208370814@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-21T09:35:29.5270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7270432982e0bcab34f185a6d9eca5fb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-731738068054383@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-21T09:35:29.7000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7c96fe2a8423692360950e6dac5997e9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5043451256637793@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-21T09:35:29.9670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "586e04058cec6dbddcb0eee18c2d48e2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6755687702941554@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-21T09:35:30.1370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "01c85d026c33191366af5964f0c86540", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-46656538689925475@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "08aaddcc6b7b6dbff0476d9cdb32d1fa", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3504544554917046@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3ac252467fa87faf6bc651f17479da36", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-17577200611104637@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d566c69c2977afbde879ee18d99bf142", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-42233608777705856@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dd2f6b19c08537b578768dbad2a1ec91", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-762911643464982@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-22T09:18:03.6670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d055a8bd01cd8057a8144b2f2d180a17", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-25889875951856633@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-22T09:18:03.8530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "473c32437a4c871318e7ed42c90529f9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-10782935865083643@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-22T09:19:04.7470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cf58055d2962663f3c04290d9f0dd370", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-49147767328368686@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-22T09:19:04.9000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "97423b23cfbef169864d5aa3b24d05f4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6048970004002481@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-22T09:19:05.1030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a37e69d80951afc62b61decfc63afec3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-06103992822246973@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-22T09:19:05.2600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ebdea695abcc3372c9e02f964ffcbd2b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-37191272434399236@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-22T09:19:05.4000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4ea0ca896ec4b81bee0ae81be64cac19", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4860016961286714@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "075913976bf1e6049df44d2c17e49790", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-18320808595582028@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "061bb3cade2f6b90387906626d4ece69", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7923780017772797@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2037f51a7cd0251a5aa1e554ece1d163", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-027346412208196447@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d6d1a811516f90e14dd2fcba887b3a03", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-710023662422411@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T01:04:47.1830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e3be45a3b957b4f585d35ccd56abac45", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8914605035421228@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T01:04:47.6830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ff242ecc962d4f0b2049cf0fc63c9e13", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6829142868030078@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T01:04:48.2930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0371d7e8deb00405698d3db33e105f06", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-48873196099661953@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T01:04:48.6200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "71e6c2365dcb0f6cd7ec518f2e4f76dc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6972538004601297@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T01:04:48.9630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "270e160a4969a91c86a7e6946a886e28", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9799658458922832@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T01:04:49.4170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "da6b387dce34f439c670b48d12a2050f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4067191568628217@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T01:04:49.7930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b113fb5efdffb1176872b4973aa3cd39", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-04723339822717032@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b6bfa02d150f97aa12fb871cea96d776", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4746092474295296@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e603b956045ad6d3f7a885ebce4c6b2f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9235414320908721@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fb56c4688f0fc147ca08740c58baea64", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4094697605352321@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e6529903c4beaadb88eacdc22ce8230c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5138182750450654@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T10:05:07.9530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3845b9bcb85df236d9aacf81cd646168", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3035291731776977@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T10:05:08.3300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "03e7f68453c923ab44cd9ecbdd132fc6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-08322768196489494@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T10:06:10.0800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "251b22afb4a3e202a29bdf3e2455f516", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7107456427424069@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T10:06:10.5330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1219969d6d487a0945e5b45037e1fd0c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07327492345507725@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T10:06:10.9530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "03849abae82cc4d67e1e1afd6c50b777", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4383972470913877@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T10:06:11.3470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "56d373cbef4912211e464e323e04405c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6165609267050668@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-28T10:06:11.6730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9e5727737524106ecc3a6b831398e94d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6741541019385417@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c6d8269722640f0dcb8ecb74d2de98de", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5513629160401962@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "78a217445f5c038b48c30e088f24b9b9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2707116866781306@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a41c64dc5f782c3e72c9e0e4d90456d5", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3107094115328429@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "94bc508b6c3c4a084595c03b2af5d5f5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-40972296126207686@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-29T09:34:14.3970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e4d83325aaa11c5be7717aa19cf68e2a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22259606827084488@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-29T09:34:14.8370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c994a92028f0df3b4f837184ac137554", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-040241529146002764@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-29T09:34:15.3370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "af52fd4ceab1c48cf2640a9ec7f706bc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-34183299886415386@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-29T09:35:16.5870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d2699e3615470df1563502f601c8a205", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4208015339036181@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-29T09:35:17.1630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4d4049e5d903141c03dade202bc29c7f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6445288436893981@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-29T09:35:17.7430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f9d782739baf28d06d46b32a855baa19", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9032238418096858@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-29T09:35:18.3370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1427254f371fe391354dfcb2c72d5889", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6674124264459828@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d68bdb2f43d152a6943641ed271d0333", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6787596857831936@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9a07e8354b5982d0fe64fe9c013ca212", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-22196331090360288@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "eee31746adb4f91e2cd4f4ded379dfe2", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9212144602122171@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0e1c8d02bfdc98e27da52eb97cb63318", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-18514688251209754@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T09:38:27.8900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e7011ddd32b3fb3a4e9bc3aba14f2b74", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-45851733812373474@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T09:38:28.3430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "22d93dc46eb262c2c1ee6401cfd831dc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8002141265869417@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T09:38:28.7330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c5c26c563d6a672c49bc02ae82bbd4dc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3082012795989314@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T09:38:29.1400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "707e0aaaec8d184576b5887daa78a687", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-003283759458704294@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T09:39:30.4370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b1a976234c903aef8b85e75173d59204", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22078847890843956@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T09:39:30.8730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9720fbb6d7a9f04d937cffa831785310", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7134341014008666@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2f3c56ae7576db863cf52bbba7b141ae", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-32066652106693416@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5c0cdace43439764da656966867ab868", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7547586407639777@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9f6e2e3a83482e7497c260c261e96f13", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6863827233725144@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "21c46da63cd83e93f0208d2fee28dfb0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7234680317280301@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T11:34:25.2370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "325644c35f13be034d8d0716dd8f7c48", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-992236256799532@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T11:35:26.6730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a052d19b1d327ddbd9f6a6a76f4a3032", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-44299758017167234@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T11:36:28.0330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ec36722027287cd4c5af4cfbdc0b608b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9042384976889702@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T11:36:28.5500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "01d5c6f4d372c38c10da3825e40f9788", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9795537673555863@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T11:37:29.9530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a4dc74eb4b17917b726ec04b80a6eed9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8537577740505001@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T11:37:30.4070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5407aa4de3723d4f8b872aa2a211a3f3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-15733344008354522@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-05-30T11:38:01.4400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0bd1c12d503fc6606d03ad56179d884b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-005882820477012496@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e6150121c8634123c246fe5ee884901f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-28197880497813455@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "74469595856abdd133aef9b984850fd5", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6595123579714253@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3ef54d9e21a5223dfa9134d6cb8b50af", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-17349826921481082@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "58d891ac57a125ce160ec4e041ef2232", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9106708545645618@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-03T12:19:14.1770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b48270c1c4bb7b8a9be94b1bd1d6cdf0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-13555712681607135@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-03T12:20:15.2230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9c3a3e1f1ed0261164d6d0915547555e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-0928964197006168@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-03T12:20:15.5670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8cc603fb99a1ee40095b4b71df367ffd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-001870210061228672@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-03T12:20:16.0370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9a37aeb3cbc73083750ed09e7e0363bb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3523372117577396@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-03T12:20:16.4100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2fb212d5d296116ca99572fb3ffbcd31", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3433552883019615@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-03T12:20:16.7870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5724f397dd73ffb60a7e6498997f2302", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6826050205358262@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-03T12:20:17.1300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6b438e66110cfe455689ce67fa67e503", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-20369492520408317@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "916779746f4db56746cf0772dd73c771", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7428249707730026@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d7d88540d783e54790cba71f1ee5e565", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-007883291445248242@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d5427483416090aa30953b9eb1ab95d8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4737596046133483@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f888222629ce34dd360ccf08d1eaf78e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-08756054834190552@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-04T09:53:29.0400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2e6c75404512e7c14a01906e49e8f4f6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-509686305995977@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-04T09:53:29.2600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e5f5dee0f345358135afeb0aec1497e1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-04794786388992123@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-04T09:53:29.5400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "52388044c8177994ad61d0091849da6e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3046618228763841@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-04T09:53:29.7770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "42f372f71099d73be3aa17f5b5664c94", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-993777846756269@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-04T09:53:29.9800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4ed4fe573fb9168c20a8186a2f977efa", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-12519278430054348@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-04T09:53:30.2300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "61a75b39df74929ac3bdd2b6938ca656", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-42835339277351825@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-04T09:54:00.8570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cfe013392772305b68512bc53a27286e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5422466843669876@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b6060f85fdd97519590e86a1a294d0a6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9926620942398598@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ac90f3aec8258ec5b142ad91dbf27d85", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-07992170051121239@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5e8fc42a3ea02c50827918d1b69ed8a4", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-223903044078003@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3930fb31e4a16c96623f95bc8b0ce27b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8216870930083953@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-05T09:42:22.8970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f93b9ab1d4cf1ff49dd663c31745adbb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4468750843721562@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-05T09:42:23.1130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2a16961e49cb38c1025984a4c831b8ff", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8484452082443382@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-05T09:42:23.2570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e1775dcf3ea7973e214b1bc7bcaff070", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5001724604210528@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-05T09:43:24.8030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f2117bac4243642ca98027700b0313db", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3148013656712183@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-05T09:43:24.9430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9d2c4726f04fb24ae7f9d879b4a4d40b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-0333631699283623@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-05T09:43:25.1300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6bb442bf06acc9fdd3dcc93c12c0fcad", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1301397720912385@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-05T09:43:25.3630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "10476611bde0bfe511d5b1f2acb5b578", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-19980320316055677@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "610d97166259e5b1d80f100177830360", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-23612934386364914@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "43dfdfed0c1147284beaf5e266f63cfb", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-16672930790646656@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bf8019882c4956c3501a20e00871c173", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9393211485511013@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e720f0322b57671df07a01a75d544183", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-20244361938207567@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-06T09:42:13.9100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "642f4519a637d81db3890b76ffe3a67a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3514643280829419@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-06T09:42:14.2430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e912c45927df6864427ad257cc43013b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-19164660731784344@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-06T09:42:14.4670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5a0effe8a2f43a28795fd87fdd3ed7ec", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-45757783764397963@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-06T09:42:14.7230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1e07c59d2d70dd4ef2d8f173263190bc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9897115440990322@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-06T09:42:14.8970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c6176fc1a5f477b8150b251e0b6dc8b1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-27049212158362057@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-06T09:42:15.0670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "203c8c695a67f4bebf6863f8104fc6ef", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7106588587481439@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-06T09:42:15.2170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9e183f6d9b799051121faaed6be85721", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5606465084792851@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "08f8d4bd519ef192e53e798d27122bee", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-49299528899576206@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fe0912502b09717371592a540db5e2bf", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-38184829404037357@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4b1628eda04e9d5aa3174e42ab8ad1c0", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-826838869149407@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e1ee1a7b21400d65ebb6c2231a57f24d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9891846509329608@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-08T01:07:49.7600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f5154c93617b1daa2b10afa40ed61893", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-406424952029961@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-08T01:07:50.1670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f9d175be249fbc1e43b0f890ea7c1a2d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6459891036085738@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-08T01:07:50.4500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cc7d52e803e843d4ba096b4bd04b6b28", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-802258828911597@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-08T01:07:50.8230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2344103bec28040ea7c329f6d392a4c7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-10350527643517327@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-08T01:07:51.2770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "afdad49098d8c3efffc9542ff2c53baf", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2569445094246344@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-08T01:07:51.6500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9d85175a32f804d73696534418862869", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6389205898332772@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-08T01:07:52.0430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bf0b52c90d3e08087be517e1b2b7fe2f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5768432970907632@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "50fcc3ec17ab6ea7b4de3c558e29fcd8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8979426141966564@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f825f6fb9d34fc22eaf932bfaa1d155e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7916958403682246@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "48e3397890b4dc5acd28913e28d3b17a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5231421525849006@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "24d0a09ecd3541121d6805cab25ff606", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-016874722114443075@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:39.9530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9e2638c0414536578fb815cfb748d9df", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-29399931634871634@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:40.6270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "da0a02595772db6773f4758b9fffb090", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6972999870118497@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:41.3300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "423e6370a21222d99ffc3d34a0053fbe", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-06412524587773405@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:41.7970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0709a62a2fdb6a97d2366b450c841493", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-11125379121687307@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:42.2970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5a3e3ab11bbb12b263884210ac2fdf6f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1281986875591491@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:42.8430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d35ac0cf13d61deb3ba7aa247f54fd06", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-0795309050692572@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:43.4530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "719632e3db16ba3155a9043d0bcc49d6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-930877438056935@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e909e0af2c60ce55d34cf2445e108fcd", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9335789820925324@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4edbd8e41d27ce743c53c21c79db9fc8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-05094310714416683@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c8157c63a942c781e11dc4da4c35a286", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8118117664895733@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f7f2f14ce4c9a2064d75ea073342cc37", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3168157548581886@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:53.3900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4de717bd41473deb63d3f56bb148654e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-19387440260084532@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:54.1100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "95f66420c0287add856344a6329e16f7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4750065195028427@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:54.3900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b9fd33e70f59c1914675fa5e89c74dd3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-44612377664015834@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:54.7330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d79110a36bf5819c69baae35e780cc83", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9127263121192514@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:55.2670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a8bb90e4095a5929e429764e8495e67c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9342382805708722@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:56.1270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8ba9127da1e547ae050d4fcec184cd1a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-523824974007795@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T01:07:56.9230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5bb8498a939993ff810abdc8a86d843e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-1705342500997743@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "933864431f8da5a50a4bededec81ac5e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-35421160459082124@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "912fe7b765df8f148549b5fb1269756f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-24678663753542018@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "232105696d5e141f85b3d759f056ae03", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9871450553498533@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "55677cdb459b0e49aa41b79beb14550c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8575841105428221@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T10:06:23.2230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a1302c8011d2fd08f845f5b39d203c9c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2911847173651928@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T10:06:23.6770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b54762899e909fcf52708c40336aabcf", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8602046275002272@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T10:07:24.6770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "73611c47ab30060587251b258ee7d2d2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9306490975730218@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T10:07:25.0670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "286a60dd11e4aadad6e439bee3c0a404", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-13549484931130573@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T10:07:25.4430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "07a3714b767c7608cf3f7d51e2763d37", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-26760136054706485@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T10:07:25.8170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3d2369a11afbddf4995b2a54d64d87b5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5532629495096122@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-11T10:07:26.2530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fd3de01ea2ad17d7f6a51c4fc286d93a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9187336944492829@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a4280b17fc0c2b3ffc08cb263c9cb73c", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-07330111166625042@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "11325d5785a8ffb6ede023fe94cfc844", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3065689855470025@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c5b0ea643ba76d4db0424ff68d692dc9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-234759725491686@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1da461a2c3079b87a6db547449299361", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2171174417109757@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T01:07:57.0270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fa87498c107a9c4c973a265010e5581f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-586583873877317@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T01:07:57.2770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "87c7baaff406fd466472db9520dbfe99", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4771695211285846@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T01:07:57.6030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c775af449898ada32a02b8397d39058c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09153899591692449@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T01:07:57.9000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b07417fe77f3e37f6db7011f22b53088", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1931392436477285@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T01:07:58.2470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b7ec4489a1c97f450a14ca141ed21356", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-658573927388724@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T01:07:58.5900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d89d7d2e76b676a67e90f3388f050978", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4758830974511181@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T01:07:58.8230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "768a0e15e5587bc15c3f51f14536e8f1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3160362563475063@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9704ef6f24e7bc11c5ef9e40f72a2a72", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-527706521906207@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2aacc31edfa684a742fd6bba997daccd", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6423845113611933@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "587b3c742a7404cc2e7b40ab7c3873ec", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9620453319166523@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5bd23284a73fb1c95e956acdf9b6ce2a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9285672546651136@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T10:32:26.0830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c68e93ab520f53ca16347f2d606a6190", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-06430132512999387@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T10:33:26.9900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6d9282996536c594fd31f3c977fad6d5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8359500892964817@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T10:33:27.3330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ae6f8f21d8fac709eacda5df789982a8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6034113905017168@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T10:33:27.6300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a7ee3c2992a9f6c3cb8a270fa583550e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3275025582393618@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T10:33:27.9270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bac84aab524f16bfbeed9322d79c7596", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-10755137779358592@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T10:33:28.2230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "78cb11c37cbc3f2ab5af74809945dc59", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6277498935378024@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-13T10:33:28.5200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "69b7230ab6ba481449a3ef44e4d51137", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3246186896566482@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "54b3b07aeca39fe7a85ecaba2240afcd", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4972100180931871@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f26d8b1f76aed0d0a02087ca2b50675d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8382731524279275@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1dc775613d82ef08aebbecb79e3b72d0", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7221038245354372@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "eed649f7caf6452c8094f7f2f705592c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9727243092311209@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T01:08:15.5130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "af5f730a04ea2d032df95807156b1c3f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-42824166304792377@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T01:08:16.1700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8cead5e1e2b347fc91201c775ef95436", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4914357458983539@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T01:08:16.6870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a222cd2b16f4b797bfb401d7e1bf1795", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5397391763898761@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T01:08:17.1700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "65b8aa10eba078973f44a275b8f6250e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-18240286525699478@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T01:08:17.7030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5a2be18ad6f67ecc168435713ba11a84", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2528053766573837@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T01:08:18.0930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "321575eaae3da923d925696cc7e2fea9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-49939837254834374@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T01:08:18.6570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fff3143d890adbf118fc988931494742", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-31842233647984364@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9bb230e89a6f07f7e98bcbe7b331a949", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8161478111246253@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dd53664c977edc80be87a3c7f0bc913d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5423587688953613@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f62a9c95c3cf017247af15536995bba9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7244174937859501@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2009431dc371b9d4ac392c1b63370692", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-057449604192526094@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T09:39:04.6000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "47bdac72ee5037836e086d2c087c1d65", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3828958114263883@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T09:39:04.8500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ee15852b182686510c53e380f86d1120", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-41000222179465307@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T09:39:05.0830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "48d02881f64fd532afecbab70dc66d10", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-10481326708700833@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T09:40:06.0070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7b5ec99858577db075aa7cca3d88f017", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9774758745939193@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T09:40:06.4130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1b0185fded87d0328ff4143a79c9a811", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9433797162391122@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T09:40:06.7100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4cd042bb62f8290dc827c19c03d1a917", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6190694029485617@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-17T09:40:07.0230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1ef692e8828322b0d547d43f8ca8b370", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-49059463470513653@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3f2452a283ae693f6f6c847c1b834bf9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-12794184650402707@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cbdd23593cdd6a87a7d29d034b3eb2b5", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9701996902557292@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "20b6f9c962b5f58272158f41d5cc85f8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-1737458763235653@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e3ebaded1698fcf3f8890fbde9f7d259", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-472522094030679@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-19T10:30:37.8300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4252f57507d9eb81cb82871ad4df9ad1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-46226665181239535@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-19T10:30:38.5330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "323ccfb84ea4a97f0230b4a4ca0d5169", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-0316963896675333@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-19T10:30:38.9870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ec7e22c8ece8701b0c851af1e8fdcb84", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-39989417152195084@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-19T10:30:39.6570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d93df95e212c57ecda3b153eec7144b4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-12463970373537514@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-19T10:30:40.2830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "49ddbd17138a1caa9064b8dcbfe90d3e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8197901748714046@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-19T10:30:40.8130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "822ed3f2206642634feb943035995054", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-062022663113830534@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-19T10:30:41.2830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d6d17ee50ae860586f2d03b1101fcde8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6050945292749347@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2752960d9d8a471003b5428be7c16355", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7757530036225899@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7cfaa096d2c48602084d5c91901a7eac", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4417784266382553@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8afb171652b7d6a3c226b7a7e24bc10f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-647862075023848@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a4be78539a4dbe68b4a2f108408f296f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3643456757058038@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-06-17T10:01:52.5900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "28adbbada831cfb69384f32d35c91d4c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6130924242666983@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-06-17T10:02:04.6670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "16de61f339ad3d9bd68b694618ff8870", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-750031454894377@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-06-17T10:02:14.3870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0990cd581399e007525a88ba98188d85", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-28574161664367914@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-06-17T10:02:24.4800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d2abb5f479f913ea8347630810050879", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6068310297314761@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-06-17T10:02:35.1830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0d1a0604d6cd6c938ad8a7edbb7ffc85", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-06084570018085378@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-06-17T10:02:45.3870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9b09b4e13c915b9dfea2133bf11ad631", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3911957762317716@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-06-17T10:02:55.8870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "40867766ff500d30ca95779e83c84ff1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6965745464024125@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7a013b306ba6804bde76358c31e1082d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-28693530020024816@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d5603f75f6e17155bb03b9135ed898d7", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9367018450289637@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "751228a8f2491ffd5e2cde30f1a9b22f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-422717779627114@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "05c485564e91ca337c05b4df7a645557", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7020204935787342@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-29T06:10:06.1870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "04ea2e76912556373593f85931d44481", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8865149032956324@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-29T06:11:07.3830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3782bda35bc885937876c980862579b1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-953935198978428@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-29T06:11:07.9200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cbc075dd0e4d097ddc79eb389c4c5911", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9277689939046435@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-29T06:11:08.3600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d2d4a3bd1a1409c7ad65b51f32746fcb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5668448503311813@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-29T06:11:08.7330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "15482a97834aecf9f272ce4bb88005ae", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-13407799481605787@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-29T06:11:09.1770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e8f833eb02185bce9f1e881d71cf7bb2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9782856039266641@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-29T06:12:10.2270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "52611a2055ba7049947c6f7da50127e7", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-1798941050004591@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f424224e14d3c8a6126df8fc5f7b3711", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7529363704088237@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8b485b9feefc4bafd485769a49edeac1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4531962540556792@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ec84c97f1113020dde3eb6c90901b1a2", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5608249315467153@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5fd6baa55f3a36e0fea4d7c761fde999", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-06978130149873785@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "47ec63c6cdc2d0f8f554f658b7eeea98", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-6086811846865333@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1947c1282cd99dce6a4c41c51a426195", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-506526422001145@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cda46e938d800b3f228c4e0749a440d5", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5075539458126087@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0fc7a158217104a26b4a8508a19a2df6", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5188393995394273@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1f5d95d05cf6f41d2435bc0e27179f9c", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-4756850111231863@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f101708feebfb255ebbef703c1564cc9", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-68058971119518@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "97e682667663e316456ec9ce650d8ed0", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-8975984485993374@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f8855692ffb57cfcbc0dd2d67d4a576b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-14942128353481465@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T06:29:18.8900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5f397f9b8eabe6eeabb23886522c90fc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-43651841184483564@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T06:29:19.2500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ff6e4dd2632b0a4e681aa552c22a4c3a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-584688316570159@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T06:30:20.3600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5c87a70eaac10af37789816cdd109460", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-24031588110343316@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T06:30:20.7030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c3b2fa78794831095ac7b0398e7dcc3f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-34363807114077916@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T06:30:21.0470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8d443b10ea7b4e23f39b52f70a1dcff6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-29681767078122@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T06:30:21.4830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a3d175f0dfed84f414f6f059f62ba182", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5292024935082978@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T06:30:21.7800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a315f7dca625d90b976584518a041201", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-006980289753217184@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d9d606031f7d336eadb3a66250edd79a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-09983245912155447@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "12e9f71f25ffbee619c9513406fc4512", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-11259498038898941@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0affe595eafb515cf39e801e9ffb1283", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-11392109508284132@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "42c60de0ba2f2402b2897559d4d65206", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-287830873270287@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "def8fd89708c234d258621042365d980", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09396001705907175@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e58c8d4f3e70418915ef7bbe62f3ac3e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6321002169197437@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "19495f718afee8786b5097d4d612862b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-20395041287092686@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "308e90fae2cc90c9eb7aba6a3de177df", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4444917678511112@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7aa5a411ac2279253d44145a146e2378", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09419351215166705@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5adaf743c380652b43b2d795b38d5ceb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4917358520999824@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6ce1e8a24873ee14fb9070fee65fd7f4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6117890295941107@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f48394e695d9811ae7c309b8c44a2665", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22006141953595892@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "284212ac486ed65deeb9f35eaf307efa", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6274937357642904@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e9c60d0935659d5754bffe4787a62850", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-05030439146689625@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "06aaf278c895886fc52fd3f59d59a106", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-7577924540188757@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8e018143731d529db24795c63d9f911d", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-355579622224772@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2305a2408707ba3aed8ba58e4ba181eb", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-8921991073356247@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9f4efeb2a433b02a4370213be5f2b44b", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-2528031827777276@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "beac4406ab35dcb5de35015456d13f75", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-6770533757460822@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e4ea378b29c00fc147ee9c864010d267", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-17225980773954974@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "727686842501aeb85c8bf9d8839d0b05", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-0019410312987727663@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1302c937238d084f62151425584198b5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9341884774660293@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T14:05:13.9730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "52c3956c0494ead262b4429a88913d52", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-49889474139775547@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T14:05:14.2870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d3ffede9ef983fade8f734c1c7aa7ab5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1618636606267222@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T14:05:14.7530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1afe56797650102eabd643e8661a5956", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5458033022349907@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T14:05:15.1430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5e937bc1ccac666af43e1897531780d1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-39002251048100234@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T14:05:15.5200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cafafe59ee9969339456fd15e89354a6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7511561179682105@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T14:06:16.5830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b245f99dd244d0c0a9c6741b6335e0a2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7764302566242683@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T14:06:17.0170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1575ee34107481061447cbd60296f3f8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5760321153596362@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c628a983308b3d1339938b408e5195c3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-07327563726840569@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "419ac6b0cb1a2910eef8a50a44c06d02", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6876440410692997@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4639751c558ef5329c2e70b389f594d6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-33015498092087037@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e80c24ea3753f60897460870290b5925", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-862345647011581@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ee236b71c1907cc8589346e5053d34ce", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4141880063948017@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cdc77bb252e8a8a36c6a36d4981708f1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6744891381405083@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1f239707677d9db3c99194665beae206", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9746448400502092@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b7ad2f1cf34c76288192ed5be0305c7e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-663655996243189@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "be546c1d2fa04caa6535bef559f1023a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2689188722549912@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T17:43:22.7670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1ec06ff42947c080fd7a287ffbc74ec3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8556295708463111@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T17:43:23.1270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ce6d09e0e576abc21a79487d4fd88634", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8286860400074243@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T17:43:23.6270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "108d66281f0904957542eaa7799c26c5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-23383955482940355@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T17:43:23.9870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e0d874dda2625127edff1d3cb3229464", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4743330662508729@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T17:44:25.0970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "753d16b8104f07b646b2997de4ef263b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07441823609622122@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T17:44:25.4530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "21bfe83d8579ece037f9ca9421d0eb49", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-24852630186662117@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-06-30T17:44:25.8770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "de6e3bfad2f8c49f6d4bb9b22bbcb7f0", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6891284072789096@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "10c345336a1f0fe8e3d872413e35873b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-41612773423098015@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cab5a6e1584c61a548868619130ac95a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6452261087004706@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fa4470701b168d6a6bf0066bfc6499e4", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-48038906070442067@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "51103d603ece3cda81aafeee75ccdf8a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4320980437251931@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-01T05:57:07.5770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fe398dd4a5358fab6dbeba4256276801", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-31754565473916185@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-01T05:57:07.9100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "66f307832f9ffb3dc783e1b664e6fb44", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7099042018459921@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-01T05:57:08.3300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "12aa6e479de3cb50cbf54f6c2d037f62", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2137811556161413@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-01T05:58:09.5400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b2c93591727e89026416e51edc856deb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-41246134663648937@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-01T05:58:09.8700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "172af1a0770b5fb8eacd64012edd24db", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8585522668006121@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-01T05:58:10.2600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "308ab2ef73b7a47c77680f2b0c0bc0d8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-31973373379297987@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-01T05:58:10.7130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cdd9160eb292fefe56110199f3daa97d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5918195122994901@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b0c8fd9009a7719b501c5c92b7ff9195", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7324230146788185@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6ef848982db6f5c9e54ef0b4547256e8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9466496398308204@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8e74e6246c18d52dd087accc6d75233e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9285877298289825@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3683e90947e2476abd712d178a9e25e8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-18311917907206166@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-05T01:07:33.7500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cc6e7988bdd6895c2ea9f70bb861041a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7445115407231917@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-05T01:07:34.1400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c91a31de28a5788cb5b6753c123ae71e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7098663191043274@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-05T01:07:34.8130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e94731a733f2fc27f48626d10334314e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3157352667158527@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-05T01:07:35.3900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "395341bf4f5342e37062ddb8ff3b8b21", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-42944925467967165@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-05T01:07:35.8430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "469723511bee6f426b290287cbce98f7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-045753436180317686@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-05T01:07:36.3600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d4f40a209a64b0cd0be7c72cf326236e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-025454329467801573@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-05T01:07:36.8430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a7c7e2a3b79731b43489a269c0e547fb", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-150857194162476@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fb6d8fae347cd77f3ae3bc44933d5c85", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5664659421475052@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b1ea8733e31cdd95a51e80a136bbd050", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9739044236676485@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2ccf7e9ee0123c1153e5eef238591c19", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-24406206383926743@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b446eaa604b4012c785bffc567d58189", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-18373162731749748@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-06T01:07:55.4700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "86f49c19d6e95e6068146b9df1444850", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-15078060591225217@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-06T01:07:55.8130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7b399ab1bc1ead7af956352f0d0f554f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5811578394097161@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-06T01:07:56.3600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "28596e45e54cd5a4d25e542c2829cdfb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9054383447011989@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-06T01:07:56.8430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "762d09859bb6eaf13319c672d129555a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6888893420747835@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-06T01:07:57.4230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "26477a49d4664708c8eaa234b18f4003", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4110686652522906@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-06T01:07:57.9070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0cbe473a2fbd52c120d13ec87a8a6b55", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7668392066273171@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-06T01:07:58.3900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b30e0df89e6156c520aaf7819ed5c0fc", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-014453148045573294@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ea863f6127eddd233a3373a2e5a78047", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9247545925647989@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8a4c45d76a8236695ef6f90fb4682f7f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-928667636127229@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fd96326e4aab1cb2f812656f22d29dd8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-03945056066362851@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0da2daa01bb33713dc8430864415cdd7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-08896196042450477@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T01:08:08.1000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "91790336f973c59e5e93b5767fec0c65", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-820296188083156@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T01:08:09.1300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d4d139a4493b1b3f2d7cf0c9e6c7669d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-820841051572512@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T01:08:09.8970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0f79dc02655ae025b3db36e6aa0dba6a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9484465854976751@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T01:08:10.7100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "985fefb0624c20de5371c3fdb1688f2c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-41799928718149837@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T01:08:11.3500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fa4f9849865b6dcdb15b4bb3cfe622cc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-19281335184987047@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T01:08:12.3630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f9440fb07f0b115a9c7ca2d11be20724", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-10807325735144324@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T01:08:13.0530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4b607637a1a01184749b8541089197ac", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-20810379183695638@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cece5793ffe59b03e5cd2f8b6af6bc8e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5064636754937445@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5adf2aff0537b441945cdb9289e96cdd", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9101634178661479@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ce8d0aadfc65719241639d04a09e8fe3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7019271437813692@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9fcd87467c1c2069f660a2458a11c948", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9509074305560254@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:49:59.6770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4b8194c28369aebd2e56466f10ed9212", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8469331826095524@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:00.4130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8bdc8e424fa773d2dca0ad838912fa87", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6937862751725082@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:01.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2a5cbb3508c6f7b99fc7f455d9c3ee03", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-03395693563559665@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:01.5500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9e9018067f64621a776b8b089d51d228", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-19497881630717606@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:01.9930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7a9cf401e2ac24f0c7ffe3403043eee4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-02995305723328201@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:02.5270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f3210aca3b2588fb548504583aacf9c9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7820268370019638@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:03.0030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "480aaa4008ab4128a70cfe7b3e6d015e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2170854371690466@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0b1ebf7f4947d0b7e50883b560f72cab", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5722382446499867@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ec8784754207947787a6ed289147de0b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3911780093744839@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "baeffa77d0a21495b945f8c651d9188f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7628645625684382@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0492a44ecd716ad4c94435d42f08da5c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-0038024616979241976@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:08.9170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cd824ff21dc2530842e0e49f938c7f2e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6189861521032701@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:09.2770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "96e9ef2674b407dcfe0b36c91d25d912", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-06421552697366084@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:09.7430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "81a32d166fe014739a1971d0ac7675bd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-44975233446374807@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:10.0600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "22a6e6f20c93f802fc81bb6d36be8c40", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-25506709114461035@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:10.5600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "47e565597cd71798b957ed1a6d89278d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-35625480873045223@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:11.0730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4bd65614466723b5e46a66f9a338b0ce", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4418822555018226@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-09T12:50:11.5230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "98e0d2093ae49101cbe02aa29e013a75", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-814040240270553@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "67cc9c1f25a2b8113234380190e3fbf0", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-1496918238369317@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e7c7897b49f3651d17f7554e2148d42e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7887260430606811@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7c9ed546c2cd730cc283f0f896aaf7e1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-20239338684870356@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5d81deecfccccaba4d3ba72aba61da1b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9498612954820289@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-11T01:07:38.5070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1a38c1700ec5081b32b4c2f7ab045e7e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-02762712920344146@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-11T01:07:38.9730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2d8f715721a8ade6870fc373c00f7450", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-39521877019019114@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-11T01:07:39.6000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cc09be5afa874be4719479b8aaed5815", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-21371881662391257@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-11T01:07:40.3500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c0ff4d6cad96bb19a383a2f0c2442c3e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-932924985456625@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-11T01:07:41.0200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "db5fe3169b42c3970c133bdb6ed1b28c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8703615988001422@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-11T01:07:41.7700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5f39eaef4dc44424a73eb05ad1fc1fcf", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-49747886250028783@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-11T01:07:42.3330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "613e7da16bf1ca06cb33f3ad821828a9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2387064612816483@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7125dfc6856e8b501020241cbb1268f4", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-11924484372224908@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5cda7f685550cabb6fb0d76423e163fa", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9570215666611719@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4bef3ffdcd93549d581016a539283480", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4598026368959971@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e7f584896dbf4a244ab0da3081ccb6d3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8495165944414218@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-12T01:20:51.2630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e119ce0411af76e8fc6d95cea273ec5e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-16817205468131735@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-12T01:20:51.5930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0707790cd8c32a21a9d716f30a7b2a5f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3060717507236884@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-12T01:20:51.9370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f81c224e30b1e25da5b0230c240ab049", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-022526112794302056@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-12T01:20:52.2170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fde95f0666a2602343dbaf84139d8c6c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8482057086624188@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-12T01:20:52.6100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4eec33101cf994b42458f50acfb199fc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8233422289266553@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-12T01:20:52.9830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "db261cdc274e6ec82f5359c8f771c927", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-872051304291044@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-12T01:20:53.3430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b9679afc0a1be4c8e252291adb71d1d7", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-20389474158541498@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4bb27a219563a6c979f248c53c58baea", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-60239265855997@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "975ca6e94bc8508f91f71643f1fb7821", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7106241865736878@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5347c374c9f8e80c77afe23fc56a7bcb", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5777303906674097@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0bae47227b4fb1289b5dc448db140b3e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8245647269192283@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T01:08:04.1230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f9d3c7fdc7d6cbc0754f8201bb013b54", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6928771632072979@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T01:08:06.6000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "432ed41994f209016b1e0803a7b0497b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-10932259231534625@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T01:08:07.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2d39608f9184db03e1dcb72019bc6ae4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9734037443904215@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T01:08:07.3800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "92962d85801eb06e963ed78013e86f6d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-49476184637497334@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T01:08:07.8370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "887dc35b92aa63b0b5f4f039ca48c164", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4375949201319893@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T01:08:08.2370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7fd1cb6e0bc692ae6e57ae5423e0113d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5365987071781372@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T01:08:08.8970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ef74f73d8a3454e684a9401d705dff23", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7467152667281958@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "362a7db12b11e7a8c1742ef77016c281", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5651935132955609@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b3215e5ccb91ca7e2aaab025ec6c4c03", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8648365174622455@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b66047c3ebf0c1661c8df08a5d1b2703", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-21643790347428327@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9abf018b45fa77c0793fc9a6938a07cd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7214310075030224@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T19:23:09.7700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "89137083df51d448029fbd7243a7e7b3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6818786374780765@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T19:23:10.1300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b69ca113d7aa49c76f805e23dafc2f10", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8170805392405752@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T19:23:10.3030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2227b1d4647516692a0bcb678102262a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8950249029716092@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T19:23:10.5530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a1dbcb752431753ce115cb246841714c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2416766607322236@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T19:23:10.7400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bac255105e8842fa46efe555d58b0efb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-26350759157633463@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T19:23:10.9270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1b11c8019adc99a2f49aca0cba146ae5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8874515113575001@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-14T19:23:11.0670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "90701a187ed37b05aaff435b1a6b13b8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9900488554870912@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ef7b1c962026bbe3142af6b801c06a92", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-32298020992802434@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "79530dc18cbf9208e783f44e093ca5ff", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-02240906942611587@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b4925af3565de9ac39f401d95be5826c", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9692948588979605@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6de8e7890abc94c0dedda88518cef2d7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-45837019705711424@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-15T06:47:09.2930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1225703f0357df51c91bf65ab1010359", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5491673449466049@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-15T06:47:09.6130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "69d30e0b7fb6b83cc4c1aa87e610ac43", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7591377259895099@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-15T06:47:09.9270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0a17750e0132377886593f142f955143", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-44824448534769834@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-15T06:47:10.1700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ba2faa27f5bbb74d2961278ef5affbec", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22897254064950712@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-15T06:47:10.4470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1a65dee86db5b8beefc36cecf76069a2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-46701069681446683@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-15T06:47:10.8030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6c4f38a1798574056638281e77c3b969", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8682336314160923@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-15T06:47:11.1330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "357e2723568c068af73d56c0c6cacb06", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7697990904477235@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "79f17e96d516a429104e4c243355eb1b", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6674975367025282@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "332d38a77267f3c2f79fa163ac8f7452", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8401614780510346@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "48166cae679e96468956922a6277b27a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7336036585106652@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d0af77ce3362882a8c382a4853e8f11a", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-21370448790759466@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b3025c0ffef59a33fe164f4bf55f6c03", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5545560279491248@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cb0805494c987a9029b893f464d8ad39", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-7144909829784655@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "78c7b51740945e705f39357e4a04086a", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-21413307127248526@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "58b3c3f27b1e5ebddfde089c9113e9e9", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-0074502439712530455@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "adfba60d9d8b761777c9c881d9432251", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-31761304944123114@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7b849cbf404432d5e3211b2ebf5d471e", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-0020802941937981823@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "911c76eb532396054d27cc5374448fd8", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-9854328893794763@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6c37ec53829535672f9a93d228ac65bf", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7034965489030591@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:07:47.3600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4082028ec3282b03ed67c4fd31d64427", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5082238937401663@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:07:47.8900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "93fc75a339224a2c04344b8a7acb6c3e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9959628939664334@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:07:48.6700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "27bb785220a085a4f654514e893a1c40", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-14182298268584626@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:07:49.4270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d410113b1dd41be3d3167bd1572ff348", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7804866677535108@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:07:49.8030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "382f4002b6c308a015688c106b09d27f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3962002420459284@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:07:50.4030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3da5a43a089150f76368612819ac62dd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-32748909406039106@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:07:50.8330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f28efd066344af5316dc614d5fe89402", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-813065603842715@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fcb301ca084a5a940e4fbad6b7db4b8e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-19033241157457492@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "140abea7d12d8ef755018648bf7faecc", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-15107712764665338@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b97c4f8023fc23950d3098a4f5f5bde3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-24647083050390017@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6830087d9157189026ce13f6e7d0e666", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9792601423255805@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "94676423b2c4e0f8d11369beb12b59f7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-307304588035727@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a9e5df45b7d884531d02d3c78ffc8470", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9091854119063497@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "02a0c588bce4992226276ec63b19d245", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6855363936509036@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a5eab99c1d941a745352f550fc7320ac", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-14204844447327303@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e217499cd9b2f9d0fcabc540d909a0ca", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-08705410466048558@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f24d7dfe7cabfc4f38db939e2354e3fc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-16420425966313146@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "932fd653b51cf8b46b91849154c42380", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6226405727673066@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "83bc149e4a3884cff7ac384ccf0a7fff", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7177012166418005@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e247924ded7a8c83774e5d98cc8652a7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9285598147393684@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0a8dafc27cd2a34f4a4b3d20ac43b9f5", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-9151640822494157@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c489fd346c2a77ee833ddd9348ea79e0", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-4244763660323009@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "db7b10527613a8ee44e586b372177e4e", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-6471652157408163@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bb093392bc11a92537c76678fc2f1629", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-6186366648043611@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1e923048db25c2cab0f4207f0b5d2586", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5150627748335274@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "08d526e60308329c06923e60e54bbcb3", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-007018981607598063@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7bdf647245cbe00f86232e4466a9d41a", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-8489144082122191@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2558f57beb0d0365f4095a2ffc3bddd3", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5617195973181064@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6fd2e34faf26f94e87c6cf0bdbe0234b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-01764371446272861@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:07:59.3930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1ad8b66fd3a186ba2b84e7e58aafb7f6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6119042075126874@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:07:59.8970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "69177a984fdb13c5ecffe6b969c93750", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-16093922106239045@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:00.3870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fd40481e9ce93f3ecbfd02dd9fcf7144", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-21718496309926283@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:00.9070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "77467cd45f0a1104d9c62413f8f77973", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-45388780430077313@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:01.3870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5c763198a8a59c114dcac6fe2eb2c357", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9692225808098139@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:01.8770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e472e9f89d0ab8ca83b413af5986f52a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5762938301319905@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:02.3830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c54184212b0a31e23d09f7af63a5d103", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-23852353569776552@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b424a3166f8426b39a0fe5cdd1ad138f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6308685089961588@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c06511e1464249999660f36123f5f65f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3130522372743647@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8611c7f4b31b1bab5fe0882a9ebb7f46", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-15285554193011763@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "411b91dc11ecb7dc5354033e4916ce47", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-04554248880985079@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1bbd22dae16439b855e12b1c720dd97c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5669252143491215@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8c14b851f0a0b02028d7bd69ca6797bb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09827593571304838@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e8c76b41021d1bbfda7e92a7fde11e86", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-0978748874017934@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5f8056d5aa74fa9884d1ebb0a3bcaf19", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3690233611626452@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8e62f656f4c72086ed78ca8cdc4d15a8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8301480585536796@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1c547192ff22a349d5f4e2ac72423517", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6303199640952596@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f383bbb4eb265d3e4004243117c7fb78", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5293897627398946@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9dc74420ef8b66ac413b033f07cd15ed", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8492527093777739@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e9f69d2bd54d562b39affd4ea5cecacd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-11645076304233237@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "73abb089329c2d6f015be81b02530e28", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-8774226811936418@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e2afd48b40848797224f5e7804672990", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-815026815666066@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bf06c5dc1d1e2f86e94302f145e6856e", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-21653645315900716@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "86d1b97f3f9766139150f14b5427dbb5", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-3548511291075641@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "36e048faefb26f1e75aa0c99aeca6a6d", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-32577558459658107@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f8a23ab2937c9ae8d59b65f81f347a3e", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-3196116035766551@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1deb08a4fcb6373206bf087ab9f33b7f", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5594752856273003@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b5aae0a436597805f46a4871b4ed6d18", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-14052232722978508@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "db1c2484f8935b9d2c2b7a2118568715", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5567572071956249@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:11.4170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a4514291ddc4ed583ec741b82a7bcfac", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6249527351977241@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:12.2100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6ce7458ad88c92f19f62ce1c4cff2c87", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7341489664975857@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:13.2030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "caf747526185fe635dca1ecccaa958bd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-058862659814288065@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:14.1570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "389eb967ae6717526d709466d7c2b5d4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1810973180563532@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:14.9070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2685ded03422a8930f399faf198bfd69", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-14567939725141754@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:15.9500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b9d7dd05cf82646977f9665aa84dfe40", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6868657892307413@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T01:08:17.4230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dc538944dbda4a7289b6ab16330d45bd", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-258910541117085@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4163f5d815be3b1f9de3576dc0b674d6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-16853610640860595@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3fea783c7cf59d67db6a52850b3f7b89", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3066956248253665@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f4e69e933386cb9b606331649954badd", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8684647648035019@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f413a6a0786cc9049ca77134b90ff067", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-10474586689096654@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "904787bccb8c624e9b6c7ec0574ef363", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2451041001932297@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "44ed0795c11d3d6592d9202dc4ce308f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5692010146102573@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "123a5f93d617672c5288827a8b40f59d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9565727030871006@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "31e1eb0a4b6cfa283a4cbc6738094656", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7174040407481617@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5fb7d29efce22dd169e3855db18a4368", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-37205742067928427@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "699c67a1a4674af0892d876f0c720a97", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-765759815093145@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9bd1843b1b4fd144ff8232963bb134fe", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4659035113738518@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c32cab5c0d3fba30c21bbf2f9de7a57c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-16952194767940498@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "670ded514e49be61de02fdbdebd0e082", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4057431631444247@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0a3203f0652f521d19a215285e125c32", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-011040748121151522@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5afed24b9405e442e13bc97eb59f8af1", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-11790412997857591@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "472a5502acf375e4b1d325b435a5f759", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5001481192189782@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "898b24f30c047c74275c7b8398ce4a34", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-6282918823000317@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e115efe4049a4748ace122bb2d45e223", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-9355109598799967@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "04178a4d836beb711341959a7642bc86", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-4585687769737121@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5058a4b64e18a788080ce76b09016e14", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-700049950694968@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "889765c2bb18a3586da3f39aa7d6b9e2", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-7989129694421817@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ed6f2a38433fbcc50db4179f2dabec4e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-18802665096241666@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T06:13:25.6400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "497b19e2f75224d9ccfa85ee3c6fea8a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3386422141189438@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T06:13:26.1830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d26fc9feb3117054ad4b72bc322c5636", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5731200977440394@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T06:13:26.7970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "508d7b86c69b0afa24703d5f1fe5c3c3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6587949405248983@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T06:13:27.3400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8830be12426e49494cc3df11726accd1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6612775523943274@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T06:14:28.5730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "aec60aa7e8b73c5030c5521851f7f87f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8788392723842461@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T06:14:29.2030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "958bbee1070d8c3cf5b6628c813ea189", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-37085791065790397@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-18T06:14:29.7070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "166dc523ffe8fb14aba7e5eafefc0992", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-997301361717249@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d13955662065a576caa20bcf11e8eda3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5163975280059068@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "591933ed7468b5ae7d037419f91c2011", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-47322132752918844@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "87e6cbe43553486ad04a7591bba14835", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-05759589062272208@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "60e86b2fbec40c88057b4c232d68e442", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-25568366841328094@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b44c514e158ec545ce3306b01136fc10", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-02457494215340328@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8d8f1641a247d6e7b1ba5c2c98a69e86", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-2388920127766191@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f10574bd0565087837c5cb2d1d2db4b1", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-19697699167591465@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "189bf68c4ec4d3a14d3e77ca827dac9d", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-13260069522084583@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "aa51bd2efb813f59942f120af1e0feb7", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-07144357505638099@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "53e1ee182073d5c3597e3c4167d1398b", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5230654545130384@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "10a0825b2a7d794e26370a66e98c9507", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-2492407670509068@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3a57b1186f7748ac3b46e56c398208f8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5834523049190564@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "11b7f0f97c782e052742cc788946c81e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2953319102270384@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1c5d0f1df88454d2dd4e41b175956c71", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6530760267133917@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6b07a67b55cd133eed92e423492d2a0f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8429661216619794@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f31d68ed5dd568b4fa2428818abc1f8e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-26230841727833454@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "71f66ea120ef0b7d9f26f43ec3f4bf33", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8788243969124037@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ea4bd00e01652fe5a98af32841dd5d03", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2730310941238533@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ea4a3d93b677038881969ea5d5dac5f8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8908205092647304@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "693425aa7254527c7141e5402f8dccd9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3853471833064903@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b004751fb320964efd2c510d3529b799", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7225540149331647@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7af5dcbf3f060fad30ba1485c25ba40a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9363946843000645@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2976d83d1013134d9da4595ed65a6410", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-009802595923119273@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a466b1468bb0058922c2b198fb517a4c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4826209232124268@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1ca365a14829c9fac9888eefe5189f26", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-14105913186276442@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fc952bf872a72ee604186b0d71cb13bf", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6357757651071909@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "71ede32548b24de7b47c06f00c357106", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5290928791041086@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dc0af9098a8781670a7ca31f66281484", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4886426693358621@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d29e35f875dc0bb72cce29b3c7039854", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-30312031373173@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4c55bf5d2e7bed62b22e45387fcf5893", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-46726428886273086@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "abeecbcae9ba22dfdf709c9dc389ec97", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-09733811718805263@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "884e7ed9bd119ef0c4626bf0a9ed8c67", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5160903086218384@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0ccfea024d6668d5a68882ad80c74ce9", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-14997543476832886@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dc43561eeaf8b6b354d9f820f2fb2db2", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5701781175722546@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7829df03efa2df02d71d55727ae43ced", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-23492093982295248@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e8805d7e3bdb629de869957dc71f05e4", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5047812916408889@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "638517af405a362b363e550fa3b72250", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6267205710180543@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T04:48:24.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b08bc5c820ddf4acd6b0e6ff57795afd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7309987697074622@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T04:49:24.9930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "35792178a210b8410521e6228e15a233", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-34163405232936905@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T04:49:25.3130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "21a6bd2db0a24d38e16a71c9d50d14ed", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5617078625072739@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T04:49:25.4800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "86bf874fb639fe6463dfc9b8bece0ea4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2551342660808805@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T04:49:25.6570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "baa29c9d718f5028c063ef04d15c30ef", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-20962189622907512@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T04:49:25.8570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d46020fa2103ebdc064a2b5ab4b8a8e8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6261233074326724@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T04:49:26.0530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "34fb3d57fbbb551526ad150c2dd3296f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-22816847792556816@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e485a472aaa428a7c8b74724e0526932", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-07107001663917734@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ac978c72d04dc76cf2ac015542c319a1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9040125037757469@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9ab6ecf22cf1046b731eeb88e766fd2f", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6906641718401294@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "051f34695af8b131bf85a6901b750412", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8673950887555262@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b171e1c819ac882d575e351bd3f4c8a8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2689230408792187@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "45714081dd03b0b652a421d406bd3059", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4621955467918284@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1844ad3b17d59f5fcf782a824857efe5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5470271702858097@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c2815e577abcf31168fc01dac88d0e38", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2134074942420715@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c1589c1f16eae1725ce56ac981066716", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7840357019365108@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3fac5fba8a63893da6961f187fc7422a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7114375390659757@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "439edbb86b2b8fb1965ec9912b2b41f7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6691168096247647@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "423f29fb5024e45fcd7677baffc65072", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3406218812066749@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ba44044902481c2f2a82208d94d5b543", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8490976053964048@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6b2d0451899689fdaf3a316e31ec25e4", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5225347769817266@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "22fd2179bba5f5c5565cc27e4129a990", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-24109053701083794@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c8f43b59ae4fc4219180d3b1bee692bd", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-6492815872081222@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "536081a42420f66f62bf293acf1125dc", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-9764286056739627@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "750c1fbacfa2708a7cc20eeb40ef444d", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5566406777843649@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "306e8d99ccad2b67f34cb86a6273d233", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-7870470381791744@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "87029bc434df93ffd080930fa3e245b3", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-8581482659741028@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4566d9e61f6a7bbee71f05dc64c32a42", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-0746936537475863@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1c39a3f5cfdc6d753b8002f1d3ce43d5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9009108174008538@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T13:19:17.3630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f7abd0b6e70fe37fad1a205f4dc754dc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9210823039615527@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T13:19:17.7830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7ee46f31f7784b8e876a6e937086ba97", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2148247669161144@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T13:19:18.2200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8e23185374677db2aa0a2a0df7110525", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7970970888579053@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T13:19:18.6900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "45238c62249efa751cd1137bed6d443f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9518383354534375@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T13:20:19.6930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c7d2cbd07f77de7145487dab2c8b3603", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7403301957978917@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T13:20:20.1730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3d04464657d467859a1b22fcec682068", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-856417531655847@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-20T13:20:20.6000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "66cdf543492a6d12986ed4a79aa30fa7", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8833602764097482@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "759094fbaa7cd23de70fa4ecb1f28901", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5317288914848665@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d75634ec376b3c49b1cab5a37faeeaaa", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-22241632847214565@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ddb85447b1943b5bddc8e45bab3db8ff", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7718745096146741@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b94676b5273b2b2b680e4b3f6d477e4b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9128632818931819@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9f87a721b8f07be651888c6a769b01a1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7542643689541506@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7a427b74bc4aea0868da5f5e4d77139a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8368821567580081@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "734e40f6a9302174d222dbd56c98aac5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8952332976258371@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d9868975a1fa9155f570137940fb9a1e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6479749161236023@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "eb7a16030812a88763892c25b5c06c82", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-814283548496824@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "29d2f0651a07b297b5b2d64ee09ec525", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9491952221322318@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a9f1d8589e4c23705bcd7f701029abe0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-29120837142398426@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2dd517b7565ee9295f1766aa03a7c42c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8023296244695826@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7c80423d813453f77b03043fa638bd05", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9648795993892734@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ca4fd4e2a198cb4008182e554ff3f827", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5719609575738052@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8771c7a48755b2bc44fffbce72127c6e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5164929861813387@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "36ef74d64fba3fa3d945ea5c281738fb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-14100761506822024@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e966593d2bad4346dc3d229a98c3fe53", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8806325389209084@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2e2584ef49f85dc5e1841cff4c79a94e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-464824231692632@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "09a643d44a08fbd32ef3b7a0be57f293", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5566676736183087@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-26T08:10:05.6970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "076cc9161be9d6b7718e07042ffcfe24", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5911350479116008@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-26T08:10:05.9000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6f1e57504c6dfaf097537c4789374215", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-033632008462295304@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-26T08:11:06.8200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "32e623674cb283affd1d1c94ea965d43", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6557107535084754@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-07-26T08:11:07.1500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "41f25f61ac597b2cb8f3644db0d9f34a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-39544427023386064@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "59f4ad275c431bc2276ffcaed5063db5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09308379614523465@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c0af38cf2dc56cc82f3c250d82c34bef", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7952732009921113@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9cb5b20d6dafc9eb3649d268b30a863e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4104114274914705@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a616c554681f3b0368c989ef01ba5150", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6568347772380057@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "35c8276c476250883a05f826036e0313", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-18382634097234785@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f955799da2dcc64095c5987bc7079590", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-38470856129339115@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3192f31722523dd6453fdcb931c09463", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-3946479786826107@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b7de40487b87217c2a0cd89b3f0963cc", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-03783083342146343@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b099223046eaf9b446cf7070670641fa", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-5086070681073888@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "807b38d9f846d958ebf0f528526d5221", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-3429466469519372@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ab6fe27677e237081c121469d1ad142f", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-2581092937473396@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "11e9a6bdbd6a6638de14e09b341f094e", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-7004738535694995@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bc38e2a408fc1f4be963225f093033a2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8561344197516938@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-29T20:13:27.0530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6d858133532f34f6843c1045870165be", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-39640338042456147@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-29T20:13:38.7700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "52f54dd1348c01869f3fd5b1f33444ae", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7889810974416868@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-29T20:13:49.0370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "032c361de101a8594b936a128bae47eb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9616190817266385@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-29T20:13:59.6770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1597bb11f12fe4338b2029f606b30a43", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-008672358940169711@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-29T20:14:10.2230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cc11c7927aa1dd65bb32cbc5bb5794b3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-036936111330129195@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-29T20:14:20.5530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1179dfc93d0164f457f4c9f56f206b4f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4649837649453633@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-29T20:14:30.7530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d4fd2f01931a836b798a7bd1bcc66713", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-25478058172421036@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b60b93ffb2ff797b9fec2df392ff9ab6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-016394686102011446@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "847df88322b2b5feb66adf19c3d8214a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6052570709039453@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "adda0f1f216aeae6dbbd43b2cb3bafc3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-44956001752376173@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6e84725bce3bf49d7629b17dbfb96fff", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5639272693740084@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ab831fa6b7da1ac942bbdcd63cce8e29", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-41846885052179483@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "63f7e299eef0a84882f63c586035b0f5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1820180036783191@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fe85e87b517e482d82c5be739918ab20", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8708925390418855@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7e92c72240cbdd9d85acac158b67f30d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-31161616599546804@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "24ac53677f134cbd4061a3760614e38f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4519185223604958@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5a10928eb3efc1d5dd9c4c3e1d985ff5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1938661205161265@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b4f13ebb608413521d29d7326cd28aea", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-716576338115159@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5cd967162e4734c6d9e88c3df1c3336f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-43029847970841983@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "37c2f38f3946fe0fa3f3c05edd5c98e8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9727879585365653@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0b40ab02dc9be3ae79fb225a7a9ac0b1", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-6887313152741451@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8215458f3af1f22c0c6f40b6f42dc747", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-6207312293153898@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5fb036edccc6087688aef6224393db70", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-2475419106218819@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "648836872f1cea022d4102e8dd95193b", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-3184320008670446@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "39ff29f85e40420fe52f718f96183d9e", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-8223501825102474@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f1821b6ca07ec668014af3f435d1827d", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-16739498998092517@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "653087494d52bb5fd750081e71f060e3", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-9654694469214123@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5b6d99c3b1637001296e2ab2844dabe2", + "firstName": "John", + "lastName": "Smith", + "email": "recipient-005890240909176558@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "aef6b3d2a336e09f52891dde9e7fad9c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9597319968117634@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-30T20:16:00.7770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "73d7b0dfc7c146e15ad4dab74c83a711", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7265605448955231@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-30T20:16:12.4970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4ce61e79d72294b06399ee52637baffe", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6673935008783706@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-30T20:16:22.4330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2972b4ebdaa0cb64a35116fc17b16fb0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9510000474977115@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-30T20:16:32.3730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dea7a71b143e4bdb43beccefa7158a5d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1767042330214441@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-30T20:16:42.6830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bce8ed8a1b8d96111b12d4b0b548b9bc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5918286049235862@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-30T20:16:52.7630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5168ed301866844faf8ad77a323215be", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22607458170595174@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-07-30T20:17:03.2630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2cdd85d441b928dac256a1a36e5d7419", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-10254855813361585@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2aa5470eb0e1a0e246c6e8f3a1c2d428", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-852707008345845@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b06a93330d86b9df284564eb9e06f1d3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7449803385654497@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5239780a732fe010709118826ba17e59", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2619515437401374@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0888725d10aa41c084378853270f6e37", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6011858689014186@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9587708784b6dcd03d80cc1af5d0c280", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4547126018086822@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4d3773c839235bc756ebe951922efe1e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22406155563495966@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "86eb06089521bfe75eaa6980faa9a6b4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07028580445527055@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "af9650252294f10c715edf4d63825d8a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07337615241131745@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dfda68101b96bf73e7735885f5745902", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-2288052335626939@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "47d7264e6a3842255833dc5f1cd3685f", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-6468848694056187@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4737beb847486772cc52aef4bb6231bf", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-7692018242193651@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "764323ab62daf5abc75d06ae11841195", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-6852362908737057@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1df7787ea5fa783c7c3973bbb6d0b97d", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-42026120074822937@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e6cfb05072a878bcd6189e03957262c6", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-2356609697135491@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f93fdb7bb3249b44341782fb8aafbc03", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-6446795395050808@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e55f3d30c4a35743728e094d0e5c61a1", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-6921977538047288@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "73cfb6b0d08f6cb4a4e374342b37fe35", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-3244975580333975@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9e1d56c0c21cfc77032984fe6ca49167", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-6437661947140234@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1a2df71c2684b1355be09f795ffe2da9", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-11174184157549127@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0684e902380c511043e0adba236d60db", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-400835224598022@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2604c3f8bb988b7c1cde5e60d60cb544", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-9958598949361653@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2ded7e44afa0e4dfe2ce13a9c9846617", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-00626534407179713@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6457659542b9e58ce3a07f46ca8ed4d8", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-7631591271645186@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "92c974b9fa63d82c2a874fef2b83e5f1", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-18815507508199902@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "03ec0ce7c706d0e5dd522f8e5b740621", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-7983666165531453@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1d8b6c41fe33d17c24ff9515e7d7549d", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-2079900658441035@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e4d160b05c91c4ab27bc6286c263d178", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-8173252375887483@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d5740bbd369a6553b704dc0284082b3d", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-26207402022812987@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7bb9f457f4bc7658016f51e1376b5935", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-6310667665918351@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "eb0c6e8fa64812ad9f90b6d16c53b2ae", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-38854249969549826@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e5d6e47209302740fde1f2415b4079dd", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-3952421993228947@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "13fd2236bf49b1ca4af8479de0dbcd3a", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-2971129052912279@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ac384267d526b2608e39bceb710ebd8c", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-12063812616206326@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "958521f1e2125d8de746ac23763ee849", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-4303055976184632@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4dead260ba2e59e7d4c10d914984b915", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-7235121650905588@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "264809f1a1450438aa276ddc49317b3d", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-6709199797089651@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a16f4428319392d4d75c554ab4997a76", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-8652677272164597@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "458d1a27e07c4c9a12ed78e5dbba0c79", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-3031050797346313@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fa4f360d57dbab617e05ef1c47f8ee53", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-08002399242101288@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b9e1b969bdea21020937dd7278aa6424", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-4760362442579792@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "50698233159803f98f2d60fccf3904e7", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-5666154482191803@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8c34131470e96efdaf7a458fbbeb4797", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-3812373875556405@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f378cbb0e8ee6728d622e95ed9742982", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-943018748225754@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a88e3a9d24c0f35285af67c2531d5ccb", + "firstName": "New John", + "lastName": "New Smith", + "email": "new-recipient-9365257010778026@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", + "order": 1, + "roleId": 3, + "status": 0, + "statusMessage": null, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + } + ], + "dates": [ + "2013-07-30T00:00:00.0000000", + "2013-07-29T00:00:00.0000000", + "2013-07-23T00:00:00.0000000", + "2013-07-17T00:00:00.0000000", + "2013-07-16T00:00:00.0000000", + "2013-07-15T00:00:00.0000000", + "2013-07-14T00:00:00.0000000", + "2013-07-13T00:00:00.0000000", + "2013-07-12T00:00:00.0000000", + "2013-07-11T00:00:00.0000000", + "2013-07-10T00:00:00.0000000", + "2013-07-08T00:00:00.0000000", + "2013-07-07T00:00:00.0000000", + "2013-07-05T00:00:00.0000000", + "2013-07-03T00:00:00.0000000", + "2013-07-02T00:00:00.0000000", + "2013-07-01T00:00:00.0000000", + "2013-06-28T00:00:00.0000000", + "2013-06-27T00:00:00.0000000", + "2013-06-26T00:00:00.0000000", + "2013-06-25T00:00:00.0000000", + "2013-06-17T00:00:00.0000000", + "2013-06-16T00:00:00.0000000", + "2013-06-14T00:00:00.0000000", + "2013-06-12T00:00:00.0000000", + "2013-06-10T00:00:00.0000000", + "2013-06-09T00:00:00.0000000", + "2013-06-08T00:00:00.0000000", + "2013-06-07T00:00:00.0000000", + "2013-06-05T00:00:00.0000000", + "2013-06-04T00:00:00.0000000", + "2013-06-03T00:00:00.0000000", + "2013-06-02T00:00:00.0000000", + "2013-06-01T00:00:00.0000000", + "2013-05-31T00:00:00.0000000", + "2013-05-27T00:00:00.0000000", + "2013-05-26T00:00:00.0000000", + "2013-05-25T00:00:00.0000000", + "2013-05-24T00:00:00.0000000", + "2013-05-19T00:00:00.0000000", + "2013-05-18T00:00:00.0000000", + "2013-05-16T00:00:00.0000000", + "2013-05-09T00:00:00.0000000", + "2013-05-08T00:00:00.0000000", + "2013-05-07T00:00:00.0000000", + "2013-05-06T00:00:00.0000000", + "2013-05-05T00:00:00.0000000", + "2013-05-04T00:00:00.0000000", + "2013-05-03T00:00:00.0000000", + "2013-05-02T00:00:00.0000000", + "2013-05-01T00:00:00.0000000", + "2013-04-30T00:00:00.0000000", + "2013-04-29T00:00:00.0000000", + "2013-04-28T00:00:00.0000000", + "2013-04-27T00:00:00.0000000", + "2013-04-26T00:00:00.0000000", + "2013-04-25T00:00:00.0000000", + "2013-04-24T00:00:00.0000000", + "2013-04-23T00:00:00.0000000", + "2013-04-22T00:00:00.0000000", + "2013-04-21T00:00:00.0000000", + "2013-04-20T00:00:00.0000000", + "2013-04-19T00:00:00.0000000", + "2013-04-18T00:00:00.0000000", + "2013-04-17T00:00:00.0000000", + "2013-04-16T00:00:00.0000000", + "2013-04-15T00:00:00.0000000", + "2013-04-14T00:00:00.0000000", + "2013-04-11T00:00:00.0000000", + "2013-03-18T00:00:00.0000000", + "2013-03-14T00:00:00.0000000", + "2013-03-11T00:00:00.0000000", + "2013-03-10T00:00:00.0000000", + "2013-02-21T00:00:00.0000000", + "2013-02-07T00:00:00.0000000", + "2013-02-06T00:00:00.0000000", + "2013-02-05T00:00:00.0000000", + "2013-02-01T00:00:00.0000000", + "2013-01-31T00:00:00.0000000", + "2012-12-03T00:00:00.0000000" + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375217221767 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureFormFields.json b/src/test/resources/responses/signature/GetSignatureFormFields.json index be37bab..c617e1e 100644 --- a/src/test/resources/responses/signature/GetSignatureFormFields.json +++ b/src/test/resources/responses/signature/GetSignatureFormFields.json @@ -1,44 +1,44 @@ { - "result": { - "formId": "93d83c829ab4d8ffc5abf94d2f520c03", - "fields": [ - { - "id": "4d21052930e7fdd46a54a8cd548defa3", - "formGuid": "93d83c829ab4d8ffc5abf94d2f520c03", - "participantGuid": "", - "name": "Signature", - "mandatory": true, - "regularExpression": "", - "data": null, - "fillTimeStamp": "1/1/1970 12:00:00 AM", - "locations": [ - { - "id": "6ece0f3a02c2cf72cbc3d9962bfa9e52", - "documentGuid": "57d8150d963ff517ee77285888b0a67127c6f897c4db575a2ad2024e235fa0c6", - "fieldGuid": "4d21052930e7fdd46a54a8cd548defa3", - "page": 1, - "locationX": 0.1, - "locationY": 0.1, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Arial", - "fontColor": "black", - "fontSize": 10, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "align": 0 - } - ], - "fieldType": 1, - "acceptableValues": null, - "defaultValue": null, - "tooltip": "Signature", - "guidanceText": "" - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375217393126 + "result": { + "formId": "93d83c829ab4d8ffc5abf94d2f520c03", + "fields": [ + { + "id": "4d21052930e7fdd46a54a8cd548defa3", + "formGuid": "93d83c829ab4d8ffc5abf94d2f520c03", + "participantGuid": "", + "name": "Signature", + "mandatory": true, + "regularExpression": "", + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "locations": [ + { + "id": "6ece0f3a02c2cf72cbc3d9962bfa9e52", + "documentGuid": "57d8150d963ff517ee77285888b0a67127c6f897c4db575a2ad2024e235fa0c6", + "fieldGuid": "4d21052930e7fdd46a54a8cd548defa3", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0 + } + ], + "fieldType": 1, + "acceptableValues": null, + "defaultValue": null, + "tooltip": "Signature", + "guidanceText": "" + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375217393126 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureFormParticipant.json b/src/test/resources/responses/signature/GetSignatureFormParticipant.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/GetSignatureFormParticipant.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureTemplateFields.json b/src/test/resources/responses/signature/GetSignatureTemplateFields.json index d64c67d..e407560 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplateFields.json +++ b/src/test/resources/responses/signature/GetSignatureTemplateFields.json @@ -1,44 +1,46 @@ { - "result": { + "result": { + "templateId": "8dd6e1be32b6a471cb72b4a2c125e509", + "fields": [ + { + "id": "b69706708e0ec41bf39e1f1e9d7c80d1", "templateId": "8dd6e1be32b6a471cb72b4a2c125e509", - "fields": [ - { - "id": "b69706708e0ec41bf39e1f1e9d7c80d1", - "templateId": "8dd6e1be32b6a471cb72b4a2c125e509", - "recipientId": "e91b895b17a9a70865aeb1267a244ae2", - "name": "Signature", - "mandatory": true, - "order": 0, - "regularExpression": "", - "signatureFieldId": 1, - "locations": [ - { - "id": "c35586c889ff63c36001e79827678f46", - "documentId": "b9edbedfa0c8567dff25cea6941748c54c288b3915d95e1d1c520d9f2dbbfc56", - "fieldId": "b69706708e0ec41bf39e1f1e9d7c80d1", - "page": 1, - "locationX": 0.1, - "locationY": 0.1, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Arial", - "fontColor": "black", - "fontSize": 10, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "align": 0 - } - ], - "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Signature", - "guidanceText": "" - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375217671861 + "recipientId": "e91b895b17a9a70865aeb1267a244ae2", + "name": "Signature", + "mandatory": true, + "order": 0, + "regularExpression": "", + "signatureFieldId": 1, + "locations": [ + { + "id": "c35586c889ff63c36001e79827678f46", + "documentId": "b9edbedfa0c8567dff25cea6941748c54c288b3915d95e1d1c520d9f2dbbfc56", + "fieldId": "b69706708e0ec41bf39e1f1e9d7c80d1", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0 + } + ], + "fieldType": 1, + "acceptableValues": "", + "defaultValue": "", + "groupName": null, + "settings": null, + "tooltip": "Signature", + "guidanceText": "" + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375217671861 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignedEnvelopeDocument.json b/src/test/resources/responses/signature/GetSignedEnvelopeDocument.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/GetSignedEnvelopeDocument.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignedEnvelopeDocuments.json b/src/test/resources/responses/signature/GetSignedEnvelopeDocuments.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/GetSignedEnvelopeDocuments.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignedFormDocuments.json b/src/test/resources/responses/signature/GetSignedFormDocuments.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/GetSignedFormDocuments.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureEnvelopeField.json b/src/test/resources/responses/signature/ModifySignatureEnvelopeField.json index b548456..3952e5a 100644 --- a/src/test/resources/responses/signature/ModifySignatureEnvelopeField.json +++ b/src/test/resources/responses/signature/ModifySignatureEnvelopeField.json @@ -1,47 +1,47 @@ { - "result": { - "envelopeId": "b761dad8a2dd4a6f24afcbe37b5f7f64", - "documentId": "1585f265bbe2d79041e70b1481146d2ed99c55ddddb72d16898e5f6288196cd9", - "recipientId": "83965e5f23fc33a8facec959c973ca75", - "field": { - "id": "f0b371777ae3a20d33b097a295fbf6bc", - "envelopeId": "b761dad8a2dd4a6f24afcbe37b5f7f64", - "recipientId": "83965e5f23fc33a8facec959c973ca75", - "name": "Signature07921589405565932", - "mandatory": true, - "order": 0, - "regularExpression": "^.+$", - "getDataFrom": null, - "data": null, - "fillTimeStamp": "1/1/1970 12:00:00 AM", - "signatureFieldId": 1, - "locations": [ - { - "id": "59d3ca3e0b5a35b5d94b6d600c9b9c5d", - "documentId": "1585f265bbe2d79041e70b1481146d2ed99c55ddddb72d16898e5f6288196cd9", - "fieldId": "f0b371777ae3a20d33b097a295fbf6bc", - "page": 1, - "locationX": 0.1, - "locationY": 0.1, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Arial", - "fontColor": "black", - "fontSize": 10, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "align": 0 - } - ], - "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": null, - "guidanceText": "" + "result": { + "envelopeId": "b761dad8a2dd4a6f24afcbe37b5f7f64", + "documentId": "1585f265bbe2d79041e70b1481146d2ed99c55ddddb72d16898e5f6288196cd9", + "recipientId": "83965e5f23fc33a8facec959c973ca75", + "field": { + "id": "f0b371777ae3a20d33b097a295fbf6bc", + "envelopeId": "b761dad8a2dd4a6f24afcbe37b5f7f64", + "recipientId": "83965e5f23fc33a8facec959c973ca75", + "name": "Signature07921589405565932", + "mandatory": true, + "order": 0, + "regularExpression": "^.+$", + "getDataFrom": null, + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "signatureFieldId": 1, + "locations": [ + { + "id": "59d3ca3e0b5a35b5d94b6d600c9b9c5d", + "documentId": "1585f265bbe2d79041e70b1481146d2ed99c55ddddb72d16898e5f6288196cd9", + "fieldId": "f0b371777ae3a20d33b097a295fbf6bc", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375218099642 + ], + "fieldType": 1, + "acceptableValues": "", + "defaultValue": "", + "tooltip": null, + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375218099642 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureEnvelopeFieldLocation.json b/src/test/resources/responses/signature/ModifySignatureEnvelopeFieldLocation.json index e274933..5813a25 100644 --- a/src/test/resources/responses/signature/ModifySignatureEnvelopeFieldLocation.json +++ b/src/test/resources/responses/signature/ModifySignatureEnvelopeFieldLocation.json @@ -1,47 +1,47 @@ { - "result": { - "envelopeId": "c47202c7a5e3e1ca97ef31f3a59ffbcd", - "documentId": "db7da448305d67ce5acd011e8b1e79f5697dc928580b8b9c5b1a17d252aa1e1a", - "recipientId": "e203492fce86c386b591ec4d188767d2", - "field": { - "id": "e578ca9b65f2d9a1914222cd8d0a5f9f", - "envelopeId": "c47202c7a5e3e1ca97ef31f3a59ffbcd", - "recipientId": "e203492fce86c386b591ec4d188767d2", - "name": "Signature", - "mandatory": true, - "order": 0, - "regularExpression": "", - "getDataFrom": null, - "data": null, - "fillTimeStamp": "1/1/1970 12:00:00 AM", - "signatureFieldId": 1, - "locations": [ - { - "id": "0e65e5516154b7f56e33f520a98045d1", - "documentId": "db7da448305d67ce5acd011e8b1e79f5697dc928580b8b9c5b1a17d252aa1e1a", - "fieldId": "e578ca9b65f2d9a1914222cd8d0a5f9f", - "page": 1, - "locationX": 0.2, - "locationY": 0.2, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Helvetica", - "fontColor": "red", - "fontSize": 10, - "fontBold": true, - "fontItalic": true, - "fontUnderline": true, - "align": 1 - } - ], - "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Signature", - "guidanceText": "" + "result": { + "envelopeId": "c47202c7a5e3e1ca97ef31f3a59ffbcd", + "documentId": "db7da448305d67ce5acd011e8b1e79f5697dc928580b8b9c5b1a17d252aa1e1a", + "recipientId": "e203492fce86c386b591ec4d188767d2", + "field": { + "id": "e578ca9b65f2d9a1914222cd8d0a5f9f", + "envelopeId": "c47202c7a5e3e1ca97ef31f3a59ffbcd", + "recipientId": "e203492fce86c386b591ec4d188767d2", + "name": "Signature", + "mandatory": true, + "order": 0, + "regularExpression": "", + "getDataFrom": null, + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "signatureFieldId": 1, + "locations": [ + { + "id": "0e65e5516154b7f56e33f520a98045d1", + "documentId": "db7da448305d67ce5acd011e8b1e79f5697dc928580b8b9c5b1a17d252aa1e1a", + "fieldId": "e578ca9b65f2d9a1914222cd8d0a5f9f", + "page": 1, + "locationX": 0.2, + "locationY": 0.2, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Helvetica", + "fontColor": "red", + "fontSize": 10, + "fontBold": true, + "fontItalic": true, + "fontUnderline": true, + "align": 1 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375217929955 + ], + "fieldType": 1, + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Signature", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375217929955 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureFormDocument.json b/src/test/resources/responses/signature/ModifySignatureFormDocument.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/ModifySignatureFormDocument.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureFormField.json b/src/test/resources/responses/signature/ModifySignatureFormField.json index c28b92a..58cef83 100644 --- a/src/test/resources/responses/signature/ModifySignatureFormField.json +++ b/src/test/resources/responses/signature/ModifySignatureFormField.json @@ -1,44 +1,44 @@ { - "result": { - "formId": "9b3fea93327d7907d0e2d4ed51b9410a", - "documentId": "8b7ee12ea7373c249bf62d8e9dcb9d9b0c905dc87a07f02ab3872827d0d9428f", - "participantId": null, - "field": { - "id": "1aac696a25c6c61e26c8c780fefc81b0", - "formGuid": "9b3fea93327d7907d0e2d4ed51b9410a", - "participantGuid": "", - "name": "Signature025986879487182257", - "mandatory": true, - "regularExpression": "^.+$", - "data": null, - "fillTimeStamp": "1/1/1970 12:00:00 AM", - "locations": [ - { - "id": "9710b11d46d4534f453b85c63957daf8", - "documentGuid": "8b7ee12ea7373c249bf62d8e9dcb9d9b0c905dc87a07f02ab3872827d0d9428f", - "fieldGuid": "1aac696a25c6c61e26c8c780fefc81b0", - "page": 1, - "locationX": 0.1, - "locationY": 0.1, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Arial", - "fontColor": "black", - "fontSize": 10, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "align": 0 - } - ], - "fieldType": 1, - "acceptableValues": null, - "defaultValue": null, - "tooltip": null, - "guidanceText": "" + "result": { + "formId": "9b3fea93327d7907d0e2d4ed51b9410a", + "documentId": "8b7ee12ea7373c249bf62d8e9dcb9d9b0c905dc87a07f02ab3872827d0d9428f", + "participantId": null, + "field": { + "id": "1aac696a25c6c61e26c8c780fefc81b0", + "formGuid": "9b3fea93327d7907d0e2d4ed51b9410a", + "participantGuid": "", + "name": "Signature025986879487182257", + "mandatory": true, + "regularExpression": "^.+$", + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "locations": [ + { + "id": "9710b11d46d4534f453b85c63957daf8", + "documentGuid": "8b7ee12ea7373c249bf62d8e9dcb9d9b0c905dc87a07f02ab3872827d0d9428f", + "fieldGuid": "1aac696a25c6c61e26c8c780fefc81b0", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375218432375 + ], + "fieldType": 1, + "acceptableValues": null, + "defaultValue": null, + "tooltip": null, + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375218432375 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureFormFieldLocation.json b/src/test/resources/responses/signature/ModifySignatureFormFieldLocation.json index de5ba64..1deed0c 100644 --- a/src/test/resources/responses/signature/ModifySignatureFormFieldLocation.json +++ b/src/test/resources/responses/signature/ModifySignatureFormFieldLocation.json @@ -1,44 +1,44 @@ { - "result": { - "formId": "1c4c3a7c85ffe24fec68f351fdd69621", - "documentId": "1dc7ea9dd442e23c428261563523657c867a28bc0c68eeb12e3efb7cb845c4e1", - "participantId": null, - "field": { - "id": "7e88d75bc4af0f389ebf735764ff505a", - "formGuid": "1c4c3a7c85ffe24fec68f351fdd69621", - "participantGuid": "", - "name": "Signature", - "mandatory": true, - "regularExpression": "", - "data": null, - "fillTimeStamp": "1/1/1970 12:00:00 AM", - "locations": [ - { - "id": "0405d43861545942949b41c95d820507", - "documentGuid": "1dc7ea9dd442e23c428261563523657c867a28bc0c68eeb12e3efb7cb845c4e1", - "fieldGuid": "7e88d75bc4af0f389ebf735764ff505a", - "page": 1, - "locationX": 0.2, - "locationY": 0.2, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Helvetica", - "fontColor": "red", - "fontSize": 10, - "fontBold": true, - "fontItalic": true, - "fontUnderline": true, - "align": 1 - } - ], - "fieldType": 1, - "acceptableValues": null, - "defaultValue": null, - "tooltip": "Signature", - "guidanceText": "" + "result": { + "formId": "1c4c3a7c85ffe24fec68f351fdd69621", + "documentId": "1dc7ea9dd442e23c428261563523657c867a28bc0c68eeb12e3efb7cb845c4e1", + "participantId": null, + "field": { + "id": "7e88d75bc4af0f389ebf735764ff505a", + "formGuid": "1c4c3a7c85ffe24fec68f351fdd69621", + "participantGuid": "", + "name": "Signature", + "mandatory": true, + "regularExpression": "", + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "locations": [ + { + "id": "0405d43861545942949b41c95d820507", + "documentGuid": "1dc7ea9dd442e23c428261563523657c867a28bc0c68eeb12e3efb7cb845c4e1", + "fieldGuid": "7e88d75bc4af0f389ebf735764ff505a", + "page": 1, + "locationX": 0.2, + "locationY": 0.2, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Helvetica", + "fontColor": "red", + "fontSize": 10, + "fontBold": true, + "fontItalic": true, + "fontUnderline": true, + "align": 1 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375218311407 + ], + "fieldType": 1, + "acceptableValues": null, + "defaultValue": null, + "tooltip": "Signature", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375218311407 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureTemplateField.json b/src/test/resources/responses/signature/ModifySignatureTemplateField.json index 8dbba7e..a6a2b02 100644 --- a/src/test/resources/responses/signature/ModifySignatureTemplateField.json +++ b/src/test/resources/responses/signature/ModifySignatureTemplateField.json @@ -1,44 +1,44 @@ { - "result": { - "templateId": "fcf187ea60a692fadcee52d9b70a97b7", - "documentId": "bec1f3bfa7ef7c98b5ce9a2b8ff6080a78d5717c4c9f653b3e9e4d29b957183a", - "recipientId": "a5e29233033a1efa884d396e5004e213", - "field": { - "id": "a6233dc3d879ca94c00897bcf27c5f06", - "templateId": "fcf187ea60a692fadcee52d9b70a97b7", - "recipientId": "a5e29233033a1efa884d396e5004e213", - "name": "Signature2847649691220322", - "mandatory": true, - "order": 0, - "regularExpression": "^.+$", - "signatureFieldId": 1, - "locations": [ - { - "id": "1a4a7afd5edba22ac26872823e81030c", - "documentId": "bec1f3bfa7ef7c98b5ce9a2b8ff6080a78d5717c4c9f653b3e9e4d29b957183a", - "fieldId": "a6233dc3d879ca94c00897bcf27c5f06", - "page": 1, - "locationX": 0.1, - "locationY": 0.1, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Arial", - "fontColor": "black", - "fontSize": 10, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "align": 0 - } - ], - "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": null, - "guidanceText": "" + "result": { + "templateId": "fcf187ea60a692fadcee52d9b70a97b7", + "documentId": "bec1f3bfa7ef7c98b5ce9a2b8ff6080a78d5717c4c9f653b3e9e4d29b957183a", + "recipientId": "a5e29233033a1efa884d396e5004e213", + "field": { + "id": "a6233dc3d879ca94c00897bcf27c5f06", + "templateId": "fcf187ea60a692fadcee52d9b70a97b7", + "recipientId": "a5e29233033a1efa884d396e5004e213", + "name": "Signature2847649691220322", + "mandatory": true, + "order": 0, + "regularExpression": "^.+$", + "signatureFieldId": 1, + "locations": [ + { + "id": "1a4a7afd5edba22ac26872823e81030c", + "documentId": "bec1f3bfa7ef7c98b5ce9a2b8ff6080a78d5717c4c9f653b3e9e4d29b957183a", + "fieldId": "a6233dc3d879ca94c00897bcf27c5f06", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375218680047 + ], + "fieldType": 1, + "acceptableValues": "", + "defaultValue": "", + "tooltip": null, + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375218680047 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureTemplateFieldLocation.json b/src/test/resources/responses/signature/ModifySignatureTemplateFieldLocation.json index 7a30244..ce54ef1 100644 --- a/src/test/resources/responses/signature/ModifySignatureTemplateFieldLocation.json +++ b/src/test/resources/responses/signature/ModifySignatureTemplateFieldLocation.json @@ -1,44 +1,44 @@ { - "result": { - "templateId": "78cfc0015f5701430a0b5198c271b4a3", - "documentId": "4c7a6b6010cac00c6f1d7758ab5b50ee4d29a6dd0ac8c0cda4073ca22c7328c3", - "recipientId": "0e27ab42d5f2a68a9d0f479c3d1e61f2", - "field": { - "id": "039836b06dbca3f80c9fd7a66a2a23de", - "templateId": "78cfc0015f5701430a0b5198c271b4a3", - "recipientId": "0e27ab42d5f2a68a9d0f479c3d1e61f2", - "name": "Signature", - "mandatory": true, - "order": 0, - "regularExpression": "", - "signatureFieldId": 1, - "locations": [ - { - "id": "dddbaa2fcf070ceabe2b0c9fd4399179", - "documentId": "4c7a6b6010cac00c6f1d7758ab5b50ee4d29a6dd0ac8c0cda4073ca22c7328c3", - "fieldId": "039836b06dbca3f80c9fd7a66a2a23de", - "page": 1, - "locationX": 0.2, - "locationY": 0.2, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Helvetica", - "fontColor": "red", - "fontSize": 10, - "fontBold": true, - "fontItalic": true, - "fontUnderline": true, - "align": 1 - } - ], - "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Signature", - "guidanceText": "" + "result": { + "templateId": "78cfc0015f5701430a0b5198c271b4a3", + "documentId": "4c7a6b6010cac00c6f1d7758ab5b50ee4d29a6dd0ac8c0cda4073ca22c7328c3", + "recipientId": "0e27ab42d5f2a68a9d0f479c3d1e61f2", + "field": { + "id": "039836b06dbca3f80c9fd7a66a2a23de", + "templateId": "78cfc0015f5701430a0b5198c271b4a3", + "recipientId": "0e27ab42d5f2a68a9d0f479c3d1e61f2", + "name": "Signature", + "mandatory": true, + "order": 0, + "regularExpression": "", + "signatureFieldId": 1, + "locations": [ + { + "id": "dddbaa2fcf070ceabe2b0c9fd4399179", + "documentId": "4c7a6b6010cac00c6f1d7758ab5b50ee4d29a6dd0ac8c0cda4073ca22c7328c3", + "fieldId": "039836b06dbca3f80c9fd7a66a2a23de", + "page": 1, + "locationX": 0.2, + "locationY": 0.2, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Helvetica", + "fontColor": "red", + "fontSize": 10, + "fontBold": true, + "fontItalic": true, + "fontUnderline": true, + "align": 1 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375218536454 + ], + "fieldType": 1, + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Signature", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375218536454 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicFillFormField.json b/src/test/resources/responses/signature/PublicFillFormField.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/PublicFillFormField.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicFillSignatureForm.json b/src/test/resources/responses/signature/PublicFillSignatureForm.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/PublicFillSignatureForm.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetSignDocumentStatus.json b/src/test/resources/responses/signature/PublicGetSignDocumentStatus.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/PublicGetSignDocumentStatus.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json b/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json index 09691aa..362c0bd 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json +++ b/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json @@ -1,47 +1,50 @@ { - "result": { + "result": { + "envelopeId": "132ae0acd89fb6608ffc92be05203d69", + "fields": [ + { + "id": "9f38ffd6a8a84665541bd16571288807", "envelopeId": "132ae0acd89fb6608ffc92be05203d69", - "fields": [ - { - "id": "9f38ffd6a8a84665541bd16571288807", - "envelopeId": "132ae0acd89fb6608ffc92be05203d69", - "recipientId": "968d2debac51b1f63543c5d3fa96eef0", - "name": "Signature", - "mandatory": true, - "order": 0, - "regularExpression": "", - "getDataFrom": null, - "data": null, - "fillTimeStamp": "1/1/1970 12:00:00 AM", - "signatureFieldId": 1, - "locations": [ - { - "id": "b9567e19db2be8d32af7c78c12ec0332", - "documentId": "b22c5541f444233f181b5ba936ccdc1654bc21f19650de8efad032cdbf56a080", - "fieldId": "9f38ffd6a8a84665541bd16571288807", - "page": 1, - "locationX": 0.1, - "locationY": 0.1, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Arial", - "fontColor": "black", - "fontSize": 10, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "align": 0 - } - ], - "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Signature", - "guidanceText": "" - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375219440063 + "recipientId": "968d2debac51b1f63543c5d3fa96eef0", + "name": "Signature", + "mandatory": true, + "order": 0, + "regularExpression": "", + "getDataFrom": null, + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "signatureFieldId": 1, + "locations": [ + { + "id": "b9567e19db2be8d32af7c78c12ec0332", + "documentId": "b22c5541f444233f181b5ba936ccdc1654bc21f19650de8efad032cdbf56a080", + "fieldId": "9f38ffd6a8a84665541bd16571288807", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "align": 0, + "order": null + } + ], + "fieldType": 1, + "acceptableValues": "", + "settings": null, + "groupName": null, + "defaultValue": "", + "tooltip": "Signature", + "guidanceText": "" + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375219440063 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetSignatureFormFields.json b/src/test/resources/responses/signature/PublicGetSignatureFormFields.json index 8be9911..ac33f1e 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureFormFields.json +++ b/src/test/resources/responses/signature/PublicGetSignatureFormFields.json @@ -1,44 +1,47 @@ { - "result": { - "formId": "1de45ffe079c840fc9e92519287a8b76", - "fields": [ - { - "id": "1fe423ea20d49e8a51c4121d719876b4", - "formGuid": "1de45ffe079c840fc9e92519287a8b76", - "participantGuid": "", - "name": "Signature", - "mandatory": true, - "regularExpression": "", - "data": null, - "fillTimeStamp": "1/1/1970 12:00:00 AM", - "locations": [ - { - "id": "ca535928379cde52176f51881ab3d955", - "documentGuid": "893e487e855929e6902d72afe2962c55e0417b76f6e8cccc5e23cb875f58e3ee", - "fieldGuid": "1fe423ea20d49e8a51c4121d719876b4", - "page": 1, - "locationX": 0.1, - "locationY": 0.1, - "locationWidth": 90, - "locationHeight": 30, - "fontName": "Arial", - "fontColor": "black", - "fontSize": 10, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "align": 0 - } - ], - "fieldType": 1, - "acceptableValues": null, - "defaultValue": null, - "tooltip": "Signature", - "guidanceText": "" - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375219585594 + "result": { + "formId": "1de45ffe079c840fc9e92519287a8b76", + "fields": [ + { + "id": "1fe423ea20d49e8a51c4121d719876b4", + "formGuid": "1de45ffe079c840fc9e92519287a8b76", + "participantGuid": "", + "name": "Signature", + "mandatory": true, + "regularExpression": "", + "settings": null, + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "locations": [ + { + "id": "ca535928379cde52176f51881ab3d955", + "documentGuid": "893e487e855929e6902d72afe2962c55e0417b76f6e8cccc5e23cb875f58e3ee", + "fieldGuid": "1fe423ea20d49e8a51c4121d719876b4", + "page": 1, + "locationX": 0.1, + "locationY": 0.1, + "locationWidth": 90, + "locationHeight": 30, + "fontName": "Arial", + "fontColor": "black", + "fontSize": 10, + "fontBold": false, + "order": null, + "fontItalic": false, + "fontUnderline": false, + "align": 0 + } + ], + "fieldType": 1, + "acceptableValues": null, + "groupName": null, + "defaultValue": null, + "tooltip": "Signature", + "guidanceText": "" + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375219585594 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetSignedEnvelopeDocuments.json b/src/test/resources/responses/signature/PublicGetSignedEnvelopeDocuments.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/PublicGetSignedEnvelopeDocuments.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetSignedFormDocuments.json b/src/test/resources/responses/signature/PublicGetSignedFormDocuments.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/PublicGetSignedFormDocuments.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicSignEnvelope.json b/src/test/resources/responses/signature/PublicSignEnvelope.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/PublicSignEnvelope.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicSignForm.json b/src/test/resources/responses/signature/PublicSignForm.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/PublicSignForm.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureEnvelopeDocument.json b/src/test/resources/responses/signature/RenameSignatureEnvelopeDocument.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/RenameSignatureEnvelopeDocument.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureFormDocument.json b/src/test/resources/responses/signature/RenameSignatureFormDocument.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/RenameSignatureFormDocument.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureTemplateDocument.json b/src/test/resources/responses/signature/RenameSignatureTemplateDocument.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/RenameSignatureTemplateDocument.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/RetrySignEnvelope.json b/src/test/resources/responses/signature/RetrySignEnvelope.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/RetrySignEnvelope.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/SignEnvelope.json b/src/test/resources/responses/signature/SignEnvelope.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/SignEnvelope.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/UpdateSignatureFormFromTemplate.json b/src/test/resources/responses/signature/UpdateSignatureFormFromTemplate.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/signature/UpdateSignatureFormFromTemplate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/storage/Decompress.json b/src/test/resources/responses/storage/Decompress.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/storage/Decompress.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/storage/GetSharedFile.json b/src/test/resources/responses/storage/GetSharedFile.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/storage/GetSharedFile.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/storage/RestoreFromTrash.json b/src/test/resources/responses/storage/RestoreFromTrash.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/storage/RestoreFromTrash.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/storage/UploadGoogle.json b/src/test/resources/responses/storage/UploadGoogle.json deleted file mode 100644 index 22e3af4..0000000 --- a/src/test/resources/responses/storage/UploadGoogle.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "result": null, - "status": null, - "error_message": null, - "composedOn": null -} \ No newline at end of file diff --git a/src/test/resources/responses/system/GetSubscriptionPlans.json b/src/test/resources/responses/system/GetSubscriptionPlans.json index 334e616..3f6588e 100644 --- a/src/test/resources/responses/system/GetSubscriptionPlans.json +++ b/src/test/resources/responses/system/GetSubscriptionPlans.json @@ -1,26 +1,26 @@ { - "result": { - "metrics": [ + "result": { + "metrics": [ - ], - "subscription": { - "productId": 460, - "name": "Enterprise", - "userCount": null, - "firstNameOnCard": null, - "lastNameOnCard": null, - "number": null, - "expirationDate": null, - "cvv": null, - "address": null, - "price": 200, - "currencyCode": "USD", - "billingPeriod": null, - "promoCode": null, - "nextAssesmentDate": null - } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375220507070 + ], + "subscription": { + "productId": 460, + "name": "Enterprise", + "userCount": null, + "firstNameOnCard": null, + "lastNameOnCard": null, + "number": null, + "expirationDate": null, + "cvv": null, + "address": null, + "price": 200, + "currencyCode": "USD", + "billingPeriod": null, + "promoCode": null, + "nextAssesmentDate": null + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375220507070 } \ No newline at end of file diff --git a/src/test/resources/test.doc b/src/test/resources/test.doc deleted file mode 100644 index 4dcce71..0000000 Binary files a/src/test/resources/test.doc and /dev/null differ