From 36e50e70794540326b5e71747282353a715a435e Mon Sep 17 00:00:00 2001 From: "aleksey.permyakov" Date: Tue, 29 Oct 2013 16:21:35 +0200 Subject: [PATCH 01/34] Updated swagger-core-version version from 1.1.0 to 1.3.0 --- pom.xml | 2 +- src/main/java/com/groupdocs/sdk/common/ApiInvoker.java | 6 +++--- src/test/java/com/groupdocs/sdk/api/AbstractUnitTest.java | 2 +- src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 98e8bf0..a8d33a6 100644 --- a/pom.xml +++ b/pom.xml @@ -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/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/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/JsonSerializerTest.java b/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java index 3b9b697..3601011 100644 --- a/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java +++ b/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java @@ -174,7 +174,7 @@ public void testListOfObjectsSerilization() throws Exception { 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},{\"id\":1233,\"access_rights\":0}]"; driver.addExpectation(onRequestTo(resourcePath).withAnyParams() .withMethod(Method.PUT).withBody(body, MediaType.APPLICATION_JSON), giveResponse(getSampleResponse("ant/SetReviewerRights.json")).withStatus(200)); From f7d1e36a748cef8d643af8a818f06ff297686ad5 Mon Sep 17 00:00:00 2001 From: LinuxUbuntu Date: Tue, 29 Oct 2013 07:59:05 -0700 Subject: [PATCH 02/34] [maven-release-plugin] prepare release groupdocs-java-client-1.7.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a8d33a6..21bdf88 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.7.1-SNAPSHOT + 1.7.1 GroupDocsJava GroupDocs API library for Java From 52030e59cc14f6ec6b3436e2d0c6d793bdd625cf Mon Sep 17 00:00:00 2001 From: LinuxUbuntu Date: Tue, 29 Oct 2013 07:59:46 -0700 Subject: [PATCH 03/34] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 21bdf88..147059c 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.7.1 + 1.7.2-SNAPSHOT GroupDocsJava GroupDocs API library for Java From a567c40431a8a55eca1d701fbf5fbf6a5cac687e Mon Sep 17 00:00:00 2001 From: LinuxUbuntu Date: Wed, 30 Oct 2013 00:20:32 -0700 Subject: [PATCH 04/34] [maven-release-plugin] prepare release groupdocs-java-client-1.7.2 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 147059c..57f11f9 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.7.2-SNAPSHOT + 1.7.2 GroupDocsJava GroupDocs API library for Java From 38fecead147b8694f9c49062e0bcec44763acbc8 Mon Sep 17 00:00:00 2001 From: LinuxUbuntu Date: Wed, 30 Oct 2013 00:20:54 -0700 Subject: [PATCH 05/34] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57f11f9..4c9e269 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.7.2 + 1.7.3-SNAPSHOT GroupDocsJava GroupDocs API library for Java From 9d581d765dfa19ed7126f6af363f7ad132f4af91 Mon Sep 17 00:00:00 2001 From: Pavel-Teplitsky Date: Fri, 8 Nov 2013 10:30:29 +0200 Subject: [PATCH 06/34] updated sdk --- pom.xml | 2 +- .../java/com/groupdocs/sdk/api/MergeApi.java | 60 +- .../com/groupdocs/sdk/api/SignatureApi.java | 153 +- ...gnatureSignDocumentSignerSettingsInfo.java | 11 + .../SignatureDocumentFieldsResponse.java | 70 + .../model/SignatureDocumentFieldsResult.java | 53 + ...gnatureSignDocumentSignerSettingsInfo.java | 11 + .../com/groupdocs/sdk/model/TemplateInfo.java | 18 + .../sdk/model/UploadRequestResult.java | 9 + .../groupdocs/sdk/api/ComparisonApiTest.java | 1 - .../groupdocs/sdk/api/JsonSerializerTest.java | 2 +- .../com/groupdocs/sdk/api/MergeApiTest.java | 44 +- .../groupdocs/sdk/api/SignatureApiTest.java | 131 +- .../com/groupdocs/sdk/api/TestAdminApi.java | 30 + .../resources/GroupDocs_Signature_Demo.pdf | Bin 1132663 -> 0 bytes .../resources/interactiveform_enabled.pdf | Bin 91134 -> 0 bytes .../annotation/info/AddAnnotationCollaborator | 7 + .../requests/annotation/info/CreateAnnotation | 7 + .../annotation/info/CreateAnnotationReply | 7 + .../requests/annotation/info/DeleteAnnotation | 6 + .../annotation/info/DeleteAnnotationReply | 6 + .../annotation/info/EditAnnotationReply | 7 + .../info/GetAnnotationCollaborators | 6 + .../annotation/info/GetReviewerContacts | 6 + .../annotation/info/GetSharedLinkAccessRights | 6 + .../annotation/info/ListAnnotationReplies | 6 + .../requests/annotation/info/ListAnnotations | 6 + .../requests/annotation/info/MoveAnnotation | 7 + .../annotation/info/MoveAnnotationMarker | 7 + .../annotation/info/SetAnnotationAccess | 7 + .../info/SetAnnotationCollaborators | 7 + .../annotation/info/SetReviewerContacts | 7 + .../annotation/info/SetReviewerRights | 7 + .../annotation/info/SetSharedLinkAccessRights | 7 + .../payload/AddAnnotationCollaborator.json | 10 + .../annotation/payload/CreateAnnotation.json | 11 + .../payload/CreateAnnotationReply.json | 3 + .../payload/EditAnnotationReply.json | 1 + .../annotation/payload/MoveAnnotation.json | 4 + .../payload/MoveAnnotationMarker.json | 4 + .../payload/SetAnnotationAccess.json | 1 + .../payload/SetAnnotationCollaborators.json | 4 + .../payload/SetReviewerContacts.json | 6 + .../annotation/payload/SetReviewerRights.json | 12 + .../payload/SetSharedLinkAccessRights.json | 1 + .../requests/async/info/AddJobDocument | 4 +- .../requests/async/info/AddJobDocumentUrl | 4 +- .../resources/requests/async/info/Convert | 4 +- .../resources/requests/async/info/CreateJob | 4 +- .../requests/async/info/DeleteJobDocument | 4 +- src/test/resources/requests/async/info/GetJob | 4 +- .../requests/async/info/GetJobDocument | 4 +- .../resources/requests/async/info/GetJobs | 4 +- .../resources/requests/async/info/UpdateJob | 4 +- .../document/info/GetDocumentAccessInfo | 6 + .../requests/document/info/GetDocumentFormats | 6 + .../document/info/GetDocumentMetadata | 6 + .../requests/document/info/GetDocumentViews | 6 + .../requests/document/info/GetFolderSharers | 6 + .../requests/document/info/GetTemplateFields | 6 + .../document/info/SetDocumentAccessMode | 6 + .../requests/document/info/ShareDocument | 7 + .../requests/document/info/ShareFolder | 7 + .../requests/document/info/UnshareDocument | 6 + .../requests/document/info/UnshareFolder | 6 + .../document/payload/ShareDocument.json | 4 + .../document/payload/ShareFolder.json | 4 + .../requests/merge/info/AddDataSource | 4 +- .../merge/info/AddDocumentQuestionnaire | 4 +- .../merge/info/AddJobDocumentDataSource | 4 +- .../merge/info/AddQuestionnaireCollector | 4 +- .../merge/info/AddQuestionnaireExecution | 4 +- .../merge/info/CreateDocumentQuestionnaire | 4 +- .../requests/merge/info/CreateQuestionnaire | 4 +- .../merge/info/DeleteQuestionnaireCollector | 4 +- .../merge/info/DeleteQuestionnaireExecution | 4 +- .../requests/merge/info/GetDataSource | 4 +- .../merge/info/GetDocumentQuestionnaires | 4 +- .../requests/merge/info/GetQuestionnaire | 4 +- .../merge/info/GetQuestionnaireCollector | 4 +- .../info/GetQuestionnaireCollectorExecutions | 4 +- .../merge/info/GetQuestionnaireCollectors | 4 +- .../merge/info/GetQuestionnaireDataSources | 4 +- .../merge/info/GetQuestionnaireExecution | 4 +- .../merge/info/GetQuestionnaireExecutions | 4 +- .../merge/info/GetQuestionnaireFields | 4 +- .../merge/info/GetQuestionnaireMetadata | 4 +- .../requests/merge/info/GetTemplates | 4 +- .../requests/merge/info/MergeDatasource | 4 +- .../requests/merge/info/MergeDatasourceFields | 4 +- .../requests/merge/info/UpdateDataSource | 4 +- .../requests/merge/info/UpdateQuestionnaire | 4 +- .../merge/info/UpdateQuestionnaireCollector | 6 +- .../merge/info/UpdateQuestionnaireExecution | 6 +- .../info/UpdateQuestionnaireExecutionStatus | 4 +- .../requests/merge/payload/AddDataSource.json | 2 +- .../payload/AddQuestionnaireCollector.json | 4 +- .../merge/payload/UpdateDataSource.json | 2 +- .../payload/UpdateQuestionnaireCollector.json | 8 +- .../payload/UpdateQuestionnaireExecution.json | 10 +- .../requests/signature/info/AddContact | 6 +- .../signature/info/AddContactIntegration | 7 + .../requests/signature/info/AddPredefinedList | 4 +- .../info/AddSignatureEnvelopeDocument | 4 +- .../signature/info/AddSignatureEnvelopeField | 4 +- .../info/AddSignatureEnvelopeRecipient | 4 +- .../signature/info/AddSignatureFormDocument | 4 +- .../signature/info/AddSignatureFormField | 4 +- .../info/AddSignatureTemplateDocument | 4 +- .../signature/info/AddSignatureTemplateField | 4 +- .../info/AddSignatureTemplateRecipient | 4 +- .../signature/info/ArchiveSignatureEnvelope | 6 + .../signature/info/ArchiveSignatureForm | 4 +- .../info/AssignSignatureEnvelopeField | 4 +- .../info/AssignSignatureTemplateField | 4 +- .../signature/info/CancelSignatureEnvelope | 6 + .../signature/info/CompleteSignatureForm | 4 +- .../requests/signature/info/CreateSignature | 6 +- .../signature/info/CreateSignatureEnvelope | 4 +- .../signature/info/CreateSignatureField | 6 +- .../signature/info/CreateSignatureForm | 4 +- .../signature/info/CreateSignatureTemplate | 4 +- .../requests/signature/info/DeclineEnvelope | 4 +- .../requests/signature/info/DeleteContact | 4 +- .../signature/info/DeletePredefinedList | 4 +- .../requests/signature/info/DeleteSignature | 4 +- .../signature/info/DeleteSignatureEnvelope | 4 +- .../info/DeleteSignatureEnvelopeDocument | 4 +- .../info/DeleteSignatureEnvelopeField | 4 +- .../info/DeleteSignatureEnvelopeFieldLocation | 4 +- .../info/DeleteSignatureEnvelopeRecipient | 4 +- .../signature/info/DeleteSignatureField | 4 +- .../signature/info/DeleteSignatureForm | 4 +- .../info/DeleteSignatureFormDocument | 4 +- .../signature/info/DeleteSignatureFormField | 4 +- .../info/DeleteSignatureFormFieldLocation | 4 +- .../signature/info/DeleteSignatureTemplate | 4 +- .../info/DeleteSignatureTemplateField | 4 +- .../info/DeleteSignatureTemplateFieldLocation | 4 +- .../info/DeleteSignatureTemplateRecipient | 4 +- .../requests/signature/info/FillEnvelopeField | 6 +- .../requests/signature/info/GetContacts | 6 + .../signature/info/GetEnvelopeAuditLogs | 4 +- .../requests/signature/info/GetFieldsList | 4 +- .../info/GetRecipientSignatureEnvelopes | 4 +- .../requests/signature/info/GetRolesList | 4 +- .../signature/info/GetSignatureEnvelope | 4 +- .../info/GetSignatureEnvelopeDocuments | 4 +- .../signature/info/GetSignatureEnvelopeFields | 4 +- .../info/GetSignatureEnvelopeRecipients | 4 +- .../info/GetSignatureEnvelopeResources | 4 +- .../signature/info/GetSignatureEnvelopes | 4 +- .../requests/signature/info/GetSignatureForm | 4 +- .../signature/info/GetSignatureFormDocuments | 4 +- .../signature/info/GetSignatureFormFields | 4 +- .../signature/info/GetSignatureFormResources | 4 +- .../requests/signature/info/GetSignatureForms | 4 +- .../info/GetSignaturePredefinedLists | 4 +- .../signature/info/GetSignatureTemplate | 4 +- .../info/GetSignatureTemplateDocuments | 4 +- .../signature/info/GetSignatureTemplateFields | 4 +- .../info/GetSignatureTemplateRecipients | 4 +- .../info/GetSignatureTemplateResources | 4 +- .../signature/info/GetSignatureTemplates | 4 +- .../requests/signature/info/GetSignatures | 4 +- .../requests/signature/info/ImportContacts | 6 +- .../requests/signature/info/ModifyContact | 6 +- .../signature/info/ModifySignatureEnvelope | 4 +- .../info/ModifySignatureEnvelopeField | 6 +- .../info/ModifySignatureEnvelopeFieldLocation | 6 +- .../info/ModifySignatureEnvelopeRecipient | 4 +- .../signature/info/ModifySignatureField | 6 +- .../signature/info/ModifySignatureForm | 4 +- .../info/ModifySignatureFormDocument | 7 + .../signature/info/ModifySignatureFormField | 6 +- .../info/ModifySignatureFormFieldLocation | 6 +- .../signature/info/ModifySignatureTemplate | 4 +- .../info/ModifySignatureTemplateField | 6 +- .../info/ModifySignatureTemplateFieldLocation | 6 +- .../info/ModifySignatureTemplateRecipient | 4 +- .../signature/info/PublicCreateSignature | 6 +- .../signature/info/PublicFillEnvelopeField | 4 +- .../signature/info/PublicGetEnvelopeDocuments | 4 +- .../info/PublicGetEnvelopeRecipients | 4 +- .../signature/info/PublicGetSignatureEnvelope | 4 +- .../info/PublicGetSignatureEnvelopeFields | 4 +- .../signature/info/PublicGetSignatureForm | 4 +- .../info/PublicGetSignatureFormDocuments | 4 +- .../signature/info/PublicSignDocument | 4 +- .../signature/info/PublicVerifyDocument | 4 +- .../signature/info/PublishSignatureForm | 4 +- .../signature/info/RenameSignatureEnvelope | 4 +- .../info/RenameSignatureEnvelopeDocument | 6 + .../signature/info/RenameSignatureForm | 4 +- .../info/RenameSignatureFormDocument | 6 + .../signature/info/RenameSignatureTemplate | 4 +- .../info/RenameSignatureTemplateDocument | 6 + .../info/RestartExpiredSignatureEnvelope | 4 +- .../requests/signature/info/RetrySignEnvelope | 6 + .../requests/signature/info/SignDocument | 4 +- .../signature/info/SignatureEnvelopeSend | 4 +- .../signature/payload/AddContact.json | 2 +- .../payload/AddContactIntegration.json | 6 + .../signature/payload/AddPredefinedList.json | 2 +- .../payload/AssignSignatureEnvelopeField.json | 4 +- .../payload/AssignSignatureTemplateField.json | 4 +- .../signature/payload/CreateSignature.json | 2 +- .../payload/CreateSignatureField.json | 2 +- .../signature/payload/ImportContacts.json | 4 +- .../signature/payload/ModifyContact.json | 2 +- .../payload/ModifySignatureEnvelopeField.json | 2 +- .../ModifySignatureEnvelopeFieldLocation.json | 4 +- .../payload/ModifySignatureField.json | 2 +- .../payload/ModifySignatureFormDocument.json | 4 + .../payload/ModifySignatureFormField.json | 2 +- .../ModifySignatureFormFieldLocation.json | 4 +- .../payload/ModifySignatureTemplateField.json | 2 +- .../ModifySignatureTemplateFieldLocation.json | 4 +- .../payload/PublicCreateSignature.json | 2 +- .../resources/requests/storage/info/Compress | 4 +- .../resources/requests/storage/info/CopyFile | 6 +- .../requests/storage/info/CopyFolder | 6 +- .../resources/requests/storage/info/Create | 4 +- .../requests/storage/info/CreatePackage | 4 +- .../resources/requests/storage/info/Delete | 4 +- .../requests/storage/info/DeleteFromFolder | 4 +- .../resources/requests/storage/info/GetFile | 4 +- .../requests/storage/info/GetStorageInfo | 4 +- .../requests/storage/info/ListEntities | 4 +- .../resources/requests/storage/info/MoveFile | 6 +- .../requests/storage/info/MoveFolder | 6 +- .../requests/storage/info/MoveToTrash | 4 +- .../resources/requests/storage/info/Upload | 4 +- .../resources/requests/storage/info/UploadWeb | 4 +- .../requests/storage/payload/Upload.json | 2 +- .../requests/system/info/GetCountries | 4 +- .../resources/requests/system/info/GetStates | 4 +- .../requests/system/info/GetSubscriptionPlans | 4 +- .../requests/system/info/GetUserPlan | 4 +- .../system/info/GetUserSubscriptionPlan | 4 +- .../requests/user/info/GetAccountUsers | 4 +- .../resources/requests/user/info/GetRoles | 4 +- .../requests/user/info/GetStorageProviders | 4 +- .../requests/user/info/GetUserProfile | 4 +- .../resources/requests/user/info/GetUserRoles | 4 +- .../annotation/AddAnnotationCollaborator.json | 31 + .../annotation/CreateAnnotation.json | 14 + .../annotation/CreateAnnotationReply.json | 10 + .../annotation/DeleteAnnotation.json | 9 + .../annotation/DeleteAnnotationReply.json | 12 + .../annotation/EditAnnotationReply.json | 7 + .../GetAnnotationCollaborators.json | 23 + .../annotation/GetReviewerContacts.json | 10 + .../annotation/GetSharedLinkAccessRights.json | 8 + .../annotation/ListAnnotationReplies.json | 11 + .../responses/annotation/ListAnnotations.json | 13 + .../responses/annotation/MoveAnnotation.json | 8 + .../annotation/MoveAnnotationMarker.json | 8 + .../annotation/SetAnnotationAccess.json | 35 + .../SetAnnotationCollaborators.json | 41 + .../annotation/SetReviewerContacts.json | 14 + .../annotation/SetReviewerRights.json | 7 + .../annotation/SetSharedLinkAccessRights.json | 7 + .../responses/ant/CreateAnnotationReply.json | 3 +- .../responses/ant/ListAnnotations.json | 4192 ++++---- .../responses/ant/SetAnnotationAccess.json | 8 +- .../responses/async/AddJobDocument.json | 4 +- .../responses/async/AddJobDocumentUrl.json | 4 +- .../resources/responses/async/Convert.json | 4 +- .../resources/responses/async/CreateJob.json | 6 +- .../responses/async/DeleteJobDocument.json | 2 +- .../resources/responses/async/GetJob.json | 10 +- .../responses/async/GetJobDocument.json | 2 +- .../resources/responses/async/GetJobs.json | 75 +- .../resources/responses/async/UpdateJob.json | 4 +- .../document/GetDocumentAccessInfo.json | 90 + .../document/GetDocumentFormats.json | 26 + .../document/GetDocumentMetadata.json | 12 + .../responses/document/GetDocumentViews.json | 10 + .../responses/document/GetFolderSharers.json | 76 + .../responses/document/GetTemplateFields.json | 10 + .../document/SetDocumentAccessMode.json | 90 + .../responses/document/ShareDocument.json | 207 + .../responses/document/ShareFolder.json | 207 + .../responses/document/UnshareDocument.json | 74 + .../responses/document/UnshareFolder.json | 74 + .../responses/merge/AddDataSource.json | 4 +- .../merge/AddDocumentQuestionnaire.json | 6 +- .../merge/AddJobDocumentDataSource.json | 8 +- .../merge/AddQuestionnaireCollector.json | 8 +- .../merge/AddQuestionnaireExecution.json | 8 +- .../merge/CreateDocumentQuestionnaire.json | 10 +- .../responses/merge/CreateQuestionnaire.json | 8 +- .../merge/DeleteQuestionnaireCollector.json | 6 +- .../merge/DeleteQuestionnaireExecution.json | 6 +- .../responses/merge/GetDataSource.json | 10 +- .../merge/GetDocumentQuestionnaires.json | 1960 +--- .../responses/merge/GetQuestionnaire.json | 14 +- .../merge/GetQuestionnaireCollector.json | 10 +- .../GetQuestionnaireCollectorExecutions.json | 28 +- .../merge/GetQuestionnaireCollectors.json | 10 +- .../merge/GetQuestionnaireDataSources.json | 2 +- .../merge/GetQuestionnaireExecution.json | 38 +- .../merge/GetQuestionnaireExecutions.json | 28 +- .../merge/GetQuestionnaireFields.json | 2 +- .../merge/GetQuestionnaireMetadata.json | 10 +- .../responses/merge/GetTemplates.json | 8 +- .../responses/merge/MergeDatasource.json | 8 +- .../merge/MergeDatasourceFields.json | 8 +- .../responses/merge/UpdateDataSource.json | 4 +- .../responses/merge/UpdateQuestionnaire.json | 4 +- .../merge/UpdateQuestionnaireCollector.json | 4 +- .../merge/UpdateQuestionnaireExecution.json | 4 +- .../UpdateQuestionnaireExecutionStatus.json | 4 +- .../responses/signature/AddContact.json | 6 +- .../signature/AddContactIntegration.json | 9 +- .../signature/AddPredefinedList.json | 6 +- .../AddSignatureEnvelopeDocument.json | 12 +- .../signature/AddSignatureEnvelopeField.json | 5 +- .../AddSignatureEnvelopeRecipient.json | 10 +- .../signature/AddSignatureFormDocument.json | 16 +- .../signature/AddSignatureFormField.json | 82 +- .../AddSignatureTemplateDocument.json | 12 +- .../signature/AddSignatureTemplateField.json | 42 +- .../AddSignatureTemplateRecipient.json | 8 +- .../signature/ArchiveSignatureEnvelope.json | 9 +- .../signature/ArchiveSignatureForm.json | 2 +- .../AssignSignatureEnvelopeField.json | 88 +- .../AssignSignatureTemplateField.json | 27 +- .../signature/CancelSignatureEnvelope.json | 9 +- .../signature/CompleteSignatureForm.json | 2 +- .../responses/signature/CreateSignature.json | 40 +- .../signature/CreateSignatureEnvelope.json | 14 +- .../signature/CreateSignatureField.json | 6 +- .../signature/CreateSignatureForm.json | 10 +- .../signature/CreateSignatureTemplate.json | 8 +- .../responses/signature/DeclineEnvelope.json | 2 +- .../responses/signature/DeleteContact.json | 2 +- .../signature/DeletePredefinedList.json | 11 +- .../responses/signature/DeleteSignature.json | 2 +- .../signature/DeleteSignatureEnvelope.json | 2 +- .../DeleteSignatureEnvelopeDocument.json | 2 +- .../DeleteSignatureEnvelopeField.json | 2 +- .../DeleteSignatureEnvelopeFieldLocation.json | 2 +- .../DeleteSignatureEnvelopeRecipient.json | 2 +- .../signature/DeleteSignatureField.json | 2 +- .../signature/DeleteSignatureForm.json | 2 +- .../DeleteSignatureFormDocument.json | 2 +- .../signature/DeleteSignatureFormField.json | 2 +- .../DeleteSignatureFormFieldLocation.json | 2 +- .../signature/DeleteSignatureTemplate.json | 2 +- .../DeleteSignatureTemplateField.json | 11 +- .../DeleteSignatureTemplateFieldLocation.json | 2 +- .../DeleteSignatureTemplateRecipient.json | 2 +- .../signature/FillEnvelopeField.json | 40 +- .../responses/signature/GetContacts.json | 19 +- .../signature/GetEnvelopeAuditLogs.json | 10 +- .../responses/signature/GetFieldsList.json | 6799 +----------- .../GetRecipientSignatureEnvelopes.json | 164 +- .../responses/signature/GetRolesList.json | 2 +- .../signature/GetSignatureEnvelope.json | 14 +- .../GetSignatureEnvelopeDocuments.json | 12 +- .../signature/GetSignatureEnvelopeFields.json | 90 +- .../GetSignatureEnvelopeRecipients.json | 12 +- .../GetSignatureEnvelopeResources.json | 3861 ++++++- .../signature/GetSignatureEnvelopes.json | 164 +- .../responses/signature/GetSignatureForm.json | 12 +- .../signature/GetSignatureFormDocuments.json | 16 +- .../signature/GetSignatureFormFields.json | 84 +- .../signature/GetSignatureFormResources.json | 102 +- .../signature/GetSignatureForms.json | 96 +- .../GetSignaturePredefinedLists.json | 474 +- .../signature/GetSignatureTemplate.json | 8 +- .../GetSignatureTemplateDocuments.json | 12 +- .../signature/GetSignatureTemplateFields.json | 24 +- .../GetSignatureTemplateRecipients.json | 6 +- .../GetSignatureTemplateResources.json | 32 +- .../signature/GetSignatureTemplates.json | 122 +- .../responses/signature/GetSignatures.json | 103 +- .../responses/signature/ImportContacts.json | 2 +- .../responses/signature/ModifyContact.json | 6 +- .../signature/ModifySignatureEnvelope.json | 26 +- .../ModifySignatureEnvelopeField.json | 88 +- .../ModifySignatureEnvelopeFieldLocation.json | 88 +- .../ModifySignatureEnvelopeRecipient.json | 12 +- .../signature/ModifySignatureField.json | 6 +- .../signature/ModifySignatureForm.json | 10 +- .../ModifySignatureFormDocument.json | 20 +- .../signature/ModifySignatureFormField.json | 82 +- .../ModifySignatureFormFieldLocation.json | 82 +- .../signature/ModifySignatureTemplate.json | 12 +- .../ModifySignatureTemplateField.json | 26 +- .../ModifySignatureTemplateFieldLocation.json | 27 +- .../ModifySignatureTemplateRecipient.json | 8 +- .../signature/PublicCreateSignature.json | 14 +- .../signature/PublicFillEnvelopeField.json | 34 +- .../signature/PublicGetEnvelopeDocuments.json | 12 +- .../PublicGetEnvelopeRecipients.json | 12 +- .../signature/PublicGetSignatureEnvelope.json | 22 +- .../PublicGetSignatureEnvelopeFields.json | 90 +- .../signature/PublicGetSignatureForm.json | 12 +- .../PublicGetSignatureFormDocuments.json | 16 +- .../signature/PublicSignDocument.json | 4 +- .../signature/PublicVerifyDocument.json | 2 +- .../signature/PublishSignatureForm.json | 2 +- .../signature/RenameSignatureEnvelope.json | 31 +- .../RenameSignatureEnvelopeDocument.json | 24 +- .../signature/RenameSignatureForm.json | 12 +- .../RenameSignatureFormDocument.json | 20 +- .../signature/RenameSignatureTemplate.json | 23 +- .../RenameSignatureTemplateDocument.json | 20 +- .../RestartExpiredSignatureEnvelope.json | 2 +- .../signature/RetrySignEnvelope.json | 9 +- .../responses/signature/SignDocument.json | 4 +- .../signature/SignatureEnvelopeSend.json | 12 +- .../resources/responses/storage/Compress.json | 6 +- .../resources/responses/storage/CopyFile.json | 20 +- .../responses/storage/CopyFolder.json | 6 +- .../resources/responses/storage/Create.json | 6 +- .../responses/storage/CreatePackage.json | 4 +- .../resources/responses/storage/Delete.json | 2 +- .../responses/storage/DeleteFromFolder.json | 2 +- .../responses/storage/GetStorageInfo.json | 6 +- .../responses/storage/ListEntities.json | 9505 +---------------- .../resources/responses/storage/MoveFile.json | 18 +- .../responses/storage/MoveFolder.json | 6 +- .../responses/storage/MoveToTrash.json | 2 +- .../resources/responses/storage/Upload.json | 15 +- .../responses/storage/UploadWeb.json | 9 +- .../responses/system/GetCountries.json | 6 +- .../resources/responses/system/GetStates.json | 12 +- .../system/GetSubscriptionPlans.json | 59 +- .../responses/system/GetUserPlan.json | 6 +- .../system/GetUserSubscriptionPlan.json | 6 +- .../responses/user/GetAccountUsers.json | 1306 +-- .../resources/responses/user/GetRoles.json | 2 +- .../responses/user/GetStorageProviders.json | 27 +- .../responses/user/GetUserProfile.json | 30 +- .../responses/user/GetUserRoles.json | 2 +- src/test/resources/test.doc | Bin 29696 -> 0 bytes 440 files changed, 9904 insertions(+), 24105 deletions(-) create mode 100644 src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResponse.java create mode 100644 src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResult.java create mode 100644 src/test/java/com/groupdocs/sdk/api/TestAdminApi.java delete mode 100644 src/test/resources/GroupDocs_Signature_Demo.pdf delete mode 100644 src/test/resources/interactiveform_enabled.pdf create mode 100644 src/test/resources/requests/annotation/info/AddAnnotationCollaborator create mode 100644 src/test/resources/requests/annotation/info/CreateAnnotation create mode 100644 src/test/resources/requests/annotation/info/CreateAnnotationReply create mode 100644 src/test/resources/requests/annotation/info/DeleteAnnotation create mode 100644 src/test/resources/requests/annotation/info/DeleteAnnotationReply create mode 100644 src/test/resources/requests/annotation/info/EditAnnotationReply create mode 100644 src/test/resources/requests/annotation/info/GetAnnotationCollaborators create mode 100644 src/test/resources/requests/annotation/info/GetReviewerContacts create mode 100644 src/test/resources/requests/annotation/info/GetSharedLinkAccessRights create mode 100644 src/test/resources/requests/annotation/info/ListAnnotationReplies create mode 100644 src/test/resources/requests/annotation/info/ListAnnotations create mode 100644 src/test/resources/requests/annotation/info/MoveAnnotation create mode 100644 src/test/resources/requests/annotation/info/MoveAnnotationMarker create mode 100644 src/test/resources/requests/annotation/info/SetAnnotationAccess create mode 100644 src/test/resources/requests/annotation/info/SetAnnotationCollaborators create mode 100644 src/test/resources/requests/annotation/info/SetReviewerContacts create mode 100644 src/test/resources/requests/annotation/info/SetReviewerRights create mode 100644 src/test/resources/requests/annotation/info/SetSharedLinkAccessRights create mode 100644 src/test/resources/requests/annotation/payload/AddAnnotationCollaborator.json create mode 100644 src/test/resources/requests/annotation/payload/CreateAnnotation.json create mode 100644 src/test/resources/requests/annotation/payload/CreateAnnotationReply.json create mode 100644 src/test/resources/requests/annotation/payload/EditAnnotationReply.json create mode 100644 src/test/resources/requests/annotation/payload/MoveAnnotation.json create mode 100644 src/test/resources/requests/annotation/payload/MoveAnnotationMarker.json create mode 100644 src/test/resources/requests/annotation/payload/SetAnnotationAccess.json create mode 100644 src/test/resources/requests/annotation/payload/SetAnnotationCollaborators.json create mode 100644 src/test/resources/requests/annotation/payload/SetReviewerContacts.json create mode 100644 src/test/resources/requests/annotation/payload/SetReviewerRights.json create mode 100644 src/test/resources/requests/annotation/payload/SetSharedLinkAccessRights.json create mode 100644 src/test/resources/requests/document/info/GetDocumentAccessInfo create mode 100644 src/test/resources/requests/document/info/GetDocumentFormats create mode 100644 src/test/resources/requests/document/info/GetDocumentMetadata create mode 100644 src/test/resources/requests/document/info/GetDocumentViews create mode 100644 src/test/resources/requests/document/info/GetFolderSharers create mode 100644 src/test/resources/requests/document/info/GetTemplateFields create mode 100644 src/test/resources/requests/document/info/SetDocumentAccessMode create mode 100644 src/test/resources/requests/document/info/ShareDocument create mode 100644 src/test/resources/requests/document/info/ShareFolder create mode 100644 src/test/resources/requests/document/info/UnshareDocument create mode 100644 src/test/resources/requests/document/info/UnshareFolder create mode 100644 src/test/resources/requests/document/payload/ShareDocument.json create mode 100644 src/test/resources/requests/document/payload/ShareFolder.json create mode 100644 src/test/resources/requests/signature/info/AddContactIntegration create mode 100644 src/test/resources/requests/signature/info/ArchiveSignatureEnvelope create mode 100644 src/test/resources/requests/signature/info/CancelSignatureEnvelope create mode 100644 src/test/resources/requests/signature/info/GetContacts create mode 100644 src/test/resources/requests/signature/info/ModifySignatureFormDocument create mode 100644 src/test/resources/requests/signature/info/RenameSignatureEnvelopeDocument create mode 100644 src/test/resources/requests/signature/info/RenameSignatureFormDocument create mode 100644 src/test/resources/requests/signature/info/RenameSignatureTemplateDocument create mode 100644 src/test/resources/requests/signature/info/RetrySignEnvelope create mode 100644 src/test/resources/requests/signature/payload/AddContactIntegration.json create mode 100644 src/test/resources/requests/signature/payload/ModifySignatureFormDocument.json create mode 100644 src/test/resources/responses/annotation/AddAnnotationCollaborator.json create mode 100644 src/test/resources/responses/annotation/CreateAnnotation.json create mode 100644 src/test/resources/responses/annotation/CreateAnnotationReply.json create mode 100644 src/test/resources/responses/annotation/DeleteAnnotation.json create mode 100644 src/test/resources/responses/annotation/DeleteAnnotationReply.json create mode 100644 src/test/resources/responses/annotation/EditAnnotationReply.json create mode 100644 src/test/resources/responses/annotation/GetAnnotationCollaborators.json create mode 100644 src/test/resources/responses/annotation/GetReviewerContacts.json create mode 100644 src/test/resources/responses/annotation/GetSharedLinkAccessRights.json create mode 100644 src/test/resources/responses/annotation/ListAnnotationReplies.json create mode 100644 src/test/resources/responses/annotation/ListAnnotations.json create mode 100644 src/test/resources/responses/annotation/MoveAnnotation.json create mode 100644 src/test/resources/responses/annotation/MoveAnnotationMarker.json create mode 100644 src/test/resources/responses/annotation/SetAnnotationAccess.json create mode 100644 src/test/resources/responses/annotation/SetAnnotationCollaborators.json create mode 100644 src/test/resources/responses/annotation/SetReviewerContacts.json create mode 100644 src/test/resources/responses/annotation/SetReviewerRights.json create mode 100644 src/test/resources/responses/annotation/SetSharedLinkAccessRights.json create mode 100644 src/test/resources/responses/document/GetDocumentAccessInfo.json create mode 100644 src/test/resources/responses/document/GetDocumentFormats.json create mode 100644 src/test/resources/responses/document/GetDocumentMetadata.json create mode 100644 src/test/resources/responses/document/GetDocumentViews.json create mode 100644 src/test/resources/responses/document/GetFolderSharers.json create mode 100644 src/test/resources/responses/document/GetTemplateFields.json create mode 100644 src/test/resources/responses/document/SetDocumentAccessMode.json create mode 100644 src/test/resources/responses/document/ShareDocument.json create mode 100644 src/test/resources/responses/document/ShareFolder.json create mode 100644 src/test/resources/responses/document/UnshareDocument.json create mode 100644 src/test/resources/responses/document/UnshareFolder.json delete mode 100644 src/test/resources/test.doc diff --git a/pom.xml b/pom.xml index 4c9e269..57f11f9 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.7.3-SNAPSHOT + 1.7.2 GroupDocsJava GroupDocs API library for Java diff --git a/src/main/java/com/groupdocs/sdk/api/MergeApi.java b/src/main/java/com/groupdocs/sdk/api/MergeApi.java index fae7b27..aa20c2e 100644 --- a/src/main/java/com/groupdocs/sdk/api/MergeApi.java +++ b/src/main/java/com/groupdocs/sdk/api/MergeApi.java @@ -316,12 +316,12 @@ public GetQuestionnaireResponse GetQuestionnaire (String userId, String question } } } - public GetQuestionnairesResponse GetQuestionnaires (String userId, String status, Integer pageNumber, Integer pageSize) throws ApiException { + 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}".replace("*", ""); + 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); @@ -339,6 +339,10 @@ public GetQuestionnairesResponse GetQuestionnaires (String userId, String status 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){ @@ -968,12 +972,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 +989,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){ @@ -1244,5 +1256,43 @@ public UpdateQuestionnaireResponse UpdateQuestionnaireMetadata (String userId, S } } } + public GetTemplatesResponse CopyFileToTemplates (String userId, String path, String mode, String Groupdocs_Copy, String Groupdocs_Move) 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-Copy", Groupdocs_Copy); + headerParams.put("Groupdocs-Move", Groupdocs_Move); + 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; + } + } + } } diff --git a/src/main/java/com/groupdocs/sdk/api/SignatureApi.java b/src/main/java/com/groupdocs/sdk/api/SignatureApi.java index 234a203..dd7b1db 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; @@ -98,6 +99,46 @@ public String getBasePath() { return basePath; } + 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 ) { @@ -580,12 +621,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 +648,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){ @@ -1992,6 +2035,36 @@ 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 SignatureFieldsResponse GetFieldsList (String userId, String fieldGuid) throws ApiException { // verify required params are set if(userId == null ) { @@ -2916,7 +2989,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 +3005,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; @@ -3164,7 +3237,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("*", ""); @@ -3298,46 +3371,6 @@ public SignatureStatusResponse DeleteSignatureTemplate (String userId, String te } } } - 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 { // verify required params are set if(envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { @@ -3894,6 +3927,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 ) { 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/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/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/TemplateInfo.java b/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java index be870b4..be8cc4e 100644 --- a/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java @@ -24,6 +24,8 @@ public class TemplateInfo { private String name = null; private Integer field_count = null; + private Long size = null; + private Long upload_time = null; private Double id = null; private String guid = null; public String getName() { @@ -40,6 +42,20 @@ 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 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 +76,8 @@ 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(" 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/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/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java b/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java index d8fbff5..093bcf7 100644 --- a/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java @@ -199,7 +199,6 @@ public void testDownloadResult() throws Exception { try { FileStream response = api.DownloadResult(userId, resultFileId, format); - assertThat(response, not(nullValue())); assertThat(response.getInputStream(), not(nullValue())); } catch(ApiException e){ diff --git a/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java b/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java index 3601011..e35b88b 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"); diff --git a/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java b/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java index a1252ba..7be8915 100644 --- a/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java @@ -317,6 +317,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 +327,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 +337,7 @@ 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); @@ -921,11 +925,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 +942,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); @@ -1172,6 +1180,38 @@ public void testUpdateQuestionnaireMetadata() throws Exception { } + @Test + public void testCopyFileToTemplates() throws Exception { + // sample parameters + String userId = "userId"; + String path = "path"; + String mode = "mode"; + String Groupdocs_Copy = "Groupdocs_Copy"; + String Groupdocs_Move = "Groupdocs_Move"; + + 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_Copy, Groupdocs_Move); + // 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..1167acb 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; @@ -114,6 +115,40 @@ public void setUpBefore() throws Exception { api.setBasePath(driver.getBaseUrl()); } + @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 @@ -581,6 +616,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 +627,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 +636,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); @@ -1886,6 +1923,35 @@ 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 testGetFieldsList() throws Exception { // sample parameters @@ -2766,7 +2832,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); @@ -3082,40 +3148,6 @@ public void testDeleteSignatureTemplate() throws Exception { } - @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 @@ -3628,6 +3660,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 diff --git a/src/test/java/com/groupdocs/sdk/api/TestAdminApi.java b/src/test/java/com/groupdocs/sdk/api/TestAdminApi.java new file mode 100644 index 0000000..4a57770 --- /dev/null +++ b/src/test/java/com/groupdocs/sdk/api/TestAdminApi.java @@ -0,0 +1,30 @@ +/** + * 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.api; + +import com.groupdocs.sdk.common.*; +import com.groupdocs.sdk.model.*; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.*; +import org.junit.Test; +import org.junit.experimental.categories.Category; +import java.util.*; + +@Category(IntegrationTest.class) +public class TestAdminApi extends AbstractIntegrationTest { + + +} diff --git a/src/test/resources/GroupDocs_Signature_Demo.pdf b/src/test/resources/GroupDocs_Signature_Demo.pdf deleted file mode 100644 index 2583450fcc021f897e420152b3db0f1e7e05ee5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1132663 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�Y1G#k^S1(naoff2NtX5BB0)OD88Nsq1lTcI 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

nGi3hr=3Ah-ZLn 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 SXwm9Czg>k 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

gD(`qG`hGI8}gAkmzZdN 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%0DH%!FJnWm##C0ZTj5I_E7}2QzrZkTLF87ITx=n>E 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%0A#P2g3Fr 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�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%0DvR~EEp!LrQCOtQ!g9WH2bL759Wlb|eV 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 \ No newline at end of file +# \ No newline at end of file diff --git a/src/test/resources/requests/system/info/GetCountries b/src/test/resources/requests/system/info/GetCountries index a8202e6..15a3f39 100644 --- a/src/test/resources/requests/system/info/GetCountries +++ b/src/test/resources/requests/system/info/GetCountries @@ -1,6 +1,6 @@ -GET /v2.0/system/ea103bbe8cb8ce07/countries?signature=gThqEA%2B%2BgxSmoMl6brNjUxEVcvQ +GET /v2.0/system/6d75a4d4db83f6fc/countries?signature=01s8yGEfP02cwqzOO%2FI%2FUMlFfW4 -Host: dev-api-groupdocs.dynabic.com +Host: stage-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/system/info/GetStates b/src/test/resources/requests/system/info/GetStates index 20fe1af..7eff1d6 100644 --- a/src/test/resources/requests/system/info/GetStates +++ b/src/test/resources/requests/system/info/GetStates @@ -1,6 +1,6 @@ -GET /v2.0/system/ea103bbe8cb8ce07/countries/Russia/states?signature=c30rf0G3y82BafVRYhQpiVFvvDs +GET /v2.0/system/6d75a4d4db83f6fc/countries/Russia/states?signature=WvD3tTHG%2FZEk193T3eYBxxm%2BXfE -Host: dev-api-groupdocs.dynabic.com +Host: stage-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/system/info/GetSubscriptionPlans b/src/test/resources/requests/system/info/GetSubscriptionPlans index 3aadeb9..bcc7dda 100644 --- a/src/test/resources/requests/system/info/GetSubscriptionPlans +++ b/src/test/resources/requests/system/info/GetSubscriptionPlans @@ -1,6 +1,6 @@ -GET /v2.0/system/faa5c82daad84030/plans/groupdocs?signature=T2INN2qxR7rdFdHFn2PPMc7TtPM +GET /v2.0/system/6d75a4d4db83f6fc/plans/groupdocs?signature=NVcONOXhBxuefpS6akOtqHQo6TQ -Host: dev-api-groupdocs.dynabic.com +Host: stage-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/system/info/GetUserPlan b/src/test/resources/requests/system/info/GetUserPlan index 622cc1c..a75f6f5 100644 --- a/src/test/resources/requests/system/info/GetUserPlan +++ b/src/test/resources/requests/system/info/GetUserPlan @@ -1,6 +1,6 @@ -GET /v2.0/system/ea103bbe8cb8ce07/plan?signature=17CRuCrHufJiqtobNXNHBR9YRTA +GET /v2.0/system/6d75a4d4db83f6fc/plan?signature=LMCpGHnmZK62V04axionRrBlfrk -Host: dev-api-groupdocs.dynabic.com +Host: stage-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/system/info/GetUserSubscriptionPlan b/src/test/resources/requests/system/info/GetUserSubscriptionPlan index 7afb454..bf669e1 100644 --- a/src/test/resources/requests/system/info/GetUserSubscriptionPlan +++ b/src/test/resources/requests/system/info/GetUserSubscriptionPlan @@ -1,6 +1,6 @@ -GET /v2.0/system/ea103bbe8cb8ce07/subscription?signature=3Eyk3TbYbItZY4zeQuvYsNop5fs +GET /v2.0/system/6d75a4d4db83f6fc/subscription?signature=NoUcRRoe64ZYV4y9rC1SoGATsKE -Host: dev-api-groupdocs.dynabic.com +Host: stage-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/user/info/GetAccountUsers b/src/test/resources/requests/user/info/GetAccountUsers index 4e152e2..155543f 100644 --- a/src/test/resources/requests/user/info/GetAccountUsers +++ b/src/test/resources/requests/user/info/GetAccountUsers @@ -1,6 +1,6 @@ -GET /v2.0/mgmt/ea103bbe8cb8ce07/account/users?signature=1yAcWqZ72BrawZfLD3GJcmcPhkQ +GET /v2.0/mgmt/6d75a4d4db83f6fc/account/users?signature=y43GEV06%2BehjqYQSxrtlR20OLZo -Host: dev-api-groupdocs.dynabic.com +Host: stage-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/user/info/GetRoles b/src/test/resources/requests/user/info/GetRoles index 61099a8..b5357c6 100644 --- a/src/test/resources/requests/user/info/GetRoles +++ b/src/test/resources/requests/user/info/GetRoles @@ -1,6 +1,6 @@ -GET /v2.0/mgmt/ea103bbe8cb8ce07/roles?signature=jiWOMKZjMkJa88J8BdLooeEzbqU +GET /v2.0/mgmt/6d75a4d4db83f6fc/roles?signature=PcVxX2XyYvh2ENks2B8ji8ChiPA -Host: dev-api-groupdocs.dynabic.com +Host: stage-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/user/info/GetStorageProviders b/src/test/resources/requests/user/info/GetStorageProviders index a4ac035..ce80c04 100644 --- a/src/test/resources/requests/user/info/GetStorageProviders +++ b/src/test/resources/requests/user/info/GetStorageProviders @@ -1,6 +1,6 @@ -GET /v2.0/mgmt/ea103bbe8cb8ce07/storages?signature=m6hjmFyiYFDQFzTxJYJDRfXr8bQ +GET /v2.0/mgmt/6d75a4d4db83f6fc/storages?signature=5HvpZCp6k3GHWYnXtieBnNzB0fw -Host: dev-api-groupdocs.dynabic.com +Host: stage-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/user/info/GetUserProfile b/src/test/resources/requests/user/info/GetUserProfile index 0a613b5..0b56936 100644 --- a/src/test/resources/requests/user/info/GetUserProfile +++ b/src/test/resources/requests/user/info/GetUserProfile @@ -1,6 +1,6 @@ -GET /v2.0/mgmt/ea103bbe8cb8ce07/profile?signature=PDluqmiB%2B56taXY9r8Yxpj5AGO4 +GET /v2.0/mgmt/6d75a4d4db83f6fc/profile?signature=zed%2FIsKpWbAOObeiKm8gDyoRxfQ -Host: dev-api-groupdocs.dynabic.com +Host: stage-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/user/info/GetUserRoles b/src/test/resources/requests/user/info/GetUserRoles index 65ea866..5dc726d 100644 --- a/src/test/resources/requests/user/info/GetUserRoles +++ b/src/test/resources/requests/user/info/GetUserRoles @@ -1,6 +1,6 @@ -GET /v2.0/mgmt/faa5c82daad84030/users/ea103bbe8cb8ce07/roles?signature=VMcuy7k6G1mx9A2pQF5PSMCB8XM +GET /v2.0/mgmt/6d75a4d4db83f6fc/users/6d75a4d4db83f6fc/roles?signature=TqxyBNZ1XJvKW1Xm0lpYHmSvHao -Host: dev-api-groupdocs.dynabic.com +Host: stage-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/responses/annotation/AddAnnotationCollaborator.json b/src/test/resources/responses/annotation/AddAnnotationCollaborator.json new file mode 100644 index 0000000..5c2ac84 --- /dev/null +++ b/src/test/resources/responses/annotation/AddAnnotationCollaborator.json @@ -0,0 +1,31 @@ +{ + "result": { + "documentGuid": "5a0751f92bca8097c50161f7090d8fb923b023cfc47fdc2fac4dfee0e81daeaf", + "sessionGuid": "6b8a8f8df0d7df12", + "owner": { + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com", + "firstName": null, + "lastName": null, + "access_rights": null, + "color": null, + "customEmailMessage": null + }, + "collaborators": [ + { + "id": 5296, + "guid": "7279fabf84617f0b", + "primary_email": "user_one@mailinator.com", + "firstName": "John", + "lastName": "Smith", + "access_rights": 15, + "color": 3264358, + "customEmailMessage": null + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383328871218 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/CreateAnnotation.json b/src/test/resources/responses/annotation/CreateAnnotation.json new file mode 100644 index 0000000..251dadb --- /dev/null +++ b/src/test/resources/responses/annotation/CreateAnnotation.json @@ -0,0 +1,14 @@ +{ + "result": { + "id": 21362, + "annotationGuid": "75d0b66a21c1bc61", + "replyGuid": null, + "documentGuid": "23e907609a31821a0bdbd9044714f99a2d654ed72f0b0cc63e3f7c464ccd7b5e", + "sessionGuid": "f8e993d053b5bea8", + "access": "Public", + "serverTime": 1383328987898 + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383328987640 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/CreateAnnotationReply.json b/src/test/resources/responses/annotation/CreateAnnotationReply.json new file mode 100644 index 0000000..bc1cfdd --- /dev/null +++ b/src/test/resources/responses/annotation/CreateAnnotationReply.json @@ -0,0 +1,10 @@ +{ + "result": { + "replyGuid": "63838807", + "annotationGuid": "c26778ffcd3d07be", + "replyDateTime": "2013-11-01T18:02:52.732586Z" + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383328972598 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/DeleteAnnotation.json b/src/test/resources/responses/annotation/DeleteAnnotation.json new file mode 100644 index 0000000..c4c139f --- /dev/null +++ b/src/test/resources/responses/annotation/DeleteAnnotation.json @@ -0,0 +1,9 @@ +{ + "result": { + "id": 21378, + "guid": "b43cc3eb4feb0902" + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329029753 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/DeleteAnnotationReply.json b/src/test/resources/responses/annotation/DeleteAnnotationReply.json new file mode 100644 index 0000000..d1fec17 --- /dev/null +++ b/src/test/resources/responses/annotation/DeleteAnnotationReply.json @@ -0,0 +1,12 @@ +{ + "result": { + "replyGuid": "4a38f746", + "annotationGuid": "62b7dafa022cab19", + "replies": [ + + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329018183 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/EditAnnotationReply.json b/src/test/resources/responses/annotation/EditAnnotationReply.json new file mode 100644 index 0000000..741ec54 --- /dev/null +++ b/src/test/resources/responses/annotation/EditAnnotationReply.json @@ -0,0 +1,7 @@ +{ + "result": { + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329042801 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/GetAnnotationCollaborators.json b/src/test/resources/responses/annotation/GetAnnotationCollaborators.json new file mode 100644 index 0000000..24bed0a --- /dev/null +++ b/src/test/resources/responses/annotation/GetAnnotationCollaborators.json @@ -0,0 +1,23 @@ +{ + "result": { + "documentGuid": "96c88865a65912fb9858ee8c34894ee80eca8bf70f7601b2deba057712459922", + "sessionGuid": "c8ae104f21057835", + "owner": { + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com", + "firstName": null, + "lastName": null, + "access_rights": null, + "color": null, + "customEmailMessage": null + }, + "collaborators": [ + + ], + "shared_link_access_rights": null + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329054003 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/GetReviewerContacts.json b/src/test/resources/responses/annotation/GetReviewerContacts.json new file mode 100644 index 0000000..8f178a3 --- /dev/null +++ b/src/test/resources/responses/annotation/GetReviewerContacts.json @@ -0,0 +1,10 @@ +{ + "result": { + "reviewerContacts": [ + + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329091670 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/GetSharedLinkAccessRights.json b/src/test/resources/responses/annotation/GetSharedLinkAccessRights.json new file mode 100644 index 0000000..4d15997 --- /dev/null +++ b/src/test/resources/responses/annotation/GetSharedLinkAccessRights.json @@ -0,0 +1,8 @@ +{ + "result": { + "accessRights": 1 + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329098562 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/ListAnnotationReplies.json b/src/test/resources/responses/annotation/ListAnnotationReplies.json new file mode 100644 index 0000000..c9df6d9 --- /dev/null +++ b/src/test/resources/responses/annotation/ListAnnotationReplies.json @@ -0,0 +1,11 @@ +{ + "result": { + "annotationGuid": "ba980427787e2f03", + "replies": [ + + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329140542 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/ListAnnotations.json b/src/test/resources/responses/annotation/ListAnnotations.json new file mode 100644 index 0000000..b9ebcc4 --- /dev/null +++ b/src/test/resources/responses/annotation/ListAnnotations.json @@ -0,0 +1,13 @@ +{ + "result": { + "documentGuid": "5562cec6b983fc7e813fb6cb0a09522a9c0e968bed59025ff444a6421986054f", + "sessionGuid": "d9e67ade1cf72ce5", + "annotations": [ + + ], + "serverTime": 1383329124979 + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329124774 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/MoveAnnotation.json b/src/test/resources/responses/annotation/MoveAnnotation.json new file mode 100644 index 0000000..e1bc050 --- /dev/null +++ b/src/test/resources/responses/annotation/MoveAnnotation.json @@ -0,0 +1,8 @@ +{ + "result": { + "annotationGuid": "8e5ea2b521e15c12" + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329173696 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/MoveAnnotationMarker.json b/src/test/resources/responses/annotation/MoveAnnotationMarker.json new file mode 100644 index 0000000..edb3e54 --- /dev/null +++ b/src/test/resources/responses/annotation/MoveAnnotationMarker.json @@ -0,0 +1,8 @@ +{ + "result": { + "annotationGuid": "fa827598edc76e74" + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329162518 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/SetAnnotationAccess.json b/src/test/resources/responses/annotation/SetAnnotationAccess.json new file mode 100644 index 0000000..80e0bc5 --- /dev/null +++ b/src/test/resources/responses/annotation/SetAnnotationAccess.json @@ -0,0 +1,35 @@ +{ + "result": { + "annotation": { + "guid": "446a692e2a17e807", + "documentGuid": "47300cb980090a73599fc72f93a70d5a485e738f3facc22108426356e0392e04", + "sessionGuid": "469f1303eaafc5d6", + "creatorGuid": "6d75a4d4db83f6fc", + "box": { + "x": 10.0, + "y": 10.0, + "width": 10.0, + "height": 10.0 + }, + "annotationPosition": { + "x": 10.0, + "y": 10.0 + }, + "range": null, + "svgPath": null, + "type": "Point", + "access": "Public", + "replies": [ + + ], + "createdOn": 1383329183813, + "fontColor": 0, + "fieldText": null, + "fontFamily": null, + "fontSize": null + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329184231 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/SetAnnotationCollaborators.json b/src/test/resources/responses/annotation/SetAnnotationCollaborators.json new file mode 100644 index 0000000..29037e0 --- /dev/null +++ b/src/test/resources/responses/annotation/SetAnnotationCollaborators.json @@ -0,0 +1,41 @@ +{ + "result": { + "documentGuid": "d6b14380e13ba293a10e187d16f1c3e25721c9c2bfb4fb23400fca0c246ff679", + "sessionGuid": "8ddfb0cb0cd2dcbf", + "owner": { + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com", + "firstName": null, + "lastName": null, + "access_rights": null, + "color": null, + "customEmailMessage": null + }, + "collaborators": [ + { + "id": 5332, + "guid": "7279fabf84617f0b", + "primary_email": "user_one@mailinator.com", + "firstName": "John", + "lastName": "Smith", + "access_rights": 15, + "color": 601756, + "customEmailMessage": null + }, + { + "id": 5333, + "guid": "e5f468fc7574a5f2", + "primary_email": "user_two@mailinator.com", + "firstName": null, + "lastName": null, + "access_rights": 15, + "color": 6621505, + "customEmailMessage": null + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329220115 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/SetReviewerContacts.json b/src/test/resources/responses/annotation/SetReviewerContacts.json new file mode 100644 index 0000000..8c3ac71 --- /dev/null +++ b/src/test/resources/responses/annotation/SetReviewerContacts.json @@ -0,0 +1,14 @@ +{ + "result": { + "reviewerContacts": [ + { + "emailAddress": "john@smith.com", + "firstName": null, + "lastName": null + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329238730 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/SetReviewerRights.json b/src/test/resources/responses/annotation/SetReviewerRights.json new file mode 100644 index 0000000..426eb28 --- /dev/null +++ b/src/test/resources/responses/annotation/SetReviewerRights.json @@ -0,0 +1,7 @@ +{ + "result": { + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329246473 +} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/SetSharedLinkAccessRights.json b/src/test/resources/responses/annotation/SetSharedLinkAccessRights.json new file mode 100644 index 0000000..abb8280 --- /dev/null +++ b/src/test/resources/responses/annotation/SetSharedLinkAccessRights.json @@ -0,0 +1,7 @@ +{ + "result": { + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329317826 +} \ No newline at end of file diff --git a/src/test/resources/responses/ant/CreateAnnotationReply.json b/src/test/resources/responses/ant/CreateAnnotationReply.json index ba8ee2f..6a3864b 100644 --- a/src/test/resources/responses/ant/CreateAnnotationReply.json +++ b/src/test/resources/responses/ant/CreateAnnotationReply.json @@ -1,10 +1,9 @@ { "result": { "replyGuid": "688a648b", - "annotationGuid": "7543a176c2d98310", + "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/ListAnnotations.json b/src/test/resources/responses/ant/ListAnnotations.json index 1056db2..87758e8 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":[ + "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 + "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":[ + "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 + "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":[ + "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 + "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":[ + "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 + "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":[ + "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 + "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":[ + "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 + "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":[ + "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 + "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 + "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 + "serverTime": 1375207881590 }, - "status":"Ok", - "error_message":null, - "composedOn":1375207879840 + "status": "Ok", + "error_message": null, + "composedOn": 1375207879840 } \ 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..374e75d 100644 --- a/src/test/resources/responses/ant/SetAnnotationAccess.json +++ b/src/test/resources/responses/ant/SetAnnotationAccess.json @@ -15,21 +15,15 @@ "x": 10, "y": 10 }, - "range": null, - "svgPath": null, "type": "Point", "access": "Public", "replies": [ ], "createdOn": 1375208092467, - "fontColor": 0, - "fieldText": null, - "fontFamily": null, - "fontSize": null + "fontColor": 0 } }, "status": "Ok", - "error_message": null, "composedOn": 1375208092918 } \ No newline at end of file diff --git a/src/test/resources/responses/async/AddJobDocument.json b/src/test/resources/responses/async/AddJobDocument.json index 17e271b..2bde18e 100644 --- a/src/test/resources/responses/async/AddJobDocument.json +++ b/src/test/resources/responses/async/AddJobDocument.json @@ -1,8 +1,8 @@ { "result": { - "document_id": 325150 + "document_id": 131805 }, "status": "Ok", "error_message": null, - "composedOn": 1375208390418 + "composedOn": 1383329323588 } \ No newline at end of file diff --git a/src/test/resources/responses/async/AddJobDocumentUrl.json b/src/test/resources/responses/async/AddJobDocumentUrl.json index ea1ba0f..eec5cf9 100644 --- a/src/test/resources/responses/async/AddJobDocumentUrl.json +++ b/src/test/resources/responses/async/AddJobDocumentUrl.json @@ -1,8 +1,8 @@ { "result": { - "document_id": 325158 + "document_id": 131806 }, "status": "Ok", "error_message": null, - "composedOn": 1375208429450 + "composedOn": 1383329333838 } \ No newline at end of file diff --git a/src/test/resources/responses/async/Convert.json b/src/test/resources/responses/async/Convert.json index e8f3b39..97cf19e 100644 --- a/src/test/resources/responses/async/Convert.json +++ b/src/test/resources/responses/async/Convert.json @@ -1,8 +1,8 @@ { "result": { - "job_id": 801916 + "job_id": 128000 }, "status": "Ok", "error_message": null, - "composedOn": 1375208465325 + "composedOn": 1383329342534 } \ No newline at end of file diff --git a/src/test/resources/responses/async/CreateJob.json b/src/test/resources/responses/async/CreateJob.json index 2039f81..6e54c5d 100644 --- a/src/test/resources/responses/async/CreateJob.json +++ b/src/test/resources/responses/async/CreateJob.json @@ -1,9 +1,9 @@ { "result": { - "job_id": 801989, - "job_guid": "f1c8e5ef37fdfb5868481b1dc8b405bd2932f55b28ec983c21f4b318e9f08540" + "job_id": 128073, + "job_guid": "0d55f2835cce373081185811c1f84c5a5fb51ac6b9ebac7a5e71a57d52462d5b" }, "status": "Ok", "error_message": null, - "composedOn": 1375208736356 + "composedOn": 1383329532970 } \ No newline at end of file diff --git a/src/test/resources/responses/async/DeleteJobDocument.json b/src/test/resources/responses/async/DeleteJobDocument.json index 31307cd..9dcb6a1 100644 --- a/src/test/resources/responses/async/DeleteJobDocument.json +++ b/src/test/resources/responses/async/DeleteJobDocument.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375208788122 + "composedOn": 1383329543651 } \ No newline at end of file diff --git a/src/test/resources/responses/async/GetJob.json b/src/test/resources/responses/async/GetJob.json index 32e13e1..6fdf7d3 100644 --- a/src/test/resources/responses/async/GetJob.json +++ b/src/test/resources/responses/async/GetJob.json @@ -1,6 +1,6 @@ { "result": { - "id": 802003, + "id": 128087, "out_formats": null, "actions": "Convert, CompressZip", "status": "Draft", @@ -8,13 +8,13 @@ "priority": 5, "url_only": null, "documents": null, - "requested_time": 1375209056217, - "scheduled_time": 1375209056217, - "guid": "9004e980845e18228f7f46c5445fe4e6bd693257ec3a0f80458f6ef35d1a3721", + "requested_time": 1383329580107, + "scheduled_time": 1383329580107, + "guid": "ada925111d16cad87d2abef65f89b2fc173b822de92f408e5d60e7b9dc955f5c", "name": null, "callback_url": null }, "status": "Ok", "error_message": null, - "composedOn": 1375209056450 + "composedOn": 1383329580339 } \ No newline at end of file diff --git a/src/test/resources/responses/async/GetJobDocument.json b/src/test/resources/responses/async/GetJobDocument.json index bbe3b04..147b2ad 100644 --- a/src/test/resources/responses/async/GetJobDocument.json +++ b/src/test/resources/responses/async/GetJobDocument.json @@ -6,5 +6,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375209022278 + "composedOn": 1383329573302 } \ No newline at end of file diff --git a/src/test/resources/responses/async/GetJobs.json b/src/test/resources/responses/async/GetJobs.json index 4a487b8..5fc1528 100644 --- a/src/test/resources/responses/async/GetJobs.json +++ b/src/test/resources/responses/async/GetJobs.json @@ -1,9 +1,9 @@ { "result": { - "count": 698619, + "count": 29532, "jobs": [ { - "id": 801996, + "id": 128080, "out_formats": null, "actions": "Convert", "status": "Draft", @@ -11,74 +11,31 @@ "priority": 5, "url_only": null, "documents": null, - "requested_time": 1375208819997, - "scheduled_time": 1375208819997, - "guid": "b571d5657c89a06d8568811d061803274e657e05da84bf79aa8b58225713cc32", + "requested_time": 1383329548550, + "scheduled_time": 1383329548550, + "guid": "5aa2cf2b94db794080c936d9e17a9bb22b38b15090645ce64338861a40f3ad80", "name": null, "callback_url": null }, { - "id": 801995, + "id": 128079, "out_formats": [ "Jpg" ], "actions": "View, Index", - "status": "Postponed", + "status": "Archived", "email_results": null, "priority": 5, "url_only": null, - "documents": { - "inputs": [ - { - "status": "Processed", - "proc_date": 1375208787560, - "output_formats": "jpg", - "outputs": [ - { - "error": null, - "name": null, - "version": null, - "size": 0, - "type": "Cells", - "type_str": "Cells", - "file_type_str": "Jpg", - "document_path": null, - "access": "Private", - "url": null, - "file_type": "Jpg", - "id": 0, - "guid": null - } - ], - "job_errors": [ - - ], - "actions": "View, Index", - "supported_output_file_types": null, - "name": "document_one.doc", - "version": 210, - "size": 9216, - "type": "Words", - "type_str": "Words", - "file_type_str": "Doc", - "document_path": "document_one.doc", - "access": "Private", - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", - "file_type": "Doc", - "id": 325150, - "guid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca" - } - ], - "outputs": null - }, - "requested_time": 1375208787560, - "scheduled_time": 1375208787560, - "guid": "501e3185542c8de8928237c18590135596d9b52e575898246c3105c1096d9fef", + "documents": null, + "requested_time": 1383329543070, + "scheduled_time": 1383329543070, + "guid": "b0ce0dab75ce1af56a0fffb74ba173f874c1cbb9a92b41e4f556addf7661b748", "name": null, "callback_url": null }, { - "id": 801994, + "id": 128078, "out_formats": null, "actions": "Convert, CompressZip", "status": "Draft", @@ -86,9 +43,9 @@ "priority": 5, "url_only": null, "documents": null, - "requested_time": 1375208786730, - "scheduled_time": 1375208786730, - "guid": "5fde62ac7e5156c43ae80eff725ddc30a81ff1a0ea32f6ef7ac5ea0556b9754d", + "requested_time": 1383329542487, + "scheduled_time": 1383329542487, + "guid": "243add364351f436125ab93a5924d4188fbe59584c424b7cf29d9b59b4968f4d", "name": null, "callback_url": null } @@ -96,5 +53,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375208820184 + "composedOn": 1383329548786 } \ No newline at end of file diff --git a/src/test/resources/responses/async/UpdateJob.json b/src/test/resources/responses/async/UpdateJob.json index 5268816..0bb7a79 100644 --- a/src/test/resources/responses/async/UpdateJob.json +++ b/src/test/resources/responses/async/UpdateJob.json @@ -1,8 +1,8 @@ { "result": { - "job_id": 802013 + "job_id": 128097 }, "status": "Ok", "error_message": null, - "composedOn": 1375209099137 + "composedOn": 1383329592161 } \ No newline at end of file diff --git a/src/test/resources/responses/document/GetDocumentAccessInfo.json b/src/test/resources/responses/document/GetDocumentAccessInfo.json new file mode 100644 index 0000000..04ea480 --- /dev/null +++ b/src/test/resources/responses/document/GetDocumentAccessInfo.json @@ -0,0 +1,90 @@ +{ + "result": { + "status": "Pending", + "owner": { + "nickname": "api@groupdocs.com", + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": null, + "claimed_id": null, + "token": null, + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 0, + "signedinOn": 0, + "signin_count": null, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": null + }, + "sharers": [ + + ], + "shared_on": 0, + "name": "document_one.doc", + "version": 1, + "size": 9216, + "type": "Words", + "type_str": "Words", + "file_type_str": "Doc", + "document_path": null, + "access": "Private", + "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/cfc0f987e841417bbec25808e4a289995926d05b7d956d6c2c1f8b376ad5775e", + "file_type": "Doc", + "id": 131845, + "guid": "cfc0f987e841417bbec25808e4a289995926d05b7d956d6c2c1f8b376ad5775e" + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329604270 +} \ No newline at end of file diff --git a/src/test/resources/responses/document/GetDocumentFormats.json b/src/test/resources/responses/document/GetDocumentFormats.json new file mode 100644 index 0000000..c8609f3 --- /dev/null +++ b/src/test/resources/responses/document/GetDocumentFormats.json @@ -0,0 +1,26 @@ +{ + "result": { + "types": [ + "Doc", + "Docx", + "Docm", + "Dot", + "Dotx", + "Dotm", + "Rtf", + "Odt", + "Ott", + "Txt", + "Html", + "Pdf", + "Tiff", + "Xps", + "Epub", + "Jpeg", + "HtmlFixed" + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329619615 +} \ No newline at end of file diff --git a/src/test/resources/responses/document/GetDocumentMetadata.json b/src/test/resources/responses/document/GetDocumentMetadata.json new file mode 100644 index 0000000..abe14a1 --- /dev/null +++ b/src/test/resources/responses/document/GetDocumentMetadata.json @@ -0,0 +1,12 @@ +{ + "result": { + "page_count": 1, + "views_count": 0, + "last_view": null, + "id": 131850, + "guid": "73a1b218acecd280cb970b6394f7d6befa827993b695a741d3ed6a51cc6bdff6" + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329656223 +} \ No newline at end of file diff --git a/src/test/resources/responses/document/GetDocumentViews.json b/src/test/resources/responses/document/GetDocumentViews.json new file mode 100644 index 0000000..c212187 --- /dev/null +++ b/src/test/resources/responses/document/GetDocumentViews.json @@ -0,0 +1,10 @@ +{ + "result": { + "views": [ + + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329677071 +} \ No newline at end of file diff --git a/src/test/resources/responses/document/GetFolderSharers.json b/src/test/resources/responses/document/GetFolderSharers.json new file mode 100644 index 0000000..d9724fa --- /dev/null +++ b/src/test/resources/responses/document/GetFolderSharers.json @@ -0,0 +1,76 @@ +{ + "result": { + "owner": { + "nickname": "api@groupdocs.com", + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", + "claimed_id": null, + "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", + "storage": null, + "photo": null, + "active": false, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1381234750823, + "signedinOn": 1382132641813, + "signin_count": 5, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" + }, + "shared_users": [ + + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329691579 +} \ No newline at end of file diff --git a/src/test/resources/responses/document/GetTemplateFields.json b/src/test/resources/responses/document/GetTemplateFields.json new file mode 100644 index 0000000..f70c403 --- /dev/null +++ b/src/test/resources/responses/document/GetTemplateFields.json @@ -0,0 +1,10 @@ +{ + "result": { + "fields": [ + + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329708511 +} \ No newline at end of file diff --git a/src/test/resources/responses/document/SetDocumentAccessMode.json b/src/test/resources/responses/document/SetDocumentAccessMode.json new file mode 100644 index 0000000..9b86a28 --- /dev/null +++ b/src/test/resources/responses/document/SetDocumentAccessMode.json @@ -0,0 +1,90 @@ +{ + "result": { + "status": "Pending", + "owner": { + "nickname": "api@groupdocs.com", + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": null, + "claimed_id": null, + "token": null, + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 0, + "signedinOn": 0, + "signin_count": null, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": null + }, + "sharers": [ + + ], + "shared_on": 0, + "name": "document_one.doc", + "version": 1, + "size": 9216, + "type": "Words", + "type_str": "Words", + "file_type_str": "Doc", + "document_path": null, + "access": "Private", + "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/1103d08eb954ff821c5dbb216320e3b66e460ea68f69c51620408c49f170c3d4", + "file_type": "Doc", + "id": 131854, + "guid": "1103d08eb954ff821c5dbb216320e3b66e460ea68f69c51620408c49f170c3d4" + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329727671 +} \ No newline at end of file diff --git a/src/test/resources/responses/document/ShareDocument.json b/src/test/resources/responses/document/ShareDocument.json new file mode 100644 index 0000000..162abb6 --- /dev/null +++ b/src/test/resources/responses/document/ShareDocument.json @@ -0,0 +1,207 @@ +{ + "result": { + "owner": { + "nickname": "api@groupdocs.com", + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", + "claimed_id": null, + "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", + "storage": null, + "photo": null, + "active": false, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1381234750823, + "signedinOn": 1382132641813, + "signin_count": 5, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" + }, + "shared_users": [ + { + "nickname": "user_one@nonexistent.com", + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": "user_one@nonexistent.com", + "claimed_id": null, + "token": "ae2e0dc90c4c8f0eecf1210f1b99bfe4c4665782b58c5fdeb88e7a0758fdb081", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1340364980483, + "signedinOn": 0, + "signin_count": null, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 435, + "guid": "594f22ae2d322b9c", + "primary_email": "user_one@nonexistent.com" + }, + { + "nickname": "user_two@nonexistent.com", + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": "user_two@nonexistent.com", + "claimed_id": null, + "token": "c348b143c91f799b625bda3cbde53e73189495dc9cd8cec2de03f53c65814730", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1340365001703, + "signedinOn": 0, + "signin_count": null, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 436, + "guid": "3cddd20d6eff25cd", + "primary_email": "user_two@nonexistent.com" + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329742657 +} \ No newline at end of file diff --git a/src/test/resources/responses/document/ShareFolder.json b/src/test/resources/responses/document/ShareFolder.json new file mode 100644 index 0000000..1f437b5 --- /dev/null +++ b/src/test/resources/responses/document/ShareFolder.json @@ -0,0 +1,207 @@ +{ + "result": { + "owner": { + "nickname": "api@groupdocs.com", + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", + "claimed_id": null, + "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", + "storage": null, + "photo": null, + "active": false, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1381234750823, + "signedinOn": 1382132641813, + "signin_count": 5, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" + }, + "shared_users": [ + { + "nickname": "user_one@nonexistent.com", + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": "user_one@nonexistent.com", + "claimed_id": null, + "token": "ae2e0dc90c4c8f0eecf1210f1b99bfe4c4665782b58c5fdeb88e7a0758fdb081", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1340364980483, + "signedinOn": 0, + "signin_count": null, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 435, + "guid": "594f22ae2d322b9c", + "primary_email": "user_one@nonexistent.com" + }, + { + "nickname": "user_two@nonexistent.com", + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": "user_two@nonexistent.com", + "claimed_id": null, + "token": "c348b143c91f799b625bda3cbde53e73189495dc9cd8cec2de03f53c65814730", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1340365001703, + "signedinOn": 0, + "signin_count": null, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 436, + "guid": "3cddd20d6eff25cd", + "primary_email": "user_two@nonexistent.com" + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329759013 +} \ No newline at end of file diff --git a/src/test/resources/responses/document/UnshareDocument.json b/src/test/resources/responses/document/UnshareDocument.json new file mode 100644 index 0000000..7a8ed4b --- /dev/null +++ b/src/test/resources/responses/document/UnshareDocument.json @@ -0,0 +1,74 @@ +{ + "result": { + "owner": { + "nickname": "api@groupdocs.com", + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", + "claimed_id": null, + "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", + "storage": null, + "photo": null, + "active": false, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1381234750823, + "signedinOn": 1382132641813, + "signin_count": 5, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" + }, + "shared_users": null + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329776970 +} \ No newline at end of file diff --git a/src/test/resources/responses/document/UnshareFolder.json b/src/test/resources/responses/document/UnshareFolder.json new file mode 100644 index 0000000..d6e2526 --- /dev/null +++ b/src/test/resources/responses/document/UnshareFolder.json @@ -0,0 +1,74 @@ +{ + "result": { + "owner": { + "nickname": "api@groupdocs.com", + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", + "claimed_id": null, + "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", + "storage": null, + "photo": null, + "active": false, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1381234750823, + "signedinOn": 1382132641813, + "signin_count": 5, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" + }, + "shared_users": null + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383329785784 +} \ No newline at end of file diff --git a/src/test/resources/responses/merge/AddDataSource.json b/src/test/resources/responses/merge/AddDataSource.json index 996508e..2412f79 100644 --- a/src/test/resources/responses/merge/AddDataSource.json +++ b/src/test/resources/responses/merge/AddDataSource.json @@ -1,8 +1,8 @@ { "result": { - "datasource_id": 21915 + "datasource_id": 4018 }, "status": "Ok", "error_message": null, - "composedOn": 1375211108509 + "composedOn": 1383329797563 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/AddDocumentQuestionnaire.json b/src/test/resources/responses/merge/AddDocumentQuestionnaire.json index dac1b71..c4d43f3 100644 --- a/src/test/resources/responses/merge/AddDocumentQuestionnaire.json +++ b/src/test/resources/responses/merge/AddDocumentQuestionnaire.json @@ -1,11 +1,11 @@ { "result": { - "document_id": 317869, - "questionnaire_id": 66744, + "document_id": 131861, + "questionnaire_id": 13729, "questionnaire_guid": null, "adjusted_name": null }, "status": "Ok", "error_message": null, - "composedOn": 1375211187728 + "composedOn": 1383329811925 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/AddJobDocumentDataSource.json b/src/test/resources/responses/merge/AddJobDocumentDataSource.json index 64e2df9..c1a00a2 100644 --- a/src/test/resources/responses/merge/AddJobDocumentDataSource.json +++ b/src/test/resources/responses/merge/AddJobDocumentDataSource.json @@ -1,10 +1,10 @@ { "result": { - "job_id": 802165, - "document_id": 317869, - "datasource_id": 21918 + "job_id": 128205, + "document_id": 131866, + "datasource_id": 4021 }, "status": "Ok", "error_message": null, - "composedOn": 1375211291650 + "composedOn": 1383329830787 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/AddQuestionnaireCollector.json b/src/test/resources/responses/merge/AddQuestionnaireCollector.json index 769b72f..e21a11d 100644 --- a/src/test/resources/responses/merge/AddQuestionnaireCollector.json +++ b/src/test/resources/responses/merge/AddQuestionnaireCollector.json @@ -1,10 +1,10 @@ { "result": { - "questionnaire_id": 66752, - "collector_id": 23377, - "collector_guid": "8256cb47482d604ce080eb661265e6eb" + "questionnaire_id": 13737, + "collector_id": 7017, + "collector_guid": "a8ea74488b87ceef53ca4ccef683993e" }, "status": "Ok", "error_message": null, - "composedOn": 1375211393755 + "composedOn": 1383329851562 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/AddQuestionnaireExecution.json b/src/test/resources/responses/merge/AddQuestionnaireExecution.json index d591473..b9a60dd 100644 --- a/src/test/resources/responses/merge/AddQuestionnaireExecution.json +++ b/src/test/resources/responses/merge/AddQuestionnaireExecution.json @@ -1,10 +1,10 @@ { "result": { - "collector_id": 23385, - "execution_id": 20987, - "execution_guid": "027cf53708caaceb8b4f3d529902ca4e" + "collector_id": 7024, + "execution_id": 5171, + "execution_guid": "6624877073ed9ca09f9b04e8c6c19db0" }, "status": "Ok", "error_message": null, - "composedOn": 1375211553819 + "composedOn": 1383329878010 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/CreateDocumentQuestionnaire.json b/src/test/resources/responses/merge/CreateDocumentQuestionnaire.json index 4ec4af9..14d513a 100644 --- a/src/test/resources/responses/merge/CreateDocumentQuestionnaire.json +++ b/src/test/resources/responses/merge/CreateDocumentQuestionnaire.json @@ -1,11 +1,11 @@ { "result": { - "document_id": 325150, - "questionnaire_id": 66767, - "questionnaire_guid": "3069044fb198d84a0f8abf912df1465e", - "adjusted_name": "New Questionnaire (208)" + "document_id": 131887, + "questionnaire_id": 13751, + "questionnaire_guid": "ff9de8501545cbaf7d801170a65f54a8", + "adjusted_name": "New Questionnaire" }, "status": "Ok", "error_message": null, - "composedOn": 1375211687678 + "composedOn": 1383329905548 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/CreateQuestionnaire.json b/src/test/resources/responses/merge/CreateQuestionnaire.json index 82dc977..79f499f 100644 --- a/src/test/resources/responses/merge/CreateQuestionnaire.json +++ b/src/test/resources/responses/merge/CreateQuestionnaire.json @@ -1,10 +1,10 @@ { "result": { - "questionnaire_id": 66773, - "questionnaire_guid": "7d49d0b2a279226ac513c9137f0ed924", - "adjusted_name": "New Questionnaire (214)" + "questionnaire_id": 13757, + "questionnaire_guid": "2203d3e53e1781d6fda86bcce8e1693d", + "adjusted_name": "New Questionnaire" }, "status": "Ok", "error_message": null, - "composedOn": 1375211749678 + "composedOn": 1383329920356 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/DeleteQuestionnaireCollector.json b/src/test/resources/responses/merge/DeleteQuestionnaireCollector.json index 6b5acbe..b6e4e95 100644 --- a/src/test/resources/responses/merge/DeleteQuestionnaireCollector.json +++ b/src/test/resources/responses/merge/DeleteQuestionnaireCollector.json @@ -1,9 +1,9 @@ { "result": { - "questionnaire_id": 66777, - "collector_id": 23392 + "questionnaire_id": 13761, + "collector_id": 7031 }, "status": "Ok", "error_message": null, - "composedOn": 1375211809569 + "composedOn": 1383329931329 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/DeleteQuestionnaireExecution.json b/src/test/resources/responses/merge/DeleteQuestionnaireExecution.json index 03b5cd3..4170aa7 100644 --- a/src/test/resources/responses/merge/DeleteQuestionnaireExecution.json +++ b/src/test/resources/responses/merge/DeleteQuestionnaireExecution.json @@ -1,9 +1,9 @@ { "result": { - "collector_id": 23396, - "execution_id": 20994 + "collector_id": 7035, + "execution_id": 5178 }, "status": "Ok", "error_message": null, - "composedOn": 1375211907850 + "composedOn": 1383329950034 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetDataSource.json b/src/test/resources/responses/merge/GetDataSource.json index 3a44b7f..e6d9029 100644 --- a/src/test/resources/responses/merge/GetDataSource.json +++ b/src/test/resources/responses/merge/GetDataSource.json @@ -1,8 +1,8 @@ { "result": { "datasource": { - "id": 21922, - "questionnaire_id": 66786, + "id": 4025, + "questionnaire_id": 13770, "descr": "Description", "fields": [ { @@ -16,11 +16,11 @@ "nested_fields": null } ], - "created_on": 1375212023334, - "modified_on": 1375212023397 + "created_on": 1383329973557, + "modified_on": 1383329973587 } }, "status": "Ok", "error_message": null, - "composedOn": 1375212023663 + "composedOn": 1383329973865 } \ 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..2893c53 100644 --- a/src/test/resources/responses/merge/GetDocumentQuestionnaires.json +++ b/src/test/resources/responses/merge/GetDocumentQuestionnaires.json @@ -1,1967 +1,11 @@ { "result": { - "document_id": 317869, + "document_id": 131921, "questionnaires": [ - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - ], - "id": 65037, - "guid": "cc30ac78109970d85d4893108682949c", - "name": "Test Questionnaire (3)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373693966920, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65038, - "guid": "cecca4bd695d763e6af45451b5083b2e", - "name": "Test Questionnaire (4)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373693970797, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65039, - "guid": "d127df78f77092d746df244e84e85543", - "name": "Test Questionnaire (5)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373693974693, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65040, - "guid": "85ccde3aaf5cb88c710e78ea126f5c68", - "name": "Test Questionnaire (6)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373693979233, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": [ - "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" - ], - "formats": [ - - ], - "id": 65090, - "guid": "efcaf18442371fda5e19f2a0969af631", - "name": "Test Questionnaire (46)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373694230697, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65192, - "guid": "2130b24aa8782a06d207a8ee1e530c79", - "name": "Test Questionnaire (131)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373741420243, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65193, - "guid": "0fb4e4f7788755f234e9e1b8caafa457", - "name": "Test Questionnaire (132)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373741425603, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65194, - "guid": "b36af52afeba73af930266f7912bc522", - "name": "Test Questionnaire (133)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373741430557, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65195, - "guid": "e5a2efe41e70fa0fc875522d1c22121d", - "name": "Test Questionnaire (134)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373741437540, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": [ - "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" - ], - "formats": [ - - ], - "id": 65245, - "guid": "f1165a8cdfb4dd5c5264b9dad419e9d6", - "name": "Test Questionnaire (174)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373741739300, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65347, - "guid": "9d6914f676bafbc8ab25a4431fad65af", - "name": "Test Questionnaire (259)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373780434070, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65348, - "guid": "cb0c8f0562272a4b6113a95ef629fc32", - "name": "Test Questionnaire (260)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373780441230, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65349, - "guid": "85823d049fb7df3697ee061d0536262a", - "name": "Test Questionnaire (261)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373780449803, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65350, - "guid": "7b49db528f83fed96287fb0ca8dc0558", - "name": "Test Questionnaire (262)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373780461357, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": [ - "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" - ], - "formats": [ - - ], - "id": 65400, - "guid": "7abc6fb66aa7724480ba85e5fd531d55", - "name": "Test Questionnaire (302)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373780878867, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65502, - "guid": "1ef22d9702131e427693061d8b46c8fb", - "name": "Test Questionnaire (387)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373866901253, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65503, - "guid": "830a19305553b76a815918477de4ca4f", - "name": "Test Questionnaire (388)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373866909307, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65504, - "guid": "616cd33ee7d1e1ae5ba28829550b19a7", - "name": "Test Questionnaire (389)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373866917493, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65505, - "guid": "dc2dca6ae9915b1d66db28d7120243ca", - "name": "Test Questionnaire (390)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373866928150, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": [ - "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" - ], - "formats": [ - - ], - "id": 65555, - "guid": "75e3db1c8da3204ebbeee280d1c58aeb", - "name": "Test Questionnaire (430)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373867372953, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65656, - "guid": "71c0b64380c41b8fafa0cf31a662d1ba", - "name": "Test Questionnaire (514)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373953445447, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65657, - "guid": "99e92571e31f0ca9c599926cd304597c", - "name": "Test Questionnaire (515)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373953456370, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65658, - "guid": "da259d98fcd0b9c84dd797d5bd240d97", - "name": "Test Questionnaire (516)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373953466963, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65659, - "guid": "597569ca2251366d659b7dfaee0edd9d", - "name": "Test Questionnaire (517)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373953485387, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": [ - "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" - ], - "formats": [ - - ], - "id": 65709, - "guid": "dee637993b7523810a35bd61f3f46398", - "name": "Test Questionnaire (557)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1373954073697, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65811, - "guid": "409bb38dcc3ce947d62957d9f98ccd7b", - "name": "Test Questionnaire (642)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1374034019980, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65812, - "guid": "ab2fd7e8f73c84fd31a20dbb3aec66ef", - "name": "Test Questionnaire (643)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1374034032647, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65813, - "guid": "550f9fe05d5843474a0199f7db142bf0", - "name": "Test Questionnaire (644)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1374034044757, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 65814, - "guid": "f2b703e89d4b7443378014acb82bd6b5", - "name": "Test Questionnaire (645)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1374034060990, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": [ - "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" - ], - "formats": [ - - ], - "id": 65864, - "guid": "32fcc9538b022e70372ee589fe37c84c", - "name": "Test Questionnaire (685)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1374034687263, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 66431, - "guid": "66480838c64bbe75cd83bf03df896489", - "name": "Test Questionnaire (770)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1374064278627, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 66432, - "guid": "19792a12d4eebd7c4719933fe7ca787a", - "name": "Test Questionnaire (771)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1374064294313, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 66433, - "guid": "48732590d19ad556a62ace2b5a0215ac", - "name": "Test Questionnaire (772)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1374064308300, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 66434, - "guid": "d676966ab0f2271a0dea336b133404b6", - "name": "Test Questionnaire (773)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1374064332173, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": [ - "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" - ], - "formats": [ - - ], - "id": 66484, - "guid": "13332812056b42adc7a1f3f3d972abc7", - "name": "Test Questionnaire (813)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1374065085247, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 66589, - "guid": "350e31bc77a3a626dc1e86bdb8dbfe01", - "name": "Test Questionnaire (899)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1375124949303, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 66590, - "guid": "74542e490e9a267c808c1f4717c97e72", - "name": "Test Questionnaire (900)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1375124963613, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 66591, - "guid": "7593923a3210023d9d5bab56f2402159", - "name": "Test Questionnaire (901)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1375124977457, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 66592, - "guid": "c7a1260aa8b1b5272286e16c97b1c727", - "name": "Test Questionnaire (902)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1375124997317, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": [ - "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" - ], - "formats": [ - - ], - "id": 66642, - "guid": "2b19f7b7738e574e2a6ae54086e2d3b4", - "name": "Test Questionnaire (942)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1375125954350, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 66744, - "guid": "5e87ca755487aa2743a2c3755be0f9d1", - "name": "Test Questionnaire (1027)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1375211187027, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 66745, - "guid": "b3a65377ce2b032aff82025b60aa3835", - "name": "Test Questionnaire (1028)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1375211203527, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - - ], - "id": 66746, - "guid": "b8602b2e5b1fec3d35273ee6d21792c3", - "name": "Test Questionnaire (1029)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1375211219777, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - }, - { - "resolved_executions": 0, - "pages": [ - { - "number": 1, - "title": "Page", - "questions": [ - { - "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "text": "Text", - "def_answer": "Answer", - "required": true, - "disabled": false, - "type": "GenericText", - "answers": [ - { - "text": "Text", - "value": "Value" - } - ], - "conditions": null - } - ] - } - ], - "document_ids": null, - "formats": [ - "Pdf", - "Xps", - "Tiff", - "Jpeg", - "Jpg", - "Txt" - ], - "id": 66747, - "guid": "7ece1ddcf52490b6ea84fcd6dfaff479", - "name": "Test Questionnaire (1030)", - "descr": "Test Questionnaire Description", - "status": "Ready", - "assigned_questions": 1, - "total_questions": 1, - "modified": 1375211242103, - "expires": 0, - "folder": null, - "emails": null, - "output_format": null, - "open_on_completion": false, - "allowed_operations": null - } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375212226053 + "composedOn": 1383330012330 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaire.json b/src/test/resources/responses/merge/GetQuestionnaire.json index 211cb5b..6e6da6b 100644 --- a/src/test/resources/responses/merge/GetQuestionnaire.json +++ b/src/test/resources/responses/merge/GetQuestionnaire.json @@ -25,18 +25,20 @@ ] } ], - "document_ids": null, + "document_ids": [ + + ], "formats": [ ], - "id": 66846, - "guid": "d295826a5c1c941106c75237fabb31f5", - "name": "Test Questionnaire (1119)", + "id": 13829, + "guid": "4888a1461cf94e8b2cc36009db82860f", + "name": "Test Questionnaire", "descr": "Test Questionnaire Description", "status": "Ready", "assigned_questions": 1, "total_questions": 1, - "modified": 1375213454127, + "modified": 1383330248407, "expires": 0, "folder": null, "emails": null, @@ -47,5 +49,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375213454720 + "composedOn": 1383330249020 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireCollector.json b/src/test/resources/responses/merge/GetQuestionnaireCollector.json index 9d2639a..84a7e64 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireCollector.json +++ b/src/test/resources/responses/merge/GetQuestionnaireCollector.json @@ -1,19 +1,19 @@ { "result": { "collector": { - "id": 23402, - "guid": "47fbcd1b7b1b887d61cc1e1d64460d2c", + "id": 7041, + "guid": "4931d0b704f569de92fa702dce71677e", "type": "Link", "status": "Active", - "questionnaire_id": 66800, + "questionnaire_id": 13784, "resolved_executions": 0, "emails": [ ], - "modified": 1375212421257 + "modified": 1383330043057 } }, "status": "Ok", "error_message": null, - "composedOn": 1375212421506 + "composedOn": 1383330043298 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireCollectorExecutions.json b/src/test/resources/responses/merge/GetQuestionnaireCollectorExecutions.json index 5a9a61a..787d23a 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireCollectorExecutions.json +++ b/src/test/resources/responses/merge/GetQuestionnaireCollectorExecutions.json @@ -1,32 +1,32 @@ { "result": { - "questionnaire_guid": "491c35145d30916144f5fa6e0941fd90", + "questionnaire_guid": "a2b53e8bc8ac73295485b9c88789fdf6", "executions": [ { "status": "Draft", - "guid": "d5e362662535343861fad1dddc85749c", - "collector_id": 23401, - "collector_guid": "2444bf4c0dc68eda0db3b21b3ba8095d", - "questionnaire_name": "Test Questionnaire (1072)", + "guid": "ccaf6464af1d8309a5a3978996e39c03", + "collector_id": 7040, + "collector_guid": "4a6fe32cc688c557c9380444d1939a50", + "questionnaire_name": "Test Questionnaire", "owner": { - "id": 167, - "guid": "ea103bbe8cb8ce07", - "primary_email": "api-tests@groupdocs.com" + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" }, "executive": { - "id": 167, - "guid": "ea103bbe8cb8ce07", - "primary_email": "api-tests@groupdocs.com" + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" }, "approver": null, "datasource_id": null, - "id": 20998, - "modified": 1375212369320, + "id": 5182, + "modified": 1383330034113, "document": null } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375212369569 + "composedOn": 1383330034467 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireCollectors.json b/src/test/resources/responses/merge/GetQuestionnaireCollectors.json index ac26701..e9b16e4 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireCollectors.json +++ b/src/test/resources/responses/merge/GetQuestionnaireCollectors.json @@ -2,20 +2,20 @@ "result": { "collectors": [ { - "id": 23400, - "guid": "285ab572ef02721c162ebcc41cfce675", + "id": 7039, + "guid": "017867d68e64291ec42aec31b8ed3637", "type": "Link", "status": "Active", - "questionnaire_id": 66798, + "questionnaire_id": 13782, "resolved_executions": 0, "emails": [ ], - "modified": 1375212318773 + "modified": 1383330025407 } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375212319022 + "composedOn": 1383330025697 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireDataSources.json b/src/test/resources/responses/merge/GetQuestionnaireDataSources.json index 18976b7..021fcd0 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireDataSources.json +++ b/src/test/resources/responses/merge/GetQuestionnaireDataSources.json @@ -6,5 +6,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375212469788 + "composedOn": 1383330051518 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireExecution.json b/src/test/resources/responses/merge/GetQuestionnaireExecution.json index 65764be..0ac53f7 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireExecution.json +++ b/src/test/resources/responses/merge/GetQuestionnaireExecution.json @@ -25,18 +25,20 @@ ] } ], - "document_ids": null, + "document_ids": [ + + ], "formats": [ ], - "id": 66812, - "guid": "9108c81ad5753fda73bf523b016270a7", - "name": "Test Questionnaire (1085)", + "id": 13796, + "guid": "873e50f40fd3e07673deadd669cbadf5", + "name": "Test Questionnaire", "descr": "Test Questionnaire Description", "status": "Ready", "assigned_questions": 1, "total_questions": 1, - "modified": 1375212725413, + "modified": 1383330097303, "expires": 0, "folder": null, "emails": null, @@ -46,28 +48,28 @@ }, "execution": { "status": "Draft", - "guid": "faa1a1513b08db2ec00effe3ca46219c", - "collector_id": 23404, - "collector_guid": "60e2ce9f8e76f52a6d30fb42b1229afa", - "questionnaire_name": "Test Questionnaire (1085)", + "guid": "8237cb9a273d9239c61564867e053825", + "collector_id": 7043, + "collector_guid": "41d5fb18de072b580feb9a41bb4fbc13", + "questionnaire_name": "Test Questionnaire", "owner": { - "id": 167, - "guid": "ea103bbe8cb8ce07", - "primary_email": "api-tests@groupdocs.com" + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" }, "executive": { - "id": 167, - "guid": "ea103bbe8cb8ce07", - "primary_email": "api-tests@groupdocs.com" + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" }, "approver": null, "datasource_id": null, - "id": 21000, - "modified": 1375212727320, + "id": 5184, + "modified": 1383330098870, "document": null } }, "status": "Ok", "error_message": null, - "composedOn": 1375212727616 + "composedOn": 1383330099157 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireExecutions.json b/src/test/resources/responses/merge/GetQuestionnaireExecutions.json index 4cd0a6c..7fd9b94 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireExecutions.json +++ b/src/test/resources/responses/merge/GetQuestionnaireExecutions.json @@ -1,32 +1,32 @@ { "result": { - "questionnaire_guid": "5288badbf00e34acca2b524432089a4a", + "questionnaire_guid": "66bb348d8935970351c0e27534c7878a", "executions": [ { "status": "Draft", - "guid": "f440ad3ae61f71c41fbeec1170f0f577", - "collector_id": 23403, - "collector_guid": "3ca1b6383c2784b02b327602d164d8c5", - "questionnaire_name": "Test Questionnaire (1084)", + "guid": "6bda2ff761e5caf01d70fa1e4a08b834", + "collector_id": 7042, + "collector_guid": "ef0c467a2fe6b6a8f15a89fba9c0b5bc", + "questionnaire_name": "Test Questionnaire", "owner": { - "id": 167, - "guid": "ea103bbe8cb8ce07", - "primary_email": "api-tests@groupdocs.com" + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" }, "executive": { - "id": 167, - "guid": "ea103bbe8cb8ce07", - "primary_email": "api-tests@groupdocs.com" + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" }, "approver": null, "datasource_id": null, - "id": 20999, - "modified": 1375212676693, + "id": 5183, + "modified": 1383330089953, "document": null } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375212677022 + "composedOn": 1383330090256 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireFields.json b/src/test/resources/responses/merge/GetQuestionnaireFields.json index 8cc10b8..0d26a6c 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireFields.json +++ b/src/test/resources/responses/merge/GetQuestionnaireFields.json @@ -11,5 +11,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375213354001 + "composedOn": 1383330232498 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireMetadata.json b/src/test/resources/responses/merge/GetQuestionnaireMetadata.json index 770ba2d..1ec67bf 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireMetadata.json +++ b/src/test/resources/responses/merge/GetQuestionnaireMetadata.json @@ -1,14 +1,14 @@ { "result": { "questionnaire": { - "id": 66845, - "guid": "9a0112fa9de14991787d88b85d0fd74f", - "name": "Test Questionnaire (1118)", + "id": 13828, + "guid": "58fe8c2a26e0e0838b04b84fb250d5c3", + "name": "Test Questionnaire", "descr": "Test Questionnaire Description", "status": "Ready", "assigned_questions": 1, "total_questions": 1, - "modified": 1375213402690, + "modified": 1383330239523, "expires": 0, "folder": null, "emails": null, @@ -19,5 +19,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375213403439 + "composedOn": 1383330240011 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetTemplates.json b/src/test/resources/responses/merge/GetTemplates.json index e8e8f6b..9bfcc96 100644 --- a/src/test/resources/responses/merge/GetTemplates.json +++ b/src/test/resources/responses/merge/GetTemplates.json @@ -4,12 +4,14 @@ { "name": "document_one_with_fields.pdf", "field_count": 42, - "id": 324660, - "guid": "4fd1c98cc2a8a69bfc5d166967675541af1887588e26a0e5911829a90cf54828" + "size": 109410, + "upload_time": 1383330254720, + "id": 131980, + "guid": "11e14fc78a88857b9d138b75ee10dbb9e1e510a27b06aa6bacbc1717410bed68" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375213488533 + "composedOn": 1383330255402 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/MergeDatasource.json b/src/test/resources/responses/merge/MergeDatasource.json index bb3d7bc..a4f8231 100644 --- a/src/test/resources/responses/merge/MergeDatasource.json +++ b/src/test/resources/responses/merge/MergeDatasource.json @@ -1,10 +1,10 @@ { "result": { - "job_id": 802282, - "document_id": 317869, - "datasource_id": 21948 + "job_id": 128320, + "document_id": 131994, + "datasource_id": 4051 }, "status": "Ok", "error_message": null, - "composedOn": 1375213608142 + "composedOn": 1383330280635 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/MergeDatasourceFields.json b/src/test/resources/responses/merge/MergeDatasourceFields.json index 71c9d97..d289b3a 100644 --- a/src/test/resources/responses/merge/MergeDatasourceFields.json +++ b/src/test/resources/responses/merge/MergeDatasourceFields.json @@ -1,10 +1,10 @@ { "result": { - "job_id": 802270, - "document_id": 325150, - "datasource_id": 21942 + "job_id": 128308, + "document_id": 131981, + "datasource_id": 4045 }, "status": "Ok", "error_message": null, - "composedOn": 1375213521767 + "composedOn": 1383330261064 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/UpdateDataSource.json b/src/test/resources/responses/merge/UpdateDataSource.json index 534a121..2ce237b 100644 --- a/src/test/resources/responses/merge/UpdateDataSource.json +++ b/src/test/resources/responses/merge/UpdateDataSource.json @@ -1,8 +1,8 @@ { "result": { - "datasource_id": 21954 + "datasource_id": 4057 }, "status": "Ok", "error_message": null, - "composedOn": 1375213775345 + "composedOn": 1383330311259 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/UpdateQuestionnaire.json b/src/test/resources/responses/merge/UpdateQuestionnaire.json index 83fa042..93c326f 100644 --- a/src/test/resources/responses/merge/UpdateQuestionnaire.json +++ b/src/test/resources/responses/merge/UpdateQuestionnaire.json @@ -1,8 +1,8 @@ { "result": { - "questionnaire_id": 66879 + "questionnaire_id": 13862 }, "status": "Ok", "error_message": null, - "composedOn": 1375214426158 + "composedOn": 1383330442474 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/UpdateQuestionnaireCollector.json b/src/test/resources/responses/merge/UpdateQuestionnaireCollector.json index 93090d1..d178838 100644 --- a/src/test/resources/responses/merge/UpdateQuestionnaireCollector.json +++ b/src/test/resources/responses/merge/UpdateQuestionnaireCollector.json @@ -1,8 +1,8 @@ { "result": { - "collector_id": 23436 + "collector_id": 7074 }, "status": "Ok", "error_message": null, - "composedOn": 1375213882470 + "composedOn": 1383330330381 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/UpdateQuestionnaireExecution.json b/src/test/resources/responses/merge/UpdateQuestionnaireExecution.json index b261cbe..d648dcb 100644 --- a/src/test/resources/responses/merge/UpdateQuestionnaireExecution.json +++ b/src/test/resources/responses/merge/UpdateQuestionnaireExecution.json @@ -1,8 +1,8 @@ { "result": { - "execution_id": 21032 + "execution_id": 5215 }, "status": "Ok", "error_message": null, - "composedOn": 1375214005330 + "composedOn": 1383330353593 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/UpdateQuestionnaireExecutionStatus.json b/src/test/resources/responses/merge/UpdateQuestionnaireExecutionStatus.json index 2db65e5..bc4cf73 100644 --- a/src/test/resources/responses/merge/UpdateQuestionnaireExecutionStatus.json +++ b/src/test/resources/responses/merge/UpdateQuestionnaireExecutionStatus.json @@ -1,8 +1,8 @@ { "result": { - "execution_id": 21040 + "execution_id": 5223 }, "status": "Ok", "error_message": null, - "composedOn": 1375214190392 + "composedOn": 1383330395068 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddContact.json b/src/test/resources/responses/signature/AddContact.json index ea659bd..05a2605 100644 --- a/src/test/resources/responses/signature/AddContact.json +++ b/src/test/resources/responses/signature/AddContact.json @@ -1,14 +1,14 @@ { "result": { "contact": { - "id": "df32684608b8493a164d79451dec0a96", + "id": "32c96869e2c8273957c7ba5943f0e60b", "firstName": "John", "lastName": "Smith", - "email": "user_one_996782329062215@mailinator.com", + "email": "user_one_14877360212805524@mailinator.com", "provider": "Groupdocs" } }, "status": "Ok", "error_message": null, - "composedOn": 1375214794939 + "composedOn": 1383330504652 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddContactIntegration.json b/src/test/resources/responses/signature/AddContactIntegration.json index 22e3af4..3515cd8 100644 --- a/src/test/resources/responses/signature/AddContactIntegration.json +++ b/src/test/resources/responses/signature/AddContactIntegration.json @@ -1,6 +1,7 @@ { - "result": null, - "status": null, - "error_message": null, - "composedOn": null + "result": { + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383330499404 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddPredefinedList.json b/src/test/resources/responses/signature/AddPredefinedList.json index 5c8eb70..d92fd53 100644 --- a/src/test/resources/responses/signature/AddPredefinedList.json +++ b/src/test/resources/responses/signature/AddPredefinedList.json @@ -1,13 +1,13 @@ { "result": { "list": { - "id": "c1fe03372d1db4131f8a35a3aadb425d", - "name": "List - 8434865226745041", + "id": "66100d8d38286c6ca5eb53fbd9509022", + "name": "List - 5406043595139229", "values": "value1;value2", "defaultValue": "value1" } }, "status": "Ok", "error_message": null, - "composedOn": 1375214830575 + "composedOn": 1383330514717 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddSignatureEnvelopeDocument.json b/src/test/resources/responses/signature/AddSignatureEnvelopeDocument.json index 86c1d67..78b1eac 100644 --- a/src/test/resources/responses/signature/AddSignatureEnvelopeDocument.json +++ b/src/test/resources/responses/signature/AddSignatureEnvelopeDocument.json @@ -1,11 +1,11 @@ { "result": { - "envelopeId": "2346321ea0492d2dd1ac9de915c24dd3", + "envelopeId": "042ec276737be795b2f6951bd18aab3f", "document": { - "documentId": "f031d102c275cda523686ae98f96ece9d9632ac669090c938fe291cf706c6ecc", - "envelopeId": "2346321ea0492d2dd1ac9de915c24dd3", + "documentId": "3b011135dc346f035eab90a0bc0fa654917e57d75a6d2c0e82a97a1b0b45b1ae", + "envelopeId": "042ec276737be795b2f6951bd18aab3f", "order": 0, - "name": "document_one.doc", + "name": "document_one_doc.pdf", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "finalDocumentMD5": "", "originalDocumentPagesCount": 1, @@ -13,10 +13,10 @@ "originalDocumentImportedFields": [ ], - "originalDocumentId": "f031d102c275cda523686ae98f96ece9d9632ac669090c938fe291cf706c6ecc" + "originalDocumentId": "3b011135dc346f035eab90a0bc0fa654917e57d75a6d2c0e82a97a1b0b45b1ae" } }, "status": "Ok", "error_message": null, - "composedOn": 1375214883215 + "composedOn": 1383330530955 } \ 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..c220419 100644 --- a/src/test/resources/responses/signature/AddSignatureEnvelopeField.json +++ b/src/test/resources/responses/signature/AddSignatureEnvelopeField.json @@ -1,11 +1,10 @@ { "result": { - "envelopeId": "0cd5d92195bcde2133abc831856c3c0b", + "envelopeId": "643bd335f61e530116e38ca01ba0e84a", "fields": [ ] }, "status": "Ok", - "error_message": null, - "composedOn": 1375214942918 + "composedOn": 1383330566521 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddSignatureEnvelopeRecipient.json b/src/test/resources/responses/signature/AddSignatureEnvelopeRecipient.json index eab99b3..829f196 100644 --- a/src/test/resources/responses/signature/AddSignatureEnvelopeRecipient.json +++ b/src/test/resources/responses/signature/AddSignatureEnvelopeRecipient.json @@ -1,17 +1,17 @@ { "result": { - "envelopeId": "3e0250b180c6ecb0cfae5281d0ac6a64", + "envelopeId": "83fe8616518c226a4a3813e2ac83406f", "recipient": { - "id": "8215458f3af1f22c0c6f40b6f42dc747", + "id": "e5ded2d3e09b8268e5575670b5532b6a", "firstName": "John", "lastName": "Smith", - "email": "recipient-6207312293153898@mailinator.com", + "email": "recipient-5564351491703736@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000ZZ", + "statusDateTime": "", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -22,5 +22,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375215000793 + "composedOn": 1383330602575 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddSignatureFormDocument.json b/src/test/resources/responses/signature/AddSignatureFormDocument.json index 8e7b114..05fb621 100644 --- a/src/test/resources/responses/signature/AddSignatureFormDocument.json +++ b/src/test/resources/responses/signature/AddSignatureFormDocument.json @@ -1,18 +1,18 @@ { "result": { - "formId": "ce2a2c36378ad1390731a16e634b4ee6", + "formId": "498a80476c5720f21030e2ffcc049117", "document": { - "id": "4e9de06a4ef704ae359c722609915fe3e9b5ceea6296d7b2bb467afe7ad35a2c", - "name": "document_one.doc", - "formGuid": "ce2a2c36378ad1390731a16e634b4ee6", - "documentGuid": "4e9de06a4ef704ae359c722609915fe3e9b5ceea6296d7b2bb467afe7ad35a2c", - "originalDocumentGuid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", + "id": "c16d40be6bfeceac3edfa6cb68093d8fdac28433d78a3d39ee0d58ab71eb11f4", + "name": "document_one_doc.pdf", + "formGuid": "498a80476c5720f21030e2ffcc049117", + "documentGuid": "c16d40be6bfeceac3edfa6cb68093d8fdac28433d78a3d39ee0d58ab71eb11f4", + "originalDocumentGuid": "18722d02f9451ceec08b7be5c395d84d734b395c28d61217a8996ce9aea5d78a", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", - "assignedDateTime": "2013-07-30T20:10:47.4188985ZZ", + "assignedDateTime": "2013-11-01T18:30:26.9851250ZZ", "order": 0 } }, "status": "Ok", "error_message": null, - "composedOn": 1375215046403 + "composedOn": 1383330626163 } \ 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..3035984 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": "ab7cddcb676ebffc5c47301b97573b93", + "documentId": "9789f1382a993d14938abf9e350e10c45a9c7bd10ce6aab649f4a83838710fb0", + "participantId": null, + "field": { + "id": "4fac871a1aff6d4a45584d48a3f0bf95", + "formGuid": "ab7cddcb676ebffc5c47301b97573b93", + "participantGuid": "", + "name": "Signature_1", + "mandatory": true, + "regularExpression": "^.+$", + "data": "", + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "locations": [ + { + "id": "c68458b1f907c1c029165d69bdde4b4b", + "documentGuid": "9789f1382a993d14938abf9e350e10c45a9c7bd10ce6aab649f4a83838710fb0", + "fieldGuid": "4fac871a1aff6d4a45584d48a3f0bf95", + "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 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375215104090 + ], + "fieldType": 1, + "acceptableValues": null, + "defaultValue": null, + "tooltip": "Signature_1", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383330656778 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddSignatureTemplateDocument.json b/src/test/resources/responses/signature/AddSignatureTemplateDocument.json index f275c09..5b1c241 100644 --- a/src/test/resources/responses/signature/AddSignatureTemplateDocument.json +++ b/src/test/resources/responses/signature/AddSignatureTemplateDocument.json @@ -1,18 +1,18 @@ { "result": { - "templateId": "0ef230028c012ba27ca94fcaf5c045f1", + "templateId": "114534419303120b11eb21b81ea5c47e", "document": { - "documentId": "09efad13e5dfcf7a5d8fc34bfd21f6f1ad5b5e160e293a5cbd779dd63d7cf52b", - "templateId": "0ef230028c012ba27ca94fcaf5c045f1", + "documentId": "7b856e4929cf58c7b7a8aaa6cef0aeb17f743a262546b39aeb38406a5790032d", + "templateId": "114534419303120b11eb21b81ea5c47e", "order": 0, - "name": "document_one.doc", + "name": "document_one_doc.pdf", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "originalDocumentPagesCount": 1, "fieldsCount": 0, - "originalDocumentId": "09efad13e5dfcf7a5d8fc34bfd21f6f1ad5b5e160e293a5cbd779dd63d7cf52b" + "originalDocumentId": "7b856e4929cf58c7b7a8aaa6cef0aeb17f743a262546b39aeb38406a5790032d" } }, "status": "Ok", "error_message": null, - "composedOn": 1375215157418 + "composedOn": 1383330685272 } \ 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..a53be1b 100644 --- a/src/test/resources/responses/signature/AddSignatureTemplateField.json +++ b/src/test/resources/responses/signature/AddSignatureTemplateField.json @@ -1,11 +1,41 @@ { "result": { - "templateId": "b9fd52a9023dbe1eb077c1bf3e0ee985", - "documentId": null, - "recipientId": null, - "field": null + "templateId": "90cc99ab1019ac2365bc6b10d329bbf6", + "documentId": "089ae7db282cc58b7e340c0d69f86490e945a773738aaa900e03e53c0986c3d2", + "recipientId": "2c91f450f22d34655cf668b70a358e68", + "field": { + "id": "f5a52438862bbc1b120973871392029f", + "templateId": "90cc99ab1019ac2365bc6b10d329bbf6", + "recipientId": "2c91f450f22d34655cf668b70a358e68", + "name": "Signature_1", + "mandatory": true, + "order": 0, + "regularExpression": "^.+$", + "signatureFieldId": 1, + "locations": [ + { + "id": "a6df41d9a7e8c96c457485c56b916e44", + "documentId": "089ae7db282cc58b7e340c0d69f86490e945a773738aaa900e03e53c0986c3d2", + "fieldId": "f5a52438862bbc1b120973871392029f", + "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, + "tooltip": "Signature_1", + "guidanceText": "" + } }, "status": "Ok", - "error_message": null, - "composedOn": 1375217736330 + "composedOn": 1383330718052 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddSignatureTemplateRecipient.json b/src/test/resources/responses/signature/AddSignatureTemplateRecipient.json index c761e01..dd28abd 100644 --- a/src/test/resources/responses/signature/AddSignatureTemplateRecipient.json +++ b/src/test/resources/responses/signature/AddSignatureTemplateRecipient.json @@ -1,14 +1,14 @@ { "result": { - "templateId": "eb105a7aeccf7169100630f8c2245fee", + "templateId": "46ae9541d2602d575ce9a8e21b2998ef", "recipient": { - "id": "826c585137f1fcfb942016ab87d03b23", + "id": "d74150715224aa0b3f63d80f7076fa95", "nickname": "John Smith", - "order": 0, + "order": 1, "roleId": 2 } }, "status": "Ok", "error_message": null, - "composedOn": 1375215270559 + "composedOn": 1383330750427 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ArchiveSignatureEnvelope.json b/src/test/resources/responses/signature/ArchiveSignatureEnvelope.json index 22e3af4..af0dad6 100644 --- a/src/test/resources/responses/signature/ArchiveSignatureEnvelope.json +++ b/src/test/resources/responses/signature/ArchiveSignatureEnvelope.json @@ -1,6 +1,7 @@ { - "result": null, - "status": null, - "error_message": null, - "composedOn": null + "result": { + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383330779712 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ArchiveSignatureForm.json b/src/test/resources/responses/signature/ArchiveSignatureForm.json index ef1dacc..a9bfe1f 100644 --- a/src/test/resources/responses/signature/ArchiveSignatureForm.json +++ b/src/test/resources/responses/signature/ArchiveSignatureForm.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375215310997 + "composedOn": 1383330816448 } \ 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..4b1776d 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": "408ad036b05f0c5db859a93a046addd1", + "documentId": "f55bef07203f5db6505f3cda20194a52a57ceaed4b8bb756a10906d056e82839", + "recipientId": "211b060d7cdeb61e20f3b3a43fb9c33b", + "field": { + "id": "92098ef92e8f3de69f5c616a064fe9f4", + "envelopeId": "408ad036b05f0c5db859a93a046addd1", + "recipientId": "211b060d7cdeb61e20f3b3a43fb9c33b", + "name": "Signature_1", + "mandatory": true, + "order": 0, + "regularExpression": "", + "getDataFrom": null, + "data": "", + "fillTimeStamp": "", + "signatureFieldId": 1, + "locations": [ + { + "id": "abbb492c9a33015815ab823e44ee5b33", + "documentId": "f55bef07203f5db6505f3cda20194a52a57ceaed4b8bb756a10906d056e82839", + "fieldId": "92098ef92e8f3de69f5c616a064fe9f4", + "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 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375215375043 + ], + "fieldType": 1, + "acceptableValues": null, + "defaultValue": null, + "tooltip": "Signature_1", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383330863182 } \ 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..a890ea9 100644 --- a/src/test/resources/responses/signature/AssignSignatureTemplateField.json +++ b/src/test/resources/responses/signature/AssignSignatureTemplateField.json @@ -1,22 +1,22 @@ { "result": { - "templateId": "3d5b8a8183c2303f4f39ae52482f1cea", - "documentId": "ef18ca622c70d042d0d90e0b2bd29d886b9fe63c537b80ade8dc2e12cad214ec", - "recipientId": "7e6545a640da60fd0ced9a0506be3593", + "templateId": "a505ffbc791ef66f616f11431d02f13c", + "documentId": "1336b66d7c9dd19ce13d1cf72c5b6e75999578d9858ab32ae11f3a1762970d47", + "recipientId": "821d2495f079b8e67e01665f5d8a4758", "field": { - "id": "04bc674b1ee8d501625e413bc6e75c49", - "templateId": "3d5b8a8183c2303f4f39ae52482f1cea", - "recipientId": "7e6545a640da60fd0ced9a0506be3593", - "name": "Signature", + "id": "26842366912a75c8dce11eec1eea472a", + "templateId": "a505ffbc791ef66f616f11431d02f13c", + "recipientId": "821d2495f079b8e67e01665f5d8a4758", + "name": "Signature_1", "mandatory": true, "order": 0, "regularExpression": "", "signatureFieldId": 1, "locations": [ { - "id": "5a03a46d44422facc678cdddcf632c55", - "documentId": "ef18ca622c70d042d0d90e0b2bd29d886b9fe63c537b80ade8dc2e12cad214ec", - "fieldId": "04bc674b1ee8d501625e413bc6e75c49", + "id": "7390cf291058866e4e84e1fa6cde9d99", + "documentId": "1336b66d7c9dd19ce13d1cf72c5b6e75999578d9858ab32ae11f3a1762970d47", + "fieldId": "26842366912a75c8dce11eec1eea472a", "page": 1, "locationX": 0.1, "locationY": 0.1, @@ -32,13 +32,10 @@ } ], "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Signature", + "tooltip": "Signature_1", "guidanceText": "" } }, "status": "Ok", - "error_message": null, - "composedOn": 1375215473543 + "composedOn": 1383330942429 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CancelSignatureEnvelope.json b/src/test/resources/responses/signature/CancelSignatureEnvelope.json index 22e3af4..037ef8a 100644 --- a/src/test/resources/responses/signature/CancelSignatureEnvelope.json +++ b/src/test/resources/responses/signature/CancelSignatureEnvelope.json @@ -1,6 +1,7 @@ { - "result": null, - "status": null, - "error_message": null, - "composedOn": null + "result": { + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383330995972 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CompleteSignatureForm.json b/src/test/resources/responses/signature/CompleteSignatureForm.json index fe8641a..f4f2823 100644 --- a/src/test/resources/responses/signature/CompleteSignatureForm.json +++ b/src/test/resources/responses/signature/CompleteSignatureForm.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375215549278 + "composedOn": 1383331021628 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CreateSignature.json b/src/test/resources/responses/signature/CreateSignature.json index b830228..3e6c22d 100644 --- a/src/test/resources/responses/signature/CreateSignature.json +++ b/src/test/resources/responses/signature/CreateSignature.json @@ -1,24 +1,20 @@ { - "result": { - "signature": { - "id": "04499241ae3aa5cb9a7ab9c4274c088c", - "userGuid": "ea103bbe8cb8ce07", - "recipientId": null, - "name": "Signature 3022425752990485", - "companyName": "Aspose", - "position": "QA", - "firstName": "John", - "lastName": "Smith", - "fullName": "John Smith", - "textInitials": "JS", - "signatureImageFileId": null, - "initialsImageFileId": null, - "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/04499241ae3aa5cb9a7ab9c4274c088c/signatureData", - "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/04499241ae3aa5cb9a7ab9c4274c088c/initialsData", - "createdTimeStamp": "2013-07-30T20:22:05.187" - } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375215725139 + "result": { + "signature": { + "id": "c4d44d1d7f86544d514b79de437c0597", + "userGuid": "6d75a4d4db83f6fc", + "name": "Signature 622123269984327", + "companyName": "Aspose", + "position": "QA", + "firstName": "John", + "lastName": "Smith", + "fullName": "John Smith", + "textInitials": "JS", + "signatureImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c4d44d1d7f86544d514b79de437c0597/signatureData", + "initialsImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c4d44d1d7f86544d514b79de437c0597/initialsData", + "createdTimeStamp": "2013-11-01T18:40:59.586Z" + } + }, + "status": "Ok", + "composedOn": 1383331103135 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CreateSignatureEnvelope.json b/src/test/resources/responses/signature/CreateSignatureEnvelope.json index ff1eda9..548dd26 100644 --- a/src/test/resources/responses/signature/CreateSignatureEnvelope.json +++ b/src/test/resources/responses/signature/CreateSignatureEnvelope.json @@ -1,11 +1,11 @@ { "result": { "envelope": { - "id": "30de7477eee1717aa02369b01f58e96f", - "name": "Envelope Test 8137565865601627", - "creationDateTime": "2013-07-30T20:19:51.0751485ZZ", - "updatedDateTime": "2013-07-30T20:19:51.0751485ZZ", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "c5bc4c6765d2964fb29fcba840fef642", + "name": "Envelope Test 7812232806311765", + "creationDateTime": "2013-11-01T18:37:17.6956485ZZ", + "updatedDateTime": "2013-11-01T18:37:17.6956485ZZ", + "ownerGuid": "6d75a4d4db83f6fc", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000ZZ", "reminderTime": 1, @@ -26,10 +26,10 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " } }, "status": "Ok", "error_message": null, - "composedOn": 1375215591012 + "composedOn": 1383331037654 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CreateSignatureField.json b/src/test/resources/responses/signature/CreateSignatureField.json index b5f27ae..b66febd 100644 --- a/src/test/resources/responses/signature/CreateSignatureField.json +++ b/src/test/resources/responses/signature/CreateSignatureField.json @@ -1,8 +1,8 @@ { "result": { "field": { - "id": "800c45eaedd1c508dfb2efa59a858c7e", - "name": "TestSignField22988871892044416", + "id": "2fd24249883fcdc0db2338dfce92a7e5", + "name": "TestSignField7952128628642078", "graphSizeW": 100, "graphSizeH": 100, "getDataFrom": "Test", @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375215644202 + "composedOn": 1383331061417 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CreateSignatureForm.json b/src/test/resources/responses/signature/CreateSignatureForm.json index 9ae86b9..c5e95ba 100644 --- a/src/test/resources/responses/signature/CreateSignatureForm.json +++ b/src/test/resources/responses/signature/CreateSignatureForm.json @@ -1,11 +1,11 @@ { "result": { "form": { - "id": "65c9905c452d5f857f75381fdc9b42c8", - "name": "New Form 216", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "5eb041dd113ac45bb80bbefc6bde40f5", + "name": "New Form (1)", + "ownerGuid": "6d75a4d4db83f6fc", "templateGuid": null, - "createdTimeStamp": "2013-07-30T20:21:24.6083516ZZ", + "createdTimeStamp": "2013-11-01T18:38:03.9153750ZZ", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000ZZ", "documentsCount": 0, @@ -25,5 +25,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375215684561 + "composedOn": 1383331083889 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CreateSignatureTemplate.json b/src/test/resources/responses/signature/CreateSignatureTemplate.json index 0b9b249..708e054 100644 --- a/src/test/resources/responses/signature/CreateSignatureTemplate.json +++ b/src/test/resources/responses/signature/CreateSignatureTemplate.json @@ -1,9 +1,9 @@ { "result": { "template": { - "id": "302d490491c638447c7751e548987e16", - "name": "Template Test 8120702993243918", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "a189c7748a999d7ed57b6d5b7b6946c2", + "name": "Template Test 5519202724285783", + "ownerGuid": "6d75a4d4db83f6fc", "reminderTime": 1, "stepExpireTime": 1, "templateExpireTime": 1, @@ -23,5 +23,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375215766311 + "composedOn": 1383331123518 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeclineEnvelope.json b/src/test/resources/responses/signature/DeclineEnvelope.json index c252f83..ba011c3 100644 --- a/src/test/resources/responses/signature/DeclineEnvelope.json +++ b/src/test/resources/responses/signature/DeclineEnvelope.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375215814889 + "composedOn": 1383331151690 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteContact.json b/src/test/resources/responses/signature/DeleteContact.json index 9e569a8..5dd48b7 100644 --- a/src/test/resources/responses/signature/DeleteContact.json +++ b/src/test/resources/responses/signature/DeleteContact.json @@ -4,5 +4,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375215923733 + "composedOn": 1383331217013 } \ 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..df1850a 100644 --- a/src/test/resources/responses/signature/DeletePredefinedList.json +++ b/src/test/resources/responses/signature/DeletePredefinedList.json @@ -1,13 +1,10 @@ { "result": { - "list": { - "id": "38d51389a5cd1b4a4c42fcb01ac4eaed", - "name": "List 90026545089663", - "values": "value1;value2", - "defaultValue": "value1" - } + "lists": [ + + ] }, "status": "Ok", "error_message": null, - "composedOn": 1375215957467 + "composedOn": 1383331224481 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignature.json b/src/test/resources/responses/signature/DeleteSignature.json index 888925f..ffd7bdc 100644 --- a/src/test/resources/responses/signature/DeleteSignature.json +++ b/src/test/resources/responses/signature/DeleteSignature.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216440280 + "composedOn": 1383331416046 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureEnvelope.json b/src/test/resources/responses/signature/DeleteSignatureEnvelope.json index e2333fb..cf83863 100644 --- a/src/test/resources/responses/signature/DeleteSignatureEnvelope.json +++ b/src/test/resources/responses/signature/DeleteSignatureEnvelope.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216193670 + "composedOn": 1383331334596 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureEnvelopeDocument.json b/src/test/resources/responses/signature/DeleteSignatureEnvelopeDocument.json index d87fafd..08c2ffd 100644 --- a/src/test/resources/responses/signature/DeleteSignatureEnvelopeDocument.json +++ b/src/test/resources/responses/signature/DeleteSignatureEnvelopeDocument.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375215994123 + "composedOn": 1383331234087 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureEnvelopeField.json b/src/test/resources/responses/signature/DeleteSignatureEnvelopeField.json index cb07a29..0563ea0 100644 --- a/src/test/resources/responses/signature/DeleteSignatureEnvelopeField.json +++ b/src/test/resources/responses/signature/DeleteSignatureEnvelopeField.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216106420 + "composedOn": 1383331296459 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureEnvelopeFieldLocation.json b/src/test/resources/responses/signature/DeleteSignatureEnvelopeFieldLocation.json index aa2556f..ca143ab 100644 --- a/src/test/resources/responses/signature/DeleteSignatureEnvelopeFieldLocation.json +++ b/src/test/resources/responses/signature/DeleteSignatureEnvelopeFieldLocation.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216041655 + "composedOn": 1383331257746 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureEnvelopeRecipient.json b/src/test/resources/responses/signature/DeleteSignatureEnvelopeRecipient.json index 6b8a0e0..cca7b9e 100644 --- a/src/test/resources/responses/signature/DeleteSignatureEnvelopeRecipient.json +++ b/src/test/resources/responses/signature/DeleteSignatureEnvelopeRecipient.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216153264 + "composedOn": 1383331320426 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureField.json b/src/test/resources/responses/signature/DeleteSignatureField.json index dc0fe8c..eeb9022 100644 --- a/src/test/resources/responses/signature/DeleteSignatureField.json +++ b/src/test/resources/responses/signature/DeleteSignatureField.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216227155 + "composedOn": 1383331340873 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureForm.json b/src/test/resources/responses/signature/DeleteSignatureForm.json index 84aca52..07dab23 100644 --- a/src/test/resources/responses/signature/DeleteSignatureForm.json +++ b/src/test/resources/responses/signature/DeleteSignatureForm.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216407373 + "composedOn": 1383331410452 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureFormDocument.json b/src/test/resources/responses/signature/DeleteSignatureFormDocument.json index a4fecdd..f119f86 100644 --- a/src/test/resources/responses/signature/DeleteSignatureFormDocument.json +++ b/src/test/resources/responses/signature/DeleteSignatureFormDocument.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216263811 + "composedOn": 1383331349975 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureFormField.json b/src/test/resources/responses/signature/DeleteSignatureFormField.json index e491ebc..3723b4a 100644 --- a/src/test/resources/responses/signature/DeleteSignatureFormField.json +++ b/src/test/resources/responses/signature/DeleteSignatureFormField.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216363123 + "composedOn": 1383331392696 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureFormFieldLocation.json b/src/test/resources/responses/signature/DeleteSignatureFormFieldLocation.json index 3e99f68..aa0c688 100644 --- a/src/test/resources/responses/signature/DeleteSignatureFormFieldLocation.json +++ b/src/test/resources/responses/signature/DeleteSignatureFormFieldLocation.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216310795 + "composedOn": 1383331368897 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureTemplate.json b/src/test/resources/responses/signature/DeleteSignatureTemplate.json index c99b4f6..9d7e3a9 100644 --- a/src/test/resources/responses/signature/DeleteSignatureTemplate.json +++ b/src/test/resources/responses/signature/DeleteSignatureTemplate.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216620533 + "composedOn": 1383331504050 } \ 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..0ea0c0d 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": 1383331471961 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureTemplateFieldLocation.json b/src/test/resources/responses/signature/DeleteSignatureTemplateFieldLocation.json index 1997d5a..f1e661c 100644 --- a/src/test/resources/responses/signature/DeleteSignatureTemplateFieldLocation.json +++ b/src/test/resources/responses/signature/DeleteSignatureTemplateFieldLocation.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216479155 + "composedOn": 1383331442781 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureTemplateRecipient.json b/src/test/resources/responses/signature/DeleteSignatureTemplateRecipient.json index c260013..2670323 100644 --- a/src/test/resources/responses/signature/DeleteSignatureTemplateRecipient.json +++ b/src/test/resources/responses/signature/DeleteSignatureTemplateRecipient.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216582173 + "composedOn": 1383331492240 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/FillEnvelopeField.json b/src/test/resources/responses/signature/FillEnvelopeField.json index 2e7a757..bc2f82c 100644 --- a/src/test/resources/responses/signature/FillEnvelopeField.json +++ b/src/test/resources/responses/signature/FillEnvelopeField.json @@ -1,30 +1,30 @@ { "result": { - "envelopeId": "495eb84af8354b6f809cbe21b0e94faa", - "documentId": "07f7cce3fa878ef939e917c68d029e237c9793a47e978f6efb6602673a7e6e57", - "recipientId": "f2593d2b307b4dd51bbaf28ddf7c7557", + "envelopeId": "29ba0e8bf8588cd558b9ace94bc65485", + "documentId": "a96df1d1894f1553816bb4060e7bc0289bb15c943ef3535a61db656a13d2239b", + "recipientId": "c2f9d7328c0c96ce701cb9460d7c13e1", "field": { - "id": "b54f9b9d2842958dd6486788a86b932f", - "envelopeId": "495eb84af8354b6f809cbe21b0e94faa", - "recipientId": "f2593d2b307b4dd51bbaf28ddf7c7557", - "name": "Checkbox", + "id": "6f4ceb38ad513b2ae595cf85076006f5", + "envelopeId": "29ba0e8bf8588cd558b9ace94bc65485", + "recipientId": "c2f9d7328c0c96ce701cb9460d7c13e1", + "name": "Signature_1", "mandatory": true, "order": 0, "regularExpression": "", "getDataFrom": null, - "data": "b24=", - "fillTimeStamp": "7/30/2013 8:37:40 PM", - "signatureFieldId": 10, + "data": "", + "fillTimeStamp": "11/1/2013 6:45:17 PM", + "signatureFieldId": 1, "locations": [ { - "id": "12af715a7e8c8754af6478883eade607", - "documentId": "07f7cce3fa878ef939e917c68d029e237c9793a47e978f6efb6602673a7e6e57", - "fieldId": "b54f9b9d2842958dd6486788a86b932f", + "id": "881063566d1068da895eaf5078248881", + "documentId": "a96df1d1894f1553816bb4060e7bc0289bb15c943ef3535a61db656a13d2239b", + "fieldId": "6f4ceb38ad513b2ae595cf85076006f5", "page": 1, "locationX": 0.1, "locationY": 0.1, - "locationWidth": 25.0, - "locationHeight": 25.0, + "locationWidth": 90.0, + "locationHeight": 30.0, "fontName": "Arial", "fontColor": "black", "fontSize": 10, @@ -34,14 +34,14 @@ "align": 0 } ], - "fieldType": 6, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Checkbox", + "fieldType": 1, + "acceptableValues": null, + "defaultValue": null, + "tooltip": "Signature_1", "guidanceText": "" } }, "status": "Ok", "error_message": null, - "composedOn": 1375216660533 + "composedOn": 1383331517116 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetContacts.json b/src/test/resources/responses/signature/GetContacts.json index 22e3af4..c4fc74f 100644 --- a/src/test/resources/responses/signature/GetContacts.json +++ b/src/test/resources/responses/signature/GetContacts.json @@ -1,6 +1,17 @@ { - "result": null, - "status": null, - "error_message": null, - "composedOn": null + "result": { + "count": 1, + "contacts": [ + { + "id": "13df387148922dbe4047561d8ed127cd", + "firstName": "Test", + "lastName": "User", + "email": "test-8941016934115329@mailinator.com", + "provider": "Groupdocs" + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383331615319 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetEnvelopeAuditLogs.json b/src/test/resources/responses/signature/GetEnvelopeAuditLogs.json index c3baa8f..f97537e 100644 --- a/src/test/resources/responses/signature/GetEnvelopeAuditLogs.json +++ b/src/test/resources/responses/signature/GetEnvelopeAuditLogs.json @@ -1,12 +1,12 @@ { "result": { - "envelopeId": "242cd7c2a710900d6129187fdb435c17", + "envelopeId": "7a264433bce80b5df4887f617785e066", "logs": [ { - "id": "c346f2581a1d69382de888fe23108f09", + "id": "37a3b6bcd686b570a5eaf63a448ba98c", "type": 1, - "date": "2013-07-30T20:39:50.1270000Z", - "userName": "Pavel Strashniy", + "date": "2013-11-01T18:47:01.0530000Z", + "userName": " ", "action": "Envelope created", "remoteAddress": "208.180.210.92", "details": null @@ -15,5 +15,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216790392 + "composedOn": 1383331621365 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetFieldsList.json b/src/test/resources/responses/signature/GetFieldsList.json index 7001bb5..1e090c6 100644 --- a/src/test/resources/responses/signature/GetFieldsList.json +++ b/src/test/resources/responses/signature/GetFieldsList.json @@ -1,6 +1,6 @@ { "result": { - "count": 329, + "count": 6, "fields": [ { "id": "0545e589fb3e27c9bb7a1f59d0e3fcb9", @@ -42,7 +42,7 @@ "defaultValue": null, "align": 0, "minGraphSizeW": 25, - "minGraphSizeH": 19 + "minGraphSizeH": 15 }, { "id": "bcbb376c4f16bea26c66bec641d05411", @@ -63,7 +63,7 @@ "defaultValue": null, "align": 0, "minGraphSizeW": 59, - "minGraphSizeH": 19 + "minGraphSizeH": 15 }, { "id": "84f8a77c6745b65cdbb1480c53210da8", @@ -84,7 +84,7 @@ "defaultValue": null, "align": 0, "minGraphSizeW": 59, - "minGraphSizeH": 19 + "minGraphSizeH": 15 }, { "id": "c2b69374f4174b54b13d5b89da85d628", @@ -105,7 +105,7 @@ "defaultValue": null, "align": 0, "minGraphSizeW": 59, - "minGraphSizeH": 19 + "minGraphSizeH": 15 }, { "id": "ea76bd592bbe4b42b305e8814f7c5420", @@ -125,6795 +125,12 @@ "acceptableValues": null, "defaultValue": null, "align": 0, - "minGraphSizeW": 25, - "minGraphSizeH": 25 - }, - { - "id": "a486e4c40b2af8b1823db9053488b5bb", - "name": "TestSignField5725294004217641", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b5194913aa156e7ac2ea529ba14b646a", - "name": "TestSignField33733027792312553", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a2c0d056ccfa3ecaf80fdcf3e5b2b1bc", - "name": "TestSignField28980303169920363", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "73a124fbdea190108c1209e2c40ac506", - "name": "TestSignField6286347347246184", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f484a40e8d9ab80898d657d93fbccbea", - "name": "TestSignField34002634786667807", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7eee0ece94e340288dd3bd62f7a2cc09", - "name": "TestSignField9997751478670727", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c407c1d6671e2384fa4c8c229e1c10ef", - "name": "TestSignField7225788423112908", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "32218ccce21caa29c9aaabb83e979171", - "name": "TestSignField5850880674881684", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e10b7271ec2008cb904567fb1c5123f5", - "name": "TestSignField3371090034743097", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b04b4ea5a49661e8af10032894ddfc2d", - "name": "TestSignField17476021868748526", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c8d0a27abff097213c05169c484f8a4e", - "name": "TestSignField2819724133500615", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "5549b13fcea161776c7fcd05ec9ffaf1", - "name": "TestSignField8748536824762019", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b4748481fca9b6f08ec4d5a78c8d5c2e", - "name": "TestSignField30467293690110786", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "09ce73eb9e9804adc1baafe99f4d57d1", - "name": "TestSignField6821574816842265", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3ce08eff7910cbf262a6b7b827b2d460", - "name": "TestSignField29870738321515045", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "111d608bff1f6ad6d6be5787d84f2232", - "name": "TestSignField7852870137727914", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "8e4ff4a7025c6b68a2c11f071496d314", - "name": "TestSignField5581998519261985", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "31eea46693da3c5d74a66fbc62478340", - "name": "TestSignField44803516091848306", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "faf8ddb2c5c2507dd9694f3817cafc14", - "name": "TestSignField3768243813234855", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3ccba3d73aea4535ef25c35ca9553a72", - "name": "TestSignField9610643610663155", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "df68fcd9777e05fe8ab73f18bc5393f4", - "name": "TestSignField9376460214462665", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e35b53323f3a3a551398476755b1c06f", - "name": "TestSignField10017448415292929", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "84f0ba5e314b4b5e7c12833a0c81f1be", - "name": "TestSignField47296990722669396", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "eb82e0a61a1427f3ac3b33374e402ba3", - "name": "TestSignField3982068859997141", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "215378ccf7a6b5cd9507afe6aa7fb46d", - "name": "TestSignField5254802658338316", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1c3d13fa46e0d049868309a3a61a1990", - "name": "TestSignField2858717010555323", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a986e905276783296ae5f1325b7cea6d", - "name": "TestSignField3824122593239567", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "996760d3fead5c3e20cdb12bcf93dca9", - "name": "TestSignField38899003916656616", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "915bf183067eb75eff698df53e5e358d", - "name": "TestSignField3311857699402021", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "60b0cada2a53b17c59221a3aeb27dda7", - "name": "TestSignField8113847892775623", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "71258e71f666f1f617e949bc9fed3d6e", - "name": "TestSignField20521439874145997", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "312a30461256fba661af46e36e760521", - "name": "TestSignField6183516891810308", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "013f5a421c0e25e1a5337c9ca1edf09f", - "name": "TestSignField009687878263254346", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "53ec292c0e6a2c7324b8e0605fedc019", - "name": "TestSignField9161172669444995", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "723531682c0a8d457ccc116f9e85bbeb", - "name": "TestSignField7647040870738133", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "2a905964ac838e1633763485ee7eccf0", - "name": "TestSignField011847372358728459", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "23ab9556522914f40792b704f8765d80", - "name": "TestSignField5149396039753633", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "5b859e0a581902481086e7d2e22f34a1", - "name": "TestSignField036347272138563924", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7ae6b993b2198faec522794d33d20cd1", - "name": "TestSignField5634665543303162", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "fea305a15f5cdec63652ddcd3e5ac714", - "name": "TestSignField1985142337806376", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "77b7aa54f7cd8c5e5a054b1075a36978", - "name": "TestSignField655014053068028", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "4fad4f6a58a45fd44a0bf0c814858243", - "name": "TestSignField5360407432259581", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "54676f136d5421c2fe9fe71beb6506e0", - "name": "TestSignField7177831964222251", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "5f596fb8a988c90152857f184d96f22a", - "name": "TestSignField7428611764298384", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "bff9790317ba04fcff43a3dcbe5b66e8", - "name": "TestSignField11960191750910676", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "721afefda83d5f6875678db1d68a4f66", - "name": "TestSignField6282546314728393", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "8ab993d5e990a30d16b085fee8976923", - "name": "TestSignField535437594153371", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3e18e3354ce77fd3814939c10aff184d", - "name": "TestSignField7993493545051359", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f83c5a11f1b5251d812b0b3f26a49bf1", - "name": "TestSignField7573426368513689", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f025549e17b8a94315b78791c079523d", - "name": "TestSignField9161960947605149", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "31776e6f59fddcd0a9ad07fe3ae05bce", - "name": "TestSignField9838760390717401", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "cbb8c4c1e0f3335ebf849474f68bee86", - "name": "TestSignField5069651207234641", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c2983497ee8fc795a4558fbd88e3ede6", - "name": "TestSignField9022871433967349", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "2f214048e17730501b876c09600c2503", - "name": "TestSignField32343706759573587", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "594c7aac06376e34c9fe180c6ce063b7", - "name": "TestSignField6138903474056716", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "8ff22db8091910810f810528c9586b7b", - "name": "TestSignField976646983823041", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "010aee20f1fa1c3ea93b95cf3e2c0e39", - "name": "TestSignField5452022598022219", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1aa94524f55b98f6dd6e82bf6834e7f1", - "name": "TestSignField3010308960233177", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c2c8ba7c4b4de9ee821bb1b70d8e26fe", - "name": "TestSignField8571398819124851", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f33dffb6b1e35d719c0f46dcd7b3fef9", - "name": "TestSignField20939751701845077", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "17f2195e8869b3450ebe6aa3f31f7e72", - "name": "TestSignField20342755109339117", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "59a3c4ff7e9c24fa95fd2e90c5754107", - "name": "TestSignField9189267812099796", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "bdb0bfd9731fc2c77b1199df0e2a7126", - "name": "TestSignField8655125293234814", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "12b37fb9dc18c152da705513267e9795", - "name": "TestSignField7682941610001701", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "472cc2a40f72b326776029fffc19bc0a", - "name": "TestSignField5789453385691722", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "18d98105ab5e883e0c24f5b2fedfab22", - "name": "TestSignField9740624136095791", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "126cb5c346ce1f9c5a25b849d0d22ae9", - "name": "TestSignField8726264951031757", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "876776b8e8cc78165448574fac68cf3a", - "name": "TestSignField01781042989612558", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "cce62557f9f3c5593de513ab28bd6e7a", - "name": "TestSignField8859855978082904", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d2eb8c507db4943ade211c3ca1b5f518", - "name": "TestSignField30147442740832764", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "0dbb5a37e2814c9527cf61601002fbd9", - "name": "TestSignField8552871321910479", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "5e2781b2c8d2411a76db4aaf3ff832ea", - "name": "TestSignField5959071448798664", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "14b574b868519a91fc4b6ea1589cc46b", - "name": "TestSignField0862710525442445", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e9116fa1b4a1d27ee0e1a5ed7e0345a9", - "name": "TestSignField016861197659535088", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a3b9eed006e5d0e0216e7201f096eab5", - "name": "TestSignField15816620865280973", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "bac5bd998348f0cef0ee82db6bc6d79d", - "name": "TestSignField726474797215122", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "294857b852c9038dc4ea225ba72a390d", - "name": "TestSignField7950493934406702", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "0d12078b795eae343ab0a1ddf9e0e82e", - "name": "TestSignField07665644779847947", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "fb7e9acde3abf02d75b87e1341b90952", - "name": "TestSignField7520849269229067", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1609d2b86b13f869034e456d034b715d", - "name": "TestSignField10751483416160268", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "5cc699216d60f0acdc9df6e938ffb421", - "name": "TestSignField5528875559368014", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d148f4d2d147fac61d20de84897be365", - "name": "TestSignField24972594570854922", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "0cd1626517b78bcc63d8c2ce858b85ef", - "name": "TestSignField8956025832091004", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b004f1435229d2042ce4172ec70364f1", - "name": "TestSignField7994526242881353", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b0e2913ee525d394523bfd4a3163aa32", - "name": "TestSignField5837318345606741", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b9b1ee4631371e0aef1f6f82a6ed6714", - "name": "TestSignField15906116466993858", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b866d9225bb78556c6b225ffd515b6ba", - "name": "TestSignField29418442827654434", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f10f82f918c8a1a82e9d218d40111ebb", - "name": "TestSignField07997857016666754", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e4b6901108ed1a38662dd7d33e3a3920", - "name": "TestSignField8367935549050817", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "775dc8833a616714719d9b1c2f59e2bd", - "name": "TestSignField34413391154943973", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "cee744f538b5bd7fa02c3f2e04bd4d1d", - "name": "TestSignField8643800536589019", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "2d66cc365308bf174657d864ff5fd35c", - "name": "TestSignField551074328645662", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c8259464e7d04caee5fd4c06df969f42", - "name": "TestSignField8401045798611347", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c94f536145f64e844079fe195db19a65", - "name": "TestSignField43148401703040273", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "8ea8f03db04bd12dab1f4996c74ee9e6", - "name": "TestSignField9650077250652191", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "91ecf91ba26426870bbd34b014cfddf4", - "name": "TestSignField8433337844155122", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "4ceac81dca70980ce61214c164d478d8", - "name": "TestSignField35303834877357765", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3d61bb5a1b236216d16eb5d8cdc34c0e", - "name": "TestSignField4403821470887751", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f578d3afcc0fcf3a4aea56333cb6bbe1", - "name": "TestSignField8485914656355618", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a635b7dd0e1daa5bb5728edd2ea7faef", - "name": "TestSignField17336098125622235", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "9133af68e5379f19468a7042072de85d", - "name": "TestSignField9805584364216519", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "fe449192558670b6e26c37b4dd4f47dd", - "name": "TestSignField6482675592381459", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ffa707c973964b9a8a6e320756fdd121", - "name": "TestSignField37466881381160355", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "de20ecfe1062455005e7c9a5c24eb59b", - "name": "TestSignField13052472332939924", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ce46e6fdc8e306ab8e28309cbebe51ae", - "name": "TestSignField1213068590653329", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e9675bc8f79541314ed36c2982300a36", - "name": "TestSignField6094091241622436", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a8fcc796d89f8facdba383fc4128fa6d", - "name": "TestSignField800983652022584", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "97dfc65c3080892e5cf47223d7d58885", - "name": "TestSignField16995705775248326", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3bf577363bd087f847c3bbb5c17c31ee", - "name": "TestSignField7767581179391988", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d1ff12c0b38d79244831e87a217c1f08", - "name": "TestSignField6696347712001285", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "191ae605500f509de81768534f454163", - "name": "TestSignField9544136179852223", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b66da4aac936c7072348e031230baa8c", - "name": "TestSignField2386988456777328", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "22c7087ed5f216f7923cc9a50c18641d", - "name": "TestSignField3186901641060197", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "986aaa1501f255d1708a180c29a34eb7", - "name": "TestSignField14856641386844693", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "6e6266e73af9348af72f60fee1da24fe", - "name": "TestSignField207758545560497", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "06f7ee5ec857452e798b306738679a81", - "name": "TestSignField30312599944013086", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f21de8cbe98d6d56c2256c97bf320be5", - "name": "TestSignField27890724854211135", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b33dc9320436a17b689254e24cfe1b92", - "name": "TestSignField3386597141622556", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f4127224a78b734114fe0b0a094ab974", - "name": "TestSignField4388338986925642", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e7cbf3982fc8cae45537d1ecb73e7f67", - "name": "TestSignField6174568412488639", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d7c9ec9a75b6ff32bd43833b8bad50c6", - "name": "TestSignField5859993551244609", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "bf77ac1f2d7d4a59c50a2123c5663a1a", - "name": "TestSignField0661257332702474", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "9a065bd74f61b6e1a35281dfccad6e0b", - "name": "TestSignField19644186640927164", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "51daae67af810b2243e4fdc2f738fdd8", - "name": "TestSignField17244036726911438", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d501faecc9c7f64f97e1143c4b7464ad", - "name": "TestSignField30393103695946855", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "319b6612d74a1005c17c8e4d1c133eb3", - "name": "TestSignField3812635348409982", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "da34ed403bc98f22fd465dec3fc6450f", - "name": "TestSignField5130007094202038", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "011860b1ac52b91ad23eae09e3979088", - "name": "TestSignField6447555963756116", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d72d63874805970118b774e368b7eb3d", - "name": "TestSignField152402419074244", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "469c4e3d8b46ed1cf17fc37b837ae1ab", - "name": "TestSignField9102062681748869", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d72644b0a36df55ee3caf2b101dae3fb", - "name": "TestSignField8006994239856092", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b311d9e0a3d1d3be5508e7956ac67a91", - "name": "TestSignField8052039854046593", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "fdd1dca8e914fc3dc85ece8671f97ad7", - "name": "TestSignField35146251398279627", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e3fa41b2b1bc2e47d17bfcf46eed25ee", - "name": "TestSignField6732017420310502", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "95f0c578a5f834bde74f5d28bb7a273d", - "name": "TestSignField8804653862162497", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "123dc7e3eba2f70a277c024a11cbfcdb", - "name": "TestSignField7406938948113816", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f6143dddca245391c409eac7c9fd627e", - "name": "TestSignField781586735087209", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "34ef5c1326a6ae807168886506c7d91c", - "name": "TestSignField7194786278489135", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3693624ab1895dbcce61f0f777025c51", - "name": "TestSignField3261385383983355", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "209e1c9221fc4ae87254107988b857a3", - "name": "TestSignField29414947700581673", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ae36e37485cd2b5f7493d50f138a523b", - "name": "TestSignField44141326761510147", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "2da7fd595d9451611409759d507e384b", - "name": "TestSignField11612911413890159", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3da5731bca7fb61d9969dc871aef6674", - "name": "TestSignField8815775173806107", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "0b20a7795f4ef08087f355f85ed4e367", - "name": "TestSignField9760875963195158", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "76961b773cbcaa753ebb14e1f7fd9d76", - "name": "TestSignField28905980579960333", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ab3a2548330e5c3734997bf7c8a61352", - "name": "TestSignField4552859681027851", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3b3c9ec5bcce7c39ee123824f90c546a", - "name": "TestSignField07969417070832352", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f62928df0e8551368ac5edf5f4363aab", - "name": "TestSignField557296801269115", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ec4a902df0b349ed75ee6fb26273c770", - "name": "TestSignField69961728014699", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "9dd739e7e979f8a2b9a38c999b84d151", - "name": "TestSignField4064407708374359", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "4aac78caecba910ddd4282dfb90a1cc8", - "name": "TestSignField34040549422280086", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a70f37783ac86bf6a6c66f571e18599b", - "name": "TestSignField09413388312871551", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e47ce9e50f9e5c7097ed0bda73673280", - "name": "TestSignField6763851817788938", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "03a67c3cdb0a43f797218caaa36fa831", - "name": "TestSignField3091109330103856", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7c55a5b8325ae1fc8d5e0e9ba9ec812b", - "name": "TestSignField03392736495188653", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "af81d939af11a3ae68f58a13f82825b5", - "name": "TestSignField8316616421314614", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "44e69d75ebb3dc174e7c6431b9245258", - "name": "TestSignField039489296172938726", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "de74e44ac647568525185516c689e9c9", - "name": "TestSignField41319105210222173", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a85fa017e72a59708494acce38dfd129", - "name": "TestSignField4711725068201047", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e68c6ef43322b466bc16d2f0895fbba9", - "name": "TestSignField44119807176442805", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c23404a949a7d6e4a184aafb50e14495", - "name": "TestSignField7089604440650039", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "233939d8eb4223073459ec0ac62f3076", - "name": "TestSignField7889974205693362", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ed20c3df62859f59d957f139c5943de2", - "name": "TestSignField7911263635089034", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7855f071c36d6db1e52f49735ed3108d", - "name": "TestSignField9321199236489045", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b6b647a4a30b1f90d85c34c2b431724a", - "name": "TestSignField23010325522110442", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "19e9e61ca29540e6826b779fda01bc99", - "name": "TestSignField6096491059612885", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "4ccfc089e9ed45a086d0c420e3e4e8c1", - "name": "TestSignField5678440942973005", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f62ca81d6a2a7640212247ad6e783667", - "name": "TestSignField460036867192671", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "08702d6c159d6816eeed4ce7a4ae1436", - "name": "TestSignField8315024469546656", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "2c5b0e50d26ab1a57b34434b9f724317", - "name": "TestSignField4354217892080495", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7ddf1587cd1ee5ab39777ddabe14180a", - "name": "TestSignField9694117005030988", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "325a3ef47d721ebfbb78ca081e07cb91", - "name": "TestSignField9871780034397099", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3ca79e80dacf8bbe9e3389c176810de2", - "name": "TestSignField9198979389879341", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b9c373718267859451b1ddd9db4a6841", - "name": "TestSignField9086667842642161", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "dd1578f9df1c027869b46a45d45ee42c", - "name": "TestSignField020440058648185988", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7ddd30c6318c77709847b048328338af", - "name": "TestSignField5376142510034306", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1796ce84309f3e9e563f3d43648c46e5", - "name": "TestSignField8997980094298899", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "67a975c4c53b7e8edf751551de4f6ca2", - "name": "TestSignField057595087373810916", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "2036716e930eaec1d17d67527deb3c9b", - "name": "TestSignField3018432024700177", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "0d9e02fb74ddcf6f400ccc3144dfea96", - "name": "TestSignField46130887187923464", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d8951f72a4a7f7fa3e599d6af9c75ddb", - "name": "TestSignField4956446526078433", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "84308ff4770d1e719495148add4f5e53", - "name": "TestSignField025656567603964175", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "6491a25e67bc404ec9cf764235ce8068", - "name": "TestSignField8661343161582412", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c36eff07a71b3a0f3c85e31ae35a9003", - "name": "TestSignField4785715409185899", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1cf640ad4c6248c6be353322e50f74ed", - "name": "TestSignField08110200036039528", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a452d509253432c6900f5a85a12e70d7", - "name": "TestSignField8312197443038328", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "54d93a3024d2ada2c82ad25e8e48b3cc", - "name": "TestSignField0908723975458604", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "88ca253e50601516b77f941a06fdbc58", - "name": "TestSignField9563914428928085", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f4fe77ef0303cb5a1e28a7b8dfb9f902", - "name": "TestSignField07503255350883598", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "520cc4d63ea332724788cf9931f4626a", - "name": "TestSignField7151747683824413", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "67a39313ca81875e99aa885201e07987", - "name": "TestSignField17586675258329998", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "5d63d9310a82fba889ae7e6ac4996c39", - "name": "TestSignField7098464010194016", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b5676d5c4642da6c3dd8aba29683033c", - "name": "TestSignField8386614842265484", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "9fd48f0b6af6aaa28f490845fd824957", - "name": "TestSignField37450308330756465", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c8ea0f0f1ee2ae9d541f639e23a5bfff", - "name": "TestSignField40563122585736744", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1b2b5ef172192a79b03848d3163c5265", - "name": "TestSignField43696196611414684", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b479b0a315a20e6245f3d89ae30e0c14", - "name": "TestSignField7947239548837087", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "6c98d7e9717d54039df6f96232431c6f", - "name": "TestSignField9195129454697073", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "661353d1e7c1d7c1716096cee9243b16", - "name": "TestSignField9594365933565956", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d0855315ecdb48a23433569791f9125d", - "name": "TestSignField8589836115912739", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "2cc1c9e9306a2f648fa4b9abd1aa9e93", - "name": "TestSignField8521401168923809", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7c75e0eef4aa352c58b3ee9325d8f887", - "name": "TestSignField8890732167701858", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "eb0ac19f701e915b15c4a704a990c9c5", - "name": "TestSignField7300472834349683", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a336733c51e85a70b722f43da065853b", - "name": "TestSignField837019941310401", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "4c049dde271c92bb2b89af3d956f5610", - "name": "TestSignField7518230832643029", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "aceddc5857902a98a42e1df02e3e543f", - "name": "TestSignField3005755215532443", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1a9eac70fb82b05841c2224ca411d734", - "name": "TestSignField1800083520217315", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "01a510399e6e80d8c97c20fdf96338e7", - "name": "TestSignField2705199784911906", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "6827c56d17e58ef9ebd295fca37ef166", - "name": "TestSignField07668170514202255", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3b3845e8a94839040d676a0b9883df27", - "name": "TestSignField41031686576406157", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "bb3c1d107ba751c6ec59fab885a38c4f", - "name": "TestSignField47498473717402123", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "cc46579bc6d737ee7c5b6dc922bf9f9c", - "name": "TestSignField726593734112403", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "afae0cbb13f5a3b678ee725a92585e8d", - "name": "TestSignField006650409560099435", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "eb6ca39b9c2d488d716e19ab4131aea2", - "name": "TestSignField6791565219964834", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ba160f1d29f6207f7b843a845a680da7", - "name": "TestSignField006918910586141913", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "36d299f2f3c44bffa95661bdaf987971", - "name": "TestSignField06792911015927283", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "66359c8339469cc35965ac244fd61e1f", - "name": "TestSignField4278168743361205", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "20ab80862a21024665fc1f1ca1d64d40", - "name": "TestSignField8362800649020138", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b0595130d2ebc6878389e3847f05c0e1", - "name": "TestSignField5060980206640338", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "2f7301a3d360116ab51276bbcff96995", - "name": "TestSignField1377685354822915", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "2fff1296919c6e88932bc9d8c16255ae", - "name": "TestSignField6912938605991217", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1cb025717d94d29d3be549fe7eaf560a", - "name": "TestSignField58842844514867", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "bfaa5cef1ee83e0b0b6e4814baaf7fb3", - "name": "TestSignField6907726599467774", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "4d80bce46a5725b221276c4102e0fd69", - "name": "TestSignField5562762998520758", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c0999199b4f05f8c38bf183da09535ef", - "name": "TestSignField7596257593875201", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a2c03f5c518bc984f1e9d74e15ab6d09", - "name": "TestSignField8081446441193215", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "0d98df30ac1f069e3ab7390ef4cc8395", - "name": "TestSignField19996494780648721", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "6d1ed9a40f03b60d39b5014f7a4785a9", - "name": "TestSignField9815966387860228", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "8e634f6c66c05c1d615e6c30ffe4f9e6", - "name": "TestSignField06698180265856957", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ae818ee41b17c9e59445ab4e305b2298", - "name": "TestSignField9196972357049874", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "93ae75598f66a9cadedebec954641984", - "name": "TestSignField35572179883336175", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b5de91f7b8cb82eff95a5833c9e01372", - "name": "TestSignField1775359085478927", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1c14618aee6a1b791fdaff3b53baad6a", - "name": "TestSignField1005907468156979", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "0782fdf9b76e805777fe10620b58e81c", - "name": "TestSignField4081384845474465", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f333b69969ec8b31d4baeea068bb77c1", - "name": "TestSignField15908135586403893", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "27d60f7edf2ba872c99624893a94da0b", - "name": "TestSignField08752276362376288", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "50eb817cdf7ba05a2556db5f35a2aa0d", - "name": "TestSignField77365814490327", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "0db8c733c3ef23589f2dea15b8e78cc5", - "name": "TestSignField02333382928398553", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7e08e2dfb68fe079c2e27d1daa7f9802", - "name": "TestSignField24164574045564047", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "8c02dc3479dd504ec48bbd972fa2096b", - "name": "TestSignField43336944208931316", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e916a9cfb2d937c887473381dc531bca", - "name": "TestSignField6180500821532791", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "52b9a08da33ad0f9dbcbd6878fb2cc9d", - "name": "TestSignField4003992721381865", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ac767f806764b999831e5b74bf0c6a23", - "name": "TestSignField6818045608796288", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "310a7b86ad9401dcf560f0141ddd5803", - "name": "TestSignField5893289645116842", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e31c54c73539bfb41c7cfea44a1af1ea", - "name": "TestSignField8024463183387579", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "8627dc22ddfeefb7439fbc1fd1418ece", - "name": "TestSignField13082729278806582", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7d97a93c2eac820e9e32ca46d83411fe", - "name": "TestSignField3972356320225714", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "469ddc656fb57515819401b597086770", - "name": "TestSignField033420759529042554", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "56890f0c51f7fc84cd3fd4230659634b", - "name": "TestSignField43700561943936744", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "730857373a1d6d6c579684661501a439", - "name": "TestSignField05866811597582999", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "9ada0d92117d2b7633f9a7e57deeae63", - "name": "TestSignField5141989522835214", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3e6291c2c346d05638ae57a5a0f4244b", - "name": "TestSignField7981109031515993", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a65baf8540bc2e0aef1ad6423b977d2b", - "name": "TestSignField5147092263427339", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "97471345dbf5d1a613a6a0964652966c", - "name": "TestSignField40752539914386265", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "27643a1680204cf6b164b2ecb9e5f2da", - "name": "TestSignField752146554033223", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c2b86b1bd356445bcbc0c2e0d34747b1", - "name": "TestSignField047439760881543114", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b96ca6b0773d1299c567f2e9c02bd9bb", - "name": "TestSignField5337834386355155", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ce1342a53eb5d0298b9f496887d80805", - "name": "TestSignField9438039405338089", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "42b811eca2b680fd4ebbabedc023f5d9", - "name": "TestSignField7282295812877293", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "e0e3a1c8bbd97aa3e17691b3460a35cc", - "name": "TestSignField9305468281073235", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "5985724ebc7816f7a29f295236d1578a", - "name": "TestSignField7984441562169745", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3a29706d6a4a0e657819da353ec73138", - "name": "TestSignField5591377608670148", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "4f2c02737f312b17d733f9dd47e1ca91", - "name": "TestSignField4021382468038204", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "14ed2408e85bef4d454d07689dd98a74", - "name": "TestSignField27430653704696184", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "4e485dd4b234b3485da1c312da24909e", - "name": "TestSignField5298432389009625", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "da2425dbf753f1d2e16211a5633a1005", - "name": "TestSignField9019151369437881", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a6113cf992a1395a452ec520ae254383", - "name": "TestSignField3159595590752967", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "6b1bf41449f8a61b92024b9d20169c69", - "name": "TestSignField07690631355701749", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "fd623a78560f978ac6f48ad0172ac4b0", - "name": "TestSignField04701533279451642", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ce986ec0c9515a87ed854711460c0e17", - "name": "TestSignField7557774110489797", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d73a1833ed7c7e4ba077f55a7a9d8551", - "name": "TestSignField859570341567188", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ed05ed16cab27b4fe708499ba67feabc", - "name": "TestSignField4921520150653669", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "3a33eadf85b1c546b669cc6899905f0a", - "name": "TestSignField8479168056503245", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "551e58c87a306d39d2f4d6fb808f5169", - "name": "TestSignField26025099829883014", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b44eba4faabfa2e4c494b8734832a750", - "name": "TestSignField8603103320753333", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "98bfb35a18a6109de3d888b49e823fad", - "name": "TestSignField9245406183497231", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "bead8d6a1dacd88798f7cdb64d933ee0", - "name": "TestSignField5129552704869584", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "95ee15b3623b2c31017e91489f9348d1", - "name": "TestSignField6117026684226767", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f725f8e7f39fb97d611578afb37dc0b2", - "name": "TestSignField42345795478271797", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "dde134910c3555db903d0375e31f2dc0", - "name": "TestSignField6793981049950037", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1a6afa1670b4d80ee57a2dc08f0c64a8", - "name": "TestSignField993185124785382", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "59c158053d281a3e322234c950b98873", - "name": "TestSignField17141718567405717", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "cd5cf45404372e3c2f1410fb38eab6d0", - "name": "TestSignField6410816785785228", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "0a8ec893b5e4fde2133887bc515f83b4", - "name": "TestSignField18250803776506574", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "82a5aaae111107e25fcd97774f12f15d", - "name": "TestSignField7221855715466816", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a40fd09ab812e718101dbb7f344a9396", - "name": "TestSignField23410887499705246", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1d8622d84d22d2f2ab31fea1bb36c2ff", - "name": "TestSignField9551920788517606", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d1ed82515b7cc1f828b6d1f535c39a8f", - "name": "TestSignField1362412387853017", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "abe25c2c1633ba0a4b1f1d975f479d9a", - "name": "TestSignField19777505720677901", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "fcb52706658240a2acfb02a98b5d2106", - "name": "TestSignField15743710574899528", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7e0b899a356130d7c0da852f5fa19124", - "name": "TestSignField4475110747074814", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "c83ddacaaf0267acaa2a8bb96821cbcf", - "name": "TestSignField8414234887936815", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "2c5182e86563b8659a1080133ed04ec8", - "name": "TestSignField6751468431088535", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1f704af68c2743f821fd411192175e8d", - "name": "TestSignField8301816015784547", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "08e3aa7572fc2cb273a49e8baf174fa3", - "name": "TestSignField9372260317473704", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "8f84cd101f322a78db75f3eee46495d9", - "name": "TestSignField7621290283486438", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "313de51229db11d2bbf81aae573fd612", - "name": "TestSignField763549087221282", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7b9ca172e5f8f0bcafa135a38584371d", - "name": "TestSignField7258089275203392", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "722591e3297b475e43913e46a7898758", - "name": "TestSignField9492289396861627", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "5ddd435f9d5ef4fe9afcfbb6d9860ef2", - "name": "TestSignField6881504981871717", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "8eb165ae64278c0a52010d24719f89ca", - "name": "TestSignField05256164077466974", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "f660aec26f5c908bbdbb393e60fa8096", - "name": "TestSignField3812266325937008", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "9706757bf948e2814ff44e81b6b9bae0", - "name": "TestSignField47494885585219304", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "95a516364143c216b40fe1cc094064d3", - "name": "TestSignField910539211830344", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "a04eb2c19b23c019831e837739ea8523", - "name": "TestSignField5755706778518193", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "800c45eaedd1c508dfb2efa59a858c7e", - "name": "TestSignField22988871892044416", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "ca04c0ee16e235ef2ee90f1a92a64c1b", - "name": "TestSignField23545322637089083", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d1092941d31b72e62a038f9128501cf1", - "name": "TestSignField5788652823059871", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "b184d5b56cb50592e37744ff7d7cbdea", - "name": "TestSignField4873056150413042", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d1491346354035234db0d39f574fb268", - "name": "TestSignField7032723645652279", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "6df3c3a2234e2f9f8967a3fb494fdde5", - "name": "TestSignField9019076637122564", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "4f0cb8f23ad1beb3406aa29742b32ee7", - "name": "TestSignField05913879291692037", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "76c8923c7b557a88613758c2baa002d8", - "name": "TestSignField5894136925618143", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "7e093bd15107bc1c10ca702dc72dad6e", - "name": "TestSignField49377827101276817", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "af059c125ec5e78323c82e863240d34d", - "name": "TestSignField7437509587481796", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1037dd21a210c85bbadd0c0855cbf6c6", - "name": "TestSignField0896796186410278", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "530423c44a2002670ab304bf10ac1626", - "name": "TestSignField8786100556648985", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "10ce1afbef75cafd97d115c930760a40", - "name": "TestSignField37453053844607787", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d9b1b53de10999815ebc27ec4669777e", - "name": "TestSignField008106185147493505", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "1816c9607ca8c6b7da500f729b485db2", - "name": "TestSignField7456267644881055", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "483cc6a89495d812cfcee391d5b0a134", - "name": "TestSignField5421081145982968", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "d9ad3eb91108c61a228150e5db8817e1", - "name": "TestSignField3642417437000135", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 - }, - { - "id": "0f2957eb8c5e9c27a0f7431213048d96", - "name": "TestSignField3604737160639111", - "graphSizeW": 100, - "graphSizeH": 100, - "getDataFrom": "Test", - "regularExpression": "^.+$", - "fontName": null, - "fontColor": null, - "fontSize": 0, - "fontBold": false, - "fontItalic": false, - "fontUnderline": false, - "isSystem": false, - "fieldType": 0, - "acceptableValues": null, - "defaultValue": null, - "align": 0, - "minGraphSizeW": 0, - "minGraphSizeH": 0 + "minGraphSizeW": 10, + "minGraphSizeH": 10 } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375216832939 + "composedOn": 1383331637682 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetRecipientSignatureEnvelopes.json b/src/test/resources/responses/signature/GetRecipientSignatureEnvelopes.json index 1b23130..2836c22 100644 --- a/src/test/resources/responses/signature/GetRecipientSignatureEnvelopes.json +++ b/src/test/resources/responses/signature/GetRecipientSignatureEnvelopes.json @@ -1,13 +1,13 @@ { "result": { - "envelopesCount": 6298, + "envelopesCount": 1756, "envelopes": [ { - "id": "bcbf413a10f5e0e515b6dec2ee7ce6c6", - "name": "Envelope 2160477246995125", - "creationDateTime": "2013-07-30T20:41:10.7370000Z", - "updatedDateTime": "2013-07-30T20:41:11.5500000Z", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "7c2f53d6b5f7394c48cfa7a4fbbd0c3e", + "name": "Envelope 5215761241817342", + "creationDateTime": "2013-11-01T18:47:28.7730000Z", + "updatedDateTime": "2013-11-01T18:47:29.7800000Z", + "ownerGuid": "6d75a4d4db83f6fc", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, @@ -21,16 +21,16 @@ "documentsPages": 0, "recipients": [ { - "id": "bded2c4bfe9f1ffd22891d046f236467", + "id": "b14df6f513c157591ba9e78f8e7c175f", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "statusDateTime": "", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -45,16 +45,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " }, { - "id": "e2bc578223c3e3501584d25f26b1209e", - "name": "Envelope 5280744322052812", - "creationDateTime": "2013-07-30T20:38:40.1570000Z", - "updatedDateTime": "2013-07-30T20:38:45.0170000Z", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "ec1d3b9ea849c6a74c30ec3f9b36c298", + "name": "Envelope 1233896619121313", + "creationDateTime": "2013-11-01T18:46:39.3530000Z", + "updatedDateTime": "2013-11-01T18:46:45.5030000Z", + "ownerGuid": "6d75a4d4db83f6fc", "status": 1, - "statusDateTime": "2013-07-30T20:38:45.0170000Z", + "statusDateTime": "2013-11-01T18:46:45.5030000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -62,26 +62,26 @@ "orderedSignature": false, "emailSubject": "Sign this!", "emailBody": "", - "documentsCount": 1, - "documentsPages": 1, + "documentsCount": 0, + "documentsPages": 0, "recipients": [ { - "id": "543209ded2f4242e79118e5e6ba0e461", + "id": "a4acc6c0e220d51a94ba6121e30f7617", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-07-30T20:38:44.9870000Z", + "statusDateTime": "2013-11-01T18:46:45.4870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/e2bc578223c3e3501584d25f26b1209e/543209ded2f4242e79118e5e6ba0e461" + "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/ec1d3b9ea849c6a74c30ec3f9b36c298/a4acc6c0e220d51a94ba6121e30f7617" } ], "waterMarkText": "", @@ -90,16 +90,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " }, { - "id": "57eabe9b2a7ad58a1de93c2ed8eca9c3", - "name": "Envelope 6993423792616403", - "creationDateTime": "2013-07-30T20:38:32.8000000Z", - "updatedDateTime": "2013-07-30T20:38:38.5030000Z", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "96d4906f30898bc37a430dcb2725b0bf", + "name": "Envelope 015749699663053285", + "creationDateTime": "2013-11-01T18:46:31.2670000Z", + "updatedDateTime": "2013-11-01T18:46:37.3370000Z", + "ownerGuid": "6d75a4d4db83f6fc", "status": 1, - "statusDateTime": "2013-07-30T20:38:38.5030000Z", + "statusDateTime": "2013-11-01T18:46:37.3370000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -107,26 +107,26 @@ "orderedSignature": false, "emailSubject": "Sign this!", "emailBody": "", - "documentsCount": 1, - "documentsPages": 1, + "documentsCount": 0, + "documentsPages": 0, "recipients": [ { - "id": "d5c7f2a93a2886b4283fe84f56b08c8e", + "id": "43b9a743f24b65a058b9f9681fcdbacb", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-07-30T20:38:38.4870000Z", + "statusDateTime": "2013-11-01T18:46:37.3130000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/57eabe9b2a7ad58a1de93c2ed8eca9c3/d5c7f2a93a2886b4283fe84f56b08c8e" + "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/96d4906f30898bc37a430dcb2725b0bf/43b9a743f24b65a058b9f9681fcdbacb" } ], "waterMarkText": "", @@ -135,16 +135,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " }, { - "id": "1d782a2260c3e30d627429e335a6d7db", - "name": "Envelope 8215914853706076", - "creationDateTime": "2013-07-30T20:38:25.5800000Z", - "updatedDateTime": "2013-07-30T20:38:31.2830000Z", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "fda1879239aff2a5ed3c81316e604dbd", + "name": "Envelope 766919943839699", + "creationDateTime": "2013-11-01T18:46:23.2100000Z", + "updatedDateTime": "2013-11-01T18:46:29.2100000Z", + "ownerGuid": "6d75a4d4db83f6fc", "status": 1, - "statusDateTime": "2013-07-30T20:38:31.2830000Z", + "statusDateTime": "2013-11-01T18:46:29.2100000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -152,26 +152,26 @@ "orderedSignature": false, "emailSubject": "Sign this!", "emailBody": "", - "documentsCount": 1, - "documentsPages": 1, + "documentsCount": 0, + "documentsPages": 0, "recipients": [ { - "id": "bcc6ef0e0fa0ee3dde0edc355b056fa0", + "id": "c98811fa144aeb5a4f05e7160d812862", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-07-30T20:38:31.2530000Z", + "statusDateTime": "2013-11-01T18:46:29.1930000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/1d782a2260c3e30d627429e335a6d7db/bcc6ef0e0fa0ee3dde0edc355b056fa0" + "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/fda1879239aff2a5ed3c81316e604dbd/c98811fa144aeb5a4f05e7160d812862" } ], "waterMarkText": "", @@ -180,16 +180,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " }, { - "id": "4a9b5943520fbbf9f5857dca11290baf", - "name": "Envelope 317393528127661", - "creationDateTime": "2013-07-30T20:38:18.3600000Z", - "updatedDateTime": "2013-07-30T20:38:23.9230000Z", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "d7f9abdda48d10fbb087cdd812c3956c", + "name": "Envelope 766853939078461", + "creationDateTime": "2013-11-01T18:46:14.9370000Z", + "updatedDateTime": "2013-11-01T18:46:21.1870000Z", + "ownerGuid": "6d75a4d4db83f6fc", "status": 1, - "statusDateTime": "2013-07-30T20:38:23.9230000Z", + "statusDateTime": "2013-11-01T18:46:21.1870000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -197,26 +197,26 @@ "orderedSignature": false, "emailSubject": "Sign this!", "emailBody": "", - "documentsCount": 1, - "documentsPages": 1, + "documentsCount": 0, + "documentsPages": 0, "recipients": [ { - "id": "64dc172afcf6bf4a5dfce23322cd3252", + "id": "19c3101d4cfe1affe8aaf5b61bb1b97e", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-07-30T20:38:23.9070000Z", + "statusDateTime": "2013-11-01T18:46:21.1630000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/4a9b5943520fbbf9f5857dca11290baf/64dc172afcf6bf4a5dfce23322cd3252" + "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/d7f9abdda48d10fbb087cdd812c3956c/19c3101d4cfe1affe8aaf5b61bb1b97e" } ], "waterMarkText": "", @@ -225,16 +225,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " }, { - "id": "1399e169f217c737ea81f7ce63fa1fa0", - "name": "Envelope 3944138526365114", - "creationDateTime": "2013-07-30T20:38:10.7070000Z", - "updatedDateTime": "2013-07-30T20:38:16.7670000Z", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "aac89cb362a47de92cb163f138ddaf20", + "name": "Envelope 7784095745494438", + "creationDateTime": "2013-11-01T18:46:06.5970000Z", + "updatedDateTime": "2013-11-01T18:46:12.7970000Z", + "ownerGuid": "6d75a4d4db83f6fc", "status": 1, - "statusDateTime": "2013-07-30T20:38:16.7670000Z", + "statusDateTime": "2013-11-01T18:46:12.7970000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -242,26 +242,26 @@ "orderedSignature": false, "emailSubject": "Sign this!", "emailBody": "", - "documentsCount": 1, - "documentsPages": 1, + "documentsCount": 0, + "documentsPages": 0, "recipients": [ { - "id": "51b16ad73e9765bb840be7ca7fb09af7", + "id": "c37d6ebf96d9344818fef2d51ce5d24c", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-07-30T20:38:16.7370000Z", + "statusDateTime": "2013-11-01T18:46:12.7830000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/1399e169f217c737ea81f7ce63fa1fa0/51b16ad73e9765bb840be7ca7fb09af7" + "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/aac89cb362a47de92cb163f138ddaf20/c37d6ebf96d9344818fef2d51ce5d24c" } ], "waterMarkText": "", @@ -270,11 +270,11 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375216871892 + "composedOn": 1383331650208 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetRolesList.json b/src/test/resources/responses/signature/GetRolesList.json index 5589f36..4e18ca6 100644 --- a/src/test/resources/responses/signature/GetRolesList.json +++ b/src/test/resources/responses/signature/GetRolesList.json @@ -30,5 +30,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375216923501 + "composedOn": 1383331675127 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureEnvelope.json b/src/test/resources/responses/signature/GetSignatureEnvelope.json index 737c098..6556bc7 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelope.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelope.json @@ -1,11 +1,11 @@ { "result": { "envelope": { - "id": "91e439ba62a36b69a815780854f514fc", - "name": "Envelope 5916256021203607", - "creationDateTime": "2013-07-30T20:47:41.0800000Z", - "updatedDateTime": "2013-07-30T20:47:41.0800000Z", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "eb477c31aea60e54f0c2c87daa35a5a0", + "name": "Envelope 710484964577702", + "creationDateTime": "2013-11-01T18:50:25.3800000Z", + "updatedDateTime": "2013-11-01T18:50:25.3800000Z", + "ownerGuid": "6d75a4d4db83f6fc", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, @@ -26,10 +26,10 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " } }, "status": "Ok", "error_message": null, - "composedOn": 1375217261423 + "composedOn": 1383331825848 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureEnvelopeDocuments.json b/src/test/resources/responses/signature/GetSignatureEnvelopeDocuments.json index 53e4c4e..55947c7 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopeDocuments.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopeDocuments.json @@ -1,12 +1,12 @@ { "result": { - "envelopeId": "8e74f2350604f51c8158152325d00bf3", + "envelopeId": "71f439615572fc82699ff741a28bf933", "documents": [ { - "documentId": "52f8a37b4ba2b95fd9df1a6d5f4ef744656bdf51e8e88e0f03ecc2d9f53ac4d4", - "envelopeId": "8e74f2350604f51c8158152325d00bf3", + "documentId": "50966967019b6ccf8145504d05ca1ac763c57f41f5f8293e0334e9ea59783b72", + "envelopeId": "71f439615572fc82699ff741a28bf933", "order": 0, - "name": "document_one.doc", + "name": "document_one_doc.pdf", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "finalDocumentMD5": "", "originalDocumentPagesCount": 1, @@ -14,11 +14,11 @@ "originalDocumentImportedFields": [ ], - "originalDocumentId": "52f8a37b4ba2b95fd9df1a6d5f4ef744656bdf51e8e88e0f03ecc2d9f53ac4d4" + "originalDocumentId": "50966967019b6ccf8145504d05ca1ac763c57f41f5f8293e0334e9ea59783b72" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375217072642 + "composedOn": 1383331745905 } \ 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..7ff5c1c 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopeFields.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopeFields.json @@ -1,47 +1,47 @@ { - "result": { - "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 + "result": { + "envelopeId": "84d1d24edd82db1fc37d8f5ef5195594", + "fields": [ + { + "id": "16f096b81c3a39168b7863f2d4e570b5", + "envelopeId": "84d1d24edd82db1fc37d8f5ef5195594", + "recipientId": "7015284a06a18d979711d4853546ad74", + "name": "Signature_1", + "mandatory": true, + "order": 0, + "regularExpression": "", + "getDataFrom": null, + "data": "", + "fillTimeStamp": "", + "signatureFieldId": 1, + "locations": [ + { + "id": "21ebaf6682c3cbdf04d54767d2169490", + "documentId": "792cc6245305d6c0fe22ae94b2f27b2e28d7f26007595f7ba339f04c60216b7b", + "fieldId": "16f096b81c3a39168b7863f2d4e570b5", + "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": null, + "defaultValue": null, + "tooltip": "Signature_1", + "guidanceText": "" + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383331764889 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureEnvelopeRecipients.json b/src/test/resources/responses/signature/GetSignatureEnvelopeRecipients.json index e3ea830..6dcfc87 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopeRecipients.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopeRecipients.json @@ -1,18 +1,18 @@ { "result": { - "envelopeId": "5cc2b79b7f20ab81806a19d83167c2a5", + "envelopeId": "445f7e9dbd2e4ede42c28280f269ace2", "recipients": [ { - "id": "3df09ef6c04f2dbf22c696c32db9a1cc", + "id": "71201052420855421b1820f959de766d", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "statusDateTime": "", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375217190001 + "composedOn": 1383331813855 } \ 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..147da9c 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopeResources.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopeResources.json @@ -1,33 +1,3834 @@ { - "result": { - "documents": [ + "result": { + "documents": [ - ], - "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 - } - ], - "dates": [ - - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375217736330 + ], + "recipients": [ + { + "id": "9858263efbf61be1640d2631450ecaee", + "firstName": "John", + "lastName": "Smith", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T14:05:03.6570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "46c715bbf59ace573d217764d959e16f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9515219474520413@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T14:05:04.3130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d9e54de37c51ecbd0a468d037b2a82af", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-08210259564901057@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T14:06:06.4230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1beab0d7e2cc3b9cbfd1a370faffcccd", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-38170443729026404@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T14:06:07.7370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ac420cdf3b39fe27a3d215e34ed996f8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9688659039564458@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T14:06:08.8000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4e80460f2b2640ef43f976c53d2a0a3b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-30727652244012393@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T14:06:09.8600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3d1bd7b29dac9bc8ffc8ab61bfdaa053", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1934477676175148@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T14:06:10.9230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0911d4634fdbc71a0c878412184c0988", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5805040536193053@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T14:07:13.0130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9e082e312439e75f90a16fef2e084b7f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5765926001019718@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T18:32:21.3200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "13ecb8750b5e1cfb1d43fd9c97ef40d4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8069878591982309@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T18:33:23.2670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "25b4557a7adcc670d1903b6a09488cb5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8246147118778752@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T18:33:24.5530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c160f8d8b189452f71e743cdc1982115", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8972871714568411@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T18:33:25.8100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0324c8d635309048a88fa0ff1d5de6f2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7055017976979097@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T18:33:27.0800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1067673b9e717ae89e22c4d5156f44bb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-37269517058657@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T18:33:28.4700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4d6b3c63625dfc92864faf61ddd89b61", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-559543619387504@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-11T18:33:29.8070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ff0fe8a65e045a2e856e8e65ce78b387", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-10784394534505837@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-13T15:16:14.7170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "89a929fb4f536d41492d11e2860a5af4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4507240266455127@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-13T15:16:16.1100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cbc4aa6c9a81c48df37bce61797cec8f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-43463094814811987@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-13T15:16:17.3900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cdc83264116702016d181e03a0314f9a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1127263933753494@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-13T15:16:18.6870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a814ade6a2a72e7c3c1bef5c8d623479", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5936162215315607@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-13T15:17:20.9530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6aa4753ea552eee08950e713a28c2605", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-39807588441843467@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-13T15:17:22.2600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9145a561dd82ae30d6e5c2c6c7b94343", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-21746643892463413@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-13T15:17:23.3570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d06e349d6c451b200e617d41ca56df58", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4397567618823496@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-14T18:33:07.6970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d173c919b80949282e0ea5bf2a387b86", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6728286666315869@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-14T18:33:09.1370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4e83daaf4099a091fb6e88062bc4805f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9614902759668063@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-14T18:33:10.4970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fd6ca48d914435307fee2d5cb1a0afdb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-537217313731218@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-14T18:33:11.9700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dedd7f0c02915262db084d8b36fbbe04", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5640487052412153@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-14T18:33:13.4430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f93a175fcbcb311d1e373490d746adc5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2198287955711421@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-14T18:34:16.0230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "69c21caf1b7aded7c59da84a335dd664", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-280264446018469@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-14T18:34:17.4700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e97a5b415ab4f91aa4c08d0ae4cfc233", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6452370718131504@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T18:33:20.0100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fb42ef514aed3e695469b17ce7c97a65", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4864187612784656@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T18:33:20.7130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c5519c0e4414d0f695de3fb42c0d7eb3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6010998528508211@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T18:33:21.4000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "787b4eaf4212a7735ee2a7ecf16ff16f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8878239787831138@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T18:33:22.1200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "63d7d7a1638c3f60b555a52f5d94cf86", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6897200026889598@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T18:34:25.3070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7849a96e81f88249ae2e9a7d08a3ccb5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07405317053496896@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T18:34:26.0570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e0c7b9d7bf0b39584ccbaa19fbc326ac", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-11078446455546609@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T18:34:26.7900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c757302bdf834eb7615a5430d6050996", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-13029770962908604@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T21:19:17.6670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "054f39890cabb41efc8f11fee1d69c23", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-11630153824222744@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T21:19:18.7230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4c91bf434a20a50a22ee512a5ecff325", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-38723424390948125@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T21:19:19.8100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "09ed3e46df4ee9df3948cf4924de665d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-12574676746785018@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T21:19:20.8130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "38e962e90544471420fe08189dab8078", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6982554890132479@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T21:20:22.4870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "41c280966a580d600fc130755632c169", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-47645863744086125@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T21:20:23.5030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fc12ca16b681ae159104de8c439b1e2e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09023330565666188@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-17T21:20:24.4600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e015329e0a9acded8e58e09de2929a9a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-18601382093781926@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T09:55:20.1830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b161806189fd2d535fac3950aa6ff46c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6680867151184955@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T09:55:21.2070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0a30226b661531ec68a06ca84a5f59e7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5062942259291259@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T09:55:22.3130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e407a167eb2748e705e0d2e182a62e14", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8051016953953711@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T09:56:24.0500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a9c936c888fc29d0c999ad84ad12d012", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2556862753242882@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T09:56:25.0870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "17ffd55410a87f789c3b63730ef7e773", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9320188449920268@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T09:56:26.1730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7b1a5714b5aecce1f3e50fd2dcae8b91", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-12240579614750668@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T09:56:27.2670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ed2dcdfab8a9e79dbb547c2c3a5d6594", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8589410459766514@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T18:33:29.8830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d16241de9f1b0e9bdd88a49ba6d5f143", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3537243295502417@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T18:33:30.4170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f87bb6e957b46d02b1c66ba9d566f1eb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6572504300005526@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T18:33:31.0100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cf112e3d98a8e48ca0dd6aac8b2fa36d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9420325817356362@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T18:34:01.9870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dcfe6ce26cd1c6a7030b8276b6774619", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4933873072308781@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T18:34:02.6600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e3895e048c6b3cb65aef5492191eb056", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7626660283856604@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T18:34:03.2530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "249658a637054e34014216762137d7aa", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8891133529070934@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-18T18:34:03.8300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0503795f4773c3d918cb9e662775ea63", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-49927882678062896@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T11:55:05.6130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cc493f6809f2a24856b531a1ff76a4e9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9744617916931669@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T11:55:06.4100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b5f115c6b902de0adcb23a1afedca383", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8381892259222402@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T11:56:08.0330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "342374782f3ff2ab77568c292283baa5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-16352292408421643@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T11:56:08.9400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b0ce35e971889c01fd129afa15c1acd5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6322297569344106@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T11:56:09.7670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5a2fca82d1fb4a2966aef30dc53202c2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5696788497404576@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T11:56:10.5800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2422e93a026b824f23645a961706eae4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-12271256670001063@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T11:56:11.4570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "747cc76595f225d688674d55faad3472", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7585249053022542@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T16:07:17.8070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "95e2a54efadb5a17274c6c7b2172e67d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-06399375943463348@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T16:07:18.9070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "aefb88a38177e8fde8177730934deca3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4301965480300842@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T16:07:19.7730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cd8fad4bd2fdf2605565d9de76edf0ee", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5731324749268948@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T16:07:20.6770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8a9428c83bf9d92107ec2f422c829ad6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8086506583434938@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T16:08:22.4130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a0206e405f21c084ff70ba737d496544", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-33690324825757434@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T16:08:23.3600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e285d2ad5f7e8c844c01232e07c0e161", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4761700404961412@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T16:08:24.3130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "173327339643e06490ba9cfb1a2f83f8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-35772581387377167@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T18:34:09.3700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4025bc6d37f10facbbf9cbaa21fb72f0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8379815528457735@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T18:34:10.4470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b28639af16f3639eb4e8b3e91fe7bb29", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-910374201424298@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T18:35:15.8970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7db1dc6818aa4f746a5a49a0aaac478a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7330540277797539@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T18:35:16.8900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "321d7716b91b1efc24a70863427ba638", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6812867265507777@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T18:35:17.9700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "50eda6fbe1f3c052e852882d63edda75", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4030063708974494@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T18:35:19.0270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "340496eb7bb8e1e2f7aa095fca58a9c3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5398042020085101@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-19T18:35:19.9670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ff9bb26cc3fbac2c07bf7d79cbb39126", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8069043956144636@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T06:58:26.3570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b1d3f04e5119f4c6aa4b23d8c5e67562", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-37732343827968307@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T06:58:27.7970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5abdbe636d09f95d5cdfae5feac8106e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-022732534079180744@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T06:59:30.9830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6a4ff947df1a5337ab13047245341052", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7701838252090216@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T06:59:32.1670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2b53fc3b3f19452b978324e1277c9078", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-40375126322156507@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T06:59:34.1570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "45ac80f0d48e903dc09237997ddc6e6c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-052347761432617435@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T06:59:36.1670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5831c72831a38fa03caf923e9a1e8f63", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-816214261003302@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T06:59:38.1630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ff41cebd783da7fe82ef2f72155446ec", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-533785225647208@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T18:33:20.4670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "28536a6635978552e8625f0c3ee78f41", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3468274747426273@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T18:33:20.9500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b6229fdfabb02b3664d5b38b622183fb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8562254680030004@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T18:34:26.4170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "89f78acd29507f9d6c7bd8a21dece941", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6970732817812251@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T18:34:27.0430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6ff8784b9b8ec004a0e9138d567a8031", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09911144065266286@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T18:34:27.5800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8f0c2789f9d5e507079d7a555084e963", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8300068985832728@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T18:34:28.0500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b7d511314db0c3251eee953a2b1737db", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7158765330584547@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-21T18:34:28.5500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "73af5243d13d9bdf79727ab1cab4a2e5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-33242818298032994@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-22T18:32:13.1370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6cdd5556ad9286177a9e255b2da8987d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4517282223096848@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-22T18:33:14.9530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f572be5bd0902ff380bb4e2811fecf82", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-005368107156486612@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-22T18:33:15.5270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e081e52cce82ae39e7c83ef66e72d73b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3397757188131626@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-22T18:33:15.9870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6a47be80a9c87ca0ecfea0de8097776b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7564994842619739@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-22T18:33:16.4430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f13f71db9602d949d4309e2759ad3fa3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-534531824623487@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-22T18:33:16.9970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5ead16301cbc5ea6decdccdd3f9425c1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-30795400751803237@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-22T18:34:23.4300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5d0764f9477b7ed401c7e5fa4cb649ad", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-49274903571309114@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-23T18:33:01.9930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9df70661fa1e9669cf8ddb5a56171217", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8021676799867695@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-23T18:33:02.6470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a257e72e9bb15c9681cbf781a6613fd0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7245730127074677@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-23T18:33:03.2130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "153658fc7573abe07c13283094f2ee9b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4834327706882464@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-23T18:33:03.6900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "82c88cccb271fb8747fa47ebb7c5a1f5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8222919178809742@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-23T18:33:04.2070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "26b5fde80870aea5dab3b28795a0f062", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8147572371283277@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-23T18:34:07.9830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "44c41e9af3361ca6841d09895bfaa798", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-0327085402735644@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-23T18:34:08.5070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "012e7c13c0ad2d2938603ad185c570f6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5853706232173982@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-24T18:32:15.3270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "91bed70c7d7a921d516c95286fb6204a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-010923533659875306@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-24T18:33:16.7970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7f7c83568bc6ac9f03c3e6286b33606d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7302111782163755@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-24T18:33:17.7170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ddf7bea2bd9f85e1c91456a30f9df9b6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7994954120314206@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-24T18:33:18.7730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "be1fac843e716835e983f459850db9c0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-30495198322221584@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-24T18:33:19.6700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "db0d793373e51d1434cf1e81ba17abcb", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8646356590045691@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-24T18:33:20.5130000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8c52f9e792d44b0559c2dfbd563e2db7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3390716392254609@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-24T18:34:24.8730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0a9b9713b041c6db2be9d52cf81691e6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-10602366525099316@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T11:32:12.4170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7e11db8ac456abe8fa500a173d468d2d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8861063268776012@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T11:33:14.4100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f92e0f081936253b840f131d8ba34b61", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6265320654886947@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T11:33:15.4830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bbcce5284bef9fcae97fa6d656c0d92f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-17166333956180835@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T11:33:16.6100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5b40b3ef8e4523d167e32ea5be818edf", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9782635118876288@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T11:33:17.6370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f1be8be1cac440d73edd4e2eb101093e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-27752640020667463@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T11:33:18.7900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c39152ba4c82ab82f5d78b9906a95ffc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7784964032834502@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T11:34:20.7670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a9e4f13791b7afbe582f57a179fd3806", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07798472997936179@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T18:34:25.2230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4ace0fc7c654aeeb5663f89afed95a78", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2779965385715465@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T18:34:26.2700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "75302471dd907613fbbc63f822451713", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8515584213062815@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T18:35:04.2230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e2b17035ffb83cc61690c84db4a0ad9e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7181211759261921@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T18:35:05.3630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ca99bdd96db70b09ef9495fe8dce3030", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-27711853281478094@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T18:35:06.5070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c6db488b9ba986c34d9114674d952afa", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-008718482430491892@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T18:35:07.6470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "424724a2d43190ee189c080a277cd148", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5935423747135059@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-25T18:35:08.6930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ee2cfd3af39e79956e8a475feb6fcdb7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6520692214611924@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-26T18:33:25.4030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d0c60f2f1e8e0e17ff9c92ffa820f023", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6282513084717106@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-26T18:33:26.5900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "178995a2c37f82aefb1861fb3ecf087f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9164406547291604@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-26T18:33:27.7170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c011a276767cdf72d62ab834cb894587", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7894610334011164@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-26T18:33:28.8570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a3e92b8ecced20a90124512ffdb3f2e5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-280226962996194@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-26T18:34:02.2930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "3ab3471b59b8c5d03c31a723b86efc6b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8541135414699477@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-26T18:34:03.5270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "17ca7876f850efbc56ed8498a47e4549", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5667910331586209@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-26T18:34:04.6830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4c59585293ac0704c4671d0663c1efc8", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22697905580050404@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-27T18:33:10.1270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1486348bc48b95b024c5cb1b8ed2776d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-07638797762809024@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-27T18:33:11.4070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c8531e6ed62dcafcd92f380350d58161", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8818091576698326@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-27T18:34:18.8930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7b0bfe1bc8ad4bee1b26f121c9a53890", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-22611581863706254@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-27T18:34:20.1730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bed28d40cee4377c28dea4ad478d8c25", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-04774389589321937@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-27T18:34:21.6270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "602c5eef60e70845f9413e03cd74c3dc", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-37292429603394417@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-27T18:34:22.9230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "50a758448787b98bc9653899e6f016b9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5254098728650154@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-27T18:34:24.4870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "50bdf1168fbd5ed3cd520eaa1c869de5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2942571321416517@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-28T18:34:24.4730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5ac65236ab8903f616f42724efe67ffe", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9163569813995065@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-28T18:34:25.0530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0caf2cf9d6fd371420ec6804d63b4018", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-08477830739961678@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-28T18:34:25.5100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "114caf94b870f87dc1f73203d781142a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-980007099496591@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-28T18:35:28.2430000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "0508a02194baf3d2ea0a4e2b8cfba2e3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09444399428547323@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-28T18:35:28.6670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c64f6dc5786baf06d43f1cc65ba867c0", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6331037018829349@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-28T18:35:29.1930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f9141c4f4f33bf8d0b3e5045d27484e1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-48665539794656243@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-28T18:35:29.7100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "33ec50ab123bb924488d28e53c76a38a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2444942831204996@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-29T18:33:18.8170000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ab7802e14f4e78b95c058517b6f4b255", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9556932419615036@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-29T18:33:19.5270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a5f70ed714abcc140482843c3afb37c6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-11587502131879779@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-29T18:33:20.2700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "057f77fe3a1ee9685bc8883c9421d0b6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-2139342968476069@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-29T18:33:21.0730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6e3fe3de0c9fe6d058ad711d8ae06a5d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-04341588863230139@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-29T18:33:21.8200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1bbf564083b55ffdbdf6ed22aa030452", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6450511758614067@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-29T18:34:26.0670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b44495823f22681a322730f51ce05bc2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4247778776033774@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-29T18:34:26.8070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5b1633fefc731c8d2a140cc065992bb7", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9230495141830519@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-30T18:32:08.2200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "01c1df46ff47d91f428a9f4d5f82b5f5", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8500050087578999@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-30T18:33:09.4030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8dd7491e720751e7bf56722ba778197c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8693648015774945@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-30T18:33:09.9300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "cf23a87cf99d357ef0ac687a59a3582f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3602715430176874@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-30T18:33:10.4370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c2dc49059c287156f9e22438f8075544", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-5262170200315702@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-30T18:33:10.9930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "86ba828eef24c62f18ffac41fdb5639d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-19151189600533025@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-30T18:33:11.4770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fa201e149b94bd3942391c3632b7b214", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9320105533643255@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-30T18:34:12.6530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "53c343244c50c786725f2ea8eb85d0ea", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9810057303773383@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T11:13:26.8970000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e62590c08285dfc0ed3342a55d2cba6c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8564379812181483@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T11:14:28.0200000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f389d249748bb729a81f4c42a6668514", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-35946876245595905@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T11:14:28.5500000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7bcb4837f0047adba63d3616f9ed8151", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-17929853946177265@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T11:14:28.9800000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1a2703d855e359a0fc018c0dbc43a7ff", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8920444575048684@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T11:14:29.4070000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "1b13b89169d960b0187414250fd81dd4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-669955820521036@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T11:14:29.8270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ae7a99c9d18c4ac57c16c269f105d839", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3939760521887823@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T11:15:30.9230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "623fd49e722182cb9c0dc7ae1aa0ab7a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-046921245000057676@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T12:37:21.9100000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "d36bd4748ed12d759173b458652a40f9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3648876598354215@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T12:37:22.4830000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "301fe8ac25f637fb3652d705791c16c3", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4218585905181731@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T12:37:23.0400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "07c5e1c1fcdcccaa3a8e0f2e04ff2932", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4582645423932784@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T12:37:23.5900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4113663bbd88d4d23f8aa7ec3d3a0dca", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4766791011306505@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T12:38:24.9470000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c82dce99d85872590539eee4f8c8730c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-005896894366963945@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T12:38:25.5700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "915db61e0af31c83507c253a1712247f", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-28714791110389715@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T12:38:26.0630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "18e3376f3e95a039e05a3f06dc1db0a9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6599311011311568@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:36:05.8770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "6210a9eef3c37d54b91b2e8cfbbc5e02", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-30113233416441176@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:37:09.1930000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "b045a351e99f2138aa66a763415d43b1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1506992284401678@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:37:09.6770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "e491b28f65084b5d11732b77fa0dd71d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9916772185486696@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:37:10.2870000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "bc36f61f48815fdda9f497c816d4c67d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-09276904040474354@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:37:10.8000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "97699dc17048d25c8c050177aaf29211", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-139254422260497@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-28T18:38:00.0030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2ca1ee5da3b5349baafb11e31bcdc71e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-011941811841038041@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:38:12.3000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "ff33e90669d163ff8f0b29c320ee53d6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4484349186328559@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:35:14.1770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5bd27becfd27d023b5462a54fcc20f35", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9809217437185195@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:35:15.0270000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "7e19dc95ff94c846b6524d5c40cd6b96", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-38854098669286974@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:36:19.2000000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "909fef47287ddda32310e8b592e48779", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8964965548974076@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:36:19.9400000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "f8897618f596482fc49f4c568436a9d1", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4190199545898893@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:36:20.6770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "85da0d80567f9230ec49a512a7f94285", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3993378827168528@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:36:21.4600000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dcb8156c58617c791ff047fa7d2eef1e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6566391602772023@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": -2, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:36:22.2370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "5584055add2e968b5d3b8fa701c270f9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7448558393786099@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T12:59:58.2530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "fd1bc3857bb42a2fbb944d5c26436564", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-1928770118132982@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T13:00:12.7530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "306703a244772143c4495c84eaa59143", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-46111256534291467@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T13:00:24.0570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "8fb765ee0639de748d016ba07fdd998a", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-4979464415089503@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T13:00:35.2230000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a27e46435e3666817137a5aa28089f58", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-8233489200135331@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T13:00:46.5370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "48cb5b1b6d453d8631444d78d53621a2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-40474992027231793@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T13:00:57.9030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "47dc868250d9d45c9dadb68b331cb719", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-007559562298249389@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T13:01:09.3370000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2252d4f99e24112177102aeeb2bc19ff", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7542603779570927@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:34:24.3670000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "2f29dd57c2bc9611fdced641ec94388b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-45835667075429365@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:34:38.2570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "72b3154e25dd3b2f902260a454e37fe9", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-7781605031166939@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:34:49.7530000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "dfb2f4816553cba958b350ee9e28a3c6", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9785358581196433@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:35:00.6700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c91d232810b1d658da954cdb1e8f39be", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-38581287128402@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:35:12.8570000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "a088e0650b3a2612d6ada0a3fe457e1e", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9225085183066993@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:35:24.2330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9c4ef8c48d297249888d32a02c6cc6f2", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9273017765756183@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-10-31T18:35:35.6300000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c724a5b2d88c50995f2a0841e7bac7f4", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-0216133424628151@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:34:01.2330000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "211b060d7cdeb61e20f3b3a43fb9c33b", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-6398346124789177@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:34:20.1030000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9d6fcf16e0fba657dee3c783e9be6e7d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-159188289302982@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:34:31.3700000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "eca4f75e126d0b92d1c5a052c0be57ed", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-3961263855633712@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:34:42.5730000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "4febec150887a2ebda0f5fba0dd0047c", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9883536331547327@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:34:54.3630000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "c3b6bed02bcf5b0d4b2e50eae3c48629", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-9854360858661776@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:35:05.6900000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + }, + { + "id": "9c487f215f85de80a9683d6c6ab6705d", + "firstName": "John", + "lastName": "Smith", + "email": "assigned-32903305112818915@mailinator.com", + "userGuid": "", + "order": 0, + "roleId": 2, + "status": 1, + "statusMessage": null, + "statusDateTime": "2013-11-01T18:35:17.0770000Z", + "delegatedRecipientId": null, + "signatureFingerprint": null, + "signatureHost": null, + "signatureLocation": null, + "signatureBrowser": null, + "embedUrl": "" + } + ], + "dates": [ + "2013-11-01T00:00:00.0000000", + "2013-10-31T00:00:00.0000000", + "2013-10-30T00:00:00.0000000", + "2013-10-29T00:00:00.0000000", + "2013-10-28T00:00:00.0000000", + "2013-10-27T00:00:00.0000000", + "2013-10-26T00:00:00.0000000", + "2013-10-25T00:00:00.0000000", + "2013-10-24T00:00:00.0000000", + "2013-10-23T00:00:00.0000000", + "2013-10-22T00:00:00.0000000", + "2013-10-21T00:00:00.0000000", + "2013-10-20T00:00:00.0000000", + "2013-10-19T00:00:00.0000000", + "2013-10-18T00:00:00.0000000", + "2013-10-17T00:00:00.0000000", + "2013-10-16T00:00:00.0000000", + "2013-10-15T00:00:00.0000000", + "2013-10-14T00:00:00.0000000", + "2013-10-11T00:00:00.0000000", + "2013-10-10T00:00:00.0000000", + "2013-10-08T00:00:00.0000000" + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383331818709 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureEnvelopes.json b/src/test/resources/responses/signature/GetSignatureEnvelopes.json index d4d301d..78bb18a 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopes.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopes.json @@ -1,13 +1,13 @@ { "result": { - "envelopesCount": 6854, + "envelopesCount": 1756, "envelopes": [ { - "id": "86d884a8b9f386591651a1eb2fd01908", - "name": "Envelope 75081708451482", - "creationDateTime": "2013-07-30T20:43:09.7530000Z", - "updatedDateTime": "2013-07-30T20:43:13.0170000Z", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "26a0c971b0b7226719f9a7bb7efa67cd", + "name": "Envelope 8600470510920635", + "creationDateTime": "2013-11-01T18:48:08.3870000Z", + "updatedDateTime": "2013-11-01T18:48:11.8530000Z", + "ownerGuid": "6d75a4d4db83f6fc", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, @@ -21,16 +21,16 @@ "documentsPages": 1, "recipients": [ { - "id": "580c7890573753f0fe4b789a32fe7d2c", + "id": "149e0246825192c53ec205b93715e6a1", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "statusDateTime": "", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -45,16 +45,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " }, { - "id": "33552336679d41e77e2f803a7e37a9ac", - "name": "Envelope 9874775858470601", - "creationDateTime": "2013-07-30T20:41:27.5330000Z", - "updatedDateTime": "2013-07-30T20:41:28.4070000Z", - "ownerGuid": "ea103bbe8cb8ce07", - "status": -1, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "id": "ec1d3b9ea849c6a74c30ec3f9b36c298", + "name": "Envelope 1233896619121313", + "creationDateTime": "2013-11-01T18:46:39.3530000Z", + "updatedDateTime": "2013-11-01T18:46:45.5030000Z", + "ownerGuid": "6d75a4d4db83f6fc", + "status": 1, + "statusDateTime": "2013-11-01T18:46:45.5030000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -66,22 +66,22 @@ "documentsPages": 0, "recipients": [ { - "id": "2145ecc0d095fd602af5e7df18848b03", + "id": "a4acc6c0e220d51a94ba6121e30f7617", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, - "status": 0, + "status": 1, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "statusDateTime": "2013-11-01T18:46:45.4870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "" + "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/ec1d3b9ea849c6a74c30ec3f9b36c298/a4acc6c0e220d51a94ba6121e30f7617" } ], "waterMarkText": "", @@ -90,16 +90,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " }, { - "id": "5af94d516581ebb2950387fd9b5ef73e", - "name": "Envelope 3805254671519176", - "creationDateTime": "2013-07-30T20:41:25.2370000Z", - "updatedDateTime": "2013-07-30T20:41:26.1430000Z", - "ownerGuid": "ea103bbe8cb8ce07", - "status": -1, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "id": "96d4906f30898bc37a430dcb2725b0bf", + "name": "Envelope 015749699663053285", + "creationDateTime": "2013-11-01T18:46:31.2670000Z", + "updatedDateTime": "2013-11-01T18:46:37.3370000Z", + "ownerGuid": "6d75a4d4db83f6fc", + "status": 1, + "statusDateTime": "2013-11-01T18:46:37.3370000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -111,22 +111,22 @@ "documentsPages": 0, "recipients": [ { - "id": "4b4b12c3551e0c3e46e815b698442943", + "id": "43b9a743f24b65a058b9f9681fcdbacb", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, - "status": 0, + "status": 1, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "statusDateTime": "2013-11-01T18:46:37.3130000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "" + "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/96d4906f30898bc37a430dcb2725b0bf/43b9a743f24b65a058b9f9681fcdbacb" } ], "waterMarkText": "", @@ -135,16 +135,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " }, { - "id": "132d7fe6c6d4badef4e3034fa7053da7", - "name": "Envelope 9155437748139598", - "creationDateTime": "2013-07-30T20:41:23.2370000Z", - "updatedDateTime": "2013-07-30T20:41:24.0030000Z", - "ownerGuid": "ea103bbe8cb8ce07", - "status": -1, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "id": "fda1879239aff2a5ed3c81316e604dbd", + "name": "Envelope 766919943839699", + "creationDateTime": "2013-11-01T18:46:23.2100000Z", + "updatedDateTime": "2013-11-01T18:46:29.2100000Z", + "ownerGuid": "6d75a4d4db83f6fc", + "status": 1, + "statusDateTime": "2013-11-01T18:46:29.2100000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -156,22 +156,22 @@ "documentsPages": 0, "recipients": [ { - "id": "ffc1e9e8ed13ac2f59f8b3f31c6daf4a", + "id": "c98811fa144aeb5a4f05e7160d812862", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, - "status": 0, + "status": 1, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "statusDateTime": "2013-11-01T18:46:29.1930000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "" + "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/fda1879239aff2a5ed3c81316e604dbd/c98811fa144aeb5a4f05e7160d812862" } ], "waterMarkText": "", @@ -180,16 +180,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " }, { - "id": "c8d63074586c663feea97a77b9a9cfd4", - "name": "Envelope 9383468358052186", - "creationDateTime": "2013-07-30T20:41:21.0630000Z", - "updatedDateTime": "2013-07-30T20:41:21.8770000Z", - "ownerGuid": "ea103bbe8cb8ce07", - "status": -1, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "id": "d7f9abdda48d10fbb087cdd812c3956c", + "name": "Envelope 766853939078461", + "creationDateTime": "2013-11-01T18:46:14.9370000Z", + "updatedDateTime": "2013-11-01T18:46:21.1870000Z", + "ownerGuid": "6d75a4d4db83f6fc", + "status": 1, + "statusDateTime": "2013-11-01T18:46:21.1870000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -201,22 +201,22 @@ "documentsPages": 0, "recipients": [ { - "id": "1b3eee27406166932b38e3dc5006141a", + "id": "19c3101d4cfe1affe8aaf5b61bb1b97e", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, - "status": 0, + "status": 1, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "statusDateTime": "2013-11-01T18:46:21.1630000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "" + "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/d7f9abdda48d10fbb087cdd812c3956c/19c3101d4cfe1affe8aaf5b61bb1b97e" } ], "waterMarkText": "", @@ -225,16 +225,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " }, { - "id": "3f1979dfa4b15b0e6438b5fe30aae976", - "name": "Envelope 3741900865536437", - "creationDateTime": "2013-07-30T20:41:18.8000000Z", - "updatedDateTime": "2013-07-30T20:41:19.5970000Z", - "ownerGuid": "ea103bbe8cb8ce07", - "status": -1, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "id": "aac89cb362a47de92cb163f138ddaf20", + "name": "Envelope 7784095745494438", + "creationDateTime": "2013-11-01T18:46:06.5970000Z", + "updatedDateTime": "2013-11-01T18:46:12.7970000Z", + "ownerGuid": "6d75a4d4db83f6fc", + "status": 1, + "statusDateTime": "2013-11-01T18:46:12.7970000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -246,22 +246,22 @@ "documentsPages": 0, "recipients": [ { - "id": "3b7aabfedc7a389e5f421ae4aabc23e6", + "id": "c37d6ebf96d9344818fef2d51ce5d24c", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, - "status": 0, + "status": 1, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "statusDateTime": "2013-11-01T18:46:12.7830000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "" + "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/aac89cb362a47de92cb163f138ddaf20/c37d6ebf96d9344818fef2d51ce5d24c" } ], "waterMarkText": "", @@ -270,11 +270,11 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375216993298 + "composedOn": 1383331692374 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureForm.json b/src/test/resources/responses/signature/GetSignatureForm.json index 5d8ce38..0ed2066 100644 --- a/src/test/resources/responses/signature/GetSignatureForm.json +++ b/src/test/resources/responses/signature/GetSignatureForm.json @@ -1,11 +1,11 @@ { "result": { "form": { - "id": "7d4ce3bf73b205bc199fde496194028a", - "name": "Form 1164", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "2c2f3585fa543d68d2c537e42bbe9ba0", + "name": "Form (269)", + "ownerGuid": "6d75a4d4db83f6fc", "templateGuid": null, - "createdTimeStamp": "2013-07-30T20:51:05.7670000Z", + "createdTimeStamp": "2013-11-01T18:51:49.9570000Z", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "documentsCount": 0, @@ -15,7 +15,7 @@ ], "canParticipantDownloadForm": false, - "waterMarkText": "", + "waterMarkText": null, "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375217466064 + "composedOn": 1383331910311 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureFormDocuments.json b/src/test/resources/responses/signature/GetSignatureFormDocuments.json index afa9b57..a1fecb4 100644 --- a/src/test/resources/responses/signature/GetSignatureFormDocuments.json +++ b/src/test/resources/responses/signature/GetSignatureFormDocuments.json @@ -1,20 +1,20 @@ { "result": { - "formId": "f37d65e98da471bfd82f4a45259d56bc", + "formId": "6e5116c8cb225e983a5d0c2c1f7973a4", "documents": [ { - "id": "4c4dec0d77318bfe8582d835f315c8713350bed81ba25adca718cb482dafe4f6", - "name": "document_one.doc", - "formGuid": "f37d65e98da471bfd82f4a45259d56bc", - "documentGuid": "4c4dec0d77318bfe8582d835f315c8713350bed81ba25adca718cb482dafe4f6", - "originalDocumentGuid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", + "id": "63e10f33b3de1de0f6caf92b9d86586dc4c6bd15ea761d6505cbd662dfe7f2b2", + "name": "document_one_doc.pdf", + "formGuid": "6e5116c8cb225e983a5d0c2c1f7973a4", + "documentGuid": "63e10f33b3de1de0f6caf92b9d86586dc4c6bd15ea761d6505cbd662dfe7f2b2", + "originalDocumentGuid": "ffde0113ba4d5bd8444d26b27809b61f55bf02c9f466151a8813727550843cd5", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", - "assignedDateTime": "2013-07-30T20:49:17.1730000Z", + "assignedDateTime": "2013-11-01T18:51:10.6100000Z", "order": 0 } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375217357486 + "composedOn": 1383331870914 } \ 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..e1f288e 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": "01ec1a91299645e432577a8b81effb88", + "fields": [ + { + "id": "1ae5053e4bf72abbb9c910964302648f", + "formGuid": "01ec1a91299645e432577a8b81effb88", + "participantGuid": "", + "name": "Signature_1", + "mandatory": true, + "regularExpression": null, + "data": "", + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "locations": [ + { + "id": "1ddfdf675379be8bf2d28c4103726a54", + "documentGuid": "8b770ccf24c260e0d2e85cc21181b31eac07b8c43ff41fed5759fd9ba87f3cdb", + "fieldGuid": "1ae5053e4bf72abbb9c910964302648f", + "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": null, + "defaultValue": null, + "tooltip": "Signature_1", + "guidanceText": "" + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383331881395 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureFormResources.json b/src/test/resources/responses/signature/GetSignatureFormResources.json index 05bdcb7..536ae2e 100644 --- a/src/test/resources/responses/signature/GetSignatureFormResources.json +++ b/src/test/resources/responses/signature/GetSignatureFormResources.json @@ -2,87 +2,41 @@ "result": { "documents": [ { - "id": "99c411692d48d9f59bdda9bac7bd40d61b85e55dbd0a84408888ddc14f63162c", - "name": "document_one_with_fields_form.pdf", - "formGuid": "", - "documentGuid": "99c411692d48d9f59bdda9bac7bd40d61b85e55dbd0a84408888ddc14f63162c", - "originalDocumentGuid": "b9c4c22657f25d77b0e0409b3bdd79a578aedbb43f6ff2ff067d2f96b2f77b5e", - "originalDocumentMD5": "0afce13528a26851498e5e3082788e99", - "assignedDateTime": "2012-09-04T08:17:23.0670000Z", - "order": 1 - }, - { - "id": "540e642568dc2f42835dd35b3f7d73c29981b1adfa7c466080b9e6ffa4f98698", - "name": "document_one_form.pdf", - "formGuid": "", - "documentGuid": "540e642568dc2f42835dd35b3f7d73c29981b1adfa7c466080b9e6ffa4f98698", - "originalDocumentGuid": "7de189e4124866a6574b2faddc899c234bd81da02d0f033199f6c32531839c3a", - "originalDocumentMD5": "d997b6e0c8d49a72da0c0141d39f5d26", - "assignedDateTime": "2012-09-05T16:06:21.3970000Z", - "order": 1 - }, - { - "id": "677196701e7366e66ce424f6de7b1ba1a90c1d19464cdd974f25bc17bc05034f", - "name": "document_one_form.pdf", - "formGuid": "", - "documentGuid": "677196701e7366e66ce424f6de7b1ba1a90c1d19464cdd974f25bc17bc05034f", - "originalDocumentGuid": "0147693097fef0a0b8940589c2f19f5c5350bbe0cb27c7700b6964f059bf2440", + "id": "952524a8ba31efdf111a28b5c55a9c674dcaa2222c77798394a0b26166083568", + "name": "document_one_doc.pdf", + "formGuid": null, + "documentGuid": "952524a8ba31efdf111a28b5c55a9c674dcaa2222c77798394a0b26166083568", + "originalDocumentGuid": "1d8503cf37d1562ff67b8a5b8039e0da188262238a66f8ef9d983dbfb8ed657a", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", - "assignedDateTime": "2013-03-14T18:28:25.7470000Z", + "assignedDateTime": "2013-11-01T18:51:37.7370000Z", "order": 0 } ], "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-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-15T00:00:00.0000000", - "2013-05-14T00:00:00.0000000", - "2013-03-15T00:00:00.0000000", - "2013-03-14T00:00:00.0000000", - "2012-09-05T00:00:00.0000000", - "2012-09-04T00:00:00.0000000" + "2013-11-01T00:00:00.0000000", + "2013-10-31T00:00:00.0000000", + "2013-10-29T00:00:00.0000000", + "2013-10-28T00:00:00.0000000", + "2013-10-27T00:00:00.0000000", + "2013-10-26T00:00:00.0000000", + "2013-10-25T00:00:00.0000000", + "2013-10-24T00:00:00.0000000", + "2013-10-23T00:00:00.0000000", + "2013-10-22T00:00:00.0000000", + "2013-10-21T00:00:00.0000000", + "2013-10-20T00:00:00.0000000", + "2013-10-19T00:00:00.0000000", + "2013-10-18T00:00:00.0000000", + "2013-10-16T00:00:00.0000000", + "2013-10-15T00:00:00.0000000", + "2013-10-14T00:00:00.0000000", + "2013-10-11T00:00:00.0000000", + "2013-10-10T00:00:00.0000000", + "2013-10-09T00:00:00.0000000", + "2013-10-08T00:00:00.0000000" ] }, "status": "Ok", "error_message": null, - "composedOn": 1375217432486 + "composedOn": 1383331898048 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureForms.json b/src/test/resources/responses/signature/GetSignatureForms.json index 0eb3b15..abc8cb3 100644 --- a/src/test/resources/responses/signature/GetSignatureForms.json +++ b/src/test/resources/responses/signature/GetSignatureForms.json @@ -1,13 +1,13 @@ { "result": { - "count": 1367, + "count": 271, "forms": [ { - "id": "d2b8ebe05212dd4475e4fe4ff7129724", - "name": "Form 1151", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "f84d90a2c7574b602b553be5b7bc0c25", + "name": "Form (269)", + "ownerGuid": "6d75a4d4db83f6fc", "templateGuid": null, - "createdTimeStamp": "2013-07-30T20:48:16.3000000Z", + "createdTimeStamp": "2013-11-01T18:50:35.6370000Z", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "documentsCount": 1, @@ -17,112 +17,112 @@ ], "canParticipantDownloadForm": false, - "waterMarkText": "", + "waterMarkText": null, "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, "attachSignedDocument": false }, { - "id": "5645b8a56333577ffa53d03f6bc04049", - "name": "Form 1150", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "b15a66f4d475aa9a6743235e6877a29c", + "name": "Form (268)", + "ownerGuid": "6d75a4d4db83f6fc", "templateGuid": null, - "createdTimeStamp": "2013-07-30T20:32:49.0770000Z", - "status": -1, + "createdTimeStamp": "2013-11-01T18:37:06.9200000Z", + "status": 2, "statusDateTime": "1970-01-01T00:00:00.0000000Z", - "documentsCount": 1, - "documentsPages": 1, + "documentsCount": 0, + "documentsPages": 0, "participantsCount": 0, "fieldsInFinalFileName": [ ], "canParticipantDownloadForm": false, - "waterMarkText": "", + "waterMarkText": null, "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, "attachSignedDocument": false }, { - "id": "0480329f168497d61891304f2fc35c23", - "name": "Form 1149", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "6c1a630ea605b64da0bf79b5b029ef80", + "name": "Form (267)", + "ownerGuid": "6d75a4d4db83f6fc", "templateGuid": null, - "createdTimeStamp": "2013-07-30T20:32:43.9070000Z", - "status": -1, + "createdTimeStamp": "2013-11-01T18:37:02.2070000Z", + "status": 2, "statusDateTime": "1970-01-01T00:00:00.0000000Z", - "documentsCount": 1, - "documentsPages": 1, + "documentsCount": 0, + "documentsPages": 0, "participantsCount": 0, "fieldsInFinalFileName": [ ], "canParticipantDownloadForm": false, - "waterMarkText": "", + "waterMarkText": null, "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, "attachSignedDocument": false }, { - "id": "4c3ba7c9647abca7d23521a4017940da", - "name": "Form 1148", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "7e84990894202f3ae0d3306fcb121552", + "name": "Form (266)", + "ownerGuid": "6d75a4d4db83f6fc", "templateGuid": null, - "createdTimeStamp": "2013-07-30T20:32:38.6700000Z", - "status": -1, + "createdTimeStamp": "2013-11-01T18:36:57.6370000Z", + "status": 2, "statusDateTime": "1970-01-01T00:00:00.0000000Z", - "documentsCount": 1, - "documentsPages": 1, + "documentsCount": 0, + "documentsPages": 0, "participantsCount": 0, "fieldsInFinalFileName": [ ], "canParticipantDownloadForm": false, - "waterMarkText": "", + "waterMarkText": null, "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, "attachSignedDocument": false }, { - "id": "644fd484730721a0564ad707147a31fb", - "name": "Form 1147", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "60abb5a1f16fb69ac5bcb13121fe4d1d", + "name": "Form (265)", + "ownerGuid": "6d75a4d4db83f6fc", "templateGuid": null, - "createdTimeStamp": "2013-07-30T20:32:01.7500000Z", - "status": -1, + "createdTimeStamp": "2013-11-01T18:33:42.1600000Z", + "status": 3, "statusDateTime": "1970-01-01T00:00:00.0000000Z", - "documentsCount": 1, - "documentsPages": 1, + "documentsCount": 0, + "documentsPages": 0, "participantsCount": 0, "fieldsInFinalFileName": [ ], "canParticipantDownloadForm": false, - "waterMarkText": "", + "waterMarkText": null, "waterMarkImage": "", - "fieldsCount": 1, + "fieldsCount": 0, "notifyOwnerOnSign": false, "attachSignedDocument": false }, { - "id": "7eb0ab9b757a54049df046655dd6fae6", - "name": "Form 1146", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "ca0d4933fa7b19c567c4e0e1a134f71c", + "name": "Form (264)", + "ownerGuid": "6d75a4d4db83f6fc", "templateGuid": null, - "createdTimeStamp": "2013-07-30T20:31:56.5000000Z", - "status": -1, + "createdTimeStamp": "2013-11-01T18:33:37.0470000Z", + "status": 3, "statusDateTime": "1970-01-01T00:00:00.0000000Z", - "documentsCount": 1, - "documentsPages": 1, + "documentsCount": 0, + "documentsPages": 0, "participantsCount": 0, "fieldsInFinalFileName": [ ], "canParticipantDownloadForm": false, - "waterMarkText": "", + "waterMarkText": null, "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, @@ -132,5 +132,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375217298798 + "composedOn": 1383331837867 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignaturePredefinedLists.json b/src/test/resources/responses/signature/GetSignaturePredefinedLists.json index 1b3e447..c268b17 100644 --- a/src/test/resources/responses/signature/GetSignaturePredefinedLists.json +++ b/src/test/resources/responses/signature/GetSignaturePredefinedLists.json @@ -2,476 +2,8 @@ "result": { "lists": [ { - "id": "cca679ecfb383c567a54d856edfcaf4e", - "name": "List ", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "885d090ca18cfda0200bf081f1a6bab6", - "name": "List - 1114831698845602", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "5f89199da5c4e51fdab6fb79ef3128d8", - "name": "List - 127364741381069", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "1313fc31d0fb3ffce1ea177666934ede", - "name": "List - 08156545655459613", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "a2dea17c3f4659542a991838b2ff2be0", - "name": "List - 7564488563304332", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "146d4187d4873b5b8846e03b6c17d9ee", - "name": "List - 09301138231265305", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "c1fe03372d1db4131f8a35a3aadb425d", - "name": "List - 8434865226745041", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "6e38a8b20dd8c013570ff5ff5157c8e9", - "name": "List - 37786819201472743", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "925748c7e985d8f9517c246535bf3f2e", - "name": "List ", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "1f8a03c3b5da792804580e440fa5d7ec", - "name": "List - 3215418668102643", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "9d956ed0fc9df566955ed6774f2221ef", - "name": "List - 19271393725295194", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "0ef46336c47a7d17e55d71fd16617cfe", - "name": "List - 31335042265595237", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "ab744ffcddecb1b708f6c97164c036d3", - "name": "List - 8447808309235444", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "99369cd591146611c5d7a5fefc550150", - "name": "List - 5335391522901505", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "77ff1f677e4a9b947a82c203582efc22", - "name": "List - 24663588082096677", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "f09efb5eb48c90d3ed87bd98b797d579", - "name": "List - 974765389270537", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "258d8041a486bf72af6e704f88b3bb3a", - "name": "List - 18940914836210854", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "5a3784f95d290ba880100e497b394bf8", - "name": "List - 3721375422223583", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "2684dde86cf6024ce622b15ce07a7fa5", - "name": "List - 9316351651171787", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "4f84ead3f1216d4ab812d6de142d1ec9", - "name": "List - 10722988787723131", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "64187c77dfd341e536c7a76cc01b9b45", - "name": "List - 2312418224701659", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "9c9af09ee048119e302d3d1b84334694", - "name": "List - 6058359938760012", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "c2ef29224cca4de81faae6b628ace14c", - "name": "List - 7056594774286349", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "d199814d1a5ef70cbad8578c562b5872", - "name": "List ", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "213530a382d139987c71b849161d593c", - "name": "List ", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "ee63d00140b4610939c396b0ecc0206b", - "name": "List - 20036554137192175", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "5540e8ccd8f3ab742df3b122facbbeb0", - "name": "List - 8161590270026886", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "c39d3b40eb76f7a43c8467cb0d62eb04", - "name": "List - 514232980290349", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "2da626c6b572c80c03c77d5420270808", - "name": "List - 20028073088472176", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "15bd81396fc05f0861c46c8ff02d4bbd", - "name": "List - 9460210458474576", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "ba2f0ba6dcb5ce56e47dbc38f54807b6", - "name": "List - 9051852860691043", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "e30a522f1fd043217ee3f3c47404e441", - "name": "List - 5935091959058079", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "eec457c66fe83824a2b793da7b25357c", - "name": "List ", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "7d28496d13ae902cf4c7f7ad24610ae4", - "name": "List - 7254279491370486", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "53d9847e649fcb61cab30d6bf6ddcb41", - "name": "List - 8160985401396004", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "914d9e6f990b3351f75c3e74a70525ee", - "name": "List - 8818086942801433", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "626a852af87cf4092a08f78ff5627285", - "name": "List - 406474342157475", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "ad50293ff981dd53781663adf6f7e420", - "name": "List - 9296615078310934", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "f74d752884759f28315e8d8b2721b46a", - "name": "List - 7072445420925555", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "20e0018371fa072ddcbcfc19db4b5e84", - "name": "List - 30648462115649844", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "632e7566cbae803075aceedb1ddb2f95", - "name": "List ", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "0a25bb617ed35137fe3f8f07adde41a0", - "name": "List - 1920792526703694", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "dc3642d70725f4c4a6826635ca438a21", - "name": "List - 5282368963693368", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "8c49cba224c40a64ae50dc144e3d4f44", - "name": "List - 47382409374684586", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "46850ee2953ecfc2028b2999fd92933a", - "name": "List - 7978714151896775", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "3e4c1dac2c368f90ce5ff66efedf4d38", - "name": "List - 4794600020592662", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "e179ec105b3b7b09bfce97d484102781", - "name": "List - 8402732166710817", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "9650b848ca9a3b90745e7f549701ffa8", - "name": "List - 08205070137810233", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "196df80fb4760391111192b5518a9351", - "name": "List - 7493738424281171", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "c17e6fac4a32c0a1c67c5be941a43f4a", - "name": "List - 5197087778661912", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "94c08433a585ad6df76d35d73eba3ce0", - "name": "List - 394034124613175", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "146dccf37029e22b9f57b3088b959a19", - "name": "List - 7006207967841203", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "3ba5ea60ba01fe47ef8f30b896505418", - "name": "List - 13043082626826374", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "9562497fd397fed1982bca320bb1bb94", - "name": "List - 2844600794609654", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "e657e81ec0781b4f3f7939fb0ba5b0c1", - "name": "List - 18247840784933556", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "bfa4479bc3cd6aff2984b8bcadbaf75f", - "name": "List ", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "c389e5ad9f1fc5cd92f09956fdf651ca", - "name": "List - 7046282307065159", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "a94eea97719ba42eeef9a6403624c42a", - "name": "List - 7305899789203709", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "a42d09ea7192f4b693c8aedcd396b806", - "name": "List - 3922187248594169", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "2eadb3dcb347097b113d66849f2483ba", - "name": "List - 48054718528589846", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "914dec77a3ded5198f4d49e02ad9b75e", - "name": "List - 47182646701436093", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "93e450c1e696868e175601c2d81335ad", - "name": "List - 5392827875898669", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "43dd48cc569451c18301c8f1a020b3c7", - "name": "List - 100252480554051", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "02d860078c7a207d7ec42be9fd1cc415", - "name": "List ", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "5c07df4decf23e2fa243d4b18dca4a38", - "name": "List - 9103444472950049", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "d190efc97ccf05cdb9ccbb466a504853", - "name": "List - 8595095176929671", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "6003f7a46fa87ce0e51889282631784f", - "name": "List - 6947847220787422", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "ee919e87cafdafe7fae4a2e3f8d6609a", - "name": "List - 10923630793362615", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "668bf8874b38ef7dd90fdb0f098a9c99", - "name": "List - 5161488506961294", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "5b4bdd582de5c9befb27b8926e9adc98", - "name": "List - 4453258988440353", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "21475ba2013ed65b58e8e4b7b185b964", - "name": "List - 7506041603845736", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "6a718353899d3b16ff512eb88d687bca", - "name": "List ", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "e1297d385fa3c93deb4b8dd8faa6ba41", - "name": "List - 7391476009878303", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "5aa4abc8f5bf54832ada92b537969fee", - "name": "List - 21329698555862686", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "bf7ad590fe209eadda160f54b5bd3f0b", - "name": "List - 8807926159915258", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "b7bd4e0bf6e83a53acea43e184ecbdd1", - "name": "List - 27785845914007967", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "c89f38d6ba7ae45d6c41bf456f581b3b", - "name": "List - 9013749016985279", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "b1e6496de40312566c83e722fc3a654c", - "name": "List - 6561594392353925", - "values": "value1;value2", - "defaultValue": "value1" - }, - { - "id": "0793e0d48b791fc8da1f43a372d4dfd3", - "name": "List - 06910753217720167", + "id": "a79c0bd00e5bfd616fc9b271cd995472", + "name": "List 3936613389160002", "values": "value1;value2", "defaultValue": "value1" } @@ -479,5 +11,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375217500642 + "composedOn": 1383331918918 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureTemplate.json b/src/test/resources/responses/signature/GetSignatureTemplate.json index ba35beb..cb933ab 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplate.json +++ b/src/test/resources/responses/signature/GetSignatureTemplate.json @@ -1,9 +1,9 @@ { "result": { "template": { - "id": "98fa2df94425d2344bcb3e6d15300bf2", - "name": "Template 1892367510115256", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "67d1cf7a1fef82796846077aeabe7412", + "name": "Template 33723108540352487", + "ownerGuid": "6d75a4d4db83f6fc", "reminderTime": 1, "stepExpireTime": 3, "templateExpireTime": 6, @@ -23,5 +23,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375217806892 + "composedOn": 1383332072969 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureTemplateDocuments.json b/src/test/resources/responses/signature/GetSignatureTemplateDocuments.json index f01642f..64c71e3 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplateDocuments.json +++ b/src/test/resources/responses/signature/GetSignatureTemplateDocuments.json @@ -1,20 +1,20 @@ { "result": { - "templateId": "3086d40e0b9c7b5cfe7178ad85ea875c", + "templateId": "75652b2bedefa884826d5477a650df2e", "documents": [ { - "documentId": "1ed92cd9da7f312d12ad47a27330edf6df3685c44e4a05fa40a5d40b17074dde", - "templateId": "3086d40e0b9c7b5cfe7178ad85ea875c", + "documentId": "60468c8d0d5f6cc8aab21d2c096555ce07336fa0d9c1a32b20237f2b5d4b1944", + "templateId": "75652b2bedefa884826d5477a650df2e", "order": 0, - "name": "document_one.doc", + "name": "document_one_doc.pdf", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "originalDocumentPagesCount": 1, "fieldsCount": 0, - "originalDocumentId": "1ed92cd9da7f312d12ad47a27330edf6df3685c44e4a05fa40a5d40b17074dde" + "originalDocumentId": "60468c8d0d5f6cc8aab21d2c096555ce07336fa0d9c1a32b20237f2b5d4b1944" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375217602283 + "composedOn": 1383331967012 } \ 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..02d03be 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplateFields.json +++ b/src/test/resources/responses/signature/GetSignatureTemplateFields.json @@ -1,21 +1,21 @@ { "result": { - "templateId": "8dd6e1be32b6a471cb72b4a2c125e509", + "templateId": "1817b4a89a43eda343ccb9b4c6f602bf", "fields": [ { - "id": "b69706708e0ec41bf39e1f1e9d7c80d1", - "templateId": "8dd6e1be32b6a471cb72b4a2c125e509", - "recipientId": "e91b895b17a9a70865aeb1267a244ae2", - "name": "Signature", + "id": "620b0683a546277c45b71bb69e8f7ef0", + "templateId": "1817b4a89a43eda343ccb9b4c6f602bf", + "recipientId": "6656bdf9ead6251f7c58b86effb1e81d", + "name": "Signature_1", "mandatory": true, "order": 0, "regularExpression": "", "signatureFieldId": 1, "locations": [ { - "id": "c35586c889ff63c36001e79827678f46", - "documentId": "b9edbedfa0c8567dff25cea6941748c54c288b3915d95e1d1c520d9f2dbbfc56", - "fieldId": "b69706708e0ec41bf39e1f1e9d7c80d1", + "id": "b85bfbc6e29519ceebafcff679bfc528", + "documentId": "e2a4f795d65bcd1e2d21d3491da7a284bc121e58b935e8115a7610a38ad3925f", + "fieldId": "620b0683a546277c45b71bb69e8f7ef0", "page": 1, "locationX": 0.1, "locationY": 0.1, @@ -31,14 +31,14 @@ } ], "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Signature", + "acceptableValues": null, + "defaultValue": null, + "tooltip": "Signature_1", "guidanceText": "" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375217671861 + "composedOn": 1383332012291 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureTemplateRecipients.json b/src/test/resources/responses/signature/GetSignatureTemplateRecipients.json index 030926e..bea1cc5 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplateRecipients.json +++ b/src/test/resources/responses/signature/GetSignatureTemplateRecipients.json @@ -1,9 +1,9 @@ { "result": { - "templateId": "b9fd52a9023dbe1eb077c1bf3e0ee985", + "templateId": "cf69731e1ef81541bddb7cb2df205479", "recipients": [ { - "id": "eeb57ed729ef9ce3f5d54969f7168e8b", + "id": "e271674362ed3994eb14f0b7d1fe49e6", "nickname": "John Smith", "order": 0, "roleId": 2 @@ -12,5 +12,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375217736330 + "composedOn": 1383332053982 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureTemplateResources.json b/src/test/resources/responses/signature/GetSignatureTemplateResources.json index 7475b9f..5ca27ca 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplateResources.json +++ b/src/test/resources/responses/signature/GetSignatureTemplateResources.json @@ -2,48 +2,26 @@ "result": { "documents": [ { - "documentId": "4a33733b74d8982d931a1fdcc45590735346a82fe973e8075e66ec6406665429", - "templateId": "", + "documentId": "a4bc8f374ee1ee66d91284cc6707be7309fc3e14078aafcda1bec28962d182f5", + "templateId": "cd239a5f1542d2807ea6a96e2bb2605a", "order": 0, "name": "document_one_doc.pdf", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "originalDocumentPagesCount": 1, "fieldsCount": 0, - "originalDocumentId": "4a33733b74d8982d931a1fdcc45590735346a82fe973e8075e66ec6406665429" - }, - { - "documentId": "e8551f622bc86541033a3ca7b56435f5b353905674048364ad643309d46b6dd3", - "templateId": "", - "order": 1, - "name": "document_one_docx.pdf", - "originalDocumentMD5": "8cf89bdc1c58444a969f2a88d1623b4f", - "originalDocumentPagesCount": 1, - "fieldsCount": 0, - "originalDocumentId": "e8551f622bc86541033a3ca7b56435f5b353905674048364ad643309d46b6dd3" + "originalDocumentId": "a4bc8f374ee1ee66d91284cc6707be7309fc3e14078aafcda1bec28962d182f5" } ], "recipients": [ { - "id": "01152ec8e06ae751dce48727bfda4d64", + "id": "1969abeab827c912a53533b97ead422e", "nickname": "John Smith", "order": 0, "roleId": 2 - }, - { - "id": "8b797bf51be8ce22dcbc0951eb9d72f0", - "nickname": "John Smith 2", - "order": 0, - "roleId": 2 - }, - { - "id": "df91a9ff7fb4d110edd3f8f963a3b678", - "nickname": "Pavel", - "order": 32767, - "roleId": 1 } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375217774408 + "composedOn": 1383332064436 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureTemplates.json b/src/test/resources/responses/signature/GetSignatureTemplates.json index df23d30..91ba400 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplates.json +++ b/src/test/resources/responses/signature/GetSignatureTemplates.json @@ -1,11 +1,11 @@ { "result": { - "templatesCount": 1054, + "templatesCount": 1, "templates": [ { - "id": "043c5d84add3d66bc6bde913c4cb1e58", - "name": "Template 29890233107781017", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "1b4ab8325355b4c032efa3345335f71e", + "name": "Template 4728109317125784", + "ownerGuid": "6d75a4d4db83f6fc", "reminderTime": 1, "stepExpireTime": 3, "templateExpireTime": 6, @@ -17,117 +17,7 @@ "documentsPages": 1, "recipients": [ { - "id": "536e83f01868992aedcf340146944fe6", - "nickname": "John Smith", - "order": 0, - "roleId": 2 - } - ], - "waterMarkText": "", - "waterMarkImage": "", - "fieldsCount": 0 - }, - { - "id": "6531ef116b0dfd21f1e6988d5ab1db3d", - "name": "Template 5628106895819844", - "ownerGuid": "ea103bbe8cb8ce07", - "reminderTime": 1, - "stepExpireTime": 3, - "templateExpireTime": 6, - "ownerShouldSign": false, - "orderedSignature": false, - "emailSubject": "Sign this!", - "emailBody": "", - "documentsCount": 0, - "documentsPages": 0, - "recipients": [ - - ], - "waterMarkText": "", - "waterMarkImage": "", - "fieldsCount": 0 - }, - { - "id": "24f515503d33b1b69702e4bb66c7ac1e", - "name": "Template 7685166967868785", - "ownerGuid": "ea103bbe8cb8ce07", - "reminderTime": 1, - "stepExpireTime": 3, - "templateExpireTime": 6, - "ownerShouldSign": false, - "orderedSignature": false, - "emailSubject": "Sign this!", - "emailBody": "", - "documentsCount": 0, - "documentsPages": 0, - "recipients": [ - - ], - "waterMarkText": "", - "waterMarkImage": "", - "fieldsCount": 0 - }, - { - "id": "4b7d8c2a3a2e273d0542fa36f6638a44", - "name": "Template 7789151215115653", - "ownerGuid": "ea103bbe8cb8ce07", - "reminderTime": 1, - "stepExpireTime": 3, - "templateExpireTime": 6, - "ownerShouldSign": false, - "orderedSignature": false, - "emailSubject": "Sign this!", - "emailBody": "", - "documentsCount": 0, - "documentsPages": 0, - "recipients": [ - - ], - "waterMarkText": "", - "waterMarkImage": "", - "fieldsCount": 0 - }, - { - "id": "e80c086b46070c21cc6db7946be3de9d", - "name": "Template 24743352230095994", - "ownerGuid": "ea103bbe8cb8ce07", - "reminderTime": 1, - "stepExpireTime": 3, - "templateExpireTime": 6, - "ownerShouldSign": false, - "orderedSignature": false, - "emailSubject": "Sign this!", - "emailBody": "", - "documentsCount": 1, - "documentsPages": 1, - "recipients": [ - { - "id": "aa930c2f842fa878d01d4ae965b44d03", - "nickname": "John Smith", - "order": 0, - "roleId": 2 - } - ], - "waterMarkText": "", - "waterMarkImage": "", - "fieldsCount": 0 - }, - { - "id": "e5f8efb715e9670d5d852f94b8808d40", - "name": "Template 7114800724232201", - "ownerGuid": "ea103bbe8cb8ce07", - "reminderTime": 1, - "stepExpireTime": 3, - "templateExpireTime": 6, - "ownerShouldSign": false, - "orderedSignature": false, - "emailSubject": "Sign this!", - "emailBody": "", - "documentsCount": 1, - "documentsPages": 1, - "recipients": [ - { - "id": "2e9ba1b0e2e94663cce113c9c02dcc3d", + "id": "1969abeab827c912a53533b97ead422e", "nickname": "John Smith", "order": 0, "roleId": 2 @@ -141,5 +31,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375217535501 + "composedOn": 1383331926643 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatures.json b/src/test/resources/responses/signature/GetSignatures.json index 43e44d3..bdab9ff 100644 --- a/src/test/resources/responses/signature/GetSignatures.json +++ b/src/test/resources/responses/signature/GetSignatures.json @@ -1,13 +1,13 @@ { "result": { - "count": 282, + "count": 1, "signatures": [ { - "id": "d471572adf063913245f8d626d11da6b", - "userGuid": "ea103bbe8cb8ce07", + "id": "959372d2fda0764422e8579d3d5f362e", + "userGuid": "6d75a4d4db83f6fc", "recipientId": null, - "name": "John Smith's Signature - 9", - "companyName": " ", + "name": "John Smith's Signature - 8470227690245007", + "companyName": "", "position": "", "firstName": "John", "lastName": "Smith", @@ -15,98 +15,13 @@ "textInitials": "", "signatureImageFileId": null, "initialsImageFileId": null, - "signatureImageUrl": null, - "initialsImageUrl": null, - "createdTimeStamp": "2013-07-30T20:42:37.377" - }, - { - "id": "f8f0560ce515746481160711b131859a", - "userGuid": "ea103bbe8cb8ce07", - "recipientId": null, - "name": "Signature 9761372130033052", - "companyName": "Aspose", - "position": "QA", - "firstName": "John", - "lastName": "Smith", - "fullName": "John Smith", - "textInitials": "JS", - "signatureImageFileId": null, - "initialsImageFileId": null, - "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f8f0560ce515746481160711b131859a/signatureData", - "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f8f0560ce515746481160711b131859a/initialsData", - "createdTimeStamp": "2013-07-30T20:22:14.373" - }, - { - "id": "c3b3bd0bd26dafb6381a37e3fde223cc", - "userGuid": "ea103bbe8cb8ce07", - "recipientId": null, - "name": "Signature 7954053527404478", - "companyName": "Aspose", - "position": "QA", - "firstName": "John", - "lastName": "Smith", - "fullName": "John Smith", - "textInitials": "JS", - "signatureImageFileId": null, - "initialsImageFileId": null, - "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c3b3bd0bd26dafb6381a37e3fde223cc/signatureData", - "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c3b3bd0bd26dafb6381a37e3fde223cc/initialsData", - "createdTimeStamp": "2013-07-30T20:22:13.907" - }, - { - "id": "d5307971f4f73f72650799f6057df202", - "userGuid": "ea103bbe8cb8ce07", - "recipientId": null, - "name": "Signature 9467996791353954", - "companyName": "Aspose", - "position": "QA", - "firstName": "John", - "lastName": "Smith", - "fullName": "John Smith", - "textInitials": "JS", - "signatureImageFileId": null, - "initialsImageFileId": null, - "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/d5307971f4f73f72650799f6057df202/signatureData", - "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/d5307971f4f73f72650799f6057df202/initialsData", - "createdTimeStamp": "2013-07-30T20:22:13.42" - }, - { - "id": "c79f6c8ad6c58fe211c0ed763bf94638", - "userGuid": "ea103bbe8cb8ce07", - "recipientId": null, - "name": "Signature 11341404079591388", - "companyName": "Aspose", - "position": "QA", - "firstName": "John", - "lastName": "Smith", - "fullName": "John Smith", - "textInitials": "JS", - "signatureImageFileId": null, - "initialsImageFileId": null, - "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c79f6c8ad6c58fe211c0ed763bf94638/signatureData", - "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c79f6c8ad6c58fe211c0ed763bf94638/initialsData", - "createdTimeStamp": "2013-07-30T20:22:12.873" - }, - { - "id": "9110627eff750c5d100c92d16875c15a", - "userGuid": "ea103bbe8cb8ce07", - "recipientId": null, - "name": "Signature 03377624115890232", - "companyName": "Aspose", - "position": "QA", - "firstName": "John", - "lastName": "Smith", - "fullName": "John Smith", - "textInitials": "JS", - "signatureImageFileId": null, - "initialsImageFileId": null, - "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/9110627eff750c5d100c92d16875c15a/signatureData", - "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/9110627eff750c5d100c92d16875c15a/initialsData", - "createdTimeStamp": "2013-07-30T20:22:12.31" + "signatureImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/959372d2fda0764422e8579d3d5f362e/signatureData", + "initialsImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/959372d2fda0764422e8579d3d5f362e/initialsData", + "createdTimeStamp": "2013-11-01T18:48:03.343" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375216957751 + "composedOn": 1383331683717 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ImportContacts.json b/src/test/resources/responses/signature/ImportContacts.json index ee0a07a..b6a08ed 100644 --- a/src/test/resources/responses/signature/ImportContacts.json +++ b/src/test/resources/responses/signature/ImportContacts.json @@ -5,5 +5,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375217841626 + "composedOn": 1383332082229 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifyContact.json b/src/test/resources/responses/signature/ModifyContact.json index 7e4d90a..1cdeb6e 100644 --- a/src/test/resources/responses/signature/ModifyContact.json +++ b/src/test/resources/responses/signature/ModifyContact.json @@ -1,14 +1,14 @@ { "result": { "contact": { - "id": "bc5c944c1d8228ef9690887efad91a3c", + "id": "7eb1bbd84bcbbcf27bb708abfa390c7d", "firstName": "John", "lastName": "Smith", - "email": "user_one_5520834057821428@mailinator.com", + "email": "user_one_431150232582761@mailinator.com", "provider": "Groupdocs" } }, "status": "Ok", "error_message": null, - "composedOn": 1375217877017 + "composedOn": 1383332093384 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureEnvelope.json b/src/test/resources/responses/signature/ModifySignatureEnvelope.json index fd02ad3..33ebfd1 100644 --- a/src/test/resources/responses/signature/ModifySignatureEnvelope.json +++ b/src/test/resources/responses/signature/ModifySignatureEnvelope.json @@ -1,11 +1,11 @@ { "result": { "envelope": { - "id": "534571cee9aeffe865560cb1d547b369", - "name": "Envelope 912092395241101", - "creationDateTime": "2013-07-30T21:03:20.8930000Z", - "updatedDateTime": "2013-07-30T21:03:21.6269063ZZ", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "9a6a3c33d417a4655c5ca36a435d5b13", + "name": "Envelope 010989810044765291", + "creationDateTime": "2013-11-01T18:59:02.8300000Z", + "updatedDateTime": "2013-11-01T18:59:03.8450625ZZ", + "ownerGuid": "6d75a4d4db83f6fc", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, @@ -19,16 +19,16 @@ "documentsPages": 0, "recipients": [ { - "id": "b7deadb82570c1eb259eed094370baff", - "firstName": "Pavel", - "lastName": "Strashniy", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "id": "c08888d5a2547bc15f85abc80c7c89ac", + "firstName": "owner", + "lastName": "owner", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 32767, "roleId": 1, "status": 0, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000ZZ", + "statusDateTime": "", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -43,10 +43,10 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": " " } }, "status": "Ok", "error_message": null, - "composedOn": 1375218201470 + "composedOn": 1383332343506 } \ 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..6e405bb 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": "09ec24f8c19518c5df63296078832077", + "documentId": "b9b78313f0ada0fa16a7cb2e5f82176e5c05e1a7aa1a9a73ba042834754c4825", + "recipientId": "d330f245da087ea5b5ecdfc83a058bff", + "field": { + "id": "b090ea6cc41afe7645c7914cb3d595b7", + "envelopeId": "09ec24f8c19518c5df63296078832077", + "recipientId": "d330f245da087ea5b5ecdfc83a058bff", + "name": "Signature8982622757671102", + "mandatory": true, + "order": 0, + "regularExpression": "^.+$", + "getDataFrom": null, + "data": "", + "fillTimeStamp": "", + "signatureFieldId": 1, + "locations": [ + { + "id": "23c797276937950b03a01b8f4bd7cf33", + "documentId": "b9b78313f0ada0fa16a7cb2e5f82176e5c05e1a7aa1a9a73ba042834754c4825", + "fieldId": "b090ea6cc41afe7645c7914cb3d595b7", + "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 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375218099642 + ], + "fieldType": 1, + "acceptableValues": null, + "defaultValue": null, + "tooltip": null, + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383332280703 } \ 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..679ec69 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": "3289367689a425375d4519bf2a028cc5", + "documentId": "3cad6755580a8bc8efdc7315b0f8b114aea0defee1bface3f29d66dbb89191d8", + "recipientId": "6224f8dc15e02de402d3446e29ea946c", + "field": { + "id": "41b09370a1e43b05d62f7c3772c9a3ee", + "envelopeId": "3289367689a425375d4519bf2a028cc5", + "recipientId": "6224f8dc15e02de402d3446e29ea946c", + "name": "Signature_1", + "mandatory": true, + "order": 0, + "regularExpression": "", + "getDataFrom": null, + "data": "", + "fillTimeStamp": "", + "signatureFieldId": 1, + "locations": [ + { + "id": "29c6c68b04a09e9cdcb7f5823147b80e", + "documentId": "3cad6755580a8bc8efdc7315b0f8b114aea0defee1bface3f29d66dbb89191d8", + "fieldId": "41b09370a1e43b05d62f7c3772c9a3ee", + "page": 1, + "locationX": 0.2, + "locationY": 0.2, + "locationWidth": 90.0, + "locationHeight": 30.0, + "fontName": "Helvetica", + "fontColor": "red", + "fontSize": 10, + "fontBold": true, + "fontItalic": true, + "fontUnderline": true, + "align": 1 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375217929955 + ], + "fieldType": 1, + "acceptableValues": null, + "defaultValue": null, + "tooltip": "Signature_1", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383332123117 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureEnvelopeRecipient.json b/src/test/resources/responses/signature/ModifySignatureEnvelopeRecipient.json index 3c6a5d4..1359b32 100644 --- a/src/test/resources/responses/signature/ModifySignatureEnvelopeRecipient.json +++ b/src/test/resources/responses/signature/ModifySignatureEnvelopeRecipient.json @@ -1,17 +1,17 @@ { "result": { - "envelopeId": "54cfb911fd2bf67a406410956edc40ee", + "envelopeId": "4382e173ec84c1c8395d1cb7f1b6b2d5", "recipient": { - "id": "ae0c81f2783ca9817def9a65eb023769", + "id": "929fe05becb7a2a0b6c8339e4a4a8b4f", "firstName": "New John", "lastName": "New Smith", - "email": "new-recipient-9026574703507284@mailinator.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "new-recipient-5660726436554973@mailinator.com", + "userGuid": "6d75a4d4db83f6fc", "order": 1, "roleId": 3, "status": 0, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "statusDateTime": "", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -22,5 +22,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375218163626 + "composedOn": 1383332327040 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureField.json b/src/test/resources/responses/signature/ModifySignatureField.json index c68953d..6dc9e35 100644 --- a/src/test/resources/responses/signature/ModifySignatureField.json +++ b/src/test/resources/responses/signature/ModifySignatureField.json @@ -1,8 +1,8 @@ { "result": { "field": { - "id": "2eb8b5e69b2a30688b9e2927225e1bcc", - "name": "TestSignField5737660748021", + "id": "33a6373569f13ffd381bc91d229612d7", + "name": "TestSignField5478138672444844", "graphSizeW": 100, "graphSizeH": 100, "getDataFrom": "Test", @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375218252610 + "composedOn": 1383332375654 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureForm.json b/src/test/resources/responses/signature/ModifySignatureForm.json index 9b7b645..fd2f776 100644 --- a/src/test/resources/responses/signature/ModifySignatureForm.json +++ b/src/test/resources/responses/signature/ModifySignatureForm.json @@ -1,11 +1,11 @@ { "result": { "form": { - "id": "d064ea6a9428eb356abbf6608a7e65e2", - "name": "New Form 233", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "ecf76e434d54e2b13dda70283460a753", + "name": "New Form (1)", + "ownerGuid": "6d75a4d4db83f6fc", "templateGuid": null, - "createdTimeStamp": "2013-07-30T21:08:03.9530000Z", + "createdTimeStamp": "2013-11-01T19:02:56.8070000Z", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "documentsCount": 0, @@ -25,5 +25,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375218484422 + "composedOn": 1383332577370 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureFormDocument.json b/src/test/resources/responses/signature/ModifySignatureFormDocument.json index 22e3af4..5b9b793 100644 --- a/src/test/resources/responses/signature/ModifySignatureFormDocument.json +++ b/src/test/resources/responses/signature/ModifySignatureFormDocument.json @@ -1,6 +1,18 @@ { - "result": null, - "status": null, - "error_message": null, - "composedOn": null + "result": { + "formId": "7d1dbe1fada4a78645b6b9f61c4e08dc", + "document": { + "id": "4636330c6c94fa8c1573f309e25dae6811ef3854c45a1ae6f43ac004258bced9", + "name": "document_one_jpg.pdf", + "formGuid": "7d1dbe1fada4a78645b6b9f61c4e08dc", + "documentGuid": "4636330c6c94fa8c1573f309e25dae6811ef3854c45a1ae6f43ac004258bced9", + "originalDocumentGuid": "52b4a11f1381296bdb318905c735338f696ff2f555de1398a82e488f429f9e27", + "originalDocumentMD5": "eb91a98c5131dc120e1ba8846128cb4e", + "assignedDateTime": "2013-11-01T19:00:16.7435000ZZ", + "order": 2 + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383332413333 } \ 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..0559589 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": "9ca35b9e41b52c5331b37771ef99b8f8", + "documentId": "9fb03317b09eba44889fed8c30f2cfea286c9e519170917bf3562fb2674ea2f7", + "participantId": null, + "field": { + "id": "4b8bbb1db7bd4c4ea030590b60e9ae41", + "formGuid": "9ca35b9e41b52c5331b37771ef99b8f8", + "participantGuid": "", + "name": "Signature32641435903285954", + "mandatory": true, + "regularExpression": "^.+$", + "data": "", + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "locations": [ + { + "id": "c3944e054f1587a6a6c28986d7377c7d", + "documentGuid": "9fb03317b09eba44889fed8c30f2cfea286c9e519170917bf3562fb2674ea2f7", + "fieldGuid": "4b8bbb1db7bd4c4ea030590b60e9ae41", + "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 } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1375218432375 + ], + "fieldType": 1, + "acceptableValues": null, + "defaultValue": null, + "tooltip": null, + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383332549274 } \ 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..7eb6ea4 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": "d7fdb014d285ac6fa0e20241a918b021", + "documentId": "653854e9a216226c81e7e903c86f693551e5fc6543875d3fdc853efedf5f7c89", + "participantId": null, + "field": { + "id": "0b68c8e86696d8057473540d1990c023", + "formGuid": "d7fdb014d285ac6fa0e20241a918b021", + "participantGuid": "", + "name": "Signature_1", + "mandatory": true, + "regularExpression": null, + "data": "", + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "locations": [ + { + "id": "49ffbec7d2e2901c6bc571dcf5f3a52e", + "documentGuid": "653854e9a216226c81e7e903c86f693551e5fc6543875d3fdc853efedf5f7c89", + "fieldGuid": "0b68c8e86696d8057473540d1990c023", + "page": 1, + "locationX": 0.2, + "locationY": 0.2, + "locationWidth": 90.0, + "locationHeight": 30.0, + "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_1", + "guidanceText": "" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383332453505 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureTemplate.json b/src/test/resources/responses/signature/ModifySignatureTemplate.json index 85d19e4..ff0bfbf 100644 --- a/src/test/resources/responses/signature/ModifySignatureTemplate.json +++ b/src/test/resources/responses/signature/ModifySignatureTemplate.json @@ -1,9 +1,9 @@ { "result": { "template": { - "id": "e171c182366b36bffe326e28ecf90733", - "name": "Template 585310958010442", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "e49a154e7829e977b7cab656db4003cb", + "name": "Template 8482632966459701", + "ownerGuid": "6d75a4d4db83f6fc", "reminderTime": 1, "stepExpireTime": 1, "templateExpireTime": 1, @@ -15,8 +15,8 @@ "documentsPages": 0, "recipients": [ { - "id": "25fb94322597b7ad347c458ed081aa69", - "nickname": "Pavel", + "id": "495e5fe166df1b70cc495325e9d7c35c", + "nickname": "api@groupdocs.com", "order": 32767, "roleId": 1 } @@ -28,5 +28,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375218774813 + "composedOn": 1383332775575 } \ 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..a72774f 100644 --- a/src/test/resources/responses/signature/ModifySignatureTemplateField.json +++ b/src/test/resources/responses/signature/ModifySignatureTemplateField.json @@ -1,22 +1,22 @@ { "result": { - "templateId": "fcf187ea60a692fadcee52d9b70a97b7", - "documentId": "bec1f3bfa7ef7c98b5ce9a2b8ff6080a78d5717c4c9f653b3e9e4d29b957183a", - "recipientId": "a5e29233033a1efa884d396e5004e213", + "templateId": "1cf9378756f846ce568dd21f595532d2", + "documentId": "d5865256d6da6ce7d7f98c319fff5a3d8436d554437fa8887b2dd5f4e78cf4a2", + "recipientId": "a7f82d2677578dffdf6c03237c80a4ea", "field": { - "id": "a6233dc3d879ca94c00897bcf27c5f06", - "templateId": "fcf187ea60a692fadcee52d9b70a97b7", - "recipientId": "a5e29233033a1efa884d396e5004e213", - "name": "Signature2847649691220322", + "id": "578c3eee5e84c827f026dc325b9549f9", + "templateId": "1cf9378756f846ce568dd21f595532d2", + "recipientId": "a7f82d2677578dffdf6c03237c80a4ea", + "name": "Signature39996187776526027", "mandatory": true, "order": 0, "regularExpression": "^.+$", "signatureFieldId": 1, "locations": [ { - "id": "1a4a7afd5edba22ac26872823e81030c", - "documentId": "bec1f3bfa7ef7c98b5ce9a2b8ff6080a78d5717c4c9f653b3e9e4d29b957183a", - "fieldId": "a6233dc3d879ca94c00897bcf27c5f06", + "id": "a5dc88ae073af308b9fba43fb73109d4", + "documentId": "d5865256d6da6ce7d7f98c319fff5a3d8436d554437fa8887b2dd5f4e78cf4a2", + "fieldId": "578c3eee5e84c827f026dc325b9549f9", "page": 1, "locationX": 0.1, "locationY": 0.1, @@ -32,13 +32,9 @@ } ], "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": null, "guidanceText": "" } }, "status": "Ok", - "error_message": null, - "composedOn": 1375218680047 + "composedOn": 1383332725377 } \ 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..7a2453c 100644 --- a/src/test/resources/responses/signature/ModifySignatureTemplateFieldLocation.json +++ b/src/test/resources/responses/signature/ModifySignatureTemplateFieldLocation.json @@ -1,22 +1,22 @@ { "result": { - "templateId": "78cfc0015f5701430a0b5198c271b4a3", - "documentId": "4c7a6b6010cac00c6f1d7758ab5b50ee4d29a6dd0ac8c0cda4073ca22c7328c3", - "recipientId": "0e27ab42d5f2a68a9d0f479c3d1e61f2", + "templateId": "32fad24daf743c81b163beedd8ac0cc9", + "documentId": "e9ba16b182324d41aa332ab0df60c21df335ba2059cada9af07899d4e689b3f7", + "recipientId": "6c0b199db3498282faaf706093782a8f", "field": { - "id": "039836b06dbca3f80c9fd7a66a2a23de", - "templateId": "78cfc0015f5701430a0b5198c271b4a3", - "recipientId": "0e27ab42d5f2a68a9d0f479c3d1e61f2", - "name": "Signature", + "id": "1e255f2c867d49bb75d89009f0f33907", + "templateId": "32fad24daf743c81b163beedd8ac0cc9", + "recipientId": "6c0b199db3498282faaf706093782a8f", + "name": "Signature_1", "mandatory": true, "order": 0, "regularExpression": "", "signatureFieldId": 1, "locations": [ { - "id": "dddbaa2fcf070ceabe2b0c9fd4399179", - "documentId": "4c7a6b6010cac00c6f1d7758ab5b50ee4d29a6dd0ac8c0cda4073ca22c7328c3", - "fieldId": "039836b06dbca3f80c9fd7a66a2a23de", + "id": "784e8126672080dce08ab559b86686cb", + "documentId": "e9ba16b182324d41aa332ab0df60c21df335ba2059cada9af07899d4e689b3f7", + "fieldId": "1e255f2c867d49bb75d89009f0f33907", "page": 1, "locationX": 0.2, "locationY": 0.2, @@ -32,13 +32,10 @@ } ], "fieldType": 1, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Signature", + "tooltip": "Signature_1", "guidanceText": "" } }, "status": "Ok", - "error_message": null, - "composedOn": 1375218536454 + "composedOn": 1383332606485 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureTemplateRecipient.json b/src/test/resources/responses/signature/ModifySignatureTemplateRecipient.json index 3219e94..67c1852 100644 --- a/src/test/resources/responses/signature/ModifySignatureTemplateRecipient.json +++ b/src/test/resources/responses/signature/ModifySignatureTemplateRecipient.json @@ -1,14 +1,14 @@ { "result": { - "templateId": "3fc440ab71773b046ceef7c0bfec8205", + "templateId": "7703c3124c320d30c96292912d0441c2", "recipient": { - "id": "c0b116e59a17e604f96f2a54f8ad8382", + "id": "15d02effc15a970fa13efb56289a8820", "nickname": "John Smith 2", - "order": 0, + "order": 1, "roleId": 2 } }, "status": "Ok", "error_message": null, - "composedOn": 1375218740469 + "composedOn": 1383332765268 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicCreateSignature.json b/src/test/resources/responses/signature/PublicCreateSignature.json index ed9adf2..16ccfc0 100644 --- a/src/test/resources/responses/signature/PublicCreateSignature.json +++ b/src/test/resources/responses/signature/PublicCreateSignature.json @@ -1,10 +1,10 @@ { "result": { "signature": { - "id": "f8b7b5b2d9e923758e32d038c891f94a", - "userGuid": "ea103bbe8cb8ce07", + "id": "f05cdab9d65e6d4302c377ad3bac347a", + "userGuid": "6d75a4d4db83f6fc", "recipientId": null, - "name": "Signature 26654325684980473", + "name": "Signature 6579859354264942", "companyName": "Aspose", "position": "QA", "firstName": "John", @@ -13,12 +13,12 @@ "textInitials": "JS", "signatureImageFileId": null, "initialsImageFileId": null, - "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f8b7b5b2d9e923758e32d038c891f94a/signatureData", - "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f8b7b5b2d9e923758e32d038c891f94a/initialsData", - "createdTimeStamp": "2013-07-30T21:19:50.547" + "signatureImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f05cdab9d65e6d4302c377ad3bac347a/signatureData", + "initialsImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f05cdab9d65e6d4302c377ad3bac347a/initialsData", + "createdTimeStamp": "2013-11-01T19:11:21.463Z" } }, "status": "Ok", "error_message": null, - "composedOn": 1375219190500 + "composedOn": 1383333081440 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicFillEnvelopeField.json b/src/test/resources/responses/signature/PublicFillEnvelopeField.json index 2aa3aa9..d9fdded 100644 --- a/src/test/resources/responses/signature/PublicFillEnvelopeField.json +++ b/src/test/resources/responses/signature/PublicFillEnvelopeField.json @@ -1,30 +1,30 @@ { "result": { - "envelopeId": "5aa86f661a36f7f7b9575fa826d4dcce", - "documentId": "fd858b5c6d9aa1b654414323a9cadcc6d704d26cac1fad8242aa8bdf3b10c63f", - "recipientId": "3e79365551df699128631cb23db36690", + "envelopeId": "92a9e26cb515bf2e462af8e2ffbc9ca3", + "documentId": "0d43e7f95001019f96bbf826bd3c572d84beadb268f00a9a2e25840c37350d7b", + "recipientId": "f5ca14fb896bce51f32ab5102daddb8d", "field": { - "id": "5113fe30c59416c8f5bdc05be0d869fb", - "envelopeId": "5aa86f661a36f7f7b9575fa826d4dcce", - "recipientId": "3e79365551df699128631cb23db36690", - "name": "Checkbox", + "id": "821c4c4e20b80e613e2d8398f74512b3", + "envelopeId": "92a9e26cb515bf2e462af8e2ffbc9ca3", + "recipientId": "f5ca14fb896bce51f32ab5102daddb8d", + "name": "Checkbox_1", "mandatory": true, "order": 0, "regularExpression": "", "getDataFrom": null, "data": "b24=", - "fillTimeStamp": "7/30/2013 9:21:07 PM", + "fillTimeStamp": "11/1/2013 7:12:22 PM", "signatureFieldId": 10, "locations": [ { - "id": "f536a48d65c7a0b1baf1135467f1a87f", - "documentId": "fd858b5c6d9aa1b654414323a9cadcc6d704d26cac1fad8242aa8bdf3b10c63f", - "fieldId": "5113fe30c59416c8f5bdc05be0d869fb", + "id": "aeddb9befd65d3d67b58a8fef1a1eced", + "documentId": "0d43e7f95001019f96bbf826bd3c572d84beadb268f00a9a2e25840c37350d7b", + "fieldId": "821c4c4e20b80e613e2d8398f74512b3", "page": 1, "locationX": 0.1, "locationY": 0.1, - "locationWidth": 25.0, - "locationHeight": 25.0, + "locationWidth": 10.0, + "locationHeight": 10.0, "fontName": "Arial", "fontColor": "black", "fontSize": 10, @@ -35,13 +35,13 @@ } ], "fieldType": 6, - "acceptableValues": "", - "defaultValue": "", - "tooltip": "Checkbox", + "acceptableValues": null, + "defaultValue": null, + "tooltip": "Checkbox_1", "guidanceText": "" } }, "status": "Ok", "error_message": null, - "composedOn": 1375219266891 + "composedOn": 1383333142463 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetEnvelopeDocuments.json b/src/test/resources/responses/signature/PublicGetEnvelopeDocuments.json index 14bf7eb..1ac917e 100644 --- a/src/test/resources/responses/signature/PublicGetEnvelopeDocuments.json +++ b/src/test/resources/responses/signature/PublicGetEnvelopeDocuments.json @@ -1,12 +1,12 @@ { "result": { - "envelopeId": "f363c1878d4aaf7c0d75488c3e4860cf", + "envelopeId": "11b54ee62853984b1f2cdf084af9076f", "documents": [ { - "documentId": "4adab30a3ca4389ff4f3909479cbe52ba548270dc60b7232763e74e88bb7ea4f", - "envelopeId": "f363c1878d4aaf7c0d75488c3e4860cf", + "documentId": "8459cfffb109fb767397d97b2796a1c369a11c1564eb9944353e03b4ba1307f4", + "envelopeId": "11b54ee62853984b1f2cdf084af9076f", "order": 0, - "name": "document_one.doc", + "name": "document_one_doc.pdf", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "finalDocumentMD5": "", "originalDocumentPagesCount": 1, @@ -14,11 +14,11 @@ "originalDocumentImportedFields": [ ], - "originalDocumentId": "4adab30a3ca4389ff4f3909479cbe52ba548270dc60b7232763e74e88bb7ea4f" + "originalDocumentId": "8459cfffb109fb767397d97b2796a1c369a11c1564eb9944353e03b4ba1307f4" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375219366922 + "composedOn": 1383333228115 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetEnvelopeRecipients.json b/src/test/resources/responses/signature/PublicGetEnvelopeRecipients.json index b2824b0..07b7de8 100644 --- a/src/test/resources/responses/signature/PublicGetEnvelopeRecipients.json +++ b/src/test/resources/responses/signature/PublicGetEnvelopeRecipients.json @@ -1,18 +1,18 @@ { "result": { - "envelopeId": "648052dda05bc3c1a48357715727a712", + "envelopeId": "0b775b8fd2d4de5ac415c16cd17e43ec", "recipients": [ { - "id": "bfbabbcd535b5bf64cffdf9cd15336ad", + "id": "eb80356991f31402c7b2299ca94b9f61", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "statusDateTime": "", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375219400235 + "composedOn": 1383333237228 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetSignatureEnvelope.json b/src/test/resources/responses/signature/PublicGetSignatureEnvelope.json index bec47e8..23e6914 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureEnvelope.json +++ b/src/test/resources/responses/signature/PublicGetSignatureEnvelope.json @@ -1,11 +1,11 @@ { "result": { "envelope": { - "id": "2757e229258b3a5d59626e1b93675a24", - "name": "Envelope 05565103249326131", - "creationDateTime": "2013-07-30T21:25:07.3130000Z", - "updatedDateTime": "2013-07-30T21:25:08.1730000Z", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "3ea9feb1dadfeb63a3675f69e93cd2d3", + "name": "Envelope 21243759726070355", + "creationDateTime": "2013-11-01T19:14:59.2800000Z", + "updatedDateTime": "2013-11-01T19:15:00.2330000Z", + "ownerGuid": "6d75a4d4db83f6fc", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, @@ -19,16 +19,16 @@ "documentsPages": 0, "recipients": [ { - "id": "5716a06e6274aaa16bdb26e5a0aa1a4c", + "id": "1dd6af8ebaee5c0cf5ccf3ab1ccae235", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "statusDateTime": "", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -43,10 +43,10 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": "Pavel Strashniy" + "ownerName": null } }, "status": "Ok", "error_message": null, - "composedOn": 1375219508719 + "composedOn": 1383333300922 } \ 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..984b6fa 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json +++ b/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json @@ -1,47 +1,47 @@ { - "result": { - "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 + "result": { + "envelopeId": "0a1d28dbb03f67c74f33322102213a16", + "fields": [ + { + "id": "ace3f8521f0c6155d2635dff626a8957", + "envelopeId": "0a1d28dbb03f67c74f33322102213a16", + "recipientId": "85dd4e6fe4896e300fc2e911130cb8c9", + "name": "Signature_1", + "mandatory": true, + "order": 0, + "regularExpression": "", + "getDataFrom": null, + "data": "", + "fillTimeStamp": "", + "signatureFieldId": 1, + "locations": [ + { + "id": "f394a9afa191d5b3349bc851ae5f8247", + "documentId": "e792992ac2b8ec710d7d1024d6204096a906758d8a9c9fccc4b75aa7f0f8bb62", + "fieldId": "ace3f8521f0c6155d2635dff626a8957", + "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": null, + "defaultValue": null, + "tooltip": "Signature_1", + "guidanceText": "" + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383333251301 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetSignatureForm.json b/src/test/resources/responses/signature/PublicGetSignatureForm.json index c6e7420..455696a 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureForm.json +++ b/src/test/resources/responses/signature/PublicGetSignatureForm.json @@ -1,11 +1,11 @@ { "result": { "form": { - "id": "1dd3f83f37c4b74214f39a71132b7a02", - "name": "Form 1199", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "0f1730722dd48e6371f1a1c296f8b237", + "name": "Form (272)", + "ownerGuid": "6d75a4d4db83f6fc", "templateGuid": null, - "createdTimeStamp": "2013-07-30T21:27:06.0000000Z", + "createdTimeStamp": "2013-11-01T19:15:43.1870000Z", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "documentsCount": 0, @@ -15,7 +15,7 @@ ], "canParticipantDownloadForm": false, - "waterMarkText": "", + "waterMarkText": null, "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375219626157 + "composedOn": 1383333343331 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetSignatureFormDocuments.json b/src/test/resources/responses/signature/PublicGetSignatureFormDocuments.json index 3606e4b..2245db5 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureFormDocuments.json +++ b/src/test/resources/responses/signature/PublicGetSignatureFormDocuments.json @@ -1,20 +1,20 @@ { "result": { - "formId": "51f506831d78f59fdd4c33f17d5c90bf", + "formId": "52b2f9a193ee6a866a9016cd28e2c728", "documents": [ { - "id": "0abecfefd62ff34effbd89b5ba65687368fa91797a5495fc8f6024a32393a9d5", - "name": "document_one.doc", - "formGuid": "51f506831d78f59fdd4c33f17d5c90bf", - "documentGuid": "0abecfefd62ff34effbd89b5ba65687368fa91797a5495fc8f6024a32393a9d5", - "originalDocumentGuid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", + "id": "d5e6ab55fc56f51feaeb4bc4eb46c69621c567963c47d33143f36c59599b6aab", + "name": "document_one_doc.pdf", + "formGuid": "52b2f9a193ee6a866a9016cd28e2c728", + "documentGuid": "d5e6ab55fc56f51feaeb4bc4eb46c69621c567963c47d33143f36c59599b6aab", + "originalDocumentGuid": "743209c198f9118993f9a1550c10c447dbf1c7408fb09134d342d1e4c76ed4dd", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", - "assignedDateTime": "2013-07-30T21:25:49.8770000Z", + "assignedDateTime": "2013-11-01T19:15:18.1100000Z", "order": 0 } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375219550047 + "composedOn": 1383333318271 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicSignDocument.json b/src/test/resources/responses/signature/PublicSignDocument.json index 166190b..001e4cb 100644 --- a/src/test/resources/responses/signature/PublicSignDocument.json +++ b/src/test/resources/responses/signature/PublicSignDocument.json @@ -1,8 +1,8 @@ { "result": { - "jobId": "d3ea512cb552135fa169de7ce4cff60aaac8bfdf4fb871aac478bf21b0a30307" + "jobId": "1772d2377011693f3ca9ca334cbe2301879f1106d8b74086e485bd8788f3f160" }, "status": "Ok", "error_message": null, - "composedOn": 1375219666579 + "composedOn": 1383333358909 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicVerifyDocument.json b/src/test/resources/responses/signature/PublicVerifyDocument.json index 0c6666e..9478886 100644 --- a/src/test/resources/responses/signature/PublicVerifyDocument.json +++ b/src/test/resources/responses/signature/PublicVerifyDocument.json @@ -7,5 +7,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375219705094 + "composedOn": 1383333373303 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublishSignatureForm.json b/src/test/resources/responses/signature/PublishSignatureForm.json index ff88f2d..471425a 100644 --- a/src/test/resources/responses/signature/PublishSignatureForm.json +++ b/src/test/resources/responses/signature/PublishSignatureForm.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375218824860 + "composedOn": 1383332802974 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureEnvelope.json b/src/test/resources/responses/signature/RenameSignatureEnvelope.json index 484b961..b75f132 100644 --- a/src/test/resources/responses/signature/RenameSignatureEnvelope.json +++ b/src/test/resources/responses/signature/RenameSignatureEnvelope.json @@ -1,8 +1,35 @@ { "result": { - "envelope": null + "envelope": { + "id": "77c9c3b1dfedfbbd77e7126b6a36f15e", + "name": "Envelope - 020434552002888573", + "creationDateTime": "2013-11-01T19:07:26.4130000Z", + "updatedDateTime": "2013-11-01T19:07:27.0110781ZZ", + "ownerGuid": "6d75a4d4db83f6fc", + "status": -1, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", + "reminderTime": 1, + "stepExpireTime": 3, + "envelopeExpireTime": 6, + "ownerShouldSign": false, + "orderedSignature": false, + "emailSubject": "Sign this!", + "emailBody": "", + "documentsCount": 0, + "documentsPages": 0, + "recipients": [ + + ], + "waterMarkText": "", + "waterMarkImage": "", + "attachSignedDocument": false, + "includeViewLink": true, + "canBeCommented": true, + "inPersonSign": false, + "ownerName": " " + } }, "status": "Ok", "error_message": null, - "composedOn": 1375218868594 + "composedOn": 1383332846858 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureEnvelopeDocument.json b/src/test/resources/responses/signature/RenameSignatureEnvelopeDocument.json index 22e3af4..f4ac0e1 100644 --- a/src/test/resources/responses/signature/RenameSignatureEnvelopeDocument.json +++ b/src/test/resources/responses/signature/RenameSignatureEnvelopeDocument.json @@ -1,6 +1,22 @@ { - "result": null, - "status": null, - "error_message": null, - "composedOn": null + "result": { + "envelopeId": "433e5d764c2cee0b6813a782501ecc64", + "document": { + "documentId": "c084c1f56d76ac474429c6a580825024427eaf8b57213ceb7afcedea3bf033be", + "envelopeId": "433e5d764c2cee0b6813a782501ecc64", + "order": 0, + "name": "Document - 3852280852152479.pdf", + "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", + "finalDocumentMD5": "", + "originalDocumentPagesCount": 1, + "fieldsCount": 0, + "originalDocumentImportedFields": [ + + ], + "originalDocumentId": "c084c1f56d76ac474429c6a580825024427eaf8b57213ceb7afcedea3bf033be" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383332823049 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureForm.json b/src/test/resources/responses/signature/RenameSignatureForm.json index c10cbc3..a90edce 100644 --- a/src/test/resources/responses/signature/RenameSignatureForm.json +++ b/src/test/resources/responses/signature/RenameSignatureForm.json @@ -1,11 +1,11 @@ { "result": { "form": { - "id": "c732fbff4b1206843826338ea22e55df", - "name": "Form - 5404702098959463", - "ownerGuid": "ea103bbe8cb8ce07", + "id": "7115a1d33c60a4c2f283be60a6786f91", + "name": "Form - 7272819885586904", + "ownerGuid": "6d75a4d4db83f6fc", "templateGuid": null, - "createdTimeStamp": "2013-07-30T21:15:07.5800000Z", + "createdTimeStamp": "2013-11-01T19:07:52.4170000Z", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "documentsCount": 0, @@ -15,7 +15,7 @@ ], "canParticipantDownloadForm": false, - "waterMarkText": "", + "waterMarkText": null, "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375218907860 + "composedOn": 1383332872714 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureFormDocument.json b/src/test/resources/responses/signature/RenameSignatureFormDocument.json index 22e3af4..e089895 100644 --- a/src/test/resources/responses/signature/RenameSignatureFormDocument.json +++ b/src/test/resources/responses/signature/RenameSignatureFormDocument.json @@ -1,6 +1,18 @@ { - "result": null, - "status": null, - "error_message": null, - "composedOn": null + "result": { + "formId": "10ab52c1b0b33b6f17c08098e7a22d9a", + "document": { + "id": "45d9c78f2cc4880e02e7513177191341a994f59ba238977d58e1facbebdd70b1", + "name": "Form - 29144570224404587.pdf", + "formGuid": "10ab52c1b0b33b6f17c08098e7a22d9a", + "documentGuid": "45d9c78f2cc4880e02e7513177191341a994f59ba238977d58e1facbebdd70b1", + "originalDocumentGuid": "6716ea1850a4286e4745de06fb030dff96685a96a9a3777dd505bac4152193f4", + "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", + "assignedDateTime": "2013-11-01T19:07:37.2370000Z", + "order": 0 + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383332857912 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureTemplate.json b/src/test/resources/responses/signature/RenameSignatureTemplate.json index bbd8fe3..9285d1f 100644 --- a/src/test/resources/responses/signature/RenameSignatureTemplate.json +++ b/src/test/resources/responses/signature/RenameSignatureTemplate.json @@ -1,8 +1,27 @@ { "result": { - "template": null + "template": { + "id": "3386a523d2804a43dcc08533246897ec", + "name": "Template - 5691259309148357", + "ownerGuid": "6d75a4d4db83f6fc", + "reminderTime": 1, + "stepExpireTime": 3, + "templateExpireTime": 6, + "ownerShouldSign": false, + "orderedSignature": false, + "emailSubject": "Sign this!", + "emailBody": "", + "documentsCount": 0, + "documentsPages": 0, + "recipients": [ + + ], + "waterMarkText": "", + "waterMarkImage": "", + "fieldsCount": 0 + } }, "status": "Ok", "error_message": null, - "composedOn": 1375218945344 + "composedOn": 1383332901370 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureTemplateDocument.json b/src/test/resources/responses/signature/RenameSignatureTemplateDocument.json index 22e3af4..aa96470 100644 --- a/src/test/resources/responses/signature/RenameSignatureTemplateDocument.json +++ b/src/test/resources/responses/signature/RenameSignatureTemplateDocument.json @@ -1,6 +1,18 @@ { - "result": null, - "status": null, - "error_message": null, - "composedOn": null + "result": { + "templateId": "e5060b38d918eecf3bc20cbe9dd83088", + "document": { + "documentId": "fbace24862bb268aa4b1de223a61a79d7d8b7aceec2df621381b58f3f090fd05", + "templateId": "e5060b38d918eecf3bc20cbe9dd83088", + "order": 0, + "name": "Document - 05985362426913665.pdf", + "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", + "originalDocumentPagesCount": 1, + "fieldsCount": 0, + "originalDocumentId": "fbace24862bb268aa4b1de223a61a79d7d8b7aceec2df621381b58f3f090fd05" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383332882417 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/RestartExpiredSignatureEnvelope.json b/src/test/resources/responses/signature/RestartExpiredSignatureEnvelope.json index 93237cf..af4da68 100644 --- a/src/test/resources/responses/signature/RestartExpiredSignatureEnvelope.json +++ b/src/test/resources/responses/signature/RestartExpiredSignatureEnvelope.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375219009813 + "composedOn": 1383332938425 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/RetrySignEnvelope.json b/src/test/resources/responses/signature/RetrySignEnvelope.json index 22e3af4..4c22ad3 100644 --- a/src/test/resources/responses/signature/RetrySignEnvelope.json +++ b/src/test/resources/responses/signature/RetrySignEnvelope.json @@ -1,6 +1,7 @@ { - "result": null, - "status": null, - "error_message": null, - "composedOn": null + "result": { + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383333020197 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/SignDocument.json b/src/test/resources/responses/signature/SignDocument.json index 4464098..f7330f7 100644 --- a/src/test/resources/responses/signature/SignDocument.json +++ b/src/test/resources/responses/signature/SignDocument.json @@ -1,8 +1,8 @@ { "result": { - "jobId": "45fc738bb1f841b21d97b699086c865ea747b2b6c48c3096506c52c2cbfe249b" + "jobId": "e6ee725b705c46812e180ea005c91c26a0bd60b5bdbf626b5e8872740fc04254" }, "status": "Ok", "error_message": null, - "composedOn": 1375219152594 + "composedOn": 1383333073307 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/SignatureEnvelopeSend.json b/src/test/resources/responses/signature/SignatureEnvelopeSend.json index 67e3489..c4dc209 100644 --- a/src/test/resources/responses/signature/SignatureEnvelopeSend.json +++ b/src/test/resources/responses/signature/SignatureEnvelopeSend.json @@ -2,26 +2,26 @@ "result": { "recipients": [ { - "id": "b6a147bdc0b61f19fff882319d83af26", + "id": "797796384b8278d988d0270ba374dee8", "firstName": "John", "lastName": "Smith", - "email": "api-tests@groupdocs.com", - "userGuid": "ea103bbe8cb8ce07", + "email": "api@groupdocs.com", + "userGuid": "6d75a4d4db83f6fc", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-07-30T21:18:34.7509297ZZ", + "statusDateTime": "2013-11-01T19:10:59.8585079ZZ", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/a485c49b83cdc82147a5caabcfa0656c/b6a147bdc0b61f19fff882319d83af26" + "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/7b63fa70f2f83fe9efc6a007ae718f3b/797796384b8278d988d0270ba374dee8" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375219114438 + "composedOn": 1383333059328 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/Compress.json b/src/test/resources/responses/storage/Compress.json index 8836c41..1a72601 100644 --- a/src/test/resources/responses/storage/Compress.json +++ b/src/test/resources/responses/storage/Compress.json @@ -1,9 +1,9 @@ { "result": { - "id": 318325, - "guid": "7b9b09ec1a4d6b261255b5d0c985e9a15516f0a0f474d25b8d982efe1aed8a44" + "id": 132428, + "guid": "a07a7a34b217c05b4f8915d5123796c0360d1b14d8aa12730bbc4f8fc6258a98" }, "status": "Ok", "error_message": null, - "composedOn": 1375219737954 + "composedOn": 1383333378694 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/CopyFile.json b/src/test/resources/responses/storage/CopyFile.json index d1e365f..3444a9a 100644 --- a/src/test/resources/responses/storage/CopyFile.json +++ b/src/test/resources/responses/storage/CopyFile.json @@ -2,34 +2,34 @@ "result": { "src_file": { "name": "document_one.doc", - "version": 556, + "version": 1, "size": 9216, "type": "Words", "type_str": "Words", "file_type_str": "Doc", "document_path": "document_one.doc", "access": "Private", - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", + "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/2b39b3c7c936340afd90f366af14f71f0523fcffe7c4b38cfc7864f05ddf1ed1", "file_type": "Doc", - "id": 325150, - "guid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca" + "id": 132429, + "guid": "2b39b3c7c936340afd90f366af14f71f0523fcffe7c4b38cfc7864f05ddf1ed1" }, "dst_file": { - "name": "document_two_37692914293512625.doc", + "name": "document_two_6709735136595472.doc", "version": 1, "size": 9216, "type": "Words", "type_str": "Words", "file_type_str": "Doc", - "document_path": "document_two_37692914293512625.doc", + "document_path": "document_two_6709735136595472.doc", "access": "Private", - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/706370a9cde57d541f503e4fb595e1d78a3d4dfb81fc64da322116228daa93e8", + "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/6fac52c2aab04219fbe5664865b690a846a6312a014c3420ba0a0b6ec29eebec", "file_type": "Doc", - "id": 325664, - "guid": "706370a9cde57d541f503e4fb595e1d78a3d4dfb81fc64da322116228daa93e8" + "id": 132430, + "guid": "6fac52c2aab04219fbe5664865b690a846a6312a014c3420ba0a0b6ec29eebec" } }, "status": "Ok", "error_message": null, - "composedOn": 1375219774594 + "composedOn": 1383333387849 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/CopyFolder.json b/src/test/resources/responses/storage/CopyFolder.json index e2f5ba8..ae3c17c 100644 --- a/src/test/resources/responses/storage/CopyFolder.json +++ b/src/test/resources/responses/storage/CopyFolder.json @@ -1,9 +1,9 @@ { "result": { - "from_path": "Folder-36542806556370655", - "to_path": "NewFolder-36542806556370655" + "from_path": "Folder-8336892236570631", + "to_path": "NewFolder-8336892236570631" }, "status": "Ok", "error_message": null, - "composedOn": 1375219825938 + "composedOn": 1383333416051 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/Create.json b/src/test/resources/responses/storage/Create.json index f4b91a0..09ae7f4 100644 --- a/src/test/resources/responses/storage/Create.json +++ b/src/test/resources/responses/storage/Create.json @@ -1,9 +1,9 @@ { "result": { - "id": 168257, - "path": "Folder-4176872196184557" + "id": 62598, + "path": "Folder-5484273897830484" }, "status": "Ok", "error_message": null, - "composedOn": 1375219903469 + "composedOn": 1383333437207 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/CreatePackage.json b/src/test/resources/responses/storage/CreatePackage.json index 4c916a1..3f40ede 100644 --- a/src/test/resources/responses/storage/CreatePackage.json +++ b/src/test/resources/responses/storage/CreatePackage.json @@ -1,8 +1,8 @@ { "result": { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/packages/90e91d73e4f6cd8e07fd8d5d46212070/package.zip" + "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/packages/e41b179d2b830c0e6aa7f2804b31b215/package.zip" }, "status": "Ok", "error_message": null, - "composedOn": 1375219865188 + "composedOn": 1383333429630 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/Delete.json b/src/test/resources/responses/storage/Delete.json index a7cd3dd..91e1b0a 100644 --- a/src/test/resources/responses/storage/Delete.json +++ b/src/test/resources/responses/storage/Delete.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375220020742 + "composedOn": 1383333456003 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/DeleteFromFolder.json b/src/test/resources/responses/storage/DeleteFromFolder.json index 93fce0d..9ca04ac 100644 --- a/src/test/resources/responses/storage/DeleteFromFolder.json +++ b/src/test/resources/responses/storage/DeleteFromFolder.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375219938704 + "composedOn": 1383333447021 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/GetStorageInfo.json b/src/test/resources/responses/storage/GetStorageInfo.json index f90c7b7..f27cb21 100644 --- a/src/test/resources/responses/storage/GetStorageInfo.json +++ b/src/test/resources/responses/storage/GetStorageInfo.json @@ -1,7 +1,7 @@ { "result": { - "total_space": 26843545600, - "avail_space": 23384940988, + "total_space": null, + "avail_space": null, "doc_credits": null, "avail_credits": null, "total_documents": null, @@ -9,5 +9,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375220105585 + "composedOn": 1383333476450 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/ListEntities.json b/src/test/resources/responses/storage/ListEntities.json index 41904b3..dc57e2f 100644 --- a/src/test/resources/responses/storage/ListEntities.json +++ b/src/test/resources/responses/storage/ListEntities.json @@ -1,9371 +1,170 @@ { "result": { "path": "", - "count": 631, + "count": 2, "folders": [ - { - "folder_count": 6352, - "file_count": 4984, - "id": 35121, - "guid": null, - "name": "Dropbox Shortcut", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210971417, - "created_on": 1347282637500 - }, - { - "folder_count": 5697, - "file_count": 4766, - "id": 50512, - "guid": null, - "name": "BoxNet Shortcut", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375209882777, - "created_on": 1350973909297 - }, { "folder_count": 0, - "file_count": 22094, - "id": 155785, + "file_count": 122, + "id": 45686, "guid": null, "name": "My Signed Documents", "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219673663, - "created_on": 1372229998210 - }, - { - "folder_count": 0, - "file_count": 1395, - "id": 163605, - "guid": null, - "name": "Questionnaires", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219890627, - "created_on": 1373693949720 - }, - { - "folder_count": 1, - "file_count": 0, - "id": 163632, - "guid": null, - "name": "Signature", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373695095210, - "created_on": 1373695097390 - }, - { - "folder_count": 81, - "file_count": 0, - "id": 163648, - "guid": null, - "name": "My Forms", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375218770907, - "created_on": 1373695168430 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163879, - "guid": null, - "name": "Folder-2545428832099089", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697218753, - "created_on": 1373697218753 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163880, - "guid": null, - "name": "NewFolder-2545428832099089", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697219213, - "created_on": 1373697219213 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163881, - "guid": null, - "name": "Folder-09325809622162695", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697219723, - "created_on": 1373697219723 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163882, - "guid": null, - "name": "NewFolder-09325809622162695", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697220197, - "created_on": 1373697220197 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163883, - "guid": null, - "name": "Folder-45330865718698565", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697220617, - "created_on": 1373697220617 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163884, - "guid": null, - "name": "NewFolder-45330865718698565", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697221100, - "created_on": 1373697221100 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163885, - "guid": null, - "name": "Folder-37500745479521613", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697223403, - "created_on": 1373697223403 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163886, - "guid": null, - "name": "NewFolder-37500745479521613", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697223853, - "created_on": 1373697223853 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163887, - "guid": null, - "name": "Folder-577147795089607", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697226663, - "created_on": 1373697226663 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163888, - "guid": null, - "name": "NewFolder-577147795089607", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697227157, - "created_on": 1373697227157 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163889, - "guid": null, - "name": "Folder-3863806229843477", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697239660, - "created_on": 1373697239660 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163890, - "guid": null, - "name": "Folder-24806769600095757", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697240090, - "created_on": 1373697240090 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163891, - "guid": null, - "name": "Folder-08238947025288712", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697240537, - "created_on": 1373697240537 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163892, - "guid": null, - "name": "Folder-9284359877941118", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697243280, - "created_on": 1373697243280 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163893, - "guid": null, - "name": "Folder-31169390844526823", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697243897, - "created_on": 1373697243897 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163897, + "owner": { + "nickname": null, + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": null, + "claimed_id": null, + "token": null, + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 0, + "signedinOn": 0, + "signin_count": null, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 1085, + "guid": null, + "primary_email": null + }, + "sharers": null, + "dir": true, + "modified_on": 1383333368013, + "created_on": 1381243298953 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 62608, "guid": null, "name": "CreatedFolder", "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697306823, - "created_on": 1373697306823 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163898, - "guid": null, - "name": "SortingFolder1-6724128936784509", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697316657, - "created_on": 1373697316657 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163899, - "guid": null, - "name": "SortingFolder2-6724128936784509", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697317067, - "created_on": 1373697317067 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163900, - "guid": null, - "name": "SortingFolder1-1773441032272074", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697321603, - "created_on": 1373697321603 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163901, - "guid": null, - "name": "SortingFolder2-1773441032272074", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697321977, - "created_on": 1373697321977 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163903, - "guid": null, - "name": "NewFolder-24462588991698808", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697370227, - "created_on": 1373697370227 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163905, - "guid": null, - "name": "NewFolder-26843730621188433", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697371177, - "created_on": 1373697371177 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163907, - "guid": null, - "name": "NewFolder-02205790399544616", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697372103, - "created_on": 1373697372103 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163909, - "guid": null, - "name": "NewFolder-17392855796517348", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697375793, - "created_on": 1373697375793 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163911, - "guid": null, - "name": "Folder-9485084931048611", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697379720, - "created_on": 1373697379720 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163913, - "guid": null, - "name": "NewFolder-5517871492263725", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373697381013, - "created_on": 1373697381013 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163942, - "guid": null, - "name": "Folder-7111502962424808", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373740909173, - "created_on": 1373740909173 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163943, - "guid": null, - "name": "Folder-9743853103866961", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373740909927, - "created_on": 1373740909927 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163944, - "guid": null, - "name": "Folder-7397540394970904", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373740910600, - "created_on": 1373740910600 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163946, - "guid": null, - "name": "Folder-41222711421703095", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373740912160, - "created_on": 1373740912160 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163948, - "guid": null, - "name": "Folder-7574874437433017", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373740913440, - "created_on": 1373740913440 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163950, - "guid": null, - "name": "Folder-639244352935181", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373740914767, - "created_on": 1373740914767 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163952, - "guid": null, - "name": "Folder-33900831612315363", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373740915990, - "created_on": 1373740915990 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163954, - "guid": null, - "name": "Folder-5870798819723456", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373740917350, - "created_on": 1373740917350 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163956, - "guid": null, - "name": "Folder-5092020112418006", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373740995980, - "created_on": 1373740995980 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163959, - "guid": null, - "name": "Folder-36910674299922475", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373740997433, - "created_on": 1373740997433 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163962, - "guid": null, - "name": "Folder-47578185551856966", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373740998903, - "created_on": 1373740998903 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163965, - "guid": null, - "name": "Folder-5036002762577317", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373741000153, - "created_on": 1373741000153 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163968, - "guid": null, - "name": "Folder-2001199801357878", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373741001513, - "created_on": 1373741001513 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163971, - "guid": null, - "name": "Folder-1676187900295668", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373741002730, - "created_on": 1373741002730 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163974, - "guid": null, - "name": "Folder-02299404523120241", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373741003920, - "created_on": 1373741003920 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163977, - "guid": null, - "name": "Folder-8902717319961398", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373741005043, - "created_on": 1373741005043 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163980, - "guid": null, - "name": "Folder-5911856830115304", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373741022730, - "created_on": 1373741022730 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163982, - "guid": null, - "name": "Folder-54449736288941", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373741024217, - "created_on": 1373741024217 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 163984, - "guid": null, - "name": "Folder-27264756660581924", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373741025480, - "created_on": 1373741025480 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164281, - "guid": null, - "name": "Folder-8107647066795497", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744759120, - "created_on": 1373744759120 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164282, - "guid": null, - "name": "NewFolder-8107647066795497", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744759587, - "created_on": 1373744759587 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164283, - "guid": null, - "name": "Folder-00613625147685215", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744760027, - "created_on": 1373744760027 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164284, - "guid": null, - "name": "NewFolder-00613625147685215", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744760510, - "created_on": 1373744760510 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164285, - "guid": null, - "name": "Folder-6142440494178866", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744760920, - "created_on": 1373744760920 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164286, - "guid": null, - "name": "NewFolder-6142440494178866", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744761457, - "created_on": 1373744761457 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164287, - "guid": null, - "name": "Folder-48440961895335377", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744762477, - "created_on": 1373744762477 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164288, - "guid": null, - "name": "NewFolder-48440961895335377", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744762973, - "created_on": 1373744762973 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164289, - "guid": null, - "name": "Folder-7478935473931857", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744763993, - "created_on": 1373744763993 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164290, - "guid": null, - "name": "NewFolder-7478935473931857", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744764457, - "created_on": 1373744764457 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164291, - "guid": null, - "name": "Folder-4456669763835046", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744775517, - "created_on": 1373744775517 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164292, - "guid": null, - "name": "Folder-3105009490329491", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744775970, - "created_on": 1373744775970 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164293, - "guid": null, - "name": "Folder-4116943882802585", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744776410, - "created_on": 1373744776410 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164294, - "guid": null, - "name": "Folder-6076765575772578", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744777377, - "created_on": 1373744777377 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164295, - "guid": null, - "name": "Folder-3208865334227984", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744778037, - "created_on": 1373744778037 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164299, - "guid": null, - "name": "SortingFolder1-5029393760954008", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744850963, - "created_on": 1373744850963 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164300, - "guid": null, - "name": "SortingFolder2-5029393760954008", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744851380, - "created_on": 1373744851380 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164301, - "guid": null, - "name": "SortingFolder1-26741468223374065", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744854197, - "created_on": 1373744854197 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164302, - "guid": null, - "name": "SortingFolder2-26741468223374065", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744854600, - "created_on": 1373744854600 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164304, - "guid": null, - "name": "NewFolder-042936852563308814", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744891613, - "created_on": 1373744891613 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164306, - "guid": null, - "name": "NewFolder-06617359736293538", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744892503, - "created_on": 1373744892503 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164308, - "guid": null, - "name": "NewFolder-12255996003126213", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744893487, - "created_on": 1373744893487 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164310, - "guid": null, - "name": "NewFolder-18113473299207394", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744895023, - "created_on": 1373744895023 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164312, - "guid": null, - "name": "Folder-076040596548647481", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744896507, - "created_on": 1373744896507 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164314, - "guid": null, - "name": "NewFolder-7150009742002033", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373744897810, - "created_on": 1373744897810 - }, - { - "folder_count": 0, - "file_count": 143, - "id": 164315, - "guid": null, - "name": "My Assemblies", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375213694787, - "created_on": 1373773648837 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164344, - "guid": null, - "name": "Folder-2873744870590619", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373779939240, - "created_on": 1373779939240 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164345, - "guid": null, - "name": "Folder-07700264115500521", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373779939960, - "created_on": 1373779939960 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164346, - "guid": null, - "name": "Folder-351974188021124", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373779940880, - "created_on": 1373779940880 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164348, - "guid": null, - "name": "Folder-8411401520073359", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373779942427, - "created_on": 1373779942427 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164350, - "guid": null, - "name": "Folder-11575204986711052", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373779943757, - "created_on": 1373779943757 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164352, - "guid": null, - "name": "Folder-7669107819112728", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373779945007, - "created_on": 1373779945007 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164354, - "guid": null, - "name": "Folder-22636866411453238", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373779946350, - "created_on": 1373779946350 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164356, - "guid": null, - "name": "Folder-4900602181977193", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373779947647, - "created_on": 1373779947647 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164358, - "guid": null, - "name": "Folder-44068112911239654", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373780013493, - "created_on": 1373780013493 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164361, - "guid": null, - "name": "Folder-192278372867011", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373780014853, - "created_on": 1373780014853 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164364, - "guid": null, - "name": "Folder-2445154163254648", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373780016253, - "created_on": 1373780016253 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164367, - "guid": null, - "name": "Folder-8790049179169368", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373780017973, - "created_on": 1373780017973 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164370, - "guid": null, - "name": "Folder-517101779152632", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373780019667, - "created_on": 1373780019667 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164373, - "guid": null, - "name": "Folder-6849094878873859", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373780021320, - "created_on": 1373780021320 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164376, - "guid": null, - "name": "Folder-7825208081426122", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373780023317, - "created_on": 1373780023317 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164379, - "guid": null, - "name": "Folder-3974952559717875", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373780025207, - "created_on": 1373780025207 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164382, - "guid": null, - "name": "Folder-7041772586764131", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373780042097, - "created_on": 1373780042097 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164384, - "guid": null, - "name": "Folder-05517722462697083", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373780044230, - "created_on": 1373780044230 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164386, - "guid": null, - "name": "Folder-7054975585329616", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373780045977, - "created_on": 1373780045977 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164683, - "guid": null, - "name": "Folder-23052918214848717", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784760657, - "created_on": 1373784760657 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164684, - "guid": null, - "name": "NewFolder-23052918214848717", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784761180, - "created_on": 1373784761180 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164685, - "guid": null, - "name": "Folder-033031404187403024", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784761633, - "created_on": 1373784761633 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164686, - "guid": null, - "name": "NewFolder-033031404187403024", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784762123, - "created_on": 1373784762123 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164687, - "guid": null, - "name": "Folder-32291364772574827", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784762533, - "created_on": 1373784762533 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164688, - "guid": null, - "name": "NewFolder-32291364772574827", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784763033, - "created_on": 1373784763033 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164689, - "guid": null, - "name": "Folder-9406287953089046", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784764100, - "created_on": 1373784764100 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164690, - "guid": null, - "name": "NewFolder-9406287953089046", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784764670, - "created_on": 1373784764670 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164691, - "guid": null, - "name": "Folder-8056708133810556", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784765770, - "created_on": 1373784765770 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164692, - "guid": null, - "name": "NewFolder-8056708133810556", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784766247, - "created_on": 1373784766247 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164693, - "guid": null, - "name": "Folder-37896379273930003", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784779100, - "created_on": 1373784779100 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164694, - "guid": null, - "name": "Folder-3498934914068892", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784779550, - "created_on": 1373784779550 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164695, - "guid": null, - "name": "Folder-6556770881250554", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784780037, - "created_on": 1373784780037 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164696, - "guid": null, - "name": "Folder-7805683214383081", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784781170, - "created_on": 1373784781170 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164697, - "guid": null, - "name": "Folder-9175642019197707", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784781930, - "created_on": 1373784781930 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164701, - "guid": null, - "name": "SortingFolder1-9436094885987345", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784861410, - "created_on": 1373784861410 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164702, - "guid": null, - "name": "SortingFolder2-9436094885987345", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784861847, - "created_on": 1373784861847 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164703, - "guid": null, - "name": "SortingFolder1-6145727860323459", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784864630, - "created_on": 1373784864630 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164704, - "guid": null, - "name": "SortingFolder2-6145727860323459", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784865083, - "created_on": 1373784865083 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164706, - "guid": null, - "name": "NewFolder-8037505416436853", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784904690, - "created_on": 1373784904690 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164708, - "guid": null, - "name": "NewFolder-06668402977941579", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784905660, - "created_on": 1373784905660 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164710, - "guid": null, - "name": "NewFolder-8577306529627532", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784906583, - "created_on": 1373784906583 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164712, - "guid": null, - "name": "NewFolder-3210822757251047", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784908207, - "created_on": 1373784908207 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164714, - "guid": null, - "name": "Folder-372839214815797961", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784909833, - "created_on": 1373784909833 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164716, - "guid": null, - "name": "NewFolder-56443884549647", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373784911333, - "created_on": 1373784911333 - }, - { - "folder_count": 0, - "file_count": 54, - "id": 164717, - "guid": null, - "name": "My Conversions", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375208588570, - "created_on": 1373798919087 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164718, - "guid": null, - "name": "My Conversions", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373798919057, - "created_on": 1373798919057 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164747, - "guid": null, - "name": "Folder-7294113100980604", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866403717, - "created_on": 1373866403717 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164748, - "guid": null, - "name": "Folder-5805415827310066", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866404530, - "created_on": 1373866404530 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164749, - "guid": null, - "name": "Folder-5450331500340331", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866405153, - "created_on": 1373866405153 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164751, - "guid": null, - "name": "Folder-8030582199446679", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866406703, - "created_on": 1373866406703 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164753, - "guid": null, - "name": "Folder-20404898735152865", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866408047, - "created_on": 1373866408047 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164755, - "guid": null, - "name": "Folder-9244229964863786", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866409273, - "created_on": 1373866409273 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164757, - "guid": null, - "name": "Folder-5596793239609245", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866410520, - "created_on": 1373866410520 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164759, - "guid": null, - "name": "Folder-30264025799853034", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866411763, - "created_on": 1373866411763 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164761, - "guid": null, - "name": "Folder-6759917434827745", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866480527, - "created_on": 1373866480527 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164764, - "guid": null, - "name": "Folder-7177803323352101", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866481897, - "created_on": 1373866481897 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164767, - "guid": null, - "name": "Folder-5137729669395553", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866483313, - "created_on": 1373866483313 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164770, - "guid": null, - "name": "Folder-016647060695989757", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866484493, - "created_on": 1373866484493 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164773, - "guid": null, - "name": "Folder-6825831932825684", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866485760, - "created_on": 1373866485760 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164776, - "guid": null, - "name": "Folder-6552367702181036", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866487003, - "created_on": 1373866487003 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164779, - "guid": null, - "name": "Folder-9733325031473813", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866488237, - "created_on": 1373866488237 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164782, - "guid": null, - "name": "Folder-25154324297890385", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866489527, - "created_on": 1373866489527 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164785, - "guid": null, - "name": "Folder-01426097426597639", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866504480, - "created_on": 1373866504480 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164787, - "guid": null, - "name": "Folder-7347079575220883", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866506017, - "created_on": 1373866506017 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164789, - "guid": null, - "name": "Folder-12396894883504894", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373866507417, - "created_on": 1373866507417 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164953, - "guid": null, - "name": "Folder-03820701663470649", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952868190, - "created_on": 1373952868190 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164954, - "guid": null, - "name": "Folder-5225715569968753", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952868940, - "created_on": 1373952868940 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164955, - "guid": null, - "name": "Folder-011949572958759647", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952869753, - "created_on": 1373952869753 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164957, - "guid": null, - "name": "Folder-6051992878640334", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952870863, - "created_on": 1373952870863 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164959, - "guid": null, - "name": "Folder-7696553138066866", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952871863, - "created_on": 1373952871863 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164961, - "guid": null, - "name": "Folder-27733063448702966", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952872910, - "created_on": 1373952872910 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164963, - "guid": null, - "name": "Folder-7342175195401742", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952874050, - "created_on": 1373952874050 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164965, - "guid": null, - "name": "Folder-15445488874723612", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952875143, - "created_on": 1373952875143 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164967, - "guid": null, - "name": "Folder-7193624228645463", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952958467, - "created_on": 1373952958467 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164970, - "guid": null, - "name": "Folder-9527701208337189", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952959683, - "created_on": 1373952959683 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164973, - "guid": null, - "name": "Folder-24731416601969192", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952961013, - "created_on": 1373952961013 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164976, - "guid": null, - "name": "Folder-6201469748987176", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952962200, - "created_on": 1373952962200 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164979, - "guid": null, - "name": "Folder-9732338772229326", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952963807, - "created_on": 1373952963807 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164982, - "guid": null, - "name": "Folder-6068786513769855", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952965600, - "created_on": 1373952965600 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164985, - "guid": null, - "name": "Folder-4185272835040029", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952967613, - "created_on": 1373952967613 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164988, - "guid": null, - "name": "Folder-39450349487570346", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952969377, - "created_on": 1373952969377 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164991, - "guid": null, - "name": "Folder-27297353860314955", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952990167, - "created_on": 1373952990167 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164993, - "guid": null, - "name": "Folder-4435838000043575", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952991720, - "created_on": 1373952991720 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 164995, - "guid": null, - "name": "Folder-13553290486480218", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373952993450, - "created_on": 1373952993450 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165291, - "guid": null, - "name": "Folder-2795252655794731", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373957999273, - "created_on": 1373957999273 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165292, - "guid": null, - "name": "NewFolder-2795252655794731", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373957999870, - "created_on": 1373957999870 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165293, - "guid": null, - "name": "Folder-8395227858595781", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958000470, - "created_on": 1373958000470 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165294, - "guid": null, - "name": "NewFolder-8395227858595781", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958001213, - "created_on": 1373958001213 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165295, - "guid": null, - "name": "Folder-8470253548890843", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958001690, - "created_on": 1373958001690 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165296, - "guid": null, - "name": "NewFolder-8470253548890843", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958002313, - "created_on": 1373958002313 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165297, - "guid": null, - "name": "Folder-3499593186307387", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958003670, - "created_on": 1373958003670 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165298, - "guid": null, - "name": "NewFolder-3499593186307387", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958004273, - "created_on": 1373958004273 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165299, - "guid": null, - "name": "Folder-05808479646383713", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958005530, - "created_on": 1373958005530 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165300, - "guid": null, - "name": "NewFolder-05808479646383713", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958006233, - "created_on": 1373958006233 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165301, - "guid": null, - "name": "Folder-054769462778342826", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958022497, - "created_on": 1373958022497 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165302, - "guid": null, - "name": "Folder-013077687587648379", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958022937, - "created_on": 1373958022937 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165303, - "guid": null, - "name": "Folder-93993376510308", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958023483, - "created_on": 1373958023483 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165304, - "guid": null, - "name": "Folder-4409958457393923", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958024733, - "created_on": 1373958024733 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165305, - "guid": null, - "name": "Folder-6452739740169962", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958025513, - "created_on": 1373958025513 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165309, - "guid": null, - "name": "SortingFolder1-7644372853298134", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958120377, - "created_on": 1373958120377 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165310, - "guid": null, - "name": "SortingFolder2-7644372853298134", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958120910, - "created_on": 1373958120910 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165311, - "guid": null, - "name": "SortingFolder1-3127151098009173", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958124170, - "created_on": 1373958124170 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165312, - "guid": null, - "name": "SortingFolder2-3127151098009173", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958124713, - "created_on": 1373958124713 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165314, - "guid": null, - "name": "NewFolder-23753328008295527", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958173697, - "created_on": 1373958173697 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165316, - "guid": null, - "name": "NewFolder-5213981960663295", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958174830, - "created_on": 1373958174830 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165318, - "guid": null, - "name": "NewFolder-6957529278076685", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958175897, - "created_on": 1373958175897 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165320, - "guid": null, - "name": "NewFolder-9064897286950665", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958177910, - "created_on": 1373958177910 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165322, - "guid": null, - "name": "Folder-33100014054195981", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958179740, - "created_on": 1373958179740 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165324, - "guid": null, - "name": "NewFolder-09588953573517889", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1373958181250, - "created_on": 1373958181250 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165353, - "guid": null, - "name": "Folder-04684613378955582", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033443910, - "created_on": 1374033443910 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165354, - "guid": null, - "name": "Folder-11553517209912278", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033444677, - "created_on": 1374033444677 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165355, - "guid": null, - "name": "Folder-32242103110242704", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033445367, - "created_on": 1374033445367 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165357, - "guid": null, - "name": "Folder-10995604327114905", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033447057, - "created_on": 1374033447057 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165359, - "guid": null, - "name": "Folder-2853367404190199", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033448383, - "created_on": 1374033448383 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165361, - "guid": null, - "name": "Folder-7594598163454601", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033449683, - "created_on": 1374033449683 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165363, - "guid": null, - "name": "Folder-9253936399455165", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033451037, - "created_on": 1374033451037 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165365, - "guid": null, - "name": "Folder-9463799120985837", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033452337, - "created_on": 1374033452337 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165367, - "guid": null, - "name": "Folder-9407683574604887", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033528490, - "created_on": 1374033528490 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165370, - "guid": null, - "name": "Folder-21252648770621474", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033530553, - "created_on": 1374033530553 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165373, - "guid": null, - "name": "Folder-7564264018294019", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033532827, - "created_on": 1374033532827 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165376, - "guid": null, - "name": "Folder-16447189833190956", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033534127, - "created_on": 1374033534127 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165379, - "guid": null, - "name": "Folder-8472068596537317", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033535443, - "created_on": 1374033535443 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165382, - "guid": null, - "name": "Folder-3534753663262985", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033536713, - "created_on": 1374033536713 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165385, - "guid": null, - "name": "Folder-08416674003212199", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033538067, - "created_on": 1374033538067 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165388, - "guid": null, - "name": "Folder-6784918217753683", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033539373, - "created_on": 1374033539373 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165391, - "guid": null, - "name": "Folder-5280645358179531", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033556870, - "created_on": 1374033556870 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165393, - "guid": null, - "name": "Folder-40660824999021816", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033558550, - "created_on": 1374033558550 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165395, - "guid": null, - "name": "Folder-527661070213559", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374033559927, - "created_on": 1374033559927 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165692, - "guid": null, - "name": "Folder-8531811413460749", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038795450, - "created_on": 1374038795450 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165693, - "guid": null, - "name": "NewFolder-8531811413460749", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038795943, - "created_on": 1374038795943 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165694, - "guid": null, - "name": "Folder-8766098665004172", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038796350, - "created_on": 1374038796350 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165695, - "guid": null, - "name": "NewFolder-8766098665004172", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038796967, - "created_on": 1374038796967 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165696, - "guid": null, - "name": "Folder-7466936632326998", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038797420, - "created_on": 1374038797420 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165697, - "guid": null, - "name": "NewFolder-7466936632326998", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038797893, - "created_on": 1374038797893 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165698, - "guid": null, - "name": "Folder-8224857103254077", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038799073, - "created_on": 1374038799073 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165699, - "guid": null, - "name": "NewFolder-8224857103254077", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038799563, - "created_on": 1374038799563 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165700, - "guid": null, - "name": "Folder-24435971871445028", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038800707, - "created_on": 1374038800707 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165701, - "guid": null, - "name": "NewFolder-24435971871445028", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038801183, - "created_on": 1374038801183 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165702, - "guid": null, - "name": "Folder-08586526029524999", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038816497, - "created_on": 1374038816497 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165703, - "guid": null, - "name": "Folder-524253365470242", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038816917, - "created_on": 1374038816917 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165704, - "guid": null, - "name": "Folder-6952844925105438", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038817323, - "created_on": 1374038817323 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165705, - "guid": null, - "name": "Folder-11246722575720258", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038818433, - "created_on": 1374038818433 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165706, - "guid": null, - "name": "Folder-04688014877055369", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038819120, - "created_on": 1374038819120 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165710, - "guid": null, - "name": "SortingFolder1-19173386153717098", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038917407, - "created_on": 1374038917407 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165711, - "guid": null, - "name": "SortingFolder2-19173386153717098", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038917920, - "created_on": 1374038917920 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165712, - "guid": null, - "name": "SortingFolder1-8707241305411014", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038920977, - "created_on": 1374038920977 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165713, - "guid": null, - "name": "SortingFolder2-8707241305411014", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038921540, - "created_on": 1374038921540 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165715, - "guid": null, - "name": "NewFolder-13768597845006347", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038967137, - "created_on": 1374038967137 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165717, - "guid": null, - "name": "NewFolder-5207735893394819", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038968170, - "created_on": 1374038968170 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165719, - "guid": null, - "name": "NewFolder-5054912316659839", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038969150, - "created_on": 1374038969150 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165721, - "guid": null, - "name": "NewFolder-21084465985597034", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038970920, - "created_on": 1374038970920 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165723, - "guid": null, - "name": "Folder-36204758638576741", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038972463, - "created_on": 1374038972463 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 165725, - "guid": null, - "name": "NewFolder-03366554311528902", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374038973907, - "created_on": 1374038973907 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166830, - "guid": null, - "name": "Folder-05197611378395639", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063667023, - "created_on": 1374063667023 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166831, - "guid": null, - "name": "Folder-32980758915965025", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063668270, - "created_on": 1374063668270 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166832, - "guid": null, - "name": "Folder-314474281787154", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063669463, - "created_on": 1374063669463 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166834, - "guid": null, - "name": "Folder-3151515813317364", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063671657, - "created_on": 1374063671657 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166836, - "guid": null, - "name": "Folder-4663970951377794", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063673610, - "created_on": 1374063673610 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166838, - "guid": null, - "name": "Folder-7355014027453847", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063675633, - "created_on": 1374063675633 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166840, - "guid": null, - "name": "Folder-7589416806478246", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063677547, - "created_on": 1374063677547 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166842, - "guid": null, - "name": "Folder-9327186850022521", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063679593, - "created_on": 1374063679593 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166844, - "guid": null, - "name": "Folder-6958979683426537", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063768043, - "created_on": 1374063768043 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166847, - "guid": null, - "name": "Folder-4666994724222524", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063769950, - "created_on": 1374063769950 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166850, - "guid": null, - "name": "Folder-46066403399980316", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063771960, - "created_on": 1374063771960 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166853, - "guid": null, - "name": "Folder-35174903740298624", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063773747, - "created_on": 1374063773747 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166856, - "guid": null, - "name": "Folder-5556253483656729", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063775550, - "created_on": 1374063775550 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166859, - "guid": null, - "name": "Folder-5690691267239093", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063777427, - "created_on": 1374063777427 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166862, - "guid": null, - "name": "Folder-761740304373147", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063779167, - "created_on": 1374063779167 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166865, - "guid": null, - "name": "Folder-5382123870908894", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063780907, - "created_on": 1374063780907 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166868, - "guid": null, - "name": "Folder-7566195787433482", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063802270, - "created_on": 1374063802270 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166870, - "guid": null, - "name": "Folder-5702409499419856", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063804453, - "created_on": 1374063804453 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 166872, - "guid": null, - "name": "Folder-5087499146308968", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374063806163, - "created_on": 1374063806163 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167169, - "guid": null, - "name": "Folder-44613572397690093", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069592200, - "created_on": 1374069592200 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167170, - "guid": null, - "name": "NewFolder-44613572397690093", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069592730, - "created_on": 1374069592730 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167171, - "guid": null, - "name": "Folder-4453290961571572", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069593177, - "created_on": 1374069593177 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167172, - "guid": null, - "name": "NewFolder-4453290961571572", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069593730, - "created_on": 1374069593730 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167173, - "guid": null, - "name": "Folder-2690047360009157", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069594217, - "created_on": 1374069594217 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167174, - "guid": null, - "name": "NewFolder-2690047360009157", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069594780, - "created_on": 1374069594780 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167175, - "guid": null, - "name": "Folder-7322069591042785", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069595997, - "created_on": 1374069595997 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167176, - "guid": null, - "name": "NewFolder-7322069591042785", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069596603, - "created_on": 1374069596603 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167177, - "guid": null, - "name": "Folder-917100231815435", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069597840, - "created_on": 1374069597840 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167178, - "guid": null, - "name": "NewFolder-917100231815435", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069598383, - "created_on": 1374069598383 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167179, - "guid": null, - "name": "Folder-3401994437116105", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069617140, - "created_on": 1374069617140 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167180, - "guid": null, - "name": "Folder-49008493930616737", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069617570, - "created_on": 1374069617570 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167181, - "guid": null, - "name": "Folder-3428442289628322", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069617983, - "created_on": 1374069617983 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167182, - "guid": null, - "name": "Folder-623928340914147", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069619123, - "created_on": 1374069619123 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167183, - "guid": null, - "name": "Folder-0204531672964271", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069619820, - "created_on": 1374069619820 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167187, - "guid": null, - "name": "SortingFolder1-5684833023981787", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069728857, - "created_on": 1374069728857 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167188, - "guid": null, - "name": "SortingFolder2-5684833023981787", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069729297, - "created_on": 1374069729297 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167189, - "guid": null, - "name": "SortingFolder1-12668292835191686", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069732690, - "created_on": 1374069732690 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167190, - "guid": null, - "name": "SortingFolder2-12668292835191686", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069733167, - "created_on": 1374069733167 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167192, - "guid": null, - "name": "NewFolder-19212871756704009", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069782773, - "created_on": 1374069782773 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167194, - "guid": null, - "name": "NewFolder-2991162301911271", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069783867, - "created_on": 1374069783867 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167196, - "guid": null, - "name": "NewFolder-9417834675567289", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069784810, - "created_on": 1374069784810 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167198, - "guid": null, - "name": "NewFolder-9852915575974405", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069786590, - "created_on": 1374069786590 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167200, - "guid": null, - "name": "Folder-31317856760678331", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069788607, - "created_on": 1374069788607 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167202, - "guid": null, - "name": "NewFolder-519100324476041", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374069790090, - "created_on": 1374069790090 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167210, - "guid": null, - "name": "SortingFolder1-06273029914538841", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561636350, - "created_on": 1374561636350 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167211, - "guid": null, - "name": "SortingFolder2-06273029914538841", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561637480, - "created_on": 1374561637480 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167212, - "guid": null, - "name": "SortingFolder1-9808138089619155", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561642753, - "created_on": 1374561642753 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167213, - "guid": null, - "name": "SortingFolder2-9808138089619155", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561643910, - "created_on": 1374561643910 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167214, - "guid": null, - "name": "FilterFolder1-03654549789183659", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561649287, - "created_on": 1374561649287 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167215, - "guid": null, - "name": "FilterFolder2-03654549789183659", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561650390, - "created_on": 1374561650390 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167217, - "guid": null, - "name": "NewFolder-948478908488855", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561750180, - "created_on": 1374561750180 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167219, - "guid": null, - "name": "NewFolder-7535846590537976", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561752690, - "created_on": 1374561752690 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167221, - "guid": null, - "name": "NewFolder-995872250156286", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561755127, - "created_on": 1374561755127 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167223, - "guid": null, - "name": "NewFolder-3691532508149844", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561759483, - "created_on": 1374561759483 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167225, - "guid": null, - "name": "Folder-97917157964210641", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561763797, - "created_on": 1374561763797 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167227, - "guid": null, - "name": "NewFolder-10635342389326996", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374561767350, - "created_on": 1374561767350 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167231, - "guid": null, - "name": "Folder-7641953267177052", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562133350, - "created_on": 1374562133350 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167232, - "guid": null, - "name": "Folder-8770041283277888", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562134450, - "created_on": 1374562134450 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167233, - "guid": null, - "name": "Folder-08978548248402773", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562135593, - "created_on": 1374562135593 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167234, - "guid": null, - "name": "Folder-4353795835915004", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562138680, - "created_on": 1374562138680 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167235, - "guid": null, - "name": "Folder-39162628409118394", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562140743, - "created_on": 1374562140743 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167236, - "guid": null, - "name": "Folder-11027064156036814", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562219210, - "created_on": 1374562219210 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167237, - "guid": null, - "name": "NewFolder-11027064156036814", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562220287, - "created_on": 1374562220287 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167238, - "guid": null, - "name": "Folder-3026987898990532", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562221427, - "created_on": 1374562221427 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167239, - "guid": null, - "name": "NewFolder-3026987898990532", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562222740, - "created_on": 1374562222740 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167240, - "guid": null, - "name": "Folder-25020999423620915", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562223913, - "created_on": 1374562223913 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167241, - "guid": null, - "name": "NewFolder-25020999423620915", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562225177, - "created_on": 1374562225177 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167242, - "guid": null, - "name": "Folder-2664976576070963", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562228037, - "created_on": 1374562228037 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167243, - "guid": null, - "name": "NewFolder-2664976576070963", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562229210, - "created_on": 1374562229210 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167244, - "guid": null, - "name": "Folder-9139684082547042", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562232240, - "created_on": 1374562232240 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167245, - "guid": null, - "name": "NewFolder-9139684082547042", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562233427, - "created_on": 1374562233427 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167246, - "guid": null, - "name": "Folder-13094428659699575", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562726747, - "created_on": 1374562726747 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167249, - "guid": null, - "name": "Folder-4108712620404933", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562730763, - "created_on": 1374562730763 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167252, - "guid": null, - "name": "Folder-7741001633005189", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562734587, - "created_on": 1374562734587 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167255, - "guid": null, - "name": "Folder-2505236203304667", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562737517, - "created_on": 1374562737517 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167258, - "guid": null, - "name": "Folder-691694573342669", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562740247, - "created_on": 1374562740247 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167261, - "guid": null, - "name": "Folder-9887201269311674", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562743547, - "created_on": 1374562743547 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167264, - "guid": null, - "name": "Folder-908415893364794", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562746360, - "created_on": 1374562746360 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167267, - "guid": null, - "name": "Folder-5335171621976424", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562749163, - "created_on": 1374562749163 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167270, - "guid": null, - "name": "Folder-8283097806932224", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562850893, - "created_on": 1374562850893 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167272, - "guid": null, - "name": "Folder-5537364830269653", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562855387, - "created_on": 1374562855387 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167274, - "guid": null, - "name": "Folder-40158085012582145", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374562859137, - "created_on": 1374562859137 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167276, - "guid": null, - "name": "Folder-04654465201782465", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374563466523, - "created_on": 1374563466523 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167277, - "guid": null, - "name": "Folder-12006648655675467", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374563468557, - "created_on": 1374563468557 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167278, - "guid": null, - "name": "Folder-1972082172229056", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374563470523, - "created_on": 1374563470523 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167280, - "guid": null, - "name": "Folder-5958143271748397", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374563475040, - "created_on": 1374563475040 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167282, - "guid": null, - "name": "Folder-9849782439028734", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374563478743, - "created_on": 1374563478743 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167284, - "guid": null, - "name": "Folder-26746229602689686", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374563482383, - "created_on": 1374563482383 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167286, - "guid": null, - "name": "Folder-8578611611182598", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374563487337, - "created_on": 1374563487337 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167288, - "guid": null, - "name": "Folder-9106189376915893", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1374563490977, - "created_on": 1374563490977 - }, - { - "folder_count": 0, - "file_count": 19, - "id": 167435, - "guid": null, - "name": "My Web Documents", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375208368663, - "created_on": 1375075193733 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167502, - "guid": null, - "name": "Folder-8595519028944231", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375123963843, - "created_on": 1375123963843 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167503, - "guid": null, - "name": "Folder-40352352464848873", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375123964640, - "created_on": 1375123964640 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167504, - "guid": null, - "name": "Folder-2951738964426276", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375123965530, - "created_on": 1375123965530 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167506, - "guid": null, - "name": "Folder-893926237834435", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375123967250, - "created_on": 1375123967250 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167508, - "guid": null, - "name": "Folder-0510734791886861", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375123968703, - "created_on": 1375123968703 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167510, - "guid": null, - "name": "Folder-14074079948323603", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375123970250, - "created_on": 1375123970250 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167512, - "guid": null, - "name": "Folder-9642452284825476", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375123971720, - "created_on": 1375123971720 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167514, - "guid": null, - "name": "Folder-32069919322731544", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375123973203, - "created_on": 1375123973203 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167516, - "guid": null, - "name": "Folder-9874244530205393", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124166187, - "created_on": 1375124166187 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167519, - "guid": null, - "name": "Folder-49061407626457654", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124167843, - "created_on": 1375124167843 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167522, - "guid": null, - "name": "Folder-5872202545227178", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124169470, - "created_on": 1375124169470 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167525, - "guid": null, - "name": "Folder-601690484604541", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124170703, - "created_on": 1375124170703 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167528, - "guid": null, - "name": "Folder-24910699735372022", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124172047, - "created_on": 1375124172047 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167531, - "guid": null, - "name": "Folder-48068079366734673", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124173343, - "created_on": 1375124173343 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167534, - "guid": null, - "name": "Folder-781930468181487", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124174703, - "created_on": 1375124174703 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167537, - "guid": null, - "name": "Folder-8211328645731515", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124175983, - "created_on": 1375124175983 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167540, - "guid": null, - "name": "Folder-5507298198815975", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124246610, - "created_on": 1375124246610 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167542, - "guid": null, - "name": "Folder-5072138909380142", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124248313, - "created_on": 1375124248313 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167544, - "guid": null, - "name": "Folder-40176578748443337", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124249687, - "created_on": 1375124249687 - }, - { - "folder_count": 0, - "file_count": 1, - "id": 167572, - "guid": null, - "name": "Templates", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375124817100, - "created_on": 1375124856753 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167843, - "guid": null, - "name": "Folder-271109275352838", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133332600, - "created_on": 1375133332600 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167844, - "guid": null, - "name": "NewFolder-271109275352838", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133333100, - "created_on": 1375133333100 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167845, - "guid": null, - "name": "Folder-4321399452611445", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133333600, - "created_on": 1375133333600 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167846, - "guid": null, - "name": "NewFolder-4321399452611445", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133334253, - "created_on": 1375133334253 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167847, - "guid": null, - "name": "Folder-1388645058288669", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133334660, - "created_on": 1375133334660 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167848, - "guid": null, - "name": "NewFolder-1388645058288669", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133335223, - "created_on": 1375133335223 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167849, - "guid": null, - "name": "Folder-8310337859786328", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133336457, - "created_on": 1375133336457 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167850, - "guid": null, - "name": "NewFolder-8310337859786328", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133336910, - "created_on": 1375133336910 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167851, - "guid": null, - "name": "Folder-2735993438657708", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133338113, - "created_on": 1375133338113 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167852, - "guid": null, - "name": "NewFolder-2735993438657708", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133338660, - "created_on": 1375133338660 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167853, - "guid": null, - "name": "Folder-9788952388111583", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133409303, - "created_on": 1375133409303 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167854, - "guid": null, - "name": "Folder-051443172975678464", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133409723, - "created_on": 1375133409723 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167855, - "guid": null, - "name": "Folder-726528487240562", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133410240, - "created_on": 1375133410240 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167856, - "guid": null, - "name": "Folder-18383439743396202", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133411350, - "created_on": 1375133411350 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167857, - "guid": null, - "name": "Folder-1488225965304295", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133412067, - "created_on": 1375133412067 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167861, - "guid": null, - "name": "SortingFolder1-2988283035431818", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133646287, - "created_on": 1375133646287 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167862, - "guid": null, - "name": "SortingFolder2-2988283035431818", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133646787, - "created_on": 1375133646787 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167863, - "guid": null, - "name": "SortingFolder1-7451333735748665", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133649443, - "created_on": 1375133649443 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167864, - "guid": null, - "name": "SortingFolder2-7451333735748665", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133649817, - "created_on": 1375133649817 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167866, - "guid": null, - "name": "NewFolder-27496077448350287", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133746303, - "created_on": 1375133746303 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167868, - "guid": null, - "name": "NewFolder-0694490277279245", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133747257, - "created_on": 1375133747257 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167870, - "guid": null, - "name": "NewFolder-8750966577382472", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133748100, - "created_on": 1375133748100 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167872, - "guid": null, - "name": "NewFolder-6986387726746563", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133749757, - "created_on": 1375133749757 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167874, - "guid": null, - "name": "Folder-223412940909415881", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133751270, - "created_on": 1375133751270 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167876, - "guid": null, - "name": "NewFolder-9782029533393997", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375133752630, - "created_on": 1375133752630 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167907, - "guid": null, - "name": "Folder-0636152214095087", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210235027, - "created_on": 1375210235027 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167908, - "guid": null, - "name": "Folder-34317832104003454", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210235777, - "created_on": 1375210235777 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167909, - "guid": null, - "name": "Folder-28644352704253484", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210236510, - "created_on": 1375210236510 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167911, - "guid": null, - "name": "Folder-05926322781063453", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210238230, - "created_on": 1375210238230 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167913, - "guid": null, - "name": "Folder-7991617972872218", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210239587, - "created_on": 1375210239587 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167915, - "guid": null, - "name": "Folder-009763880738641317", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210241103, - "created_on": 1375210241103 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167917, - "guid": null, - "name": "Folder-21476883733730534", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210242447, - "created_on": 1375210242447 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167919, - "guid": null, - "name": "Folder-4145734874816748", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210243930, - "created_on": 1375210243930 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167921, - "guid": null, - "name": "Folder-857560470613406", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210428417, - "created_on": 1375210428417 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167924, - "guid": null, - "name": "Folder-45979708560045185", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210430103, - "created_on": 1375210430103 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167927, - "guid": null, - "name": "Folder-01796623473450465", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210431620, - "created_on": 1375210431620 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167930, - "guid": null, - "name": "Folder-7848374571640969", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210432900, - "created_on": 1375210432900 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167933, - "guid": null, - "name": "Folder-04972035224365845", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210434167, - "created_on": 1375210434167 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167936, - "guid": null, - "name": "Folder-5155352017144238", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210435417, - "created_on": 1375210435417 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167939, - "guid": null, - "name": "Folder-7668616913069881", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210436633, - "created_on": 1375210436633 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167942, - "guid": null, - "name": "Folder-23968470264403663", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210437823, - "created_on": 1375210437823 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167945, - "guid": null, - "name": "Folder-12532690061878127", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210507400, - "created_on": 1375210507400 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167947, - "guid": null, - "name": "Folder-7567397802708619", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210509120, - "created_on": 1375210509120 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 167949, - "guid": null, - "name": "Folder-6941398789812531", - "access": "Restricted", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375210510620, - "created_on": 1375210510620 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168247, - "guid": null, - "name": "Folder-36542806556370655", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219825593, - "created_on": 1375219825593 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168248, - "guid": null, - "name": "NewFolder-36542806556370655", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219826093, - "created_on": 1375219826093 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168249, - "guid": null, - "name": "Folder-008862221780201907", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219826517, - "created_on": 1375219826517 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168250, - "guid": null, - "name": "NewFolder-008862221780201907", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219827063, - "created_on": 1375219827063 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168251, - "guid": null, - "name": "Folder-2825271165852091", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219827487, - "created_on": 1375219827487 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168252, - "guid": null, - "name": "NewFolder-2825271165852091", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219827940, - "created_on": 1375219827940 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168253, - "guid": null, - "name": "Folder-45582978144200614", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219829080, - "created_on": 1375219829080 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168254, - "guid": null, - "name": "NewFolder-45582978144200614", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219829563, - "created_on": 1375219829563 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168255, - "guid": null, - "name": "Folder-5106980869555368", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219830720, - "created_on": 1375219830720 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168256, - "guid": null, - "name": "NewFolder-5106980869555368", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219831250, - "created_on": 1375219831250 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168257, - "guid": null, - "name": "Folder-4176872196184557", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219903580, - "created_on": 1375219903580 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168258, - "guid": null, - "name": "Folder-2533623385053513", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219904080, - "created_on": 1375219904080 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168259, - "guid": null, - "name": "Folder-936070451336167", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219904500, - "created_on": 1375219904500 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168260, - "guid": null, - "name": "Folder-20094742190610604", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219905610, - "created_on": 1375219905610 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 168261, - "guid": null, - "name": "Folder-0712150450421678", - "access": "Private", - "owner": null, - "sharers": null, - "dir": true, - "modified_on": 1375219906343, - "created_on": 1375219906343 - } - ], - "files": [ - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/427efeaa4124079ad7219952f263d677d17a364c10b27abcffe7965e6a9d773a", - "version": 576, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 317841, - "guid": "427efeaa4124079ad7219952f263d677d17a364c10b27abcffe7965e6a9d773a", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373691712393, - "created_on": 1373691712393 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5dde23894e4c7826a4d03bd7bfe6fc5cd8724544b5e54c993c083fbc15ae112f", - "version": 197, - "type": "Cells", - "file_type": "Xls", - "size": 6656, - "thumbnail": null, - "supported_types": null, - "id": 317847, - "guid": "5dde23894e4c7826a4d03bd7bfe6fc5cd8724544b5e54c993c083fbc15ae112f", - "name": "document_one.xls", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373692449703, - "created_on": 1373692449703 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4d6b8d3d4611de01bdeab73a76a474ae443e601ef32361eb25c906c1495af2a8", - "version": 154, - "type": "Image", - "file_type": "Png", - "size": 4659, - "thumbnail": null, - "supported_types": null, - "id": 317848, - "guid": "4d6b8d3d4611de01bdeab73a76a474ae443e601ef32361eb25c906c1495af2a8", - "name": "document_one.png", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373692567847, - "created_on": 1373692567847 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc", - "version": 1444, - "type": "Pdf", - "file_type": "Pdf", - "size": 109410, - "thumbnail": null, - "supported_types": null, - "id": 317869, - "guid": "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc", - "name": "document_one_with_fields.pdf", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373693505750, - "created_on": 1373693505750 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e05993ce732558e9d4ccb0157ec4c6ab262135cbd22eb1d113af5ce4368a1fff", - "version": 143, - "type": "Words", - "file_type": "Docx", - "size": 3418, - "thumbnail": null, - "supported_types": null, - "id": 318159, - "guid": "e05993ce732558e9d4ccb0157ec4c6ab262135cbd22eb1d113af5ce4368a1fff", - "name": "document_one.docx", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373695883333, - "created_on": 1373695883333 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7b9b09ec1a4d6b261255b5d0c985e9a15516f0a0f474d25b8d982efe1aed8a44", - "version": 27, - "type": "Undefined", - "file_type": "Zip", - "size": 1469, - "thumbnail": null, - "supported_types": null, - "id": 318325, - "guid": "7b9b09ec1a4d6b261255b5d0c985e9a15516f0a0f474d25b8d982efe1aed8a44", - "name": "document_one.zip", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697186960, - "created_on": 1373697186960 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/613864359825f790eacbdd160b26284a23192b45f6d2d697a9574d82d57848e5", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318326, - "guid": "613864359825f790eacbdd160b26284a23192b45f6d2d697a9574d82d57848e5", - "name": "document_two_14917076209276459.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697194287, - "created_on": 1373697194287 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/611872f2b060cb6a8ef2e39967ce200ee26336c9f2de403f389c2632eaec28a9", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318327, - "guid": "611872f2b060cb6a8ef2e39967ce200ee26336c9f2de403f389c2632eaec28a9", - "name": "document_two_07633855500615394.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697195753, - "created_on": 1373697195753 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/8b915bf879671e888ec3bfe957a72173379c97459d7615fd1540b3fd5069fc5f", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318328, - "guid": "8b915bf879671e888ec3bfe957a72173379c97459d7615fd1540b3fd5069fc5f", - "name": "document_two_38540375764810886.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697197250, - "created_on": 1373697197250 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1edb0999a8ba37c027030f330e9ed8e5556eb4a7044125c14423b53e4fab66a7", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318329, - "guid": "1edb0999a8ba37c027030f330e9ed8e5556eb4a7044125c14423b53e4fab66a7", - "name": "document_two_8135565324117646.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697199180, - "created_on": 1373697199180 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2c383a14968f2c48b02d053fb13fa9c0aa31e95cb4ecd397f60b12729e5cb033", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318330, - "guid": "2c383a14968f2c48b02d053fb13fa9c0aa31e95cb4ecd397f60b12729e5cb033", - "name": "document_two_331759376343859.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697200647, - "created_on": 1373697200647 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6c39dfda4a14c351c709e40a7b6b4623d1810fe1fbc9bd49b0a4085e9b6f49b9", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318331, - "guid": "6c39dfda4a14c351c709e40a7b6b4623d1810fe1fbc9bd49b0a4085e9b6f49b9", - "name": "document_two_5539043372782825.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697202057, - "created_on": 1373697202057 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f924dfc022343b6f20652ad5d4c58dc04a787252de2faebeed1cd31cbfe38674", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318332, - "guid": "f924dfc022343b6f20652ad5d4c58dc04a787252de2faebeed1cd31cbfe38674", - "name": "document_two_516803914243529.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697203563, - "created_on": 1373697203563 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/147465f9c54471b74ee515b24a717748051d6a1b77f1d8863f30d7db53a7e786", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318333, - "guid": "147465f9c54471b74ee515b24a717748051d6a1b77f1d8863f30d7db53a7e786", - "name": "document_two_45141463120053715.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697205090, - "created_on": 1373697205090 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/28464ac6800d65c330036cd3d9879ec1cd44bca1656f948b991fc9c2a5c630d3", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318334, - "guid": "28464ac6800d65c330036cd3d9879ec1cd44bca1656f948b991fc9c2a5c630d3", - "name": "document_two_2647735430734468.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697206483, - "created_on": 1373697206483 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4dc71f382ee8df79a93a93ec245d492a7c7c9c4bbb4dc4a9ebdab3f44b34297e", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318335, - "guid": "4dc71f382ee8df79a93a93ec245d492a7c7c9c4bbb4dc4a9ebdab3f44b34297e", - "name": "document_two_3934542516901104.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697207983, - "created_on": 1373697207983 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0cf190b7aee2c5c9f92e248224e15e7ce516f3eac936b3c7f37d1d0d95f9ebb6", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318336, - "guid": "0cf190b7aee2c5c9f92e248224e15e7ce516f3eac936b3c7f37d1d0d95f9ebb6", - "name": "document_two_3871036264520912.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697209417, - "created_on": 1373697209417 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/50f8e58359bde786bb3a763092096ebb8f8bad849b13dafc693f0bcb3683949b", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318337, - "guid": "50f8e58359bde786bb3a763092096ebb8f8bad849b13dafc693f0bcb3683949b", - "name": "document_two_241310192460225.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697212583, - "created_on": 1373697212583 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/09b417b07bf9702af31793a690ae858c4ada99951365c31238e87c33c342040e", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318338, - "guid": "09b417b07bf9702af31793a690ae858c4ada99951365c31238e87c33c342040e", - "name": "document_two_29622579044853026.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697215940, - "created_on": 1373697215940 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/18c9ef8c5fc38ef1e5c53636505740183006489526bc98f588f81a52884b6622", - "version": 16, - "type": "Html", - "file_type": "Html", - "size": 2345, - "thumbnail": null, - "supported_types": null, - "id": 318341, - "guid": "18c9ef8c5fc38ef1e5c53636505740183006489526bc98f588f81a52884b6622", - "name": "document_one.html", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697328597, - "created_on": 1373697328597 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/03059eb8d3d74b22a79739c7b570d0760d6d319345ef65305d348ce8ffc33376", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318342, - "guid": "03059eb8d3d74b22a79739c7b570d0760d6d319345ef65305d348ce8ffc33376", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697344077, - "created_on": 1373697344077 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c9a9cb6581c5b643c752616b86bad8c13070966bb753227f912dd8784c5ec430", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318343, - "guid": "c9a9cb6581c5b643c752616b86bad8c13070966bb753227f912dd8784c5ec430", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697345533, - "created_on": 1373697345533 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b04f6c37141a68eb04ec5134d83593cf709bc2318a34512b5cc612f93f1f07e6", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318344, - "guid": "b04f6c37141a68eb04ec5134d83593cf709bc2318a34512b5cc612f93f1f07e6", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697347047, - "created_on": 1373697347047 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7098e0f205b0a48ea1d34eb23010ae34f6055bc49701fb1f11e2207d2b9ec11c", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318345, - "guid": "7098e0f205b0a48ea1d34eb23010ae34f6055bc49701fb1f11e2207d2b9ec11c", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697348553, - "created_on": 1373697348553 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1378b25122ae3bfc416f1e364744243eab95bb08f1c0332c769b7d06e546d787", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318346, - "guid": "1378b25122ae3bfc416f1e364744243eab95bb08f1c0332c769b7d06e546d787", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697350010, - "created_on": 1373697350010 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9b7a982401b9faf623f784d8b30867d3c6ef7d1a1b747f7d25d010b55d732d01", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318347, - "guid": "9b7a982401b9faf623f784d8b30867d3c6ef7d1a1b747f7d25d010b55d732d01", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697351420, - "created_on": 1373697351420 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2ea45a09c8eb9f6c6c363d6fb0013fbab47f672e4a7b807ad93780c5f5e8a19f", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318348, - "guid": "2ea45a09c8eb9f6c6c363d6fb0013fbab47f672e4a7b807ad93780c5f5e8a19f", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697353147, - "created_on": 1373697353147 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/018fa8d7201efd272d3eebc9a4b2c47010a24be8ff725a08d7e6c8dbae0d0bec", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318349, - "guid": "018fa8d7201efd272d3eebc9a4b2c47010a24be8ff725a08d7e6c8dbae0d0bec", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697354487, - "created_on": 1373697354487 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e2886dd5c1bcc2f4b8d15d5a2ad8afeaf10da71734ed4b9b7044aadf15c1d978", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318350, - "guid": "e2886dd5c1bcc2f4b8d15d5a2ad8afeaf10da71734ed4b9b7044aadf15c1d978", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697355790, - "created_on": 1373697355790 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f451b5bef4e0e901945223b615b99c68e608ec38466e600eef2dda8ccc7bc15c", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318351, - "guid": "f451b5bef4e0e901945223b615b99c68e608ec38466e600eef2dda8ccc7bc15c", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697357730, - "created_on": 1373697357730 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1e8a620650cc9e910f4636e6a8a386f0cab03adf48a5f806bc69cae2044c9cc2", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318352, - "guid": "1e8a620650cc9e910f4636e6a8a386f0cab03adf48a5f806bc69cae2044c9cc2", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697361203, - "created_on": 1373697361203 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7d702fb117f8022fd4d7427fe17107af380e778c5599ab4442e586f2a002f055", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318353, - "guid": "7d702fb117f8022fd4d7427fe17107af380e778c5599ab4442e586f2a002f055", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697365153, - "created_on": 1373697365153 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/acbb9ff16f648abbc54af79dfa21e9ced5f9c8c664d34fdc9780d407c354c28d", - "version": 588, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318354, - "guid": "acbb9ff16f648abbc54af79dfa21e9ced5f9c8c664d34fdc9780d407c354c28d", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697384580, - "created_on": 1373697384580 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b355e5f227cf479b83a64f4cc0f097e44dd0f5aacd7b8a31581234364ab5619b", - "version": 8, - "type": "Words", - "file_type": "Docx", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318355, - "guid": "b355e5f227cf479b83a64f4cc0f097e44dd0f5aacd7b8a31581234364ab5619b", - "name": "document_one.doc.docx", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697390747, - "created_on": 1373697390747 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d4ed9eaedea3bec2483ebb5913ed6db3f338521a50e79633826fc1e9fa2362a0", - "version": 8, - "type": "Cells", - "file_type": "Xlsx", - "size": 6369, - "thumbnail": null, - "supported_types": null, - "id": 318356, - "guid": "d4ed9eaedea3bec2483ebb5913ed6db3f338521a50e79633826fc1e9fa2362a0", - "name": "document_one.xlsx", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697403973, - "created_on": 1373697403973 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d791d8bfe715f606a44029f542a6e95c2bccc410cf01d431479e9324d8fd5f08", - "version": 8, - "type": "Slides", - "file_type": "Ppt", - "size": 71680, - "thumbnail": null, - "supported_types": null, - "id": 318357, - "guid": "d791d8bfe715f606a44029f542a6e95c2bccc410cf01d431479e9324d8fd5f08", - "name": "document_one.ppt", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697407530, - "created_on": 1373697407530 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e6d96182cdabd2c884a8cbb91b0f20225e01fc3f39400c2de15a98631423b255", - "version": 8, - "type": "Image", - "file_type": "Jpg", - "size": 6648, - "thumbnail": null, - "supported_types": null, - "id": 318358, - "guid": "e6d96182cdabd2c884a8cbb91b0f20225e01fc3f39400c2de15a98631423b255", - "name": "document_one.jpg", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373697416207, - "created_on": 1373697416207 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/637cb4760e16d65bfa0d4d42bf603c43b10231650a3bbef9fa7522d0655d5907", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318828, - "guid": "637cb4760e16d65bfa0d4d42bf603c43b10231650a3bbef9fa7522d0655d5907", - "name": "document_two_4510667661207578.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744737860, - "created_on": 1373744737860 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/68d713d09db61b0ed2c1f1bbf04b03d9b40bf9aa99f00ae05e0b438fc2b83bb0", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318829, - "guid": "68d713d09db61b0ed2c1f1bbf04b03d9b40bf9aa99f00ae05e0b438fc2b83bb0", - "name": "document_two_18861854462643202.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744739123, - "created_on": 1373744739123 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/28f3c5c5f063a0dce4cf1b4ea6603ec097016d73ca4ec706729c9c99949586d6", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318830, - "guid": "28f3c5c5f063a0dce4cf1b4ea6603ec097016d73ca4ec706729c9c99949586d6", - "name": "document_two_5878348978353348.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744740433, - "created_on": 1373744740433 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/045b093a8cc97e664b95fe3acd484d97a42f7638f1145428d8fd466e1ead1a29", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318831, - "guid": "045b093a8cc97e664b95fe3acd484d97a42f7638f1145428d8fd466e1ead1a29", - "name": "document_two_4162886225639224.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744741960, - "created_on": 1373744741960 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2e1c96f21e988f32cdb3fccbb954c7d60cc88c2c3808d7231aeb0ed09d6da5a5", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318832, - "guid": "2e1c96f21e988f32cdb3fccbb954c7d60cc88c2c3808d7231aeb0ed09d6da5a5", - "name": "document_two_6285242736562301.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744743350, - "created_on": 1373744743350 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/303e8bb715d20a9751c12621d5daffde0ab77806ab6f4729b1833b4372c53781", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318833, - "guid": "303e8bb715d20a9751c12621d5daffde0ab77806ab6f4729b1833b4372c53781", - "name": "document_two_33661330878841667.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744744980, - "created_on": 1373744744980 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4cb70ef615387a3b72302d36928b752b462179a72b93db237237afbc5d937fce", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318834, - "guid": "4cb70ef615387a3b72302d36928b752b462179a72b93db237237afbc5d937fce", - "name": "document_two_6669058963221162.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744746287, - "created_on": 1373744746287 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/02d9faf196108cbf737d79e68fde812dcf4f0da0863d22703b822ab10f82bf12", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318835, - "guid": "02d9faf196108cbf737d79e68fde812dcf4f0da0863d22703b822ab10f82bf12", - "name": "document_two_8038886715108213.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744747653, - "created_on": 1373744747653 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5e40a1d69c1dc2c2c5fda85c92f4ee02996c24bc589280efbb495605cc77ffa6", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318836, - "guid": "5e40a1d69c1dc2c2c5fda85c92f4ee02996c24bc589280efbb495605cc77ffa6", - "name": "document_two_2827446678218579.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744749403, - "created_on": 1373744749403 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0c20d28d9fb9becc264f3bb0fb917a2fad027e2f8f0ca65e86b3540c66f73309", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318837, - "guid": "0c20d28d9fb9becc264f3bb0fb917a2fad027e2f8f0ca65e86b3540c66f73309", - "name": "document_two_5388022309544765.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744750907, - "created_on": 1373744750907 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/99b7a04d2e0d2412f8d14757bed99c5291b41c01323d80e4bae69cff4216ac23", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318838, - "guid": "99b7a04d2e0d2412f8d14757bed99c5291b41c01323d80e4bae69cff4216ac23", - "name": "document_two_3955262553333476.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744752440, - "created_on": 1373744752440 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/601d8635835d73a45369dc7fd3b7a342dc32f6d0b52fac31c0d80ff3c4a7492d", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318839, - "guid": "601d8635835d73a45369dc7fd3b7a342dc32f6d0b52fac31c0d80ff3c4a7492d", - "name": "document_two_12251805009112726.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744754537, - "created_on": 1373744754537 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/862788382a3b37f7703a133958e3e4d179e887a76cab7d80034ef6c531bdcbe6", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318840, - "guid": "862788382a3b37f7703a133958e3e4d179e887a76cab7d80034ef6c531bdcbe6", - "name": "document_two_01651939188194529.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744756770, - "created_on": 1373744756770 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/af53edbf2b415b98692d0badeba75785ce9f54c0d703ffce88b7e7eb570557fe", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318843, - "guid": "af53edbf2b415b98692d0badeba75785ce9f54c0d703ffce88b7e7eb570557fe", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744870113, - "created_on": 1373744870113 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/729945638aa4bed58d8bbc8ed13acbb37606206433086e0b61f1fae7c1c859c1", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318844, - "guid": "729945638aa4bed58d8bbc8ed13acbb37606206433086e0b61f1fae7c1c859c1", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744871653, - "created_on": 1373744871653 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4d80812a839fa6d4a7752533988bcacb7c7162cd1f6b4b7482774ca54de09323", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318845, - "guid": "4d80812a839fa6d4a7752533988bcacb7c7162cd1f6b4b7482774ca54de09323", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744873117, - "created_on": 1373744873117 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/8df948016b923b9ac606f06b7662ec17c7c844bf2cc6dc57a59e996fe94a431c", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318846, - "guid": "8df948016b923b9ac606f06b7662ec17c7c844bf2cc6dc57a59e996fe94a431c", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744874690, - "created_on": 1373744874690 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0cc3b0bdb811cb7e938d75ce1152dc2e42e76428206865fb95873bd1872b04cc", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318847, - "guid": "0cc3b0bdb811cb7e938d75ce1152dc2e42e76428206865fb95873bd1872b04cc", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744876113, - "created_on": 1373744876113 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5f4055f4076e439ebc121173c1c8eb3b9e08f0841c1f5a9d769cef598ae28813", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318848, - "guid": "5f4055f4076e439ebc121173c1c8eb3b9e08f0841c1f5a9d769cef598ae28813", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744877630, - "created_on": 1373744877630 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4ec5f1fc9d88a8f9d265d1f78678aeb74ff0981b2a27dce95944ab3ceb24c53d", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318849, - "guid": "4ec5f1fc9d88a8f9d265d1f78678aeb74ff0981b2a27dce95944ab3ceb24c53d", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744879053, - "created_on": 1373744879053 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/76ce629d2aee8189eaaa1f72ab22342c2dcdab589016c6f8cb5e0c1b96a9e709", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318850, - "guid": "76ce629d2aee8189eaaa1f72ab22342c2dcdab589016c6f8cb5e0c1b96a9e709", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744880523, - "created_on": 1373744880523 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d9f2db58d0b5f9eb4ff5c4e0e9cd13ae878e6961edfe73a911c5172020ca3444", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318851, - "guid": "d9f2db58d0b5f9eb4ff5c4e0e9cd13ae878e6961edfe73a911c5172020ca3444", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744881983, - "created_on": 1373744881983 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b23740d94db10cfb2ae046b3740d7633bd80e589fbd36af51477083a5e6725cc", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318852, - "guid": "b23740d94db10cfb2ae046b3740d7633bd80e589fbd36af51477083a5e6725cc", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744883493, - "created_on": 1373744883493 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a4ded01fee0eb30f1955afa3d053e23efff36b883367d299adee56accdb11ab9", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318853, - "guid": "a4ded01fee0eb30f1955afa3d053e23efff36b883367d299adee56accdb11ab9", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744885613, - "created_on": 1373744885613 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1a85b2dda70c93318d806ff94abede2cd5376d2dc4a3e5f6e020f1b4771bca57", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318854, - "guid": "1a85b2dda70c93318d806ff94abede2cd5376d2dc4a3e5f6e020f1b4771bca57", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744887773, - "created_on": 1373744887773 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/346f24d9ff20519ee11e1025ed7a04701d23b8554f8487424f36ba9d9569b7fc", - "version": 588, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 318855, - "guid": "346f24d9ff20519ee11e1025ed7a04701d23b8554f8487424f36ba9d9569b7fc", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373744907403, - "created_on": 1373744907403 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e0cc9c667cfbc6ac611052368451fcb82e4f8b82b2e34175edb2f817ab3a103f", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319354, - "guid": "e0cc9c667cfbc6ac611052368451fcb82e4f8b82b2e34175edb2f817ab3a103f", - "name": "document_two_8094120649118168.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784736483, - "created_on": 1373784736483 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/fef85d35751c06635fff101c82bd297b13be6d5c674fcc48f4e62023bea11887", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319355, - "guid": "fef85d35751c06635fff101c82bd297b13be6d5c674fcc48f4e62023bea11887", - "name": "document_two_7071721891295742.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784738020, - "created_on": 1373784738020 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/134d4585c7dbd20da7c8adb7ffebd5b01aca179344012b7d9ea26d18c2428493", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319356, - "guid": "134d4585c7dbd20da7c8adb7ffebd5b01aca179344012b7d9ea26d18c2428493", - "name": "document_two_16832645815847513.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784739570, - "created_on": 1373784739570 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/98563e53a2b8307de6511dd4ebc74b11a294e9d18b03c5886436c2fb60e5f0fd", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319357, - "guid": "98563e53a2b8307de6511dd4ebc74b11a294e9d18b03c5886436c2fb60e5f0fd", - "name": "document_two_41642710881156364.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784741110, - "created_on": 1373784741110 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f35d6c830e60586cd1283bf0c38a7d06b372aaadec1673dc97fb695e230546ff", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319358, - "guid": "f35d6c830e60586cd1283bf0c38a7d06b372aaadec1673dc97fb695e230546ff", - "name": "document_two_2633100124120564.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784742863, - "created_on": 1373784742863 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0325c89a54d7af4144d6bc77da63c8da39bd712c260bc02e2180422f56e3e0a4", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319359, - "guid": "0325c89a54d7af4144d6bc77da63c8da39bd712c260bc02e2180422f56e3e0a4", - "name": "document_two_905176742966635.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784744383, - "created_on": 1373784744383 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f339d39a43ea1c95a348962ac056099f41acdad413571f97887a4dea5f165bd4", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319360, - "guid": "f339d39a43ea1c95a348962ac056099f41acdad413571f97887a4dea5f165bd4", - "name": "document_two_7245007148712493.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784746100, - "created_on": 1373784746100 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/47cde51bbdff577655a2296aa4c87a3301110591c2b03019cf1f0186810aa4a6", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319361, - "guid": "47cde51bbdff577655a2296aa4c87a3301110591c2b03019cf1f0186810aa4a6", - "name": "document_two_8369773863724247.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784747750, - "created_on": 1373784747750 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a1ceffb8f5bd6b143c0bde402717bc202b610e05dac7b5c81d76688ab92cd158", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319362, - "guid": "a1ceffb8f5bd6b143c0bde402717bc202b610e05dac7b5c81d76688ab92cd158", - "name": "document_two_019952220702027623.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784749420, - "created_on": 1373784749420 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/38b617e0f5b5dc5dd42e39f423ac400a5c10bf1c60024f2352aeb11c38adf6d8", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319363, - "guid": "38b617e0f5b5dc5dd42e39f423ac400a5c10bf1c60024f2352aeb11c38adf6d8", - "name": "document_two_32596010075016446.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784751387, - "created_on": 1373784751387 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d09a569b0427f723fd99cf848ed840743779d7d9cc61617eabc17cbfd4534771", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319364, - "guid": "d09a569b0427f723fd99cf848ed840743779d7d9cc61617eabc17cbfd4534771", - "name": "document_two_22589979763153611.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784753477, - "created_on": 1373784753477 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/45c5370bc0a77e46ef9fbf68ad69e2bdd407587a253124f6997669dbf687af7b", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319365, - "guid": "45c5370bc0a77e46ef9fbf68ad69e2bdd407587a253124f6997669dbf687af7b", - "name": "document_two_603996453185336.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784755500, - "created_on": 1373784755500 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4591929e0aa0962091e5f0106a79bd09451057ea060f167da8c61fd85dec8020", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319366, - "guid": "4591929e0aa0962091e5f0106a79bd09451057ea060f167da8c61fd85dec8020", - "name": "document_two_026514624394248676.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784757643, - "created_on": 1373784757643 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/60cfd30ca8e0f77e2d0a06fcd5a63e05e3f2f7e8b3a1a0ad1da216b325071990", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319369, - "guid": "60cfd30ca8e0f77e2d0a06fcd5a63e05e3f2f7e8b3a1a0ad1da216b325071990", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784880787, - "created_on": 1373784880787 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/ef6296b4a39b99c39f6f854c5337a15d2133d8698ac63488684e27294bba5778", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319370, - "guid": "ef6296b4a39b99c39f6f854c5337a15d2133d8698ac63488684e27294bba5778", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784882207, - "created_on": 1373784882207 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/25e08074d22448a464a9ae59c9bc79c4913de9158a370b299096023bdbc3f5de", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319371, - "guid": "25e08074d22448a464a9ae59c9bc79c4913de9158a370b299096023bdbc3f5de", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784883910, - "created_on": 1373784883910 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/31c764fe0ef20a05a63c5996e04cc5355d44c3ed7689425957aa36670818115f", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319372, - "guid": "31c764fe0ef20a05a63c5996e04cc5355d44c3ed7689425957aa36670818115f", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784885427, - "created_on": 1373784885427 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c1d08bf69f3b8ffe26e45adb8b8d89051a39b01cf82a43cd2d8fb6caebeae3ed", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319373, - "guid": "c1d08bf69f3b8ffe26e45adb8b8d89051a39b01cf82a43cd2d8fb6caebeae3ed", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784887020, - "created_on": 1373784887020 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d440963f92f9f1fa42d1df7d27c3ca5fd02c3c6c276c092a3cfc7fc0e02d3c83", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319374, - "guid": "d440963f92f9f1fa42d1df7d27c3ca5fd02c3c6c276c092a3cfc7fc0e02d3c83", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784888440, - "created_on": 1373784888440 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c495973c69397a2b54ded103360ccf3021639d06f6242838c609779d78217d0e", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319375, - "guid": "c495973c69397a2b54ded103360ccf3021639d06f6242838c609779d78217d0e", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784890003, - "created_on": 1373784890003 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/767de037d4d5f086864d94807ead1c564d01c9d31e0ec0ea3ba0d2bba9ccd4d4", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319376, - "guid": "767de037d4d5f086864d94807ead1c564d01c9d31e0ec0ea3ba0d2bba9ccd4d4", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784891457, - "created_on": 1373784891457 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/10495d89fbb82b165383e1245af6cedbd08045d672e84f2a242b9d0741804468", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319377, - "guid": "10495d89fbb82b165383e1245af6cedbd08045d672e84f2a242b9d0741804468", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784893347, - "created_on": 1373784893347 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/895657075d5902d6c7077a39f20759b2cdaf5d7b7a2b0ed6c5a48851b7876294", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319378, - "guid": "895657075d5902d6c7077a39f20759b2cdaf5d7b7a2b0ed6c5a48851b7876294", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784895253, - "created_on": 1373784895253 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9de1a5fefe28c3c69911088b913ba17b520634d9363784b536f85c0ba173222e", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319379, - "guid": "9de1a5fefe28c3c69911088b913ba17b520634d9363784b536f85c0ba173222e", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784897440, - "created_on": 1373784897440 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/fa0fa40229191c3e5aae250bb051bc9f8715889aecb8c794927b4e4301fccd53", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319380, - "guid": "fa0fa40229191c3e5aae250bb051bc9f8715889aecb8c794927b4e4301fccd53", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784899753, - "created_on": 1373784899753 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e154bd8dfebe7d76e75195c039fa56b886b5d7e70f35d1c40573591a3d195ad2", - "version": 972, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 319381, - "guid": "e154bd8dfebe7d76e75195c039fa56b886b5d7e70f35d1c40573591a3d195ad2", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373784915237, - "created_on": 1373784915237 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/894f4195017b1f355289c6922f728c2c3d75089d83724b520cc9844ba207a1bc", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320232, - "guid": "894f4195017b1f355289c6922f728c2c3d75089d83724b520cc9844ba207a1bc", - "name": "document_two_6287996521802866.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957970877, - "created_on": 1373957970877 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c0b8892ccf1faea16a1e5dec6330c4b99c1bdd456ad3223e571a04ed48ba193b", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320233, - "guid": "c0b8892ccf1faea16a1e5dec6330c4b99c1bdd456ad3223e571a04ed48ba193b", - "name": "document_two_7387778335434088.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957972957, - "created_on": 1373957972957 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/309cedadeecefbd15e75107faf2a50f46ddd7e4ad4118216777d4960013f2c96", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320234, - "guid": "309cedadeecefbd15e75107faf2a50f46ddd7e4ad4118216777d4960013f2c96", - "name": "document_two_33208753639099364.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957974870, - "created_on": 1373957974870 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/ea552d89d0bffebfc9b00f0655451123eff18838ff8d46f3bc68c05403026042", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320235, - "guid": "ea552d89d0bffebfc9b00f0655451123eff18838ff8d46f3bc68c05403026042", - "name": "document_two_5202270849933028.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957976893, - "created_on": 1373957976893 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0625d296a4485edcaa37967ea5ffe3535f4577a0aeeac91f6cf443bd3b47a6a9", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320236, - "guid": "0625d296a4485edcaa37967ea5ffe3535f4577a0aeeac91f6cf443bd3b47a6a9", - "name": "document_two_5464459672702546.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957978593, - "created_on": 1373957978593 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b61d53c29ac4980c1df69fabc3a9c87e8192a87238f4387bc6c10de5ddf849b4", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320237, - "guid": "b61d53c29ac4980c1df69fabc3a9c87e8192a87238f4387bc6c10de5ddf849b4", - "name": "document_two_9410707270407438.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957980483, - "created_on": 1373957980483 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/92f4af425fbc05dc38f75677b958dd49aa46d156c7038ca0bbbff44d5e4bd8e1", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320238, - "guid": "92f4af425fbc05dc38f75677b958dd49aa46d156c7038ca0bbbff44d5e4bd8e1", - "name": "document_two_7004820458686819.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957982330, - "created_on": 1373957982330 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/90e25a3d011d9f32d7b55cadde73f149151bcea05e5f9c9def6b5102113cb973", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320239, - "guid": "90e25a3d011d9f32d7b55cadde73f149151bcea05e5f9c9def6b5102113cb973", - "name": "document_two_8076668848491484.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957984153, - "created_on": 1373957984153 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7d3e76677529c6805696804873203a346ce8abae2207a70d54f901ee57b48cb1", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320240, - "guid": "7d3e76677529c6805696804873203a346ce8abae2207a70d54f901ee57b48cb1", - "name": "document_two_7464083741120656.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957986040, - "created_on": 1373957986040 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/24c898202e15997f1613ce2f1e67e42f228e32640f15a09131cc4b7af0a93953", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320241, - "guid": "24c898202e15997f1613ce2f1e67e42f228e32640f15a09131cc4b7af0a93953", - "name": "document_two_8990071797086692.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957987727, - "created_on": 1373957987727 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/72cd6fa1267cee7831cd27cc30aa644c2243138be5f3608b5142099529d76207", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320242, - "guid": "72cd6fa1267cee7831cd27cc30aa644c2243138be5f3608b5142099529d76207", - "name": "document_two_5133761621010619.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957989563, - "created_on": 1373957989563 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5542f77f9dacc821d8b54a9c8fd7076db2e816b73fb561770772c6ab3ee48e1f", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320243, - "guid": "5542f77f9dacc821d8b54a9c8fd7076db2e816b73fb561770772c6ab3ee48e1f", - "name": "document_two_3785647717555889.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957992113, - "created_on": 1373957992113 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/ec83e58454bbcc40d3fdfdb8d73c12a62d0660d40686f873d2b166028a44f065", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320244, - "guid": "ec83e58454bbcc40d3fdfdb8d73c12a62d0660d40686f873d2b166028a44f065", - "name": "document_two_48974519799060845.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373957995237, - "created_on": 1373957995237 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e7b92fab492e16108b5c1a31e19b041f74b393a6c017b5d3365103d18dd204e7", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320247, - "guid": "e7b92fab492e16108b5c1a31e19b041f74b393a6c017b5d3365103d18dd204e7", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958145047, - "created_on": 1373958145047 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4c45f0824e088a3c0885271e739136f04a50353a22665f87f9b62d5f8598ea92", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320248, - "guid": "4c45f0824e088a3c0885271e739136f04a50353a22665f87f9b62d5f8598ea92", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958146697, - "created_on": 1373958146697 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/268e0f07c0a749bdec04104796d7a4caec43b334f50b7e572f13de4eeb36f12c", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320249, - "guid": "268e0f07c0a749bdec04104796d7a4caec43b334f50b7e572f13de4eeb36f12c", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958148663, - "created_on": 1373958148663 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/486a2d0480c42938d34fa646c60701ea1f499db54f94ab147aeace0ea4e843c0", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320250, - "guid": "486a2d0480c42938d34fa646c60701ea1f499db54f94ab147aeace0ea4e843c0", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958150547, - "created_on": 1373958150547 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/88bcf4631845b8434527fb4d05bc2984dfbf81187aecb3fe2289bbc672651dee", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320251, - "guid": "88bcf4631845b8434527fb4d05bc2984dfbf81187aecb3fe2289bbc672651dee", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958152477, - "created_on": 1373958152477 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1ee3d028d96ac023b7fceb219309466fa691b81b2c50c2c296a2a311cf21ff91", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320252, - "guid": "1ee3d028d96ac023b7fceb219309466fa691b81b2c50c2c296a2a311cf21ff91", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958154230, - "created_on": 1373958154230 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6c99c1b2680c7aafca2a6ec67a101f2d0215c1dd24680969f6aa5c510b62fd18", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320253, - "guid": "6c99c1b2680c7aafca2a6ec67a101f2d0215c1dd24680969f6aa5c510b62fd18", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958156253, - "created_on": 1373958156253 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1ca6e34bb4b6ddef44e0104834fa304d1d1d2e42490761fbfa86b4908ba7d993", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320254, - "guid": "1ca6e34bb4b6ddef44e0104834fa304d1d1d2e42490761fbfa86b4908ba7d993", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958157993, - "created_on": 1373958157993 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2101eadc17732d575aab46070cf1f8f4579e8d72de17bab90af732b057453255", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320255, - "guid": "2101eadc17732d575aab46070cf1f8f4579e8d72de17bab90af732b057453255", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958159687, - "created_on": 1373958159687 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/951dfee06b1627127a4748a3e5f2c01fe8c7a88593186ed4fea3790c4da6b6bc", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320256, - "guid": "951dfee06b1627127a4748a3e5f2c01fe8c7a88593186ed4fea3790c4da6b6bc", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958161510, - "created_on": 1373958161510 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9a1e9489a59bebfbe12535863461c32a9c2d19fb4c120884bc33d22952e15a25", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320257, - "guid": "9a1e9489a59bebfbe12535863461c32a9c2d19fb4c120884bc33d22952e15a25", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958163907, - "created_on": 1373958163907 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b03a62c222d644363373e11fb9ec52aed2ba518434cb683eb925380666398727", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320258, - "guid": "b03a62c222d644363373e11fb9ec52aed2ba518434cb683eb925380666398727", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958166537, - "created_on": 1373958166537 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9c77841f4219871687f9a76001025df8d0e05a0fa5827eab821fdd35b583547c", - "version": 588, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320259, - "guid": "9c77841f4219871687f9a76001025df8d0e05a0fa5827eab821fdd35b583547c", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1373958186557, - "created_on": 1373958186557 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f81c269553ea70f4d9b94f1cc5b71d5a06b2e06f1aa380502f9ce4db62613845", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320729, - "guid": "f81c269553ea70f4d9b94f1cc5b71d5a06b2e06f1aa380502f9ce4db62613845", - "name": "document_two_3987293095386174.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038771000, - "created_on": 1374038771000 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/15be6b7c8ff3fddeb404db56390aa2fd1ab1617a2eebe7e306e8e1a3e02e020a", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320730, - "guid": "15be6b7c8ff3fddeb404db56390aa2fd1ab1617a2eebe7e306e8e1a3e02e020a", - "name": "document_two_5300449007252142.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038772633, - "created_on": 1374038772633 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d2dc9402d660a5de3c0212a728348ef2459a760d17abbc04d9a450245c030262", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320731, - "guid": "d2dc9402d660a5de3c0212a728348ef2459a760d17abbc04d9a450245c030262", - "name": "document_two_8117938095364376.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038774090, - "created_on": 1374038774090 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f6eadc9a33979491312666aef8e0ce6310472ce545f69fde2df55d9d5c9f24d1", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320732, - "guid": "f6eadc9a33979491312666aef8e0ce6310472ce545f69fde2df55d9d5c9f24d1", - "name": "document_two_8764094951006062.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038775557, - "created_on": 1374038775557 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/914b0bdc9337c846907daf7ea54a425ae1a14be94a6c16131c27672096913008", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320733, - "guid": "914b0bdc9337c846907daf7ea54a425ae1a14be94a6c16131c27672096913008", - "name": "document_two_013842925165870379.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038776863, - "created_on": 1374038776863 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7789e0ccad42b9ccb45f20594a7dbcf312ebc675c2df1f0460c1a983504f5a0b", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320734, - "guid": "7789e0ccad42b9ccb45f20594a7dbcf312ebc675c2df1f0460c1a983504f5a0b", - "name": "document_two_6512904172817816.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038778270, - "created_on": 1374038778270 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c17a8fa93fbe49c5a3506bd6e294a3d619ef627c6cb3a31e80de5d31b41bb7ed", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320735, - "guid": "c17a8fa93fbe49c5a3506bd6e294a3d619ef627c6cb3a31e80de5d31b41bb7ed", - "name": "document_two_7693233438618946.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038779793, - "created_on": 1374038779793 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/3a9dbe5a37068a1245b1558dd2f040907f2a2eb6d90f4c3c17cd066d65d489d8", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320736, - "guid": "3a9dbe5a37068a1245b1558dd2f040907f2a2eb6d90f4c3c17cd066d65d489d8", - "name": "document_two_26714194832755034.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038781447, - "created_on": 1374038781447 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5e0469ee98a238ce4b01b85216e024b48b6561d4bead9df309bad3dba84384cb", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320737, - "guid": "5e0469ee98a238ce4b01b85216e024b48b6561d4bead9df309bad3dba84384cb", - "name": "document_two_04681540638799808.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038782827, - "created_on": 1374038782827 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f8c4dee7af9261232759f33cc878719e5f5e992da97ad1471d7409613aa61196", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320738, - "guid": "f8c4dee7af9261232759f33cc878719e5f5e992da97ad1471d7409613aa61196", - "name": "document_two_47617690371044175.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038784300, - "created_on": 1374038784300 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7b9d60a971fec19e07a7ccb0861366dc577a229644d257ddc1c122d3968508f7", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320739, - "guid": "7b9d60a971fec19e07a7ccb0861366dc577a229644d257ddc1c122d3968508f7", - "name": "document_two_2886343422264893.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038785797, - "created_on": 1374038785797 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/87dee0d1c0ae3fea9dc5b76534a35cab67b94f08b23fde526c0ca3af91bceda0", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320740, - "guid": "87dee0d1c0ae3fea9dc5b76534a35cab67b94f08b23fde526c0ca3af91bceda0", - "name": "document_two_12276284877619814.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038788017, - "created_on": 1374038788017 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/71d9a47b8dbc287a4b89f805d5b254f525331499e1f79f43820252fb0ca7f1ed", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320741, - "guid": "71d9a47b8dbc287a4b89f805d5b254f525331499e1f79f43820252fb0ca7f1ed", - "name": "document_two_46606121020446056.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038790287, - "created_on": 1374038790287 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5fe682d4d3b5870d357d036f73101331ddfc90c69314643fd4811285eae5439b", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320744, - "guid": "5fe682d4d3b5870d357d036f73101331ddfc90c69314643fd4811285eae5439b", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038940560, - "created_on": 1374038940560 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/25a4a04585b16d632db24276bbf2a733c40fd8696513fe5b8a90eb31e3d499f4", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320745, - "guid": "25a4a04585b16d632db24276bbf2a733c40fd8696513fe5b8a90eb31e3d499f4", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038942190, - "created_on": 1374038942190 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/02672a6b9f6d92adee5cebc2612c252b93e4c5cea924e8459b022a2ca50cb066", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320746, - "guid": "02672a6b9f6d92adee5cebc2612c252b93e4c5cea924e8459b022a2ca50cb066", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038943737, - "created_on": 1374038943737 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d43ecd64bae373e96abb9b0ebbc863eb5f28f61ab3f152677e434b7938a64d75", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320747, - "guid": "d43ecd64bae373e96abb9b0ebbc863eb5f28f61ab3f152677e434b7938a64d75", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038945283, - "created_on": 1374038945283 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b89e4f563a5b5d26d3ba10526b7541628b6be767a4820770dc594e52803ae2f1", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320748, - "guid": "b89e4f563a5b5d26d3ba10526b7541628b6be767a4820770dc594e52803ae2f1", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038947010, - "created_on": 1374038947010 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/70b9941a4d86a3134a8c749d387ec3a510d71d6874cad809f72a2b95989f3dd2", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320749, - "guid": "70b9941a4d86a3134a8c749d387ec3a510d71d6874cad809f72a2b95989f3dd2", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038948787, - "created_on": 1374038948787 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/40d921b1548c01cc15a94601d42cf1ac17dc5c3ac0e2b35b66a1c11e484ec270", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320750, - "guid": "40d921b1548c01cc15a94601d42cf1ac17dc5c3ac0e2b35b66a1c11e484ec270", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038950477, - "created_on": 1374038950477 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/74dc6050767df88fb5d4133c3189553cb86b7f4f16ed36230e94a2f4c00de9ff", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320751, - "guid": "74dc6050767df88fb5d4133c3189553cb86b7f4f16ed36230e94a2f4c00de9ff", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038952053, - "created_on": 1374038952053 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c74f27dac84c48586d5ba35a0dff632a3b65bb0b0ab917edb52702ffccc1678e", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320752, - "guid": "c74f27dac84c48586d5ba35a0dff632a3b65bb0b0ab917edb52702ffccc1678e", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038953820, - "created_on": 1374038953820 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/aaa0458e9f9fff2fe7dc6bdd2c2d48f54bb4841c66ccf54b7e3c501f8751150c", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320753, - "guid": "aaa0458e9f9fff2fe7dc6bdd2c2d48f54bb4841c66ccf54b7e3c501f8751150c", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038955563, - "created_on": 1374038955563 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5dfbb545c1e0f0ddba27746b976ad824c6e98e9e0f461718250a7dd519205068", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320754, - "guid": "5dfbb545c1e0f0ddba27746b976ad824c6e98e9e0f461718250a7dd519205068", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038957787, - "created_on": 1374038957787 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2896690be68815f83ebadce8dc2e129f3a7583d5ddd4f19a8a78815dda667448", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320755, - "guid": "2896690be68815f83ebadce8dc2e129f3a7583d5ddd4f19a8a78815dda667448", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038960090, - "created_on": 1374038960090 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/92734f6e6d3f1f46bbd922a876306857a99d3d81f22b31639cf89ed6cfe50df3", - "version": 588, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 320756, - "guid": "92734f6e6d3f1f46bbd922a876306857a99d3d81f22b31639cf89ed6cfe50df3", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374038979640, - "created_on": 1374038979640 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5b57eb136a99720cf91dead0d23f60c91ebe1d465126df3cbd2abe300c7d55e4", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324126, - "guid": "5b57eb136a99720cf91dead0d23f60c91ebe1d465126df3cbd2abe300c7d55e4", - "name": "document_two_546183531110386.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069563353, - "created_on": 1374069563353 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/69c375b9242c89cfba2e52368f3bb4f86d569be699abf66bb5974d2efc870113", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324127, - "guid": "69c375b9242c89cfba2e52368f3bb4f86d569be699abf66bb5974d2efc870113", - "name": "document_two_71851667843199.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069564933, - "created_on": 1374069564933 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/75b404c21680cbb2646ac7fdad63be57f596e920808dcf872f69fa4acc987c0b", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324128, - "guid": "75b404c21680cbb2646ac7fdad63be57f596e920808dcf872f69fa4acc987c0b", - "name": "document_two_036077105669900855.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069566577, - "created_on": 1374069566577 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a47fce2a5d89a426352bf6e0e87b6d4e09b1b3b10c29b95d6269d8bc20e4a6b8", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324129, - "guid": "a47fce2a5d89a426352bf6e0e87b6d4e09b1b3b10c29b95d6269d8bc20e4a6b8", - "name": "document_two_8385481283119234.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069568063, - "created_on": 1374069568063 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a6414eeeeb1b736b2e8ca7d1a98db9dc539306f593c1ff09f7718deebc489626", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324130, - "guid": "a6414eeeeb1b736b2e8ca7d1a98db9dc539306f593c1ff09f7718deebc489626", - "name": "document_two_8725186204647235.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069569733, - "created_on": 1374069569733 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b58706f42753f3b91b294af5267b1226829b632104d43055b3a4e2fdde07c247", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324131, - "guid": "b58706f42753f3b91b294af5267b1226829b632104d43055b3a4e2fdde07c247", - "name": "document_two_1191528801361964.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069571343, - "created_on": 1374069571343 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/be0e31a1f7a809fc0fcf3cf35fea93dd4b6a3279969d03fb1e8961131c6a72ff", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324132, - "guid": "be0e31a1f7a809fc0fcf3cf35fea93dd4b6a3279969d03fb1e8961131c6a72ff", - "name": "document_two_7172084068638404.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069572917, - "created_on": 1374069572917 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b086993584a6f97b29cde39a242464061df759b1e652f51f535fc2362c2d131d", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324133, - "guid": "b086993584a6f97b29cde39a242464061df759b1e652f51f535fc2362c2d131d", - "name": "document_two_7979114276017735.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069574757, - "created_on": 1374069574757 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e2da19749de123ee572f79c1ed0cadf74b0ec6acf9dad87fd0cbaf2458bd3145", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324134, - "guid": "e2da19749de123ee572f79c1ed0cadf74b0ec6acf9dad87fd0cbaf2458bd3145", - "name": "document_two_8536778446732003.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069576433, - "created_on": 1374069576433 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/78f987566582382a3f5e9afac6311b58e5d7d78af038edc2b9c053bfb362b0fd", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324135, - "guid": "78f987566582382a3f5e9afac6311b58e5d7d78af038edc2b9c053bfb362b0fd", - "name": "document_two_7630269548475452.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069578170, - "created_on": 1374069578170 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/38090f719d2dfbe81faf8779c811caa02b9c0c0ad9eedc9aea5b81252edecf97", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324136, - "guid": "38090f719d2dfbe81faf8779c811caa02b9c0c0ad9eedc9aea5b81252edecf97", - "name": "document_two_31134224690358736.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069579783, - "created_on": 1374069579783 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/60d70d6594f98479c248408463bd1b4cb7c3283c31f3043e0c72d90e98ae0cfe", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324137, - "guid": "60d70d6594f98479c248408463bd1b4cb7c3283c31f3043e0c72d90e98ae0cfe", - "name": "document_two_6241359224738737.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069582420, - "created_on": 1374069582420 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e058c5d1f143bef2314628cc8353dfe0611989a4705e31966b8746e0d01e4b65", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324138, - "guid": "e058c5d1f143bef2314628cc8353dfe0611989a4705e31966b8746e0d01e4b65", - "name": "document_two_39066011341341.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069584817, - "created_on": 1374069584817 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/8e34feeafecfada36ae3e2845f2649ef4ccbe928dafea0378a6d8ee5bf256fbb", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324141, - "guid": "8e34feeafecfada36ae3e2845f2649ef4ccbe928dafea0378a6d8ee5bf256fbb", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069754347, - "created_on": 1374069754347 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/ca7b8111fe7ee8e59338dae89b05e776165da8499521fcb3a0e69ec406ffbcd4", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324142, - "guid": "ca7b8111fe7ee8e59338dae89b05e776165da8499521fcb3a0e69ec406ffbcd4", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069756133, - "created_on": 1374069756133 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6e1eefb5a434e43a02e548f85e507a29b0cab372a921b9c040114c6d27e368d6", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324143, - "guid": "6e1eefb5a434e43a02e548f85e507a29b0cab372a921b9c040114c6d27e368d6", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069757813, - "created_on": 1374069757813 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d4ad552956725055393ba0be5461fa5cab610c5ded1f396454b656baafaa8904", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324144, - "guid": "d4ad552956725055393ba0be5461fa5cab610c5ded1f396454b656baafaa8904", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069759477, - "created_on": 1374069759477 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/56652a1ea4836df234788cf3f3cd30a1c2313cd4363e5837e4272cadf22acd9f", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324145, - "guid": "56652a1ea4836df234788cf3f3cd30a1c2313cd4363e5837e4272cadf22acd9f", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069761120, - "created_on": 1374069761120 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/75cffd7c10d36a163ceebae542aa8eb89b3e959c63bc28296ba1b108c9991abf", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324146, - "guid": "75cffd7c10d36a163ceebae542aa8eb89b3e959c63bc28296ba1b108c9991abf", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069762660, - "created_on": 1374069762660 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a1c179c3e6e576356a397e6af572f9510c72bc3edd7f1b8a0f67cad77a025d53", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324147, - "guid": "a1c179c3e6e576356a397e6af572f9510c72bc3edd7f1b8a0f67cad77a025d53", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069764243, - "created_on": 1374069764243 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4c631e870d7c617039cd271d637845bcff737b4751f21742a199e6fa16eb88bc", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324148, - "guid": "4c631e870d7c617039cd271d637845bcff737b4751f21742a199e6fa16eb88bc", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069765877, - "created_on": 1374069765877 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9777720ad88650bd58f0b5931f9761ae231825b4b785ef77bb110b70d4ff2460", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324149, - "guid": "9777720ad88650bd58f0b5931f9761ae231825b4b785ef77bb110b70d4ff2460", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069767417, - "created_on": 1374069767417 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/bb67edb4a45407e4f937c7ae3afc7883c5e6e7a805180823644e278142b39b3e", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324150, - "guid": "bb67edb4a45407e4f937c7ae3afc7883c5e6e7a805180823644e278142b39b3e", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069769100, - "created_on": 1374069769100 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/10b58382cf192a12e8f4b23ed19bb9f01fd58c477a62cd729b56432221fcb4b5", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324151, - "guid": "10b58382cf192a12e8f4b23ed19bb9f01fd58c477a62cd729b56432221fcb4b5", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069771487, - "created_on": 1374069771487 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/ad4f2b1bfc31aea35ea51aeb109a825258a21b7a23bb45d757eeab4042fc0b6a", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324152, - "guid": "ad4f2b1bfc31aea35ea51aeb109a825258a21b7a23bb45d757eeab4042fc0b6a", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069774063, - "created_on": 1374069774063 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/477aae535e84f303fe48ddf0bac7e88ba512b3c23e6080b9f7ff3de7abb0c848", - "version": 215, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324153, - "guid": "477aae535e84f303fe48ddf0bac7e88ba512b3c23e6080b9f7ff3de7abb0c848", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374069797717, - "created_on": 1374069797717 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4f6992852a6f023978e2b923bf028533f9f638eeaef107638bedf4e04d2f0c82", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324363, - "guid": "4f6992852a6f023978e2b923bf028533f9f638eeaef107638bedf4e04d2f0c82", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561393777, - "created_on": 1374561393777 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/89baa5804a14294ce859685b2933a745648a4bdbfbd381dd400bc50bb73b4760", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324364, - "guid": "89baa5804a14294ce859685b2933a745648a4bdbfbd381dd400bc50bb73b4760", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561397010, - "created_on": 1374561397010 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4cd8d7ae5af8610d7f0122482756a458326718bea4689cfe36ee78e79408a7c8", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324365, - "guid": "4cd8d7ae5af8610d7f0122482756a458326718bea4689cfe36ee78e79408a7c8", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561400183, - "created_on": 1374561400183 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/232b8838c0e10b51b6cb2b7d4e25e69e5c2dc4e1c93f3da4839423a9dc0cc395", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324366, - "guid": "232b8838c0e10b51b6cb2b7d4e25e69e5c2dc4e1c93f3da4839423a9dc0cc395", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561403450, - "created_on": 1374561403450 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/805cc53804f83f85052e7fbc9e967ae186280508b4b82a630658c693b6ccc98e", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324367, - "guid": "805cc53804f83f85052e7fbc9e967ae186280508b4b82a630658c693b6ccc98e", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561406653, - "created_on": 1374561406653 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/18e4666bffefc233b9d654b777d65d2265811e767912518ead4bb2d7bba17d26", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324368, - "guid": "18e4666bffefc233b9d654b777d65d2265811e767912518ead4bb2d7bba17d26", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561409840, - "created_on": 1374561409840 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/413809d606f6d125daa324def5d011a7ea1bb3e4420117e0c8b4b952a0407465", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324369, - "guid": "413809d606f6d125daa324def5d011a7ea1bb3e4420117e0c8b4b952a0407465", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561413230, - "created_on": 1374561413230 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5a7459b4da8075cd74ecb08b8363852d2ea27a52c796ca100537c270785096ba", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324370, - "guid": "5a7459b4da8075cd74ecb08b8363852d2ea27a52c796ca100537c270785096ba", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561416370, - "created_on": 1374561416370 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/215bcea80b3a2cad3b440bd82f99bc6dce9b32dd59c3e40c60c60d3e93bb241c", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324371, - "guid": "215bcea80b3a2cad3b440bd82f99bc6dce9b32dd59c3e40c60c60d3e93bb241c", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561419730, - "created_on": 1374561419730 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b3da9275ff84d4f165d43daa7369936084bb5af7c1bc883abbac760fd8b8f4ed", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324372, - "guid": "b3da9275ff84d4f165d43daa7369936084bb5af7c1bc883abbac760fd8b8f4ed", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561422983, - "created_on": 1374561422983 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1dd15cce74f798d932974e72b4b653194a199d7d01334d4b62a4ee6d0f5c5323", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324373, - "guid": "1dd15cce74f798d932974e72b4b653194a199d7d01334d4b62a4ee6d0f5c5323", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561428123, - "created_on": 1374561428123 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/81449ff69c34e109309e87f095724926d1c4c9fc25879e56bb976082146ac60d", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324374, - "guid": "81449ff69c34e109309e87f095724926d1c4c9fc25879e56bb976082146ac60d", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561433217, - "created_on": 1374561433217 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a901aa69ec0bb39bde85018e5612f4333396f63202445e16c0f2e0ac7e22794d", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324382, - "guid": "a901aa69ec0bb39bde85018e5612f4333396f63202445e16c0f2e0ac7e22794d", - "name": "document_two_9105821141350019.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561842647, - "created_on": 1374561842647 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/3b92148cdd0d0fa8ed10ec58dfa5a4e13e37c3c11c226ae03cbed21ef4a8c233", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324383, - "guid": "3b92148cdd0d0fa8ed10ec58dfa5a4e13e37c3c11c226ae03cbed21ef4a8c233", - "name": "document_two_48217977946848267.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561845920, - "created_on": 1374561845920 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/30bc267a60376b5ed285b2913d50aa4e47ffa4c3b8e8859132e6371379ab9b24", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324384, - "guid": "30bc267a60376b5ed285b2913d50aa4e47ffa4c3b8e8859132e6371379ab9b24", - "name": "document_two_2280036680269043.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561849087, - "created_on": 1374561849087 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/98b544d0045e26d8dae517766a3794857a1357998cb56b1923b834af98f45504", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324385, - "guid": "98b544d0045e26d8dae517766a3794857a1357998cb56b1923b834af98f45504", - "name": "document_two_9255314716494248.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561852257, - "created_on": 1374561852257 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1a56cd89382d5769aece38110be7fcf5ccc6b3f764b3bde2ffb7a8daf0e67f74", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324386, - "guid": "1a56cd89382d5769aece38110be7fcf5ccc6b3f764b3bde2ffb7a8daf0e67f74", - "name": "document_two_6992242116168995.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561855860, - "created_on": 1374561855860 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/02858e5e87c5a1ae34875b229125fca25f05ffa064462364c8a7e494767a4c61", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324387, - "guid": "02858e5e87c5a1ae34875b229125fca25f05ffa064462364c8a7e494767a4c61", - "name": "document_two_4457139568099686.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561859100, - "created_on": 1374561859100 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/016771484567c69a67030e732922e9fd4ce87136e8e0288985f33fdfc7382768", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324388, - "guid": "016771484567c69a67030e732922e9fd4ce87136e8e0288985f33fdfc7382768", - "name": "document_two_36734156508560534.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561862437, - "created_on": 1374561862437 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/958316dbcb5a04183f915f7bc1f62e9b41ccde1714396c1defefec95392766df", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324389, - "guid": "958316dbcb5a04183f915f7bc1f62e9b41ccde1714396c1defefec95392766df", - "name": "document_two_7268641469729273.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561867033, - "created_on": 1374561867033 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e1ff9fd5326ff8bc417152effa9314cb955cc4c79f84977fec3f2a938aadee16", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324390, - "guid": "e1ff9fd5326ff8bc417152effa9314cb955cc4c79f84977fec3f2a938aadee16", - "name": "document_two_7106981492039196.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561870113, - "created_on": 1374561870113 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/3208115f8d41bee97da5f93f2c1257ba0f1f6e5d9fb421e8d498e20c1260250c", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324391, - "guid": "3208115f8d41bee97da5f93f2c1257ba0f1f6e5d9fb421e8d498e20c1260250c", - "name": "document_two_746390059479473.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561873190, - "created_on": 1374561873190 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5efed72dd08c455fda0154c27be6d1e837a233bf1576e3f539df0ae7228a7201", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324392, - "guid": "5efed72dd08c455fda0154c27be6d1e837a233bf1576e3f539df0ae7228a7201", - "name": "document_two_24516472337404238.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561878120, - "created_on": 1374561878120 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/46ea4a922be2b5851450dfd8a467b709eb58c65ba7cffe7d7bb533f27177fe53", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 324393, - "guid": "46ea4a922be2b5851450dfd8a467b709eb58c65ba7cffe7d7bb533f27177fe53", - "name": "document_two_8629258141811105.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1374561883423, - "created_on": 1374561883423 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/78cec20167c99b0c8d176c334d2d6d9dfeb12ee3bb0fb47223e520aaa14d748a", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325115, - "guid": "78cec20167c99b0c8d176c334d2d6d9dfeb12ee3bb0fb47223e520aaa14d748a", - "name": "document_two_7580135438632268.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133281253, - "created_on": 1375133281253 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/64ad90ba2e18e87970e94ebed8bfda6a654ffb6f0a3a3c482b85673ec0551fc5", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325116, - "guid": "64ad90ba2e18e87970e94ebed8bfda6a654ffb6f0a3a3c482b85673ec0551fc5", - "name": "document_two_46070568832167147.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133282753, - "created_on": 1375133282753 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f69425976dfa1c3a9d50ff71cbdbc354f73564944f0912713517073594361005", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325117, - "guid": "f69425976dfa1c3a9d50ff71cbdbc354f73564944f0912713517073594361005", - "name": "document_two_40098624782501335.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133284317, - "created_on": 1375133284317 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f8572411876f955b45a966d9ffea0322557fa941e37263b562d1e2fd543b9be6", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325118, - "guid": "f8572411876f955b45a966d9ffea0322557fa941e37263b562d1e2fd543b9be6", - "name": "document_two_12644010704136976.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133285863, - "created_on": 1375133285863 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/75511753a092e69e44218453248ded84339423171734efb45e4d7075548f3de8", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325119, - "guid": "75511753a092e69e44218453248ded84339423171734efb45e4d7075548f3de8", - "name": "document_two_2883225570964185.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133287350, - "created_on": 1375133287350 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a53910a79eb768c49f8ff8eaa4fc5d9d1d99f2eb7a1e075d7bc934102e414092", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325120, - "guid": "a53910a79eb768c49f8ff8eaa4fc5d9d1d99f2eb7a1e075d7bc934102e414092", - "name": "document_two_41470115317551026.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133288817, - "created_on": 1375133288817 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0b9dbf8e71716c374cf768e774be7970a6a1c689234b1945649f96fb9c16caa5", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325121, - "guid": "0b9dbf8e71716c374cf768e774be7970a6a1c689234b1945649f96fb9c16caa5", - "name": "document_two_5631024333931623.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133290380, - "created_on": 1375133290380 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a95fc8759637c9b60a4d88c6638afc2b61650c272e7c284c25291035f58074b4", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325122, - "guid": "a95fc8759637c9b60a4d88c6638afc2b61650c272e7c284c25291035f58074b4", - "name": "document_two_1677329682659503.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133291897, - "created_on": 1375133291897 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/91379cb0624de579239a308363da189be69ad6b646cc07abfa6dd6c1ecdf31ee", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325123, - "guid": "91379cb0624de579239a308363da189be69ad6b646cc07abfa6dd6c1ecdf31ee", - "name": "document_two_30462141966376877.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133293427, - "created_on": 1375133293427 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/65a2287a3de268201560e625482d673c6dafddf060ad30aa13a6255e388ec9ae", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325124, - "guid": "65a2287a3de268201560e625482d673c6dafddf060ad30aa13a6255e388ec9ae", - "name": "document_two_1207457156411108.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133294910, - "created_on": 1375133294910 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/98bc81dbe914f0eb7269ff3e2694fd79fc50ebc234d2f3546e9b30f1b7a43011", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325125, - "guid": "98bc81dbe914f0eb7269ff3e2694fd79fc50ebc234d2f3546e9b30f1b7a43011", - "name": "document_two_671479730845118.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133296427, - "created_on": 1375133296427 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c2ad301bca5d79336ca761ac59c6433d59a07cb4ec057d60035e010c59e1b078", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325126, - "guid": "c2ad301bca5d79336ca761ac59c6433d59a07cb4ec057d60035e010c59e1b078", - "name": "document_two_9663399147147953.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133298707, - "created_on": 1375133298707 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7f288ce154a99a262ab559c4fcbfb05969a837c52051a41b29d8a3095d8a49bb", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325127, - "guid": "7f288ce154a99a262ab559c4fcbfb05969a837c52051a41b29d8a3095d8a49bb", - "name": "document_two_9476119967455388.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133300880, - "created_on": 1375133300880 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d53c3812a164796ee6e3497803e333655a466056d5b7d74e06e77709773cbd59", - "version": 6, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325135, - "guid": "d53c3812a164796ee6e3497803e333655a466056d5b7d74e06e77709773cbd59", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133573910, - "created_on": 1375133573910 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7aa480ad9becc320a42ad3d7862adc33accf6daf38e2b62d8732bf08c6e0b223", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325136, - "guid": "7aa480ad9becc320a42ad3d7862adc33accf6daf38e2b62d8732bf08c6e0b223", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133693973, - "created_on": 1375133693973 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f8b473efb0b286ee777921250c3682cd5cc91dd7f9eff2ee4d56329c3c232f06", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325137, - "guid": "f8b473efb0b286ee777921250c3682cd5cc91dd7f9eff2ee4d56329c3c232f06", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133695427, - "created_on": 1375133695427 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/fd1d2c3ac3fe01195da83aff46f48258efa977d79633bd73883dd6edb354109e", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325138, - "guid": "fd1d2c3ac3fe01195da83aff46f48258efa977d79633bd73883dd6edb354109e", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133696927, - "created_on": 1375133696927 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/8220b32ff7c227ff87c84c4e1223721c6be69c0bb6c7dbbb41b2093795f23f92", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325139, - "guid": "8220b32ff7c227ff87c84c4e1223721c6be69c0bb6c7dbbb41b2093795f23f92", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133698443, - "created_on": 1375133698443 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/75e05f4dcffb922ce1524ee163f28f7216a86e5bcbc0591735ba587ac07b4bd6", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325140, - "guid": "75e05f4dcffb922ce1524ee163f28f7216a86e5bcbc0591735ba587ac07b4bd6", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133699880, - "created_on": 1375133699880 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/fddd7d42275cd2cedf475b3864bebb49d8f480a4f10af5036b234c1d0f3eedb9", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325141, - "guid": "fddd7d42275cd2cedf475b3864bebb49d8f480a4f10af5036b234c1d0f3eedb9", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133701363, - "created_on": 1375133701363 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e930641b34f88369152fb74b804a6578ca048955f7d614429efbe7a6f1cde855", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325142, - "guid": "e930641b34f88369152fb74b804a6578ca048955f7d614429efbe7a6f1cde855", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133702940, - "created_on": 1375133702940 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9b2d43d9cdb503c6c4686a89e72aefe0aa91f0f6a834cf83c961448da614aea9", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325143, - "guid": "9b2d43d9cdb503c6c4686a89e72aefe0aa91f0f6a834cf83c961448da614aea9", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133704393, - "created_on": 1375133704393 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/249e9418757f6a7c1a34f49b61dd1bf92f4b57da662272751dff325fb102e2be", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325144, - "guid": "249e9418757f6a7c1a34f49b61dd1bf92f4b57da662272751dff325fb102e2be", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133705987, - "created_on": 1375133705987 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c8bb3f7248f6664f299988430834531a020bddc105277bec483190a149597507", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325145, - "guid": "c8bb3f7248f6664f299988430834531a020bddc105277bec483190a149597507", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133708113, - "created_on": 1375133708113 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6fc3fc4b0cd92c11574509577470a66b49d63026726d8456231e8362ae096307", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325146, - "guid": "6fc3fc4b0cd92c11574509577470a66b49d63026726d8456231e8362ae096307", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133710410, - "created_on": 1375133710410 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/782ac0f36f2cc5804757cd7ae0ca3ab9a5f3ddb877f304859b5e63fce8f5ed28", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325147, - "guid": "782ac0f36f2cc5804757cd7ae0ca3ab9a5f3ddb877f304859b5e63fce8f5ed28", - "name": "document_two.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375133712520, - "created_on": 1375133712520 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/706370a9cde57d541f503e4fb595e1d78a3d4dfb81fc64da322116228daa93e8", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325664, - "guid": "706370a9cde57d541f503e4fb595e1d78a3d4dfb81fc64da322116228daa93e8", - "name": "document_two_37692914293512625.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219774877, - "created_on": 1375219774877 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/94f4cc031210e0fe8e78072ea05c4986458c2d079a4473d630981864203e0469", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325665, - "guid": "94f4cc031210e0fe8e78072ea05c4986458c2d079a4473d630981864203e0469", - "name": "document_two_2808004014197102.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219776533, - "created_on": 1375219776533 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1abf1e62370ca3f739598e7097367750ff4040ce9201f42dfba062af42ca4b8c", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325666, - "guid": "1abf1e62370ca3f739598e7097367750ff4040ce9201f42dfba062af42ca4b8c", - "name": "document_two_010003126477858393.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219778343, - "created_on": 1375219778343 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c4226237e7e404bca3f509d2e9385f6558aeda075190ea509e4a8f9bcfc01531", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325667, - "guid": "c4226237e7e404bca3f509d2e9385f6558aeda075190ea509e4a8f9bcfc01531", - "name": "document_two_26036347608521926.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219780127, - "created_on": 1375219780127 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/08de48518abeeec649b325b6fb0f5bc77ab511351307fb4a56bd584c2d645ef7", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325668, - "guid": "08de48518abeeec649b325b6fb0f5bc77ab511351307fb4a56bd584c2d645ef7", - "name": "document_two_31568933950539424.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219781627, - "created_on": 1375219781627 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0d8faeff9211e5d5d23e2c1b3d4ccc0214b4937d62582c94fa5a888612504a55", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325669, - "guid": "0d8faeff9211e5d5d23e2c1b3d4ccc0214b4937d62582c94fa5a888612504a55", - "name": "document_two_5968490447821355.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219783203, - "created_on": 1375219783203 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d10c9b93e1f02c262939a8b7810722f6f8f990a1064ee9503b7e4cbdbd3e20dc", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325670, - "guid": "d10c9b93e1f02c262939a8b7810722f6f8f990a1064ee9503b7e4cbdbd3e20dc", - "name": "document_two_03083327677670511.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219784737, - "created_on": 1375219784737 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6199ea6d9f0e8da80515af497596b6b9b263ab72704a9c33aa6f74841a13f891", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325671, - "guid": "6199ea6d9f0e8da80515af497596b6b9b263ab72704a9c33aa6f74841a13f891", - "name": "document_two_03534836811724751.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219786283, - "created_on": 1375219786283 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2fbf80f9a110bfa9ccf8a46492710add295edbff047027be50e231dedbfc6e42", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325672, - "guid": "2fbf80f9a110bfa9ccf8a46492710add295edbff047027be50e231dedbfc6e42", - "name": "document_two_040631023498702734.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219787830, - "created_on": 1375219787830 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f689a67623e6124c441fa9ac4dd24c83affcb4240bbadc93c3a4181666cbda2b", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325673, - "guid": "f689a67623e6124c441fa9ac4dd24c83affcb4240bbadc93c3a4181666cbda2b", - "name": "document_two_9685160771882539.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219789377, - "created_on": 1375219789377 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/223034eb4a1145d0ee29b7bcbebd8d1b6d5019e56b28e09fa6aa5d1f903f8fd7", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325674, - "guid": "223034eb4a1145d0ee29b7bcbebd8d1b6d5019e56b28e09fa6aa5d1f903f8fd7", - "name": "document_two_6175798864778747.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219790953, - "created_on": 1375219790953 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/53f2c44c3ff922d1423d7edde004fc65ea353727018fd30166d5f8b756136937", - "version": 1, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325675, - "guid": "53f2c44c3ff922d1423d7edde004fc65ea353727018fd30166d5f8b756136937", - "name": "document_two_3186832933123024.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219793797, - "created_on": 1375219793797 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/99dda2a0a1cbb75423a7c2e1c3267c11ac498f6690f56a57ce9fcdfa7f8949eb", - "version": 2, - "type": "Pdf", - "file_type": "Pdf", - "size": 6724, - "thumbnail": null, - "supported_types": null, - "id": 325676, - "guid": "99dda2a0a1cbb75423a7c2e1c3267c11ac498f6690f56a57ce9fcdfa7f8949eb", - "name": "document_one.pdf", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375219863907, - "created_on": 1375219863907 - }, - { - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355", - "version": 4, - "type": "Words", - "file_type": "Doc", - "size": 9216, - "thumbnail": null, - "supported_types": null, - "id": 325683, - "guid": "2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355", - "name": "document_one.doc", - "access": "Private", - "owner": null, - "sharers": null, - "dir": false, - "modified_on": 1375220069600, - "created_on": 1375220069600 + "owner": { + "nickname": null, + "firstname": null, + "lastname": null, + "pkey": null, + "pswd_salt": null, + "claimed_id": null, + "token": null, + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 0, + "signedinOn": 0, + "signin_count": null, + "roles": null, + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 1085, + "guid": null, + "primary_email": null + }, + "sharers": null, + "dir": true, + "modified_on": 1383333482400, + "created_on": 1383333482400 } + ], + "files": [ + ] }, "status": "Ok", "error_message": null, - "composedOn": 1375220138804 + "composedOn": 1383333482683 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/MoveFile.json b/src/test/resources/responses/storage/MoveFile.json index b015a06..8121a2d 100644 --- a/src/test/resources/responses/storage/MoveFile.json +++ b/src/test/resources/responses/storage/MoveFile.json @@ -2,34 +2,34 @@ "result": { "src_file": { "name": "document_one.doc", - "version": 6, + "version": 1, "size": 9216, "type": "Words", "type_str": "Words", "file_type_str": "Doc", "document_path": "document_one.doc", "access": "Private", - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355", + "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/f13866c25e153954a333bab1e32d16a71ae39872638c0ac66ef871cb65587271", "file_type": "Doc", - "id": 325683, - "guid": "2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355" + "id": 132457, + "guid": "f13866c25e153954a333bab1e32d16a71ae39872638c0ac66ef871cb65587271" }, "dst_file": { "name": "document_two.doc", - "version": 6, + "version": 1, "size": 9216, "type": "Words", "type_str": "Words", "file_type_str": "Doc", "document_path": "document_two.doc", "access": "Private", - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355", + "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/f13866c25e153954a333bab1e32d16a71ae39872638c0ac66ef871cb65587271", "file_type": "Doc", - "id": 325683, - "guid": "2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355" + "id": 132457, + "guid": "f13866c25e153954a333bab1e32d16a71ae39872638c0ac66ef871cb65587271" } }, "status": "Ok", "error_message": null, - "composedOn": 1375220188945 + "composedOn": 1383333501557 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/MoveFolder.json b/src/test/resources/responses/storage/MoveFolder.json index 95c0ecc..72c22bb 100644 --- a/src/test/resources/responses/storage/MoveFolder.json +++ b/src/test/resources/responses/storage/MoveFolder.json @@ -1,9 +1,9 @@ { "result": { - "from_path": "Folder-37321294257731785", - "to_path": "NewFolder-37321294257731785" + "from_path": "Folder-437802616248015", + "to_path": "NewFolder-437802616248015" }, "status": "Ok", "error_message": null, - "composedOn": 1375220243726 + "composedOn": 1383333530032 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/MoveToTrash.json b/src/test/resources/responses/storage/MoveToTrash.json index b5217be..34af66c 100644 --- a/src/test/resources/responses/storage/MoveToTrash.json +++ b/src/test/resources/responses/storage/MoveToTrash.json @@ -5,5 +5,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375220285023 + "composedOn": 1383333544266 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/Upload.json b/src/test/resources/responses/storage/Upload.json index fe743eb..f0ca34a 100644 --- a/src/test/resources/responses/storage/Upload.json +++ b/src/test/resources/responses/storage/Upload.json @@ -1,17 +1,18 @@ { "result": { "adj_name": "document_one.doc.docx", - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b355e5f227cf479b83a64f4cc0f097e44dd0f5aacd7b8a31581234364ab5619b", + "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/894492ba27cd6922e3a9beaed0543932a89998ed995e2e94634b2fd549e3f9d4", "type": "Words", "file_type": "Docx", "size": 9216, - "version": 9, - "view_job_id": 802659, - "thumbnail": "/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAQCAwMDAgQDAwMEBAQEBQkGBQUFBQsICAYJDQsNDQ0LDAwOEBQRDg8TDwwMEhgSExUWFxcXDhEZGxkWGhQWFxb/2wBDAQQEBAUFBQoGBgoWDwwPFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhb/wAARCAC+AIIDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD7+ooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqlremW+qQRxXDzoIpBIphmaNgR05HNXaKAMGLwnZJLJJ/aOrs8mfma/kLKP7oOc49qu6do1vZalJfR3N7JJIpUpNdO8YzjJCk4B+UdPf1rRooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z", - "id": 318355, - "guid": "b355e5f227cf479b83a64f4cc0f097e44dd0f5aacd7b8a31581234364ab5619b" + "version": 1, + "view_job_id": 128734, + "thumbnail": null, + "upload_time": 1383333548617, + "id": 132472, + "guid": "894492ba27cd6922e3a9beaed0543932a89998ed995e2e94634b2fd549e3f9d4" }, "status": "Ok", "error_message": null, - "composedOn": 1375220317023 + "composedOn": 1383333548484 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/UploadWeb.json b/src/test/resources/responses/storage/UploadWeb.json index 4ff975a..ab87c5f 100644 --- a/src/test/resources/responses/storage/UploadWeb.json +++ b/src/test/resources/responses/storage/UploadWeb.json @@ -1,17 +1,18 @@ { "result": { "adj_name": null, - "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a9f39896803b5ce6aa520545d5fc0b664a3e1c067ecdc28e1e26c2339773e2d7", + "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/f2dfb1b9e12578b3e20ee6139c378cede6584f8702ddeb3a427b32d757830553", "type": "Html", "file_type": "Html", "size": 0, "version": 1, "view_job_id": null, "thumbnail": null, - "id": 325699, - "guid": "a9f39896803b5ce6aa520545d5fc0b664a3e1c067ecdc28e1e26c2339773e2d7" + "upload_time": -62135596800000, + "id": 132482, + "guid": "f2dfb1b9e12578b3e20ee6139c378cede6584f8702ddeb3a427b32d757830553" }, "status": "Ok", "error_message": null, - "composedOn": 1375220376632 + "composedOn": 1383333578591 } \ No newline at end of file diff --git a/src/test/resources/responses/system/GetCountries.json b/src/test/resources/responses/system/GetCountries.json index 2d3f851..ba730b4 100644 --- a/src/test/resources/responses/system/GetCountries.json +++ b/src/test/resources/responses/system/GetCountries.json @@ -188,7 +188,7 @@ "Name": "Cuba" }, { - "Name": "Curaçao" + "Name": "Curaçao" }, { "Name": "Cyprus" @@ -569,7 +569,7 @@ "Name": "Rwanda" }, { - "Name": "Saint Barthélemy" + "Name": "Saint Barthélemy" }, { "Name": "Saint Helena" @@ -755,5 +755,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375220411945 + "composedOn": 1383333587136 } \ No newline at end of file diff --git a/src/test/resources/responses/system/GetStates.json b/src/test/resources/responses/system/GetStates.json index 494655b..707dbb2 100644 --- a/src/test/resources/responses/system/GetStates.json +++ b/src/test/resources/responses/system/GetStates.json @@ -44,7 +44,7 @@ "Name": "Tsjeljabinsk" }, { - "Name": "Zabaïkalski" + "Name": "Zabaïkalski" }, { "Name": "Chukotskiy Avtonomnyy Okrug" @@ -80,7 +80,7 @@ "Name": "Kaluga" }, { - "Name": "Kamchatskaya Oblast�" + "Name": "Kamchatskaya Oblast�" }, { "Name": "Karachayevo-Cherkesiya" @@ -176,7 +176,7 @@ "Name": "Penza" }, { - "Name": "Permskaya Oblast�" + "Name": "Permskaya Oblast�" }, { "Name": "Primorskiy" @@ -248,7 +248,7 @@ "Name": "Uljanovsk" }, { - "Name": "Ust�-Ordynskiy Buryatskiy Avtonomnyy Okrug" + "Name": "Ust�-Ordynskiy Buryatskiy Avtonomnyy Okrug" }, { "Name": "Vladimir" @@ -281,7 +281,7 @@ "Name": "Kamtsjatka" }, { - "Name": "Zabaykal’skiy Kray" + "Name": "Zabaykal’skiy Kray" }, { "Name": "Chechnya and Ingushetiya" @@ -293,5 +293,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375220474242 + "composedOn": 1383333621737 } \ 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..3e43637 100644 --- a/src/test/resources/responses/system/GetSubscriptionPlans.json +++ b/src/test/resources/responses/system/GetSubscriptionPlans.json @@ -1,26 +1,39 @@ { - "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": 81295, + "name": "Gold", + "userCount": null, + "firstNameOnCard": "test", + "lastNameOnCard": "test", + "number": "XXXX-XXXX-XXXX-1111", + "expirationDate": "2015-10-31T23:59:00", + "cvv": null, + "address": { + "address1": "address", + "address2": null, + "city": null, + "company": null, + "country": "United States", + "email": null, + "fax": null, + "firstName": "test", + "lastName": "test", + "phone": null, + "state": null, + "zip": null + }, + "price": null, + "currencyCode": "USD", + "billingPeriod": 1, + "promoCode": null, + "nextAssesmentDate": "2014-10-08T07:18:06.0000000Z" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1383333627108 } \ No newline at end of file diff --git a/src/test/resources/responses/system/GetUserPlan.json b/src/test/resources/responses/system/GetUserPlan.json index b833922..7d79ef0 100644 --- a/src/test/resources/responses/system/GetUserPlan.json +++ b/src/test/resources/responses/system/GetUserPlan.json @@ -1,9 +1,9 @@ { "result": { - "ref_id": "460", - "name": "Enterprise" + "ref_id": "81295", + "name": "Gold" }, "status": "Ok", "error_message": null, - "composedOn": 1375220541804 + "composedOn": 1383333636464 } \ No newline at end of file diff --git a/src/test/resources/responses/system/GetUserSubscriptionPlan.json b/src/test/resources/responses/system/GetUserSubscriptionPlan.json index a11ffcc..195ff68 100644 --- a/src/test/resources/responses/system/GetUserSubscriptionPlan.json +++ b/src/test/resources/responses/system/GetUserSubscriptionPlan.json @@ -1,10 +1,10 @@ { "result": { - "id": 460, - "name": "Enterprise", + "id": 81295, + "name": "Gold", "billing_address": null }, "status": "Ok", "error_message": null, - "composedOn": 1375220573976 + "composedOn": 1383333641230 } \ No newline at end of file diff --git a/src/test/resources/responses/user/GetAccountUsers.json b/src/test/resources/responses/user/GetAccountUsers.json index 1185634..797fd11 100644 --- a/src/test/resources/responses/user/GetAccountUsers.json +++ b/src/test/resources/responses/user/GetAccountUsers.json @@ -1,18 +1,18 @@ { "result": { - "max_users": 1, + "max_users": null, "users": [ { - "nickname": "api-tests@groupdocs.com", - "firstname": "Pavel", - "lastname": "Strashniy", + "nickname": "api@groupdocs.com", + "firstname": null, + "lastname": null, "pkey": null, - "pswd_salt": "uCXoBZH7pY1Sy8JOK+/BGw==", + "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", "claimed_id": null, - "token": null, + "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", "storage": null, "photo": null, - "active": null, + "active": false, "trial": null, "news_eanbled": null, "alerts_eanbled": null, @@ -55,9 +55,9 @@ "is_viewer_help_widget_enabled": null, "is_viewer_document_name_shown": null, "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1341805769540, - "signedinOn": 1374561348667, - "signin_count": null, + "signedupOn": 1381234750823, + "signedinOn": 1382132641813, + "signin_count": 5, "roles": [ { "id": 2, @@ -69,1291 +69,13 @@ "webhook_notification_retries": null, "webhook_notification_failed_recipients": null, "signature_color": null, - "id": 167, - "guid": "ea103bbe8cb8ce07", - "primary_email": "api-tests@groupdocs.com" - }, - { - "nickname": "jqqqohn@smith.com", - "firstname": "Jqqohn", - "lastname": "Sqqmith", - "pkey": null, - "pswd_salt": "He3nBiASMNT0ftO7LlHu8Q==", - "claimed_id": null, - "token": "c4cfc796f62a941f90d6cc422c96c06eab26c64374460564f046d5dc39509af7", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360592448993, - "signedinOn": 1360592268993, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 507, - "guid": "5112b3d04417c35e", - "primary_email": "jqqqohn@smith.com" - }, - { - "nickname": "jqohn@smith.com", - "firstname": "Jqohn", - "lastname": "Sqmith", - "pkey": null, - "pswd_salt": "EoCHc2uwR9Io1aSkZkgbjg==", - "claimed_id": null, - "token": "ade55c7811a555254946b6aa65155a061b9009f6f2f13a55ecc773e388de1099", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360592569867, - "signedinOn": 1360592389867, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 510, - "guid": "2d58a57067966405", - "primary_email": "jqohn@smith.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "Cprc1fabRNGDe5poVc+2OA==", - "claimed_id": null, - "token": "4e6498a6f1efb63207b02cbf3ddf4b525ceafca0b48604f04e83d75b51b79003", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360601893713, - "signedinOn": 1360601713713, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 527, - "guid": "fc960ac1a7a5450f", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "ZvnPC2OL8WP2RUgETchYjg==", - "claimed_id": null, - "token": "216cb18b9cc8306245d6cb8bf87ecb192db8e0cab933409ea327aa1498d0d701", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360602124900, - "signedinOn": 1360601944900, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 528, - "guid": "60bb51a6baeb19a5", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "YIN/1Q1+qhtO+SU/0CIcyg==", - "claimed_id": null, - "token": "f12e93b29102f15affcb4a93f312e42bb6b0f49454d758fe5c1ec157b172eb41", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360602311023, - "signedinOn": 1360602131023, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 529, - "guid": "0e2ff44d5ec44477", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "b+h//g/k2CWKCnIC1iSU5w==", - "claimed_id": null, - "token": "90e0c5c5aa89d2d941917bb9e7519d2de8f66124cd82966d4dd324f7ef4c8d27", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360602389117, - "signedinOn": 1360602209117, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 530, - "guid": "05507877925e14e8", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "1fSk1vtRVdiW+bOK/RzMUg==", - "claimed_id": null, - "token": "7553e05d45db872c9ed5f87d256037e59ff14254820aff544d98af4223309780", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360602442243, - "signedinOn": 1360602262243, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 531, - "guid": "73be2c5ebabc3ceb", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "eZvhn0OIZkFmizf36iur0w==", - "claimed_id": null, - "token": "66a9776784c311ea94fcd1cfa5c940043cafc5dc95382ae227d465726f43d8ad", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360602553197, - "signedinOn": 1360602373197, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 532, - "guid": "23446b3c1c3aaf2e", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "gvgDae1thv5mC/g1kGyKIg==", - "claimed_id": null, - "token": "392c3a441d2f982a38d7d0098f72c04015e5e855a2dea95aac812492f503ec8b", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360602668290, - "signedinOn": 1360602488290, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 533, - "guid": "018f352ebd36b608", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "OQs7rAlxN74kIOXeMaKNiw==", - "claimed_id": null, - "token": "246803abd98951249ddc83c075f23cd15bfcd3015f9947f758a632410e99c520", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360602697070, - "signedinOn": 1360602517070, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 534, - "guid": "eb5fc95bd5fce212", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "FvqI+XfNfdykt+ZgxqPBsg==", - "claimed_id": null, - "token": "bad529303518ca2c9b5a0a8f81099a1cf42ef408517dabc36cb8571d36ebc716", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360602943070, - "signedinOn": 1360602763070, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 535, - "guid": "6bb455c0179544dc", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "9wB4rrguXqmoT59JlDgmAA==", - "claimed_id": null, - "token": "03906ab3f7fe1ec7f6b32c46ddb282fa36a66edce2b31ae6c9f7ba5915a49088", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360603000447, - "signedinOn": 1360602820447, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 536, - "guid": "8fbba9715b0e1e03", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "dzcbSCkfs9OGLurKCZLMgw==", - "claimed_id": null, - "token": "5cf83cfc614c1de11be58898159120b4aa95de14675ea11f9c1bf4047ee3dfb9", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360603207523, - "signedinOn": 1360603027523, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 537, - "guid": "138e4562b5c95ffe", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "fK+8A6Z+TYsrZhZLBNxjxw==", - "claimed_id": null, - "token": "db6c52cf779aacbb86eb45acc0c8ccc90174b5dfe49a65dc022b489cffc2e68f", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360603220633, - "signedinOn": 1360603040633, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 538, - "guid": "f0a7edd0eed71464", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "FuvAZ0nzu83T0UrSZ2l/eg==", - "claimed_id": null, - "token": "6f1db48751af05c7caa6f74dc0227664947e9ed54490c0e060f0bf06d2d7abf2", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360603494273, - "signedinOn": 1360603314273, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 539, - "guid": "73741a2ad02d1fe3", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "Np/yYpShDTkWugIQqnByRA==", - "claimed_id": null, - "token": "e03a9c57ccb543b7c813cfbb5f90ead697bac22839284a98dd3859f6ad04e33e", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360603607667, - "signedinOn": 1360603427667, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 540, - "guid": "8f6b800fadf67de2", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "l4dXTy74CAmuzNwQ4EmrgQ==", - "claimed_id": null, - "token": "0daf634bb5e9e806068e8554454b1c42a49b78f08aca9632cd78ccbf6e56bbbc", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360603698743, - "signedinOn": 1360603518743, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 541, - "guid": "f929a0f2722c74a6", - "primary_email": "test_email@email.com" - }, - { - "nickname": "test_email@email.com", - "firstname": "First name", - "lastname": "Last name", - "pkey": null, - "pswd_salt": "4Xe7uThfa2ZPdGHxb02RQg==", - "claimed_id": null, - "token": "206e82ff3824621a677f0f48f6daa1852640e9a8cf50d829d3a4f5f9e583b939", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1360603745040, - "signedinOn": 1360603565040, - "signin_count": 1, - "roles": [ - { - "id": 2, - "name": "Admin" - } - ], - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 542, - "guid": "59a446701dc9c9e6", - "primary_email": "test_email@email.com" + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1375220606164 + "composedOn": 1383333646338 } \ No newline at end of file diff --git a/src/test/resources/responses/user/GetRoles.json b/src/test/resources/responses/user/GetRoles.json index b6576cf..db0c0f3 100644 --- a/src/test/resources/responses/user/GetRoles.json +++ b/src/test/resources/responses/user/GetRoles.json @@ -21,5 +21,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375220645210 + "composedOn": 1383333653529 } \ No newline at end of file diff --git a/src/test/resources/responses/user/GetStorageProviders.json b/src/test/resources/responses/user/GetStorageProviders.json index 4ec8d3d..a577778 100644 --- a/src/test/resources/responses/user/GetStorageProviders.json +++ b/src/test/resources/responses/user/GetStorageProviders.json @@ -1,33 +1,10 @@ { "result": { "providers": [ - { - "id": 38, - "provider": "Dropbox", - "type": "Shared", - "token": "PEFycmF5T2ZLZXlWYWx1ZU9mc3RyaW5nc3RyaW5nIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tLzIwMDMvMTAvU2VyaWFsaXphdGlvbi9BcnJheXMiIHhtbG5zOmk9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIj48S2V5VmFsdWVPZnN0cmluZ3N0cmluZz48S2V5PlRva2VuUHJvdkNvbmZpZ1R5cGU8L0tleT48VmFsdWU+QXBwTGltaXQuQ2xvdWRDb21wdXRpbmcuU2hhcnBCb3guU3RvcmFnZVByb3ZpZGVyLkRyb3BCb3guRHJvcEJveENvbmZpZ3VyYXRpb248L1ZhbHVlPjwvS2V5VmFsdWVPZnN0cmluZ3N0cmluZz48S2V5VmFsdWVPZnN0cmluZ3N0cmluZz48S2V5PlRva2VuQ3JlZFR5cGU8L0tleT48VmFsdWU+QXBwTGltaXQuQ2xvdWRDb21wdXRpbmcuU2hhcnBCb3guU3RvcmFnZVByb3ZpZGVyLkRyb3BCb3guRHJvcEJveFRva2VuPC9WYWx1ZT48L0tleVZhbHVlT2ZzdHJpbmdzdHJpbmc+PEtleVZhbHVlT2ZzdHJpbmdzdHJpbmc+PEtleT5Ub2tlbkRyb3BCb3hQYXNzd29yZDwvS2V5PjxWYWx1ZT4wN3lvbmNuZDllMXZ5YXg8L1ZhbHVlPjwvS2V5VmFsdWVPZnN0cmluZ3N0cmluZz48S2V5VmFsdWVPZnN0cmluZ3N0cmluZz48S2V5PlRva2VuRHJvcEJveFVzZXJuYW1lPC9LZXk+PFZhbHVlPnlnZzN6b2xsd2tiMG82OTwvVmFsdWU+PC9LZXlWYWx1ZU9mc3RyaW5nc3RyaW5nPjxLZXlWYWx1ZU9mc3RyaW5nc3RyaW5nPjxLZXk+VG9rZW5Ecm9wQm94QXBwS2V5PC9LZXk+PFZhbHVlPmtmbXdlaHZmdXNvdGNnazwvVmFsdWU+PC9LZXlWYWx1ZU9mc3RyaW5nc3RyaW5nPjxLZXlWYWx1ZU9mc3RyaW5nc3RyaW5nPjxLZXk+VG9rZW5Ecm9wQm94QXBwU2VjcmV0PC9LZXk+PFZhbHVlPnN3YXVybjVnbmZyYmgxczwvVmFsdWU+PC9LZXlWYWx1ZU9mc3RyaW5nc3RyaW5nPjwvQXJyYXlPZktleVZhbHVlT2ZzdHJpbmdzdHJpbmc+", - "publicKey": "kfmwehvfusotcgk", - "privateKey": "swaurn5gnfrbh1s", - "rootFolder": null, - "isPrimary": false, - "serviceHost": null, - "syncOptions": "None" - }, - { - "id": 54, - "provider": "BoxNet", - "type": "Shared", - "token": "Nnc2MDB3NzFncXBnMjk1YXVidXk2aGd1bnRnemlibWI=", - "publicKey": null, - "privateKey": "fyypebzyu9tpe4753utoe1fcru1bxdnz", - "rootFolder": null, - "isPrimary": false, - "serviceHost": null, - "syncOptions": "None" - } + ] }, "status": "Ok", "error_message": null, - "composedOn": 1375220677851 + "composedOn": 1383333659048 } \ No newline at end of file diff --git a/src/test/resources/responses/user/GetUserProfile.json b/src/test/resources/responses/user/GetUserProfile.json index 6dd32d6..02450fb 100644 --- a/src/test/resources/responses/user/GetUserProfile.json +++ b/src/test/resources/responses/user/GetUserProfile.json @@ -1,16 +1,16 @@ { "result": { "user": { - "nickname": "api-tests@groupdocs.com", - "firstname": "Pavel", - "lastname": "Strashniy", - "pkey": "808ee048519831cd47f2ae067b7f99b2", - "pswd_salt": "uCXoBZH7pY1Sy8JOK+/BGw==", + "nickname": "api@groupdocs.com", + "firstname": null, + "lastname": null, + "pkey": "7a7573ecaebf57169ddffa51e0a31a64", + "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", "claimed_id": null, - "token": null, + "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", "storage": null, "photo": null, - "active": null, + "active": false, "trial": null, "news_eanbled": null, "alerts_eanbled": null, @@ -53,21 +53,21 @@ "is_viewer_help_widget_enabled": null, "is_viewer_document_name_shown": null, "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1341805769540, - "signedinOn": 1374561348667, - "signin_count": null, + "signedupOn": 1381234750823, + "signedinOn": 1382132641813, + "signin_count": 5, "roles": null, "signature_watermark_enabled": null, "signature_desktop_notifications": null, - "webhook_notification_retries": null, + "webhook_notification_retries": 3, "webhook_notification_failed_recipients": null, "signature_color": null, - "id": 167, - "guid": "ea103bbe8cb8ce07", - "primary_email": "api-tests@groupdocs.com" + "id": 1085, + "guid": "6d75a4d4db83f6fc", + "primary_email": "api@groupdocs.com" } }, "status": "Ok", "error_message": null, - "composedOn": 1375220709851 + "composedOn": 1383333663561 } \ No newline at end of file diff --git a/src/test/resources/responses/user/GetUserRoles.json b/src/test/resources/responses/user/GetUserRoles.json index cc293fa..84dcafc 100644 --- a/src/test/resources/responses/user/GetUserRoles.json +++ b/src/test/resources/responses/user/GetUserRoles.json @@ -9,5 +9,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1375220747117 + "composedOn": 1383333671295 } \ 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 4dcce71dd4bed529c0c148825bc8128ac834ff15..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 29696 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 Date: Fri, 8 Nov 2013 14:10:14 +0200 Subject: [PATCH 07/34] Updated SDK version --- README.md | 4 ++-- pom.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d743b8b..87fe2ac 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.7.3. ## 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.7.3 ### Usage Example diff --git a/pom.xml b/pom.xml index 57f11f9..4c9e269 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.7.2 + 1.7.3-SNAPSHOT GroupDocsJava GroupDocs API library for Java From 870a4ecc7b6f323186361a9d00e59cd3c540c37f Mon Sep 17 00:00:00 2001 From: LinuxUbuntu Date: Fri, 8 Nov 2013 04:14:07 -0800 Subject: [PATCH 08/34] [maven-release-plugin] prepare release groupdocs-java-client-1.7.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4c9e269..3d71eb3 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.7.3-SNAPSHOT + 1.7.3 GroupDocsJava GroupDocs API library for Java From 0eca1cdd13a92ac62a33dbf2989fd6729bbfcf5d Mon Sep 17 00:00:00 2001 From: LinuxUbuntu Date: Fri, 8 Nov 2013 04:14:34 -0800 Subject: [PATCH 09/34] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3d71eb3..0585eff 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.7.3 + 1.7.4-SNAPSHOT GroupDocsJava GroupDocs API library for Java From 962224d83289bff51e0848255801ec29d63e530d Mon Sep 17 00:00:00 2001 From: "aleksey.permyakov" Date: Thu, 13 Mar 2014 00:09:42 +0200 Subject: [PATCH 10/34] prepare release v1.8.0 --- README.md | 4 +- pom.xml | 2 +- .../java/com/groupdocs/sdk/api/AntApi.java | 14 +- .../java/com/groupdocs/sdk/api/AsyncApi.java | 6 +- .../com/groupdocs/sdk/api/ComparisonApi.java | 66 +- .../java/com/groupdocs/sdk/api/DocApi.java | 31 + .../java/com/groupdocs/sdk/api/MergeApi.java | 235 +- .../com/groupdocs/sdk/api/SignatureApi.java | 1686 +- .../com/groupdocs/sdk/api/StorageApi.java | 39 +- .../groupdocs/sdk/model/AnnotationInfo.java | 9 + .../sdk/model/AnnotationReplyInfo.java | 9 + .../sdk/model/AnnotationReviewerRights.java | 87 + .../com/groupdocs/sdk/model/AnswerInfo.java | 9 + .../sdk/model/CancelFileUploadResponse.java | 70 + .../sdk/model/CancelFileUploadResult.java | 33 + .../com/groupdocs/sdk/model/ChangeInfo.java | 35 +- .../groupdocs/sdk/model/ConditionInfo.java | 9 + .../sdk/model/CreateAnnotationResult.java | 6 +- .../sdk/model/DeleteAccountUserResult.java | 6 +- .../model/DeleteDatasourceListResponse.java | 70 + .../sdk/model/DeleteDatasourceListResult.java | 52 + ...eteQuestionnaireCollectorListResponse.java | 70 + ...eleteQuestionnaireCollectorListResult.java | 52 + ...eteQuestionnaireExecutionListResponse.java | 70 + ...eleteQuestionnaireExecutionListResult.java | 52 + .../DeleteQuestionnaireListResponse.java | 70 + .../model/DeleteQuestionnaireListResult.java | 52 + .../sdk/model/DeleteReplyResult.java | 9 + .../sdk/model/DocumentHyperlink.java | 70 + .../sdk/model/GetHyperlinksResponse.java | 70 + .../sdk/model/GetHyperlinksResult.java | 53 + .../GetQuestionnaireDocumentResponse.java | 70 + .../model/GetQuestionnaireDocumentResult.java | 61 + .../GetSharedLinkAccessRightsResult.java | 6 +- .../groupdocs/sdk/model/MarkerPosition.java | 52 + .../com/groupdocs/sdk/model/QuestionInfo.java | 28 + .../com/groupdocs/sdk/model/ReviewerInfo.java | 16 +- .../sdk/model/SignatureEnvelopeFieldInfo.java | 18 + .../SignatureEnvelopeFieldLocationInfo.java | 9 + ...tureEnvelopeFieldLocationSettingsInfo.java | 18 + .../SignatureEnvelopeFieldSettingsInfo.java | 45 + .../sdk/model/SignatureFormFieldInfo.java | 18 + .../model/SignatureFormFieldLocationInfo.java | 9 + ...ignatureFormFieldLocationSettingsInfo.java | 18 + .../model/SignatureFormFieldSettingsInfo.java | 45 + .../sdk/model/SignatureFormInfo.java | 9 + .../sdk/model/SignatureFormSettingsInfo.java | 9 + .../sdk/model/SignatureTemplateFieldInfo.java | 18 + ...tureTemplateFieldLocationSettingsInfo.java | 18 + .../SignatureTemplateFieldSettingsInfo.java | 45 + .../sdk/model/StorageInfoResult.java | 9 + .../groupdocs/sdk/model/StyleChangeInfo.java} | 29 +- .../groupdocs/sdk/model/TemplateField.java | 37 + .../com/groupdocs/sdk/model/TemplateInfo.java | 9 + .../sdk/model/UpdateAccountUserResult.java | 6 +- .../com/groupdocs/sdk/model/UserIdentity.java | 6 +- .../com/groupdocs/sdk/model/UserInfo.java | 24 +- .../sdk/model/ViewDocumentResult.java | 27 + .../com/groupdocs/sdk/api/AntApiTest.java | 27 +- .../com/groupdocs/sdk/api/AsyncApiTest.java | 4 +- .../groupdocs/sdk/api/ComparisonApiTest.java | 62 +- .../com/groupdocs/sdk/api/DocApiTest.java | 29 + .../groupdocs/sdk/api/JsonSerializerTest.java | 43 +- .../com/groupdocs/sdk/api/MergeApiTest.java | 212 + .../groupdocs/sdk/api/SignatureApiTest.java | 226 +- .../com/groupdocs/sdk/api/StorageApiTest.java | 36 +- .../com/groupdocs/sdk/api/SystemApiTest.java | 56 +- .../annotation/info/AddAnnotationCollaborator | 7 - .../requests/annotation/info/CreateAnnotation | 7 - .../annotation/info/CreateAnnotationReply | 7 - .../requests/annotation/info/DeleteAnnotation | 6 - .../annotation/info/DeleteAnnotationReply | 6 - .../annotation/info/EditAnnotationReply | 7 - .../info/GetAnnotationCollaborators | 6 - .../annotation/info/GetReviewerContacts | 6 - .../annotation/info/GetSharedLinkAccessRights | 6 - .../annotation/info/ListAnnotationReplies | 6 - .../requests/annotation/info/ListAnnotations | 6 - .../requests/annotation/info/MoveAnnotation | 7 - .../annotation/info/MoveAnnotationMarker | 7 - .../annotation/info/SetAnnotationAccess | 7 - .../info/SetAnnotationCollaborators | 7 - .../annotation/info/SetReviewerContacts | 7 - .../annotation/info/SetReviewerRights | 7 - .../annotation/info/SetSharedLinkAccessRights | 7 - .../payload/AddAnnotationCollaborator.json | 10 - .../annotation/payload/CreateAnnotation.json | 11 - .../payload/CreateAnnotationReply.json | 3 - .../payload/EditAnnotationReply.json | 1 - .../annotation/payload/MoveAnnotation.json | 4 - .../payload/MoveAnnotationMarker.json | 4 - .../payload/SetAnnotationAccess.json | 1 - .../payload/SetAnnotationCollaborators.json | 4 - .../payload/SetReviewerContacts.json | 6 - .../annotation/payload/SetReviewerRights.json | 12 - .../payload/SetSharedLinkAccessRights.json | 1 - .../ant/info/SetSharedLinkAccessRights | 2 +- .../requests/async/info/AddJobDocument | 4 +- .../requests/async/info/AddJobDocumentUrl | 4 +- .../resources/requests/async/info/Convert | 4 +- .../resources/requests/async/info/CreateJob | 4 +- .../requests/async/info/DeleteJobDocument | 4 +- src/test/resources/requests/async/info/GetJob | 4 +- .../requests/async/info/GetJobDocument | 4 +- .../resources/requests/async/info/GetJobs | 4 +- .../resources/requests/async/info/UpdateJob | 4 +- .../document/info/GetDocumentAccessInfo | 6 - .../requests/document/info/GetDocumentFormats | 6 - .../document/info/GetDocumentMetadata | 6 - .../requests/document/info/GetDocumentViews | 6 - .../requests/document/info/GetFolderSharers | 6 - .../requests/document/info/GetTemplateFields | 6 - .../document/info/SetDocumentAccessMode | 6 - .../requests/document/info/ShareDocument | 7 - .../requests/document/info/ShareFolder | 7 - .../requests/document/info/UnshareDocument | 6 - .../requests/document/info/UnshareFolder | 6 - .../document/payload/ShareDocument.json | 4 - .../document/payload/ShareFolder.json | 4 - .../requests/merge/info/AddDataSource | 4 +- .../merge/info/AddDocumentQuestionnaire | 4 +- .../merge/info/AddJobDocumentDataSource | 4 +- .../merge/info/AddQuestionnaireCollector | 4 +- .../merge/info/AddQuestionnaireExecution | 4 +- .../merge/info/CreateDocumentQuestionnaire | 4 +- .../requests/merge/info/CreateQuestionnaire | 4 +- .../merge/info/DeleteQuestionnaireCollector | 4 +- .../merge/info/DeleteQuestionnaireExecution | 4 +- .../requests/merge/info/GetDataSource | 4 +- .../merge/info/GetDocumentQuestionnaires | 4 +- .../requests/merge/info/GetQuestionnaire | 4 +- .../merge/info/GetQuestionnaireCollector | 4 +- .../info/GetQuestionnaireCollectorExecutions | 4 +- .../merge/info/GetQuestionnaireCollectors | 4 +- .../merge/info/GetQuestionnaireDataSources | 4 +- .../merge/info/GetQuestionnaireExecution | 4 +- .../merge/info/GetQuestionnaireExecutions | 4 +- .../merge/info/GetQuestionnaireFields | 4 +- .../merge/info/GetQuestionnaireMetadata | 4 +- .../requests/merge/info/GetTemplates | 4 +- .../requests/merge/info/MergeDatasource | 4 +- .../requests/merge/info/MergeDatasourceFields | 4 +- .../requests/merge/info/UpdateDataSource | 4 +- .../requests/merge/info/UpdateQuestionnaire | 4 +- .../merge/info/UpdateQuestionnaireCollector | 6 +- .../merge/info/UpdateQuestionnaireExecution | 6 +- .../info/UpdateQuestionnaireExecutionStatus | 4 +- .../requests/merge/payload/AddDataSource.json | 2 +- .../payload/AddQuestionnaireCollector.json | 4 +- .../merge/payload/UpdateDataSource.json | 2 +- .../payload/UpdateQuestionnaireCollector.json | 8 +- .../payload/UpdateQuestionnaireExecution.json | 10 +- .../requests/signature/info/AddContact | 6 +- .../signature/info/AddContactIntegration | 7 - .../requests/signature/info/AddPredefinedList | 4 +- .../info/AddSignatureEnvelopeDocument | 4 +- .../signature/info/AddSignatureEnvelopeField | 4 +- .../info/AddSignatureEnvelopeRecipient | 4 +- .../signature/info/AddSignatureFormDocument | 4 +- .../signature/info/AddSignatureFormField | 4 +- .../info/AddSignatureTemplateDocument | 4 +- .../signature/info/AddSignatureTemplateField | 4 +- .../info/AddSignatureTemplateRecipient | 4 +- .../signature/info/ArchiveSignatureEnvelope | 6 - .../signature/info/ArchiveSignatureForm | 4 +- .../info/AssignSignatureEnvelopeField | 4 +- .../info/AssignSignatureTemplateField | 4 +- .../signature/info/CancelSignatureEnvelope | 6 - .../signature/info/CompleteSignatureForm | 4 +- .../requests/signature/info/CreateSignature | 6 +- .../signature/info/CreateSignatureEnvelope | 4 +- .../signature/info/CreateSignatureField | 6 +- .../signature/info/CreateSignatureForm | 4 +- .../signature/info/CreateSignatureTemplate | 4 +- .../requests/signature/info/DeclineEnvelope | 4 +- .../requests/signature/info/DeleteContact | 4 +- .../signature/info/DeletePredefinedList | 4 +- .../requests/signature/info/DeleteSignature | 4 +- .../signature/info/DeleteSignatureEnvelope | 4 +- .../info/DeleteSignatureEnvelopeDocument | 4 +- .../info/DeleteSignatureEnvelopeField | 4 +- .../info/DeleteSignatureEnvelopeFieldLocation | 4 +- .../info/DeleteSignatureEnvelopeRecipient | 4 +- .../signature/info/DeleteSignatureField | 4 +- .../signature/info/DeleteSignatureForm | 4 +- .../info/DeleteSignatureFormDocument | 4 +- .../signature/info/DeleteSignatureFormField | 4 +- .../info/DeleteSignatureFormFieldLocation | 4 +- .../signature/info/DeleteSignatureTemplate | 4 +- .../info/DeleteSignatureTemplateField | 4 +- .../info/DeleteSignatureTemplateFieldLocation | 4 +- .../info/DeleteSignatureTemplateRecipient | 4 +- .../requests/signature/info/FillEnvelopeField | 6 +- .../requests/signature/info/GetContacts | 6 - .../signature/info/GetEnvelopeAuditLogs | 4 +- .../requests/signature/info/GetFieldsList | 4 +- .../info/GetRecipientSignatureEnvelopes | 4 +- .../requests/signature/info/GetRolesList | 4 +- .../signature/info/GetSignatureEnvelope | 4 +- .../info/GetSignatureEnvelopeDocuments | 4 +- .../signature/info/GetSignatureEnvelopeFields | 4 +- .../info/GetSignatureEnvelopeRecipients | 4 +- .../info/GetSignatureEnvelopeResources | 4 +- .../signature/info/GetSignatureEnvelopes | 4 +- .../requests/signature/info/GetSignatureForm | 4 +- .../signature/info/GetSignatureFormDocuments | 4 +- .../signature/info/GetSignatureFormFields | 4 +- .../signature/info/GetSignatureFormResources | 4 +- .../requests/signature/info/GetSignatureForms | 4 +- .../info/GetSignaturePredefinedLists | 4 +- .../signature/info/GetSignatureTemplate | 4 +- .../info/GetSignatureTemplateDocuments | 4 +- .../signature/info/GetSignatureTemplateFields | 4 +- .../info/GetSignatureTemplateRecipients | 4 +- .../info/GetSignatureTemplateResources | 4 +- .../signature/info/GetSignatureTemplates | 4 +- .../requests/signature/info/GetSignatures | 4 +- .../requests/signature/info/ImportContacts | 6 +- .../requests/signature/info/ModifyContact | 6 +- .../signature/info/ModifySignatureEnvelope | 4 +- .../info/ModifySignatureEnvelopeField | 6 +- .../info/ModifySignatureEnvelopeFieldLocation | 6 +- .../info/ModifySignatureEnvelopeRecipient | 4 +- .../signature/info/ModifySignatureField | 6 +- .../signature/info/ModifySignatureForm | 4 +- .../info/ModifySignatureFormDocument | 7 - .../signature/info/ModifySignatureFormField | 6 +- .../info/ModifySignatureFormFieldLocation | 6 +- .../signature/info/ModifySignatureTemplate | 4 +- .../info/ModifySignatureTemplateField | 6 +- .../info/ModifySignatureTemplateFieldLocation | 6 +- .../info/ModifySignatureTemplateRecipient | 4 +- .../signature/info/PublicCreateSignature | 6 +- .../signature/info/PublicFillEnvelopeField | 4 +- .../signature/info/PublicGetEnvelopeDocuments | 4 +- .../info/PublicGetEnvelopeRecipients | 4 +- .../signature/info/PublicGetSignatureEnvelope | 4 +- .../info/PublicGetSignatureEnvelopeFields | 4 +- .../signature/info/PublicGetSignatureForm | 4 +- .../info/PublicGetSignatureFormDocuments | 4 +- .../signature/info/PublicSignDocument | 4 +- .../signature/info/PublicVerifyDocument | 4 +- .../signature/info/PublishSignatureForm | 4 +- .../signature/info/RenameSignatureEnvelope | 4 +- .../info/RenameSignatureEnvelopeDocument | 6 - .../signature/info/RenameSignatureForm | 4 +- .../info/RenameSignatureFormDocument | 6 - .../signature/info/RenameSignatureTemplate | 4 +- .../info/RenameSignatureTemplateDocument | 6 - .../info/RestartExpiredSignatureEnvelope | 4 +- .../requests/signature/info/RetrySignEnvelope | 6 - .../requests/signature/info/SignDocument | 4 +- .../signature/info/SignatureEnvelopeSend | 4 +- .../signature/payload/AddContact.json | 2 +- .../payload/AddContactIntegration.json | 6 - .../signature/payload/AddPredefinedList.json | 2 +- .../payload/AssignSignatureEnvelopeField.json | 4 +- .../payload/AssignSignatureTemplateField.json | 4 +- .../signature/payload/CreateSignature.json | 2 +- .../payload/CreateSignatureField.json | 2 +- .../signature/payload/ImportContacts.json | 4 +- .../signature/payload/ModifyContact.json | 2 +- .../payload/ModifySignatureEnvelopeField.json | 2 +- .../ModifySignatureEnvelopeFieldLocation.json | 4 +- .../payload/ModifySignatureField.json | 2 +- .../payload/ModifySignatureFormDocument.json | 4 - .../payload/ModifySignatureFormField.json | 2 +- .../ModifySignatureFormFieldLocation.json | 4 +- .../payload/ModifySignatureTemplateField.json | 2 +- .../ModifySignatureTemplateFieldLocation.json | 4 +- .../payload/PublicCreateSignature.json | 2 +- .../resources/requests/storage/info/Compress | 4 +- .../resources/requests/storage/info/CopyFile | 6 +- .../requests/storage/info/CopyFolder | 6 +- .../resources/requests/storage/info/Create | 4 +- .../requests/storage/info/CreatePackage | 4 +- .../resources/requests/storage/info/Delete | 4 +- .../requests/storage/info/DeleteFromFolder | 4 +- .../resources/requests/storage/info/GetFile | 4 +- .../requests/storage/info/GetStorageInfo | 4 +- .../requests/storage/info/ListEntities | 4 +- .../resources/requests/storage/info/MoveFile | 6 +- .../requests/storage/info/MoveFolder | 6 +- .../requests/storage/info/MoveToTrash | 4 +- .../resources/requests/storage/info/Upload | 4 +- .../resources/requests/storage/info/UploadWeb | 4 +- .../requests/storage/payload/Upload.json | 2 +- .../requests/system/info/GetCountries | 4 +- .../resources/requests/system/info/GetStates | 4 +- .../requests/system/info/GetSubscriptionPlans | 4 +- .../requests/system/info/GetUserPlan | 4 +- .../system/info/GetUserSubscriptionPlan | 4 +- .../requests/user/info/GetAccountUsers | 4 +- .../resources/requests/user/info/GetRoles | 4 +- .../requests/user/info/GetStorageProviders | 4 +- .../requests/user/info/GetUserProfile | 4 +- .../resources/requests/user/info/GetUserRoles | 4 +- .../annotation/AddAnnotationCollaborator.json | 31 - .../annotation/CreateAnnotation.json | 14 - .../annotation/CreateAnnotationReply.json | 10 - .../annotation/DeleteAnnotation.json | 9 - .../annotation/DeleteAnnotationReply.json | 12 - .../annotation/EditAnnotationReply.json | 7 - .../GetAnnotationCollaborators.json | 23 - .../annotation/GetReviewerContacts.json | 10 - .../annotation/GetSharedLinkAccessRights.json | 8 - .../annotation/ListAnnotationReplies.json | 11 - .../responses/annotation/ListAnnotations.json | 13 - .../responses/annotation/MoveAnnotation.json | 8 - .../annotation/MoveAnnotationMarker.json | 8 - .../annotation/SetAnnotationAccess.json | 35 - .../SetAnnotationCollaborators.json | 41 - .../annotation/SetReviewerContacts.json | 14 - .../annotation/SetReviewerRights.json | 7 - .../annotation/SetSharedLinkAccessRights.json | 7 - .../ant/AddAnnotationCollaborator.json | 8 +- .../responses/ant/CreateAnnotationReply.json | 15 +- .../responses/ant/DeleteDocumentReviewer.json | 6 - .../ant/GetAnnotationCollaborators.json | 4 +- .../ant/GetSharedLinkAccessRights.json | 2 +- .../responses/ant/ListAnnotations.json | 4240 +-- .../responses/ant/ResizeAnnotation.json | 1 - .../responses/ant/SetAnnotationAccess.json | 58 +- .../ant/SetAnnotationCollaborators.json | 13 +- .../responses/ant/SetSessionCallbackUrl.json | 6 - .../responses/ant/SetTextFieldColor.json | 6 - .../responses/async/AddJobDocument.json | 4 +- .../responses/async/AddJobDocumentUrl.json | 4 +- .../resources/responses/async/Convert.json | 4 +- .../resources/responses/async/CreateJob.json | 6 +- .../resources/responses/async/DeleteJob.json | 8 - .../responses/async/DeleteJobDocument.json | 2 +- .../resources/responses/async/GetJob.json | 10 +- .../responses/async/GetJobDocument.json | 2 +- .../responses/async/GetJobDocuments.json | 6 - .../resources/responses/async/GetJobJson.json | 6 - .../responses/async/GetJobResources.json | 6 - .../resources/responses/async/GetJobs.json | 75 +- .../responses/async/GetJobsDocuments.json | 6 - .../resources/responses/async/UpdateJob.json | 4 +- .../responses/comparison/Compare.json | 6 - .../responses/comparison/DownloadResult.json | 1 - .../responses/comparison/GetChanges.json | 6 - .../comparison/GetDocumentDetails.json | 6 - .../responses/comparison/UpdateChanges.json | 6 - .../responses/doc/GetDocumentContent.json | 6 - .../doc/GetDocumentMetadataByPath.json | 6 - .../responses/doc/GetDocumentPageHtml.json | 6 - .../doc/GetDocumentPageHtmlFixed.json | 6 - .../responses/doc/GetDocumentPageImage.json | 6 - .../doc/GetDocumentPagesHtmlUrls.json | 6 - .../doc/GetDocumentPagesImageUrls.json | 6 - .../responses/doc/GetDocumentTags.json | 6 - .../resources/responses/doc/GetEditLock.json | 6 - .../responses/doc/GetSharedDocuments.json | 6 - .../responses/doc/RemoveDocumentTags.json | 6 - .../responses/doc/RemoveEditLock.json | 6 - .../responses/doc/SetDocumentPassword.json | 6 - .../responses/doc/SetDocumentTags.json | 6 - .../responses/doc/SetDocumentUserStatus.json | 6 - .../resources/responses/doc/ViewDocument.json | 6 - .../responses/doc/ViewDocumentAsHtml.json | 6 - .../document/GetDocumentAccessInfo.json | 90 - .../document/GetDocumentFormats.json | 26 - .../document/GetDocumentMetadata.json | 12 - .../responses/document/GetDocumentViews.json | 10 - .../responses/document/GetFolderSharers.json | 76 - .../responses/document/GetTemplateFields.json | 10 - .../document/SetDocumentAccessMode.json | 90 - .../responses/document/ShareDocument.json | 207 - .../responses/document/ShareFolder.json | 207 - .../responses/document/UnshareDocument.json | 74 - .../responses/document/UnshareFolder.json | 74 - .../responses/merge/AddDataSource.json | 4 +- .../merge/AddDocumentQuestionnaire.json | 6 +- .../merge/AddJobDocumentDataSource.json | 8 +- .../merge/AddQuestionnaireCollector.json | 8 +- .../merge/AddQuestionnaireExecution.json | 8 +- .../merge/CreateDocumentQuestionnaire.json | 10 +- .../responses/merge/CreateQuestionnaire.json | 8 +- .../responses/merge/DeleteDataSource.json | 6 - .../merge/DeleteDocumentQuestionnaire.json | 9 - .../responses/merge/DeleteQuestionnaire.json | 6 - .../merge/DeleteQuestionnaireCollector.json | 6 +- .../merge/DeleteQuestionnaireExecution.json | 6 +- .../responses/merge/FillExecution.json | 10 - .../responses/merge/FillQuestionnaire.json | 10 - .../responses/merge/GetDataSource.json | 10 +- .../merge/GetDocumentQuestionnaires.json | 1911 +- .../responses/merge/GetQuestionnaire.json | 22 +- .../merge/GetQuestionnaireCollector.json | 10 +- .../GetQuestionnaireCollectorExecutions.json | 28 +- .../merge/GetQuestionnaireCollectors.json | 10 +- .../merge/GetQuestionnaireDataSources.json | 2 +- .../merge/GetQuestionnaireExecution.json | 46 +- .../merge/GetQuestionnaireExecutions.json | 28 +- .../merge/GetQuestionnaireFields.json | 8 +- .../merge/GetQuestionnaireMetadata.json | 10 +- .../responses/merge/GetQuestionnaires.json | 6 - .../responses/merge/GetTemplates.json | 8 +- .../responses/merge/MergeDatasource.json | 8 +- .../merge/MergeDatasourceFields.json | 8 +- .../responses/merge/UpdateDataSource.json | 4 +- .../merge/UpdateDataSourceFields.json | 1 - .../responses/merge/UpdateQuestionnaire.json | 4 +- .../merge/UpdateQuestionnaireCollector.json | 4 +- .../merge/UpdateQuestionnaireExecution.json | 4 +- .../UpdateQuestionnaireExecutionStatus.json | 4 +- .../responses/mgmt/CreateUserLogin.json | 6 - .../responses/mgmt/DeleteAccount.json | 6 - .../responses/mgmt/DeleteAccountUser.json | 6 - .../responses/mgmt/GenerateKeyForUser.json | 6 - .../resources/responses/mgmt/GetAccount.json | 6 - .../responses/mgmt/GetAccountUsers.json | 6 - .../responses/mgmt/GetAlienUserProfile.json | 6 - .../resources/responses/mgmt/GetRoles.json | 6 - .../responses/mgmt/GetStorageProviders.json | 6 - .../responses/mgmt/GetUserEmbedKey.json | 6 - .../mgmt/GetUserEmbedKeyFromGuid.json | 6 - .../responses/mgmt/GetUserProfile.json | 6 - .../mgmt/GetUserProfileByClaimedToken.json | 6 - .../mgmt/GetUserProfileByResetToken.json | 6 - .../mgmt/GetUserProfileByVerifToken.json | 6 - .../responses/mgmt/GetUserRoles.json | 6 - .../responses/mgmt/ResetUserPassword.json | 6 - src/test/resources/responses/mgmt/Revoke.json | 6 - .../responses/post/CompressByPost.json | 6 - .../responses/post/DeleteByPost.json | 6 - .../post/DeleteFromFolderByPost.json | 6 - .../responses/post/RenameByPost.json | 6 - .../resources/responses/shared/Download.json | 6 - .../resources/responses/shared/GetHtml.json | 6 - .../responses/shared/GetPackage.json | 6 - .../resources/responses/shared/GetXml.json | 6 - .../resources/responses/shared/LoginUser.json | 6 - .../responses/signature/AddContact.json | 6 +- .../signature/AddContactIntegration.json | 7 - .../signature/AddPredefinedList.json | 6 +- .../AddSignatureEnvelopeDocument.json | 12 +- .../signature/AddSignatureEnvelopeField.json | 53 +- .../AddSignatureEnvelopeRecipient.json | 10 +- .../signature/AddSignatureFormDocument.json | 16 +- .../signature/AddSignatureFormField.json | 26 +- .../AddSignatureTemplateDocument.json | 12 +- .../signature/AddSignatureTemplateField.json | 79 +- .../AddSignatureTemplateRecipient.json | 8 +- .../signature/ArchiveSignatureEnvelope.json | 7 - .../signature/ArchiveSignatureForm.json | 2 +- .../AssignSignatureEnvelopeField.json | 36 +- .../AssignSignatureTemplateField.json | 79 +- .../signature/CancelSignatureEnvelope.json | 7 - .../signature/CompleteSignatureForm.json | 2 +- .../responses/signature/CreateSignature.json | 40 +- .../signature/CreateSignatureEnvelope.json | 14 +- .../signature/CreateSignatureField.json | 6 +- .../signature/CreateSignatureForm.json | 10 +- .../signature/CreateSignatureTemplate.json | 8 +- .../responses/signature/DeclineEnvelope.json | 2 +- .../responses/signature/DeleteContact.json | 2 +- .../signature/DeletePredefinedList.json | 11 +- .../responses/signature/DeleteSignature.json | 2 +- .../signature/DeleteSignatureEnvelope.json | 2 +- .../DeleteSignatureEnvelopeDocument.json | 2 +- .../DeleteSignatureEnvelopeField.json | 2 +- .../DeleteSignatureEnvelopeFieldLocation.json | 2 +- .../DeleteSignatureEnvelopeRecipient.json | 2 +- .../signature/DeleteSignatureField.json | 2 +- .../signature/DeleteSignatureForm.json | 2 +- .../DeleteSignatureFormDocument.json | 2 +- .../signature/DeleteSignatureFormField.json | 2 +- .../DeleteSignatureFormFieldLocation.json | 2 +- .../signature/DeleteSignatureTemplate.json | 2 +- .../DeleteSignatureTemplateDocument.json | 6 - .../DeleteSignatureTemplateField.json | 2 +- .../DeleteSignatureTemplateFieldLocation.json | 2 +- .../DeleteSignatureTemplateRecipient.json | 2 +- .../signature/FillEnvelopeField.json | 40 +- .../responses/signature/GetContacts.json | 17 - .../signature/GetEnvelopeAuditLogs.json | 10 +- .../responses/signature/GetFieldsList.json | 6799 ++++- .../GetRecipientSignatureEnvelopes.json | 164 +- .../responses/signature/GetRolesList.json | 2 +- .../signature/GetSignDocumentStatus.json | 6 - .../signature/GetSignatureEnvelope.json | 14 +- .../GetSignatureEnvelopeDocuments.json | 12 +- .../GetSignatureEnvelopeFieldData.json | 6 - .../signature/GetSignatureEnvelopeFields.json | 32 +- .../GetSignatureEnvelopeRecipients.json | 12 +- .../GetSignatureEnvelopeResources.json | 21224 +++++++++++++++- .../signature/GetSignatureEnvelopes.json | 164 +- .../responses/signature/GetSignatureForm.json | 12 +- .../signature/GetSignatureFormDocuments.json | 16 +- .../signature/GetSignatureFormFields.json | 87 +- .../GetSignatureFormParticipant.json | 6 - .../signature/GetSignatureFormResources.json | 102 +- .../signature/GetSignatureForms.json | 96 +- .../GetSignaturePredefinedLists.json | 474 +- .../signature/GetSignatureTemplate.json | 8 +- .../GetSignatureTemplateDocuments.json | 12 +- .../signature/GetSignatureTemplateFields.json | 84 +- .../GetSignatureTemplateRecipients.json | 6 +- .../GetSignatureTemplateResources.json | 32 +- .../signature/GetSignatureTemplates.json | 122 +- .../responses/signature/GetSignatures.json | 103 +- .../signature/GetSignedEnvelopeDocument.json | 6 - .../signature/GetSignedEnvelopeDocuments.json | 6 - .../signature/GetSignedFormDocuments.json | 6 - .../responses/signature/ImportContacts.json | 2 +- .../responses/signature/ModifyContact.json | 6 +- .../signature/ModifySignatureEnvelope.json | 26 +- .../ModifySignatureEnvelopeField.json | 34 +- .../ModifySignatureEnvelopeFieldLocation.json | 36 +- .../ModifySignatureEnvelopeRecipient.json | 12 +- .../signature/ModifySignatureField.json | 6 +- .../signature/ModifySignatureForm.json | 10 +- .../ModifySignatureFormDocument.json | 18 - .../signature/ModifySignatureFormField.json | 24 +- .../ModifySignatureFormFieldLocation.json | 28 +- .../signature/ModifySignatureTemplate.json | 12 +- .../ModifySignatureTemplateField.json | 78 +- .../ModifySignatureTemplateFieldLocation.json | 79 +- .../ModifySignatureTemplateRecipient.json | 8 +- .../signature/PublicCreateSignature.json | 14 +- .../signature/PublicFillEnvelopeField.json | 34 +- .../signature/PublicFillFormField.json | 6 - .../signature/PublicFillSignatureForm.json | 6 - .../signature/PublicGetEnvelopeDocuments.json | 12 +- .../PublicGetEnvelopeRecipients.json | 12 +- .../PublicGetSignDocumentStatus.json | 6 - .../signature/PublicGetSignatureEnvelope.json | 22 +- .../PublicGetSignatureEnvelopeFields.json | 32 +- .../signature/PublicGetSignatureForm.json | 12 +- .../PublicGetSignatureFormDocuments.json | 16 +- .../PublicGetSignatureFormFields.json | 84 +- .../PublicGetSignedEnvelopeDocuments.json | 6 - .../PublicGetSignedFormDocuments.json | 6 - .../signature/PublicSignDocument.json | 4 +- .../signature/PublicSignEnvelope.json | 6 - .../responses/signature/PublicSignForm.json | 6 - .../signature/PublicVerifyDocument.json | 2 +- .../signature/PublishSignatureForm.json | 2 +- .../signature/RenameSignatureEnvelope.json | 31 +- .../RenameSignatureEnvelopeDocument.json | 22 - .../signature/RenameSignatureForm.json | 12 +- .../RenameSignatureFormDocument.json | 18 - .../signature/RenameSignatureTemplate.json | 23 +- .../RenameSignatureTemplateDocument.json | 18 - .../RestartExpiredSignatureEnvelope.json | 2 +- .../signature/RetrySignEnvelope.json | 7 - .../responses/signature/SignDocument.json | 4 +- .../responses/signature/SignEnvelope.json | 6 - .../signature/SignatureEnvelopeSend.json | 12 +- .../UpdateSignatureFormFromTemplate.json | 6 - .../resources/responses/storage/Compress.json | 6 +- .../resources/responses/storage/CopyFile.json | 20 +- .../responses/storage/CopyFolder.json | 6 +- .../resources/responses/storage/Create.json | 6 +- .../responses/storage/CreatePackage.json | 4 +- .../responses/storage/Decompress.json | 6 - .../resources/responses/storage/Delete.json | 2 +- .../responses/storage/DeleteFromFolder.json | 2 +- .../responses/storage/GetSharedFile.json | 6 - .../responses/storage/GetStorageInfo.json | 6 +- .../responses/storage/ListEntities.json | 9507 ++++++- .../resources/responses/storage/MoveFile.json | 18 +- .../responses/storage/MoveFolder.json | 6 +- .../responses/storage/MoveToTrash.json | 2 +- .../responses/storage/RestoreFromTrash.json | 6 - .../resources/responses/storage/Upload.json | 15 +- .../responses/storage/UploadGoogle.json | 6 - .../responses/storage/UploadWeb.json | 9 +- .../responses/system/GetCountries.json | 6 +- .../resources/responses/system/GetStates.json | 12 +- .../system/GetSubscriptionPlans.json | 59 +- .../responses/system/GetUserPlan.json | 6 +- .../system/GetUserSubscriptionPlan.json | 6 +- .../responses/user/GetAccountUsers.json | 1306 +- .../resources/responses/user/GetRoles.json | 2 +- .../responses/user/GetStorageProviders.json | 27 +- .../responses/user/GetUserProfile.json | 30 +- .../responses/user/GetUserRoles.json | 2 +- 581 files changed, 47603 insertions(+), 8115 deletions(-) create mode 100644 src/main/java/com/groupdocs/sdk/model/AnnotationReviewerRights.java create mode 100644 src/main/java/com/groupdocs/sdk/model/CancelFileUploadResponse.java create mode 100644 src/main/java/com/groupdocs/sdk/model/CancelFileUploadResult.java create mode 100644 src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResponse.java create mode 100644 src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResult.java create mode 100644 src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResponse.java create mode 100644 src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResult.java create mode 100644 src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResponse.java create mode 100644 src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResult.java create mode 100644 src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResponse.java create mode 100644 src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResult.java create mode 100644 src/main/java/com/groupdocs/sdk/model/DocumentHyperlink.java create mode 100644 src/main/java/com/groupdocs/sdk/model/GetHyperlinksResponse.java create mode 100644 src/main/java/com/groupdocs/sdk/model/GetHyperlinksResult.java create mode 100644 src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResponse.java create mode 100644 src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResult.java create mode 100644 src/main/java/com/groupdocs/sdk/model/MarkerPosition.java rename src/{test/java/com/groupdocs/sdk/api/TestAdminApi.java => main/java/com/groupdocs/sdk/model/StyleChangeInfo.java} (61%) delete mode 100644 src/test/resources/requests/annotation/info/AddAnnotationCollaborator delete mode 100644 src/test/resources/requests/annotation/info/CreateAnnotation delete mode 100644 src/test/resources/requests/annotation/info/CreateAnnotationReply delete mode 100644 src/test/resources/requests/annotation/info/DeleteAnnotation delete mode 100644 src/test/resources/requests/annotation/info/DeleteAnnotationReply delete mode 100644 src/test/resources/requests/annotation/info/EditAnnotationReply delete mode 100644 src/test/resources/requests/annotation/info/GetAnnotationCollaborators delete mode 100644 src/test/resources/requests/annotation/info/GetReviewerContacts delete mode 100644 src/test/resources/requests/annotation/info/GetSharedLinkAccessRights delete mode 100644 src/test/resources/requests/annotation/info/ListAnnotationReplies delete mode 100644 src/test/resources/requests/annotation/info/ListAnnotations delete mode 100644 src/test/resources/requests/annotation/info/MoveAnnotation delete mode 100644 src/test/resources/requests/annotation/info/MoveAnnotationMarker delete mode 100644 src/test/resources/requests/annotation/info/SetAnnotationAccess delete mode 100644 src/test/resources/requests/annotation/info/SetAnnotationCollaborators delete mode 100644 src/test/resources/requests/annotation/info/SetReviewerContacts delete mode 100644 src/test/resources/requests/annotation/info/SetReviewerRights delete mode 100644 src/test/resources/requests/annotation/info/SetSharedLinkAccessRights delete mode 100644 src/test/resources/requests/annotation/payload/AddAnnotationCollaborator.json delete mode 100644 src/test/resources/requests/annotation/payload/CreateAnnotation.json delete mode 100644 src/test/resources/requests/annotation/payload/CreateAnnotationReply.json delete mode 100644 src/test/resources/requests/annotation/payload/EditAnnotationReply.json delete mode 100644 src/test/resources/requests/annotation/payload/MoveAnnotation.json delete mode 100644 src/test/resources/requests/annotation/payload/MoveAnnotationMarker.json delete mode 100644 src/test/resources/requests/annotation/payload/SetAnnotationAccess.json delete mode 100644 src/test/resources/requests/annotation/payload/SetAnnotationCollaborators.json delete mode 100644 src/test/resources/requests/annotation/payload/SetReviewerContacts.json delete mode 100644 src/test/resources/requests/annotation/payload/SetReviewerRights.json delete mode 100644 src/test/resources/requests/annotation/payload/SetSharedLinkAccessRights.json delete mode 100644 src/test/resources/requests/document/info/GetDocumentAccessInfo delete mode 100644 src/test/resources/requests/document/info/GetDocumentFormats delete mode 100644 src/test/resources/requests/document/info/GetDocumentMetadata delete mode 100644 src/test/resources/requests/document/info/GetDocumentViews delete mode 100644 src/test/resources/requests/document/info/GetFolderSharers delete mode 100644 src/test/resources/requests/document/info/GetTemplateFields delete mode 100644 src/test/resources/requests/document/info/SetDocumentAccessMode delete mode 100644 src/test/resources/requests/document/info/ShareDocument delete mode 100644 src/test/resources/requests/document/info/ShareFolder delete mode 100644 src/test/resources/requests/document/info/UnshareDocument delete mode 100644 src/test/resources/requests/document/info/UnshareFolder delete mode 100644 src/test/resources/requests/document/payload/ShareDocument.json delete mode 100644 src/test/resources/requests/document/payload/ShareFolder.json delete mode 100644 src/test/resources/requests/signature/info/AddContactIntegration delete mode 100644 src/test/resources/requests/signature/info/ArchiveSignatureEnvelope delete mode 100644 src/test/resources/requests/signature/info/CancelSignatureEnvelope delete mode 100644 src/test/resources/requests/signature/info/GetContacts delete mode 100644 src/test/resources/requests/signature/info/ModifySignatureFormDocument delete mode 100644 src/test/resources/requests/signature/info/RenameSignatureEnvelopeDocument delete mode 100644 src/test/resources/requests/signature/info/RenameSignatureFormDocument delete mode 100644 src/test/resources/requests/signature/info/RenameSignatureTemplateDocument delete mode 100644 src/test/resources/requests/signature/info/RetrySignEnvelope delete mode 100644 src/test/resources/requests/signature/payload/AddContactIntegration.json delete mode 100644 src/test/resources/requests/signature/payload/ModifySignatureFormDocument.json delete mode 100644 src/test/resources/responses/annotation/AddAnnotationCollaborator.json delete mode 100644 src/test/resources/responses/annotation/CreateAnnotation.json delete mode 100644 src/test/resources/responses/annotation/CreateAnnotationReply.json delete mode 100644 src/test/resources/responses/annotation/DeleteAnnotation.json delete mode 100644 src/test/resources/responses/annotation/DeleteAnnotationReply.json delete mode 100644 src/test/resources/responses/annotation/EditAnnotationReply.json delete mode 100644 src/test/resources/responses/annotation/GetAnnotationCollaborators.json delete mode 100644 src/test/resources/responses/annotation/GetReviewerContacts.json delete mode 100644 src/test/resources/responses/annotation/GetSharedLinkAccessRights.json delete mode 100644 src/test/resources/responses/annotation/ListAnnotationReplies.json delete mode 100644 src/test/resources/responses/annotation/ListAnnotations.json delete mode 100644 src/test/resources/responses/annotation/MoveAnnotation.json delete mode 100644 src/test/resources/responses/annotation/MoveAnnotationMarker.json delete mode 100644 src/test/resources/responses/annotation/SetAnnotationAccess.json delete mode 100644 src/test/resources/responses/annotation/SetAnnotationCollaborators.json delete mode 100644 src/test/resources/responses/annotation/SetReviewerContacts.json delete mode 100644 src/test/resources/responses/annotation/SetReviewerRights.json delete mode 100644 src/test/resources/responses/annotation/SetSharedLinkAccessRights.json delete mode 100644 src/test/resources/responses/ant/DeleteDocumentReviewer.json delete mode 100644 src/test/resources/responses/ant/ResizeAnnotation.json delete mode 100644 src/test/resources/responses/ant/SetSessionCallbackUrl.json delete mode 100644 src/test/resources/responses/ant/SetTextFieldColor.json delete mode 100644 src/test/resources/responses/async/DeleteJob.json delete mode 100644 src/test/resources/responses/async/GetJobDocuments.json delete mode 100644 src/test/resources/responses/async/GetJobJson.json delete mode 100644 src/test/resources/responses/async/GetJobResources.json delete mode 100644 src/test/resources/responses/async/GetJobsDocuments.json delete mode 100644 src/test/resources/responses/comparison/Compare.json delete mode 100644 src/test/resources/responses/comparison/DownloadResult.json delete mode 100644 src/test/resources/responses/comparison/GetChanges.json delete mode 100644 src/test/resources/responses/comparison/GetDocumentDetails.json delete mode 100644 src/test/resources/responses/comparison/UpdateChanges.json delete mode 100644 src/test/resources/responses/doc/GetDocumentContent.json delete mode 100644 src/test/resources/responses/doc/GetDocumentMetadataByPath.json delete mode 100644 src/test/resources/responses/doc/GetDocumentPageHtml.json delete mode 100644 src/test/resources/responses/doc/GetDocumentPageHtmlFixed.json delete mode 100644 src/test/resources/responses/doc/GetDocumentPageImage.json delete mode 100644 src/test/resources/responses/doc/GetDocumentPagesHtmlUrls.json delete mode 100644 src/test/resources/responses/doc/GetDocumentPagesImageUrls.json delete mode 100644 src/test/resources/responses/doc/GetDocumentTags.json delete mode 100644 src/test/resources/responses/doc/GetEditLock.json delete mode 100644 src/test/resources/responses/doc/GetSharedDocuments.json delete mode 100644 src/test/resources/responses/doc/RemoveDocumentTags.json delete mode 100644 src/test/resources/responses/doc/RemoveEditLock.json delete mode 100644 src/test/resources/responses/doc/SetDocumentPassword.json delete mode 100644 src/test/resources/responses/doc/SetDocumentTags.json delete mode 100644 src/test/resources/responses/doc/SetDocumentUserStatus.json delete mode 100644 src/test/resources/responses/doc/ViewDocument.json delete mode 100644 src/test/resources/responses/doc/ViewDocumentAsHtml.json delete mode 100644 src/test/resources/responses/document/GetDocumentAccessInfo.json delete mode 100644 src/test/resources/responses/document/GetDocumentFormats.json delete mode 100644 src/test/resources/responses/document/GetDocumentMetadata.json delete mode 100644 src/test/resources/responses/document/GetDocumentViews.json delete mode 100644 src/test/resources/responses/document/GetFolderSharers.json delete mode 100644 src/test/resources/responses/document/GetTemplateFields.json delete mode 100644 src/test/resources/responses/document/SetDocumentAccessMode.json delete mode 100644 src/test/resources/responses/document/ShareDocument.json delete mode 100644 src/test/resources/responses/document/ShareFolder.json delete mode 100644 src/test/resources/responses/document/UnshareDocument.json delete mode 100644 src/test/resources/responses/document/UnshareFolder.json delete mode 100644 src/test/resources/responses/merge/DeleteDataSource.json delete mode 100644 src/test/resources/responses/merge/DeleteDocumentQuestionnaire.json delete mode 100644 src/test/resources/responses/merge/DeleteQuestionnaire.json delete mode 100644 src/test/resources/responses/merge/FillExecution.json delete mode 100644 src/test/resources/responses/merge/FillQuestionnaire.json delete mode 100644 src/test/resources/responses/merge/GetQuestionnaires.json delete mode 100644 src/test/resources/responses/merge/UpdateDataSourceFields.json delete mode 100644 src/test/resources/responses/mgmt/CreateUserLogin.json delete mode 100644 src/test/resources/responses/mgmt/DeleteAccount.json delete mode 100644 src/test/resources/responses/mgmt/DeleteAccountUser.json delete mode 100644 src/test/resources/responses/mgmt/GenerateKeyForUser.json delete mode 100644 src/test/resources/responses/mgmt/GetAccount.json delete mode 100644 src/test/resources/responses/mgmt/GetAccountUsers.json delete mode 100644 src/test/resources/responses/mgmt/GetAlienUserProfile.json delete mode 100644 src/test/resources/responses/mgmt/GetRoles.json delete mode 100644 src/test/resources/responses/mgmt/GetStorageProviders.json delete mode 100644 src/test/resources/responses/mgmt/GetUserEmbedKey.json delete mode 100644 src/test/resources/responses/mgmt/GetUserEmbedKeyFromGuid.json delete mode 100644 src/test/resources/responses/mgmt/GetUserProfile.json delete mode 100644 src/test/resources/responses/mgmt/GetUserProfileByClaimedToken.json delete mode 100644 src/test/resources/responses/mgmt/GetUserProfileByResetToken.json delete mode 100644 src/test/resources/responses/mgmt/GetUserProfileByVerifToken.json delete mode 100644 src/test/resources/responses/mgmt/GetUserRoles.json delete mode 100644 src/test/resources/responses/mgmt/ResetUserPassword.json delete mode 100644 src/test/resources/responses/mgmt/Revoke.json delete mode 100644 src/test/resources/responses/post/CompressByPost.json delete mode 100644 src/test/resources/responses/post/DeleteByPost.json delete mode 100644 src/test/resources/responses/post/DeleteFromFolderByPost.json delete mode 100644 src/test/resources/responses/post/RenameByPost.json delete mode 100644 src/test/resources/responses/shared/Download.json delete mode 100644 src/test/resources/responses/shared/GetHtml.json delete mode 100644 src/test/resources/responses/shared/GetPackage.json delete mode 100644 src/test/resources/responses/shared/GetXml.json delete mode 100644 src/test/resources/responses/shared/LoginUser.json delete mode 100644 src/test/resources/responses/signature/AddContactIntegration.json delete mode 100644 src/test/resources/responses/signature/ArchiveSignatureEnvelope.json delete mode 100644 src/test/resources/responses/signature/CancelSignatureEnvelope.json delete mode 100644 src/test/resources/responses/signature/DeleteSignatureTemplateDocument.json delete mode 100644 src/test/resources/responses/signature/GetContacts.json delete mode 100644 src/test/resources/responses/signature/GetSignDocumentStatus.json delete mode 100644 src/test/resources/responses/signature/GetSignatureEnvelopeFieldData.json delete mode 100644 src/test/resources/responses/signature/GetSignatureFormParticipant.json delete mode 100644 src/test/resources/responses/signature/GetSignedEnvelopeDocument.json delete mode 100644 src/test/resources/responses/signature/GetSignedEnvelopeDocuments.json delete mode 100644 src/test/resources/responses/signature/GetSignedFormDocuments.json delete mode 100644 src/test/resources/responses/signature/ModifySignatureFormDocument.json delete mode 100644 src/test/resources/responses/signature/PublicFillFormField.json delete mode 100644 src/test/resources/responses/signature/PublicFillSignatureForm.json delete mode 100644 src/test/resources/responses/signature/PublicGetSignDocumentStatus.json delete mode 100644 src/test/resources/responses/signature/PublicGetSignedEnvelopeDocuments.json delete mode 100644 src/test/resources/responses/signature/PublicGetSignedFormDocuments.json delete mode 100644 src/test/resources/responses/signature/PublicSignEnvelope.json delete mode 100644 src/test/resources/responses/signature/PublicSignForm.json delete mode 100644 src/test/resources/responses/signature/RenameSignatureEnvelopeDocument.json delete mode 100644 src/test/resources/responses/signature/RenameSignatureFormDocument.json delete mode 100644 src/test/resources/responses/signature/RenameSignatureTemplateDocument.json delete mode 100644 src/test/resources/responses/signature/RetrySignEnvelope.json delete mode 100644 src/test/resources/responses/signature/SignEnvelope.json delete mode 100644 src/test/resources/responses/signature/UpdateSignatureFormFromTemplate.json delete mode 100644 src/test/resources/responses/storage/Decompress.json delete mode 100644 src/test/resources/responses/storage/GetSharedFile.json delete mode 100644 src/test/resources/responses/storage/RestoreFromTrash.json delete mode 100644 src/test/resources/responses/storage/UploadGoogle.json diff --git a/README.md b/README.md index 87fe2ac..1d5115b 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.3. +Latest SDK version 1.8.0. ## 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.3 + 1.8.0 ### Usage Example diff --git a/pom.xml b/pom.xml index 0585eff..548fba6 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.7.4-SNAPSHOT + 1.8.0-SNAPSHOT GroupDocsJava GroupDocs API library for Java diff --git a/src/main/java/com/groupdocs/sdk/api/AntApi.java b/src/main/java/com/groupdocs/sdk/api/AntApi.java index c5500b9..3bf2797 100644 --- a/src/main/java/com/groupdocs/sdk/api/AntApi.java +++ b/src/main/java/com/groupdocs/sdk/api/AntApi.java @@ -23,6 +23,8 @@ 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 +43,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 { @@ -547,7 +549,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"); @@ -607,9 +609,9 @@ public SetReviewerRightsResponse SetReviewerRights (String userId, String fileId } } } - public GetSharedLinkAccessRightsResponse GetSharedLinkAccessRights (String userId, String fileId) throws ApiException { + public GetSharedLinkAccessRightsResponse GetSharedLinkAccessRights (String userId, String fileId, AnnotationReviewerRights body) throws ApiException { // verify required params are set - if(userId == null || fileId == null ) { + if(userId == null || fileId == null || body == null ) { throw new ApiException(400, "missing required params"); } String resourcePath = "/ant/{userId}/files/{fileId}/sharedLinkAccessRights".replace("*", ""); @@ -621,7 +623,7 @@ public GetSharedLinkAccessRightsResponse GetSharedLinkAccessRights (String userI Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, body, headerParams, String.class); if(response != null){ return (GetSharedLinkAccessRightsResponse) ApiInvoker.deserialize(response, "", GetSharedLinkAccessRightsResponse.class); } @@ -637,7 +639,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..ef7c25a 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) 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}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -378,6 +378,8 @@ 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)); 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..79d1782 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/{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"); // 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/{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 aa20c2e..2946ac7 100644 --- a/src/main/java/com/groupdocs/sdk/api/MergeApi.java +++ b/src/main/java/com/groupdocs/sdk/api/MergeApi.java @@ -21,12 +21,14 @@ 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.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; @@ -38,13 +40,16 @@ 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,6 +321,36 @@ public GetQuestionnaireResponse GetQuestionnaire (String userId, String question } } } + 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 ) { @@ -360,6 +395,52 @@ public GetQuestionnairesResponse GetQuestionnaires (String userId, String status } } } + 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/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); + } + // 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(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){ + return (GetQuestionnairesResponse) ApiInvoker.deserialize(response, "", GetQuestionnairesResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } public CreateQuestionnaireResponse CreateQuestionnaire (String userId, QuestionnaireInfo body) throws ApiException { // verify required params are set if(userId == null || body == null ) { @@ -450,6 +531,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 ) { @@ -690,6 +801,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 ) { @@ -912,6 +1053,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 ) { @@ -1130,6 +1301,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 ) { @@ -1256,7 +1457,7 @@ public UpdateQuestionnaireResponse UpdateQuestionnaireMetadata (String userId, S } } } - public GetTemplatesResponse CopyFileToTemplates (String userId, String path, String mode, String Groupdocs_Copy, String Groupdocs_Move) throws ApiException { + 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"); @@ -1275,8 +1476,8 @@ public GetTemplatesResponse CopyFileToTemplates (String userId, String path, Str if(!"null".equals(String.valueOf(mode))) queryParams.put("mode", String.valueOf(mode)); - headerParams.put("Groupdocs-Copy", Groupdocs_Copy); 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){ @@ -1294,5 +1495,35 @@ public GetTemplatesResponse CopyFileToTemplates (String userId, String path, Str } } } + 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; + } + } + } } diff --git a/src/main/java/com/groupdocs/sdk/api/SignatureApi.java b/src/main/java/com/groupdocs/sdk/api/SignatureApi.java index dd7b1db..5e6c0df 100644 --- a/src/main/java/com/groupdocs/sdk/api/SignatureApi.java +++ b/src/main/java/com/groupdocs/sdk/api/SignatureApi.java @@ -20,9 +20,9 @@ import com.groupdocs.sdk.common.FileStream; import com.groupdocs.sdk.model.SignatureTemplateRecipientsResponse; import com.groupdocs.sdk.model.SignatureStatusResponse; -import com.groupdocs.sdk.model.SignatureContactResponse; -import com.groupdocs.sdk.model.SignatureFormSettingsInfo; import com.groupdocs.sdk.model.SignatureFormFieldLocationSettingsInfo; +import com.groupdocs.sdk.model.SignatureFormSettingsInfo; +import com.groupdocs.sdk.model.SignatureContactResponse; import com.groupdocs.sdk.model.SignatureRolesResponse; import com.groupdocs.sdk.model.SignatureEnvelopeFieldsResponse; import com.groupdocs.sdk.model.PublicSignatureSignDocumentSignerSettingsInfo; @@ -35,8 +35,8 @@ import com.groupdocs.sdk.model.SignatureFieldSettingsInfo; import com.groupdocs.sdk.model.SignatureFormDocumentSettingsInfo; import com.groupdocs.sdk.model.SignatureEnvelopeResourcesResponse; -import com.groupdocs.sdk.model.SignatureEnvelopeDocumentsResponse; import com.groupdocs.sdk.model.SignatureTemplatesResponse; +import com.groupdocs.sdk.model.SignatureEnvelopeDocumentsResponse; import com.groupdocs.sdk.model.SignaturePredefinedListSettingsInfo; import com.groupdocs.sdk.model.SignatureFieldsResponse; import com.groupdocs.sdk.model.SignatureTemplateFieldsResponse; @@ -62,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; @@ -99,6 +99,216 @@ public String getBasePath() { return basePath; } + public SignatureTemplatesResponse GetSignatureTemplates (String userId, Integer page, Integer records, String documentGuid, String recipientName, String name) throws ApiException { + // verify required params are set + if(userId == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/templates?records={records}&page={page}&documentGuid={documentGuid}&recipientName={recipientName}&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)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + if(!"null".equals(String.valueOf(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); + if(!"null".equals(String.valueOf(documentGuid))) + queryParams.put("documentGuid", String.valueOf(documentGuid)); + if(!"null".equals(String.valueOf(recipientName))) + queryParams.put("recipientName", String.valueOf(recipientName)); + if(!"null".equals(String.valueOf(name))) + queryParams.put("name", String.valueOf(name)); + try { + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureTemplatesResponse) ApiInvoker.deserialize(response, "", SignatureTemplatesResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public SignatureTemplateResponse GetSignatureTemplate (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, "GET", 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 SignatureTemplateResponse CreateSignatureTemplate (String userId, String name, String templateGuid, String envelopeGuid, SignatureTemplateSettingsInfo body) throws ApiException { + // verify required params are set + if(userId == null || name == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/template?name={name}&templateId={templateGuid}&envelopeId={envelopeGuid}".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(name))) + queryParams.put("name", String.valueOf(name)); + if(!"null".equals(String.valueOf(templateGuid))) + queryParams.put("templateId", String.valueOf(templateGuid)); + if(!"null".equals(String.valueOf(envelopeGuid))) + queryParams.put("envelopeId", String.valueOf(envelopeGuid)); + 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 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 ) { @@ -487,12 +697,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); @@ -508,6 +718,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){ @@ -621,16 +833,12 @@ public SignatureTemplateDocumentResponse RenameSignatureTemplateDocument (String } } } - public SignatureContactsResponse GetContacts (String userId, Integer page, Integer records, String firstName, String lastName, String email, Boolean useAnd) throws ApiException { + public SignatureSignDocumentResponse SignDocument (String userId, SignatureSignDocumentSettingsInfo body) 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}&useAnd={useAnd}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/sign".replace("*", ""); // create path and map variables resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); @@ -638,22 +846,10 @@ public SignatureContactsResponse GetContacts (String userId, Integer page, Integ Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); - if(!"null".equals(String.valueOf(firstName))) - queryParams.put("firstName", String.valueOf(firstName)); - if(!"null".equals(String.valueOf(lastName))) - 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); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureContactsResponse) ApiInvoker.deserialize(response, "", SignatureContactsResponse.class); + return (SignatureSignDocumentResponse) ApiInvoker.deserialize(response, "", SignatureSignDocumentResponse.class); } else { return null; @@ -667,23 +863,23 @@ public SignatureContactsResponse GetContacts (String userId, Integer page, Integ } } } - public SignatureContactResponse AddContact (String userId, SignatureContactSettingsInfo body) throws ApiException { + public SignatureSignDocumentStatusResponse GetSignDocumentStatus (String userId, String jobGuid) throws ApiException { // verify required params are set - if(userId == null || body == null ) { + if(userId == null || jobGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/contact".replace("*", ""); + String resourcePath = "/signature/{userId}/documents/{jobGuid}/status".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "jobGuid" + "}", String.valueOf(jobGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); + return (SignatureSignDocumentStatusResponse) ApiInvoker.deserialize(response, "", SignatureSignDocumentStatusResponse.class); } else { return null; @@ -697,23 +893,23 @@ public SignatureContactResponse AddContact (String userId, SignatureContactSetti } } } - public SignatureContactResponse ModifyContact (String userId, String contactGuid, SignatureContactSettingsInfo body) throws ApiException { + public SignatureStatusResponse ArchiveSignatureForm (String userId, String formGuid) throws ApiException { // verify required params are set - if(userId == null || contactGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/contacts/{contactGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/archive".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "contactGuid" + "}", String.valueOf(contactGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -727,23 +923,23 @@ public SignatureContactResponse ModifyContact (String userId, String contactGuid } } } - public SignatureContactResponse DeleteContact (String userId, String contactGuid) throws ApiException { + public SignatureStatusResponse CompleteSignatureForm (String userId, String formGuid) throws ApiException { // verify required params are set - if(userId == null || contactGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/contacts/{contactGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/complete".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "contactGuid" + "}", String.valueOf(contactGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -757,12 +953,16 @@ public SignatureContactResponse DeleteContact (String userId, String contactGuid } } } - public SignatureContactsImportResponse ImportContacts (String userId, List body) throws ApiException { + public SignatureFormResponse CreateSignatureForm (String userId, String name, String templateGuid, String assemblyGuid, String formGuid, SignatureFormSettingsInfo body) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/contacts".replace("*", ""); + String resourcePath = "/signature/{userId}/form?name={name}&templateId={templateGuid}&assemblyId={assemblyGuid}&formId={formGuid}".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)); @@ -770,10 +970,18 @@ public SignatureContactsImportResponse ImportContacts (String userId, List queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(name))) + queryParams.put("name", String.valueOf(name)); + if(!"null".equals(String.valueOf(templateGuid))) + queryParams.put("templateId", String.valueOf(templateGuid)); + if(!"null".equals(String.valueOf(assemblyGuid))) + queryParams.put("assemblyId", String.valueOf(assemblyGuid)); + if(!"null".equals(String.valueOf(formGuid))) + queryParams.put("formId", String.valueOf(formGuid)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureContactsImportResponse) ApiInvoker.deserialize(response, "", SignatureContactsImportResponse.class); + return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); } else { return null; @@ -787,21 +995,21 @@ public SignatureContactsImportResponse ImportContacts (String userId, List queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } @@ -817,23 +1025,31 @@ public SignatureStatusResponse AddContactIntegration (String userId, SignatureCo } } } - public SignatureSignDocumentResponse SignDocument (String userId, SignatureSignDocumentSettingsInfo body) throws ApiException { + public SignatureFormDocumentResponse AddSignatureFormDocument (String userId, String formGuid, String documentGuid, Integer order, Boolean parseFields) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || formGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/sign".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}?parseFields={parseFields}&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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(order))) + queryParams.put("order", String.valueOf(order)); + if(!"null".equals(String.valueOf(parseFields))) + queryParams.put("parseFields", String.valueOf(parseFields)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureSignDocumentResponse) ApiInvoker.deserialize(response, "", SignatureSignDocumentResponse.class); + return (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); } else { return null; @@ -847,23 +1063,23 @@ public SignatureSignDocumentResponse SignDocument (String userId, SignatureSignD } } } - public SignatureSignDocumentStatusResponse GetSignDocumentStatus (String userId, String jobGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureFormDocument (String userId, String formGuid, String documentGuid) throws ApiException { // verify required params are set - if(userId == null || jobGuid == null ) { + if(userId == null || formGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/documents/{jobGuid}/status".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "jobGuid" + "}", String.valueOf(jobGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).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); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureSignDocumentStatusResponse) ApiInvoker.deserialize(response, "", SignatureSignDocumentStatusResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -877,23 +1093,23 @@ public SignatureSignDocumentStatusResponse GetSignDocumentStatus (String userId, } } } - public SignatureStatusResponse ArchiveSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { + public SignatureFormDocumentsResponse GetSignatureFormDocuments (String userId, String formGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/archive".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureFormDocumentsResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentsResponse.class); } else { return null; @@ -907,23 +1123,23 @@ public SignatureStatusResponse ArchiveSignatureEnvelope (String userId, String e } } } - public SignatureEnvelopeAuditLogsResponse GetEnvelopeAuditLogs (String userId, String envelopeGuid) throws ApiException { + public SignatureFormFieldResponse AddSignatureFormField (String userId, String formGuid, String documentGuid, String fieldGuid, SignatureFormFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null || documentGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/logs".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeAuditLogsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeAuditLogsResponse.class); + return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); } else { return null; @@ -937,37 +1153,23 @@ public SignatureEnvelopeAuditLogsResponse GetEnvelopeAuditLogs (String userId, S } } } - public SignatureEnvelopeResponse CreateSignatureEnvelope (String userId, String name, String templateGuid, String envelopeGuid, String documentGuid, Boolean parseFields, SignatureEnvelopeSettingsInfo body) throws ApiException { + public SignatureFormFieldResponse ModifySignatureFormFieldLocation (String userId, String formGuid, String documentGuid, String fieldGuid, String locationGuid, SignatureFormFieldLocationSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || formGuid == null || documentGuid == null || fieldGuid == null || locationGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelope?name={name}&templateId={templateGuid}&envelopeId={envelopeGuid}&documentId={documentGuid}&parseFields={parseFields}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).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(name))) - queryParams.put("name", String.valueOf(name)); - if(!"null".equals(String.valueOf(templateGuid))) - queryParams.put("templateId", String.valueOf(templateGuid)); - if(!"null".equals(String.valueOf(envelopeGuid))) - queryParams.put("envelopeId", String.valueOf(envelopeGuid)); - if(!"null".equals(String.valueOf(documentGuid))) - queryParams.put("documentId", String.valueOf(documentGuid)); - if(!"null".equals(String.valueOf(parseFields))) - queryParams.put("parseFields", String.valueOf(parseFields)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); + return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); } else { return null; @@ -981,21 +1183,21 @@ public SignatureEnvelopeResponse CreateSignatureEnvelope (String userId, String } } } - public SignatureStatusResponse DeclineEnvelope (String userId, String envelopeGuid, String recipientGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureFormFieldLocation (String userId, String formGuid, String fieldGuid, String locationGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || recipientGuid == null ) { + if(userId == null || formGuid == null || fieldGuid == null || locationGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/decline".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } @@ -1011,33 +1213,23 @@ public SignatureStatusResponse DeclineEnvelope (String userId, String envelopeGu } } } - public SignatureStatusResponse DelegateEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid, String recipientEmail, String recipientFirstName, String recipientLastName) throws ApiException { + public SignatureFormFieldResponse ModifySignatureFormField (String userId, String formGuid, String documentGuid, String fieldGuid, SignatureFormFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || recipientGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null ) { + if(userId == null || formGuid == null || documentGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/delegate?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(recipientEmail))) - queryParams.put("email", String.valueOf(recipientEmail)); - if(!"null".equals(String.valueOf(recipientFirstName))) - queryParams.put("firstname", String.valueOf(recipientFirstName)); - if(!"null".equals(String.valueOf(recipientLastName))) - queryParams.put("lastname", String.valueOf(recipientLastName)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); } else { return null; @@ -1051,14 +1243,14 @@ public SignatureStatusResponse DelegateEnvelopeRecipient (String userId, String } } } - public SignatureStatusResponse DeleteSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureFormField (String userId, String formGuid, String fieldGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/fields/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); @@ -1081,31 +1273,29 @@ public SignatureStatusResponse DeleteSignatureEnvelope (String userId, String en } } } - public SignatureEnvelopeDocumentResponse AddSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid, Integer order, Boolean parseFields) throws ApiException { + public SignatureFormFieldsResponse GetSignatureFormFields (String userId, String formGuid, String documentGuid, String fieldGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null ) { + if(userId == null || formGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}?parseFields={parseFields}&order={order}".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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(order))) - queryParams.put("order", String.valueOf(order)); - if(!"null".equals(String.valueOf(parseFields))) - queryParams.put("parseFields", String.valueOf(parseFields)); + if(!"null".equals(String.valueOf(fieldGuid))) + queryParams.put("field", String.valueOf(fieldGuid)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeDocumentResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentResponse.class); + return (SignatureFormFieldsResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldsResponse.class); } else { return null; @@ -1119,21 +1309,27 @@ public SignatureEnvelopeDocumentResponse AddSignatureEnvelopeDocument (String us } } } - public FileStream GetSignedEnvelopeDocument (String userId, String envelopeGuid, String documentGuid) throws ApiException { + public SignatureFormResponse GetSignatureForm (String userId, String formGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}".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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); + } + else { + return null; + } } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -1143,23 +1339,23 @@ public FileStream GetSignedEnvelopeDocument (String userId, String envelopeGuid, } } } - public SignatureStatusResponse DeleteSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid) throws ApiException { + public SignatureFormResponse ModifySignatureForm (String userId, String formGuid, SignatureFormSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}".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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); } else { return null; @@ -1173,23 +1369,23 @@ public SignatureStatusResponse DeleteSignatureEnvelopeDocument (String userId, S } } } - public SignatureEnvelopeDocumentsResponse GetSignatureEnvelopeDocuments (String userId, String envelopeGuid) throws ApiException { + public SignatureStatusResponse PublishSignatureForm (String userId, String formGuid, WebhookInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/publish".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeDocumentsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentsResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -1203,21 +1399,33 @@ public SignatureEnvelopeDocumentsResponse GetSignatureEnvelopeDocuments (String } } } - public FileStream GetSignedEnvelopeDocuments (String userId, String envelopeGuid) throws ApiException { + public SignatureFormResponse RenameSignatureForm (String userId, String formGuid, String name) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null || name == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/get".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}?new_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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(name))) + queryParams.put("new_name", String.valueOf(name)); try { - return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); + } + else { + return null; + } } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -1227,23 +1435,23 @@ public FileStream GetSignedEnvelopeDocuments (String userId, String envelopeGuid } } } - public SignatureEnvelopeFieldsResponse AddSignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, SignatureEnvelopeFieldSettingsInfo body) throws ApiException { + public SignatureFormResponse UpdateSignatureFormFromTemplate (String userId, String formGuid, String templateGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { + if(userId == null || formGuid == null || templateGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/field/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/templates/{templateGuid}".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("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).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); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeFieldsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldsResponse.class); + return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); } else { return null; @@ -1257,23 +1465,39 @@ public SignatureEnvelopeFieldsResponse AddSignatureEnvelopeField (String userId, } } } - public SignatureEnvelopeFieldResponse AssignSignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String fieldGuid, SignatureEnvelopeAssignFieldSettingsInfo body) throws ApiException { + public SignatureFormsResponse GetSignatureForms (String userId, Integer statusId, Integer page, Integer records, String originalDocumentMD5, String date, String name) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || fieldGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms?statusId={statusId}&records={records}&page={page}&document={originalDocumentMD5}&date={date}&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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + 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(statusId))) + queryParams.put("statusId", String.valueOf(statusId)); + if(!"null".equals(String.valueOf(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); + if(!"null".equals(String.valueOf(originalDocumentMD5))) + queryParams.put("document", String.valueOf(originalDocumentMD5)); + if(!"null".equals(String.valueOf(date))) + queryParams.put("date", String.valueOf(date)); + if(!"null".equals(String.valueOf(name))) + queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); + return (SignatureFormsResponse) ApiInvoker.deserialize(response, "", SignatureFormsResponse.class); } else { return null; @@ -1287,29 +1511,29 @@ public SignatureEnvelopeFieldResponse AssignSignatureEnvelopeField (String userI } } } - public SignatureEnvelopeFieldResponse FillEnvelopeField (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, String signatureGuid, FileStream body) throws ApiException { + public SignatureFormResourcesResponse GetSignatureFormResources (String userId, String statusIds) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { + if(userId == null || statusIds == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/field/{fieldGuid}?signatureId={signatureGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/resources?statusIds={statusIds}".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)); + 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(signatureGuid))) - queryParams.put("signatureId", String.valueOf(signatureGuid)); + if(!"null".equals(String.valueOf(statusIds))) + queryParams.put("statusIds", String.valueOf(statusIds)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); + return (SignatureFormResourcesResponse) ApiInvoker.deserialize(response, "", SignatureFormResourcesResponse.class); } else { return null; @@ -1323,27 +1547,21 @@ public SignatureEnvelopeFieldResponse FillEnvelopeField (String userId, String e } } } - public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeFieldLocation (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, String locationGuid, SignatureEnvelopeFieldLocationSettingsInfo body) throws ApiException { + public FileStream GetSignedFormDocuments (String userId, String formGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null || locationGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/get".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("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); - if(response != null){ - return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); - } - else { - return null; - } + return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -1353,23 +1571,29 @@ public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeFieldLocation (Stri } } } - public SignatureStatusResponse DeleteSignatureEnvelopeFieldLocation (String userId, String envelopeGuid, String fieldGuid, String locationGuid) throws ApiException { + public SignatureFormDocumentResponse RenameSignatureFormDocument (String userId, String formGuid, String documentGuid, String newName) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || fieldGuid == null || locationGuid == null ) { + if(userId == null || formGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}?newName={newName}".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("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(newName))) + queryParams.put("newName", String.valueOf(newName)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); } else { return null; @@ -1383,14 +1607,14 @@ public SignatureStatusResponse DeleteSignatureEnvelopeFieldLocation (String user } } } - public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String fieldGuid, SignatureEnvelopeFieldSettingsInfo body) throws ApiException { + public SignatureFormDocumentResponse ModifySignatureFormDocument (String userId, String formGuid, String documentGuid, SignatureFormDocumentSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || fieldGuid == null ) { + if(userId == null || formGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}".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("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); @@ -1399,37 +1623,7 @@ public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeField (String userI try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, 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 DeleteSignatureEnvelopeField (String userId, String envelopeGuid, String fieldGuid) throws ApiException { - // verify required params are set - if(userId == null || envelopeGuid == null || fieldGuid == null ) { - throw new ApiException(400, "missing required params"); - } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields/{fieldGuid}".replace("*", ""); - // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); - - // 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); + return (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); } else { return null; @@ -1443,61 +1637,29 @@ public SignatureStatusResponse DeleteSignatureEnvelopeField (String userId, Stri } } } - public SignatureEnvelopeFieldsResponse GetSignatureEnvelopeFields (String userId, String envelopeGuid, String documentGuid, String recipientGuid) throws ApiException { + public SignatureFieldsResponse GetFieldsList (String userId, String fieldGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields?document={documentGuid}&recipient={recipientGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/fields?id={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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); - - // query params - Map queryParams = new HashMap(); - Map headerParams = new HashMap(); - - if(!"null".equals(String.valueOf(documentGuid))) - queryParams.put("document", String.valueOf(documentGuid)); - if(!"null".equals(String.valueOf(recipientGuid))) - queryParams.put("recipient", String.valueOf(recipientGuid)); - try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); - if(response != null){ - return (SignatureEnvelopeFieldsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldsResponse.class); - } - else { - return null; - } - } catch (ApiException ex) { - if(ex.getCode() == 404) { - return null; - } - else { - throw ex; - } - } - } - public SignatureEnvelopeResponse GetSignatureEnvelope (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}".replace("*", ""); - // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + 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(fieldGuid))) + queryParams.put("id", String.valueOf(fieldGuid)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); + return (SignatureFieldsResponse) ApiInvoker.deserialize(response, "", SignatureFieldsResponse.class); } else { return null; @@ -1511,14 +1673,14 @@ public SignatureEnvelopeResponse GetSignatureEnvelope (String userId, String env } } } - public SignatureEnvelopeResponse ModifySignatureEnvelope (String userId, String envelopeGuid, SignatureEnvelopeSettingsInfo body) throws ApiException { + public SignatureFieldResponse CreateSignatureField (String userId, SignatureFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/field".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); // query params Map queryParams = new HashMap(); @@ -1527,51 +1689,7 @@ public SignatureEnvelopeResponse ModifySignatureEnvelope (String userId, String try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, 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 SignatureEnvelopeRecipientResponse AddSignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientEmail, String recipientFirstName, String recipientLastName, String roleGuid, Integer order) throws ApiException { - // verify required params are set - if(userId == null || envelopeGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null || roleGuid == null ) { - throw new ApiException(400, "missing required params"); - } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}&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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); - - // query params - Map queryParams = new HashMap(); - Map headerParams = new HashMap(); - - if(!"null".equals(String.valueOf(recipientEmail))) - queryParams.put("email", String.valueOf(recipientEmail)); - if(!"null".equals(String.valueOf(recipientFirstName))) - queryParams.put("firstname", String.valueOf(recipientFirstName)); - if(!"null".equals(String.valueOf(recipientLastName))) - queryParams.put("lastname", String.valueOf(recipientLastName)); - 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 (SignatureEnvelopeRecipientResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientResponse.class); + return (SignatureFieldResponse) ApiInvoker.deserialize(response, "", SignatureFieldResponse.class); } else { return null; @@ -1585,37 +1703,23 @@ public SignatureEnvelopeRecipientResponse AddSignatureEnvelopeRecipient (String } } } - public SignatureEnvelopeRecipientResponse ModifySignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid, String recipientEmail, String recipientFirstName, String recipientLastName, String roleGuid, Integer order) throws ApiException { + public SignatureFieldResponse ModifySignatureField (String userId, String fieldGuid, SignatureFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || recipientGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null || roleGuid == null ) { + if(userId == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}&role={roleGuid}&order={order}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/fields/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(recipientEmail))) - queryParams.put("email", String.valueOf(recipientEmail)); - if(!"null".equals(String.valueOf(recipientFirstName))) - queryParams.put("firstname", String.valueOf(recipientFirstName)); - if(!"null".equals(String.valueOf(recipientLastName))) - queryParams.put("lastname", String.valueOf(recipientLastName)); - 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, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeRecipientResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientResponse.class); + return (SignatureFieldResponse) ApiInvoker.deserialize(response, "", SignatureFieldResponse.class); } else { return null; @@ -1629,14 +1733,14 @@ public SignatureEnvelopeRecipientResponse ModifySignatureEnvelopeRecipient (Stri } } } - public SignatureStatusResponse DeleteSignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureField (String userId, String fieldGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || recipientGuid == null ) { + if(userId == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipients/{recipientGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/fields/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); @@ -1659,89 +1763,39 @@ public SignatureStatusResponse DeleteSignatureEnvelopeRecipient (String userId, } } } - public SignatureEnvelopeRecipientsResponse GetSignatureEnvelopeRecipients (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}/recipients".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, "GET", queryParams, null, headerParams, String.class); - if(response != null){ - return (SignatureEnvelopeRecipientsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientsResponse.class); - } - else { - return null; - } - } catch (ApiException ex) { - if(ex.getCode() == 404) { - return null; - } - else { - throw ex; - } - } - } - public SignatureEnvelopeResponse RenameSignatureEnvelope (String userId, String envelopeGuid, String name) 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 || envelopeGuid == null || name == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}?name={name}".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); } // 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(); - - 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 (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); - } - else { - return null; - } - } catch (ApiException ex) { - if(ex.getCode() == 404) { - return null; - } - else { - throw ex; - } - } - } - public SignatureStatusResponse RestartExpiredSignatureEnvelope (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}/restart".replace("*", ""); - // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + 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(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); + if(!"null".equals(String.valueOf(firstName))) + queryParams.put("firstName", String.valueOf(firstName)); + if(!"null".equals(String.valueOf(lastName))) + 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, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureContactsResponse) ApiInvoker.deserialize(response, "", SignatureContactsResponse.class); } else { return null; @@ -1755,23 +1809,23 @@ public SignatureStatusResponse RestartExpiredSignatureEnvelope (String userId, S } } } - public SignatureEnvelopeSendResponse SignatureEnvelopeSend (String userId, String envelopeGuid, WebhookInfo body) throws ApiException { + public SignatureContactResponse AddContact (String userId, SignatureContactSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || body == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/send".replace("*", ""); + String resourcePath = "/signature/{userId}/contact".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + 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, "PUT", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeSendResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeSendResponse.class); + return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); } else { return null; @@ -1785,23 +1839,23 @@ public SignatureEnvelopeSendResponse SignatureEnvelopeSend (String userId, Strin } } } - public SignatureStatusResponse SignEnvelope (String userId, String envelopeGuid, String recipientGuid) throws ApiException { + public SignatureContactResponse ModifyContact (String userId, String contactGuid, SignatureContactSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || recipientGuid == null ) { + if(userId == null || contactGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/sign".replace("*", ""); + String resourcePath = "/signature/{userId}/contacts/{contactGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "contactGuid" + "}", String.valueOf(contactGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); } else { return null; @@ -1815,41 +1869,23 @@ public SignatureStatusResponse SignEnvelope (String userId, String envelopeGuid, } } } - public SignatureEnvelopesResponse GetSignatureEnvelopes (String userId, Integer statusId, Integer page, Integer records, String originalDocumentMD5, String recipientEmail, String date, String name) throws ApiException { - // verify required params are set - if(userId == null ) { - throw new ApiException(400, "missing required params"); - } - String resourcePath = "/signature/{userId}/envelopes?statusId={statusId}&records={records}&page={page}&document={originalDocumentMD5}&recipient={recipientEmail}&date={date}&name={name}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + public SignatureContactResponse DeleteContact (String userId, String contactGuid) throws ApiException { + // verify required params are set + if(userId == null || contactGuid == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/contacts/{contactGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "contactGuid" + "}", String.valueOf(contactGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(statusId))) - queryParams.put("statusId", String.valueOf(statusId)); - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); - if(!"null".equals(String.valueOf(originalDocumentMD5))) - queryParams.put("document", String.valueOf(originalDocumentMD5)); - if(!"null".equals(String.valueOf(recipientEmail))) - queryParams.put("recipient", String.valueOf(recipientEmail)); - if(!"null".equals(String.valueOf(date))) - queryParams.put("date", String.valueOf(date)); - if(!"null".equals(String.valueOf(name))) - queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopesResponse.class); + return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); } else { return null; @@ -1863,16 +1899,12 @@ public SignatureEnvelopesResponse GetSignatureEnvelopes (String userId, Integer } } } - public SignatureEnvelopeResourcesResponse GetSignatureEnvelopeResources (String userId, String statusIds) throws ApiException { + public SignatureContactsImportResponse ImportContacts (String userId, List body) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/resources?statusIds={statusIds}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/contacts".replace("*", ""); // create path and map variables resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); @@ -1880,12 +1912,10 @@ public SignatureEnvelopeResourcesResponse GetSignatureEnvelopeResources (String Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(statusIds))) - queryParams.put("statusIds", String.valueOf(statusIds)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeResourcesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResourcesResponse.class); + return (SignatureContactsImportResponse) ApiInvoker.deserialize(response, "", SignatureContactsImportResponse.class); } else { return null; @@ -1899,12 +1929,12 @@ public SignatureEnvelopeResourcesResponse GetSignatureEnvelopeResources (String } } } - public SignatureEnvelopesResponse GetRecipientSignatureEnvelopes (String userId, String statusId, Integer page, Integer records) throws ApiException { + public SignatureRolesResponse GetRolesList (String userId, String roleGuid) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/recipient?statusId={statusId}&records={records}&page={page}".replace("*", ""); + String resourcePath = "/signature/{userId}/roles?id={roleGuid}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -1916,16 +1946,12 @@ public SignatureEnvelopesResponse GetRecipientSignatureEnvelopes (String userId, Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(statusId))) - queryParams.put("statusId", String.valueOf(statusId)); - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); + if(!"null".equals(String.valueOf(roleGuid))) + queryParams.put("id", String.valueOf(roleGuid)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopesResponse.class); + return (SignatureRolesResponse) ApiInvoker.deserialize(response, "", SignatureRolesResponse.class); } else { return null; @@ -1939,29 +1965,23 @@ public SignatureEnvelopesResponse GetRecipientSignatureEnvelopes (String userId, } } } - public SignatureEnvelopeDocumentResponse RenameSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid, String newName) throws ApiException { + public SignatureStatusResponse AddContactIntegration (String userId, SignatureContactIntegrationSettings body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}?newName={newName}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/integration".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)); + 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(newName))) - queryParams.put("newName", String.valueOf(newName)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeDocumentResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -1975,23 +1995,29 @@ public SignatureEnvelopeDocumentResponse RenameSignatureEnvelopeDocument (String } } } - public SignatureStatusResponse CancelSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { + public SignatureSignatureResponse CreateSignature (String userId, String name, SignatureSignatureSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || name == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/cancel".replace("*", ""); + String resourcePath = "/signature/{userId}/signature?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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + 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(name))) + queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureSignatureResponse) ApiInvoker.deserialize(response, "", SignatureSignatureResponse.class); } else { return null; @@ -2005,21 +2031,21 @@ public SignatureStatusResponse CancelSignatureEnvelope (String userId, String en } } } - public SignatureStatusResponse RetrySignEnvelope (String userId, String envelopeGuid) throws ApiException { + public SignatureStatusResponse DeleteSignature (String userId, String signatureGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || signatureGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/retry".replace("*", ""); + String resourcePath = "/signature/{userId}/signatures/{signatureGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "signatureGuid" + "}", String.valueOf(signatureGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } @@ -2035,23 +2061,33 @@ public SignatureStatusResponse RetrySignEnvelope (String userId, String envelope } } } - public SignatureEnvelopeResponse UpdateEnvelopeFromTemplate (String userId, String envelopeGuid, String templateGuid) throws ApiException { + public SignatureSignaturesResponse GetSignatures (String userId, Integer page, Integer records, String name) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || templateGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/templates/{templateGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/signatures?records={records}&page={page}&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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + 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(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); + if(!"null".equals(String.valueOf(name))) + queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); + return (SignatureSignaturesResponse) ApiInvoker.deserialize(response, "", SignatureSignaturesResponse.class); } else { return null; @@ -2065,29 +2101,23 @@ public SignatureEnvelopeResponse UpdateEnvelopeFromTemplate (String userId, Stri } } } - public SignatureFieldsResponse GetFieldsList (String userId, String fieldGuid) throws ApiException { + public SignatureStatusResponse ArchiveSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/fields?id={fieldGuid}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/archive".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + 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(); - if(!"null".equals(String.valueOf(fieldGuid))) - queryParams.put("id", String.valueOf(fieldGuid)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFieldsResponse) ApiInvoker.deserialize(response, "", SignatureFieldsResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2101,23 +2131,23 @@ public SignatureFieldsResponse GetFieldsList (String userId, String fieldGuid) t } } } - public SignatureFieldResponse CreateSignatureField (String userId, SignatureFieldSettingsInfo body) throws ApiException { + public SignatureEnvelopeAuditLogsResponse GetEnvelopeAuditLogs (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/field".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/logs".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + 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, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFieldResponse) ApiInvoker.deserialize(response, "", SignatureFieldResponse.class); + return (SignatureEnvelopeAuditLogsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeAuditLogsResponse.class); } else { return null; @@ -2131,23 +2161,37 @@ public SignatureFieldResponse CreateSignatureField (String userId, SignatureFiel } } } - public SignatureFieldResponse ModifySignatureField (String userId, String fieldGuid, SignatureFieldSettingsInfo body) throws ApiException { + public SignatureEnvelopeResponse CreateSignatureEnvelope (String userId, String name, String templateGuid, String envelopeGuid, String documentGuid, Boolean parseFields, SignatureEnvelopeSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || fieldGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/fields/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelope?name={name}&templateId={templateGuid}&envelopeId={envelopeGuid}&documentId={documentGuid}&parseFields={parseFields}".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("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + 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(name))) + queryParams.put("name", String.valueOf(name)); + if(!"null".equals(String.valueOf(templateGuid))) + queryParams.put("templateId", String.valueOf(templateGuid)); + if(!"null".equals(String.valueOf(envelopeGuid))) + queryParams.put("envelopeId", String.valueOf(envelopeGuid)); + if(!"null".equals(String.valueOf(documentGuid))) + queryParams.put("documentId", String.valueOf(documentGuid)); + if(!"null".equals(String.valueOf(parseFields))) + queryParams.put("parseFields", String.valueOf(parseFields)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFieldResponse) ApiInvoker.deserialize(response, "", SignatureFieldResponse.class); + return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); } else { return null; @@ -2161,21 +2205,21 @@ public SignatureFieldResponse ModifySignatureField (String userId, String fieldG } } } - public SignatureStatusResponse DeleteSignatureField (String userId, String fieldGuid) throws ApiException { + public SignatureStatusResponse DeclineEnvelope (String userId, String envelopeGuid, String recipientGuid) throws ApiException { // verify required params are set - if(userId == null || fieldGuid == null ) { + if(userId == null || envelopeGuid == null || recipientGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/fields/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/decline".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } @@ -2191,21 +2235,31 @@ public SignatureStatusResponse DeleteSignatureField (String userId, String field } } } - public SignatureStatusResponse ArchiveSignatureForm (String userId, String formGuid) throws ApiException { + public SignatureStatusResponse DelegateEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid, String recipientEmail, String recipientFirstName, String recipientLastName) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null || recipientGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/archive".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/delegate?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}".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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(recipientEmail))) + queryParams.put("email", String.valueOf(recipientEmail)); + if(!"null".equals(String.valueOf(recipientFirstName))) + queryParams.put("firstname", String.valueOf(recipientFirstName)); + if(!"null".equals(String.valueOf(recipientLastName))) + queryParams.put("lastname", String.valueOf(recipientLastName)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); if(response != null){ return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } @@ -2221,21 +2275,21 @@ public SignatureStatusResponse ArchiveSignatureForm (String userId, String formG } } } - public SignatureStatusResponse CompleteSignatureForm (String userId, String formGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/complete".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + 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); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } @@ -2251,35 +2305,31 @@ public SignatureStatusResponse CompleteSignatureForm (String userId, String form } } } - public SignatureFormResponse CreateSignatureForm (String userId, String name, String templateGuid, String assemblyGuid, String formGuid, SignatureFormSettingsInfo body) throws ApiException { + public SignatureEnvelopeDocumentResponse AddSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid, Integer order, Boolean parseFields) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/form?name={name}&templateId={templateGuid}&assemblyId={assemblyGuid}&formId={formGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}?parseFields={parseFields}&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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params 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(templateGuid))) - queryParams.put("templateId", String.valueOf(templateGuid)); - if(!"null".equals(String.valueOf(assemblyGuid))) - queryParams.put("assemblyId", String.valueOf(assemblyGuid)); - if(!"null".equals(String.valueOf(formGuid))) - queryParams.put("formId", String.valueOf(formGuid)); + if(!"null".equals(String.valueOf(order))) + queryParams.put("order", String.valueOf(order)); + if(!"null".equals(String.valueOf(parseFields))) + queryParams.put("parseFields", String.valueOf(parseFields)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); + return (SignatureEnvelopeDocumentResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentResponse.class); } else { return null; @@ -2293,27 +2343,21 @@ public SignatureFormResponse CreateSignatureForm (String userId, String name, St } } } - public SignatureStatusResponse DeleteSignatureForm (String userId, String formGuid) throws ApiException { + public FileStream GetSignedEnvelopeDocument (String userId, String envelopeGuid, String documentGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // 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; - } + return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -2323,31 +2367,23 @@ public SignatureStatusResponse DeleteSignatureForm (String userId, String formGu } } } - public SignatureFormDocumentResponse AddSignatureFormDocument (String userId, String formGuid, String documentGuid, Integer order, Boolean parseFields) throws ApiException { + public SignatureStatusResponse DeleteSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}?parseFields={parseFields}&order={order}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}".replace("*", ""); // 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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(order))) - queryParams.put("order", String.valueOf(order)); - if(!"null".equals(String.valueOf(parseFields))) - queryParams.put("parseFields", String.valueOf(parseFields)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2361,23 +2397,23 @@ public SignatureFormDocumentResponse AddSignatureFormDocument (String userId, St } } } - public SignatureStatusResponse DeleteSignatureFormDocument (String userId, String formGuid, String documentGuid) throws ApiException { + public SignatureEnvelopeDocumentsResponse GetSignatureEnvelopeDocuments (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents".replace("*", ""); // 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)); + 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, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureEnvelopeDocumentsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentsResponse.class); } else { return null; @@ -2391,27 +2427,21 @@ public SignatureStatusResponse DeleteSignatureFormDocument (String userId, Strin } } } - public SignatureFormDocumentsResponse GetSignatureFormDocuments (String userId, String formGuid) throws ApiException { + public FileStream GetSignedEnvelopeDocuments (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/get".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + 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, "GET", queryParams, null, headerParams, String.class); - if(response != null){ - return (SignatureFormDocumentsResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentsResponse.class); - } - else { - return null; - } + return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -2421,14 +2451,14 @@ public SignatureFormDocumentsResponse GetSignatureFormDocuments (String userId, } } } - public SignatureFormFieldResponse AddSignatureFormField (String userId, String formGuid, String documentGuid, String fieldGuid, SignatureFormFieldSettingsInfo body) throws ApiException { + public SignatureEnvelopeFieldsResponse AddSignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, SignatureEnvelopeFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || formGuid == 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}/forms/{formGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/field/{fieldGuid}".replace("*", ""); // 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)).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(); @@ -2437,7 +2467,7 @@ public SignatureFormFieldResponse AddSignatureFormField (String userId, String f try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); + return (SignatureEnvelopeFieldsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldsResponse.class); } else { return null; @@ -2451,23 +2481,23 @@ public SignatureFormFieldResponse AddSignatureFormField (String userId, String f } } } - public SignatureFormFieldResponse ModifySignatureFormFieldLocation (String userId, String formGuid, String documentGuid, String fieldGuid, String locationGuid, SignatureFormFieldLocationSettingsInfo body) throws ApiException { + public SignatureEnvelopeFieldResponse AssignSignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String fieldGuid, SignatureEnvelopeAssignFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null || fieldGuid == null || locationGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); // 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)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); + 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)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); + return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); } else { return null; @@ -2481,23 +2511,29 @@ public SignatureFormFieldResponse ModifySignatureFormFieldLocation (String userI } } } - public SignatureStatusResponse DeleteSignatureFormFieldLocation (String userId, String formGuid, String fieldGuid, String locationGuid) throws ApiException { + public SignatureEnvelopeFieldResponse FillEnvelopeField (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, String signatureGuid, FileStream body) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || fieldGuid == null || locationGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/field/{fieldGuid}?signatureId={signatureGuid}".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("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); + 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(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(signatureGuid))) + queryParams.put("signatureId", String.valueOf(signatureGuid)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); } else { return null; @@ -2511,14 +2547,14 @@ public SignatureStatusResponse DeleteSignatureFormFieldLocation (String userId, } } } - public SignatureFormFieldResponse ModifySignatureFormField (String userId, String formGuid, String documentGuid, String fieldGuid, SignatureFormFieldSettingsInfo body) throws ApiException { + public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeFieldLocation (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, String locationGuid, SignatureEnvelopeFieldLocationSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null || fieldGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null || locationGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); // 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)).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)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); // query params Map queryParams = new HashMap(); @@ -2527,7 +2563,7 @@ public SignatureFormFieldResponse ModifySignatureFormField (String userId, Strin try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); + return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); } else { return null; @@ -2541,14 +2577,14 @@ public SignatureFormFieldResponse ModifySignatureFormField (String userId, Strin } } } - public SignatureStatusResponse DeleteSignatureFormField (String userId, String formGuid, String fieldGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureEnvelopeFieldLocation (String userId, String envelopeGuid, String fieldGuid, String locationGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || fieldGuid == null ) { + if(userId == null || envelopeGuid == null || fieldGuid == null || locationGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/fields/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); // query params Map queryParams = new HashMap(); @@ -2571,23 +2607,23 @@ public SignatureStatusResponse DeleteSignatureFormField (String userId, String f } } } - public SignatureFormFieldsResponse GetSignatureFormFields (String userId, String formGuid, String documentGuid) throws ApiException { + public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String fieldGuid, SignatureEnvelopeFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/fields".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); // 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)); + 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)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormFieldsResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldsResponse.class); + return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); } else { return null; @@ -2601,23 +2637,23 @@ public SignatureFormFieldsResponse GetSignatureFormFields (String userId, String } } } - public SignatureFormResponse GetSignatureForm (String userId, String formGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureEnvelopeField (String userId, String envelopeGuid, String fieldGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2631,23 +2667,33 @@ public SignatureFormResponse GetSignatureForm (String userId, String formGuid) t } } } - public SignatureFormResponse ModifySignatureForm (String userId, String formGuid, SignatureFormSettingsInfo body) 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 || formGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}".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); + } // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + 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(); + if(!"null".equals(String.valueOf(documentGuid))) + 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, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); + return (SignatureEnvelopeFieldsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldsResponse.class); } else { return null; @@ -2661,23 +2707,23 @@ public SignatureFormResponse ModifySignatureForm (String userId, String formGuid } } } - public SignatureStatusResponse PublishSignatureForm (String userId, String formGuid, WebhookInfo body) throws ApiException { + public SignatureEnvelopeResponse GetSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/publish".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + 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, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); } else { return null; @@ -2691,29 +2737,23 @@ public SignatureStatusResponse PublishSignatureForm (String userId, String formG } } } - public SignatureFormResponse RenameSignatureForm (String userId, String formGuid, String name) throws ApiException { + public SignatureEnvelopeResponse ModifySignatureEnvelope (String userId, String envelopeGuid, SignatureEnvelopeSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || name == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}?new_name={name}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + 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(); - if(!"null".equals(String.valueOf(name))) - queryParams.put("new_name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); + return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); } else { return null; @@ -2727,23 +2767,37 @@ public SignatureFormResponse RenameSignatureForm (String userId, String formGuid } } } - public SignatureFormResponse UpdateSignatureFormFromTemplate (String userId, String formGuid, String templateGuid) throws ApiException { + public SignatureEnvelopeRecipientResponse AddSignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientEmail, String recipientFirstName, String recipientLastName, String roleGuid, Integer order) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || templateGuid == null ) { + if(userId == null || envelopeGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null || roleGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/templates/{templateGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}&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("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + 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(); + if(!"null".equals(String.valueOf(recipientEmail))) + queryParams.put("email", String.valueOf(recipientEmail)); + if(!"null".equals(String.valueOf(recipientFirstName))) + queryParams.put("firstname", String.valueOf(recipientFirstName)); + if(!"null".equals(String.valueOf(recipientLastName))) + queryParams.put("lastname", String.valueOf(recipientLastName)); + 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 (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); + return (SignatureEnvelopeRecipientResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientResponse.class); } else { return null; @@ -2757,39 +2811,37 @@ public SignatureFormResponse UpdateSignatureFormFromTemplate (String userId, Str } } } - public SignatureFormsResponse GetSignatureForms (String userId, Integer statusId, Integer page, Integer records, String originalDocumentMD5, String date, String name) throws ApiException { + public SignatureEnvelopeRecipientResponse ModifySignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid, String recipientEmail, String recipientFirstName, String recipientLastName, String roleGuid, Integer order) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null || recipientGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null || roleGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms?statusId={statusId}&records={records}&page={page}&document={originalDocumentMD5}&date={date}&name={name}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}&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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(statusId))) - queryParams.put("statusId", String.valueOf(statusId)); - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); - if(!"null".equals(String.valueOf(originalDocumentMD5))) - queryParams.put("document", String.valueOf(originalDocumentMD5)); - if(!"null".equals(String.valueOf(date))) - queryParams.put("date", String.valueOf(date)); - if(!"null".equals(String.valueOf(name))) - queryParams.put("name", String.valueOf(name)); + if(!"null".equals(String.valueOf(recipientEmail))) + queryParams.put("email", String.valueOf(recipientEmail)); + if(!"null".equals(String.valueOf(recipientFirstName))) + queryParams.put("firstname", String.valueOf(recipientFirstName)); + if(!"null".equals(String.valueOf(recipientLastName))) + queryParams.put("lastname", String.valueOf(recipientLastName)); + 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, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormsResponse) ApiInvoker.deserialize(response, "", SignatureFormsResponse.class); + return (SignatureEnvelopeRecipientResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientResponse.class); } else { return null; @@ -2803,29 +2855,23 @@ public SignatureFormsResponse GetSignatureForms (String userId, Integer statusId } } } - public SignatureFormResourcesResponse GetSignatureFormResources (String userId, String statusIds) throws ApiException { + public SignatureStatusResponse DeleteSignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid) throws ApiException { // verify required params are set - if(userId == null || statusIds == null ) { + if(userId == null || envelopeGuid == null || recipientGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/resources?statusIds={statusIds}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipients/{recipientGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(statusIds))) - queryParams.put("statusIds", String.valueOf(statusIds)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormResourcesResponse) ApiInvoker.deserialize(response, "", SignatureFormResourcesResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2839,21 +2885,27 @@ public SignatureFormResourcesResponse GetSignatureFormResources (String userId, } } } - public FileStream GetSignedFormDocuments (String userId, String formGuid) throws ApiException { + public SignatureEnvelopeRecipientsResponse GetSignatureEnvelopeRecipients (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/get".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipients".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + 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 { - return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureEnvelopeRecipientsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientsResponse.class); + } + else { + return null; + } } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -2863,29 +2915,29 @@ public FileStream GetSignedFormDocuments (String userId, String formGuid) throws } } } - public SignatureFormDocumentResponse RenameSignatureFormDocument (String userId, String formGuid, String documentGuid, String newName) throws ApiException { + public SignatureEnvelopeResponse RenameSignatureEnvelope (String userId, String envelopeGuid, String name) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null ) { + if(userId == null || envelopeGuid == null || name == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}?newName={newName}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}?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("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); + 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(); - if(!"null".equals(String.valueOf(newName))) - queryParams.put("newName", String.valueOf(newName)); + 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 (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); + return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); } else { return null; @@ -2899,23 +2951,23 @@ public SignatureFormDocumentResponse RenameSignatureFormDocument (String userId, } } } - public SignatureFormDocumentResponse ModifySignatureFormDocument (String userId, String formGuid, String documentGuid, SignatureFormDocumentSettingsInfo body) throws ApiException { + public SignatureStatusResponse RestartExpiredSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/restart".replace("*", ""); // 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)); + 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, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2929,23 +2981,23 @@ public SignatureFormDocumentResponse ModifySignatureFormDocument (String userId, } } } - public SignaturePredefinedListsResponse GetSignaturePredefinedLists (String userId) throws ApiException { + public SignatureEnvelopeSendResponse SignatureEnvelopeSend (String userId, String envelopeGuid, WebhookInfo body) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/lists".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/send".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + 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, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignaturePredefinedListsResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListsResponse.class); + return (SignatureEnvelopeSendResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeSendResponse.class); } else { return null; @@ -2959,23 +3011,23 @@ public SignaturePredefinedListsResponse GetSignaturePredefinedLists (String user } } } - public SignaturePredefinedListResponse AddPredefinedList (String userId, SignaturePredefinedListSettingsInfo body) throws ApiException { + public SignatureStatusResponse SignEnvelope (String userId, String envelopeGuid, String recipientGuid) throws ApiException { // verify required params are set - if(userId == null || body == null ) { + if(userId == null || envelopeGuid == null || recipientGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/list".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/sign".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignaturePredefinedListResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2989,23 +3041,41 @@ public SignaturePredefinedListResponse AddPredefinedList (String userId, Signatu } } } - public SignaturePredefinedListsResponse DeletePredefinedList (String userId, String listGuid) throws ApiException { + public SignatureEnvelopesResponse GetSignatureEnvelopes (String userId, Integer statusId, Integer page, Integer records, String originalDocumentMD5, String recipientEmail, String date, String name) throws ApiException { // verify required params are set - if(userId == null || listGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/lists/{listGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes?statusId={statusId}&records={records}&page={page}&document={originalDocumentMD5}&recipient={recipientEmail}&date={date}&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("{" + "listGuid" + "}", String.valueOf(listGuid)); + 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(statusId))) + queryParams.put("statusId", String.valueOf(statusId)); + if(!"null".equals(String.valueOf(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); + if(!"null".equals(String.valueOf(originalDocumentMD5))) + queryParams.put("document", String.valueOf(originalDocumentMD5)); + if(!"null".equals(String.valueOf(recipientEmail))) + queryParams.put("recipient", String.valueOf(recipientEmail)); + if(!"null".equals(String.valueOf(date))) + queryParams.put("date", String.valueOf(date)); + if(!"null".equals(String.valueOf(name))) + queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignaturePredefinedListsResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListsResponse.class); + return (SignatureEnvelopesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopesResponse.class); } else { return null; @@ -3019,12 +3089,12 @@ public SignaturePredefinedListsResponse DeletePredefinedList (String userId, Str } } } - public SignatureRolesResponse GetRolesList (String userId, String roleGuid) throws ApiException { + public SignatureEnvelopeResourcesResponse GetSignatureEnvelopeResources (String userId, String statusIds) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/roles?id={roleGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/resources?statusIds={statusIds}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -3036,12 +3106,12 @@ public SignatureRolesResponse GetRolesList (String userId, String roleGuid) thro Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(roleGuid))) - queryParams.put("id", String.valueOf(roleGuid)); + if(!"null".equals(String.valueOf(statusIds))) + queryParams.put("statusIds", String.valueOf(statusIds)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureRolesResponse) ApiInvoker.deserialize(response, "", SignatureRolesResponse.class); + return (SignatureEnvelopeResourcesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResourcesResponse.class); } else { return null; @@ -3055,12 +3125,12 @@ public SignatureRolesResponse GetRolesList (String userId, String roleGuid) thro } } } - public SignatureSignatureResponse CreateSignature (String userId, String name, SignatureSignatureSettingsInfo body) throws ApiException { + public SignatureEnvelopesResponse GetRecipientSignatureEnvelopes (String userId, String statusId, Integer page, Integer records) throws ApiException { // verify required params are set - if(userId == null || name == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/signature?name={name}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/recipient?statusId={statusId}&records={records}&page={page}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -3072,12 +3142,16 @@ public SignatureSignatureResponse CreateSignature (String userId, String name, S 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(statusId))) + queryParams.put("statusId", String.valueOf(statusId)); + if(!"null".equals(String.valueOf(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureSignatureResponse) ApiInvoker.deserialize(response, "", SignatureSignatureResponse.class); + return (SignatureEnvelopesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopesResponse.class); } else { return null; @@ -3091,23 +3165,29 @@ public SignatureSignatureResponse CreateSignature (String userId, String name, S } } } - public SignatureStatusResponse DeleteSignature (String userId, String signatureGuid) throws ApiException { + public SignatureEnvelopeDocumentResponse RenameSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid, String newName) throws ApiException { // verify required params are set - if(userId == null || signatureGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/signatures/{signatureGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}?newName={newName}".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("{" + "signatureGuid" + "}", String.valueOf(signatureGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(newName))) + queryParams.put("newName", String.valueOf(newName)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureEnvelopeDocumentResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentResponse.class); } else { return null; @@ -3121,33 +3201,23 @@ public SignatureStatusResponse DeleteSignature (String userId, String signatureG } } } - public SignatureSignaturesResponse GetSignatures (String userId, Integer page, Integer records, String name) throws ApiException { + public SignatureStatusResponse CancelSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/signatures?records={records}&page={page}&name={name}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/cancel".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + 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(); - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); - if(!"null".equals(String.valueOf(name))) - queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureSignaturesResponse) ApiInvoker.deserialize(response, "", SignatureSignaturesResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -3161,37 +3231,23 @@ public SignatureSignaturesResponse GetSignatures (String userId, Integer page, I } } } - public SignatureTemplatesResponse GetSignatureTemplates (String userId, Integer page, Integer records, String documentGuid, String recipientName, String name) throws ApiException { + public SignatureStatusResponse RetrySignEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/templates?records={records}&page={page}&documentGuid={documentGuid}&recipientName={recipientName}&name={name}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/retry".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + 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(); - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); - if(!"null".equals(String.valueOf(documentGuid))) - queryParams.put("documentGuid", String.valueOf(documentGuid)); - if(!"null".equals(String.valueOf(recipientName))) - queryParams.put("recipientName", String.valueOf(recipientName)); - if(!"null".equals(String.valueOf(name))) - queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureTemplatesResponse) ApiInvoker.deserialize(response, "", SignatureTemplatesResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -3205,23 +3261,23 @@ public SignatureTemplatesResponse GetSignatureTemplates (String userId, Integer } } } - public SignatureTemplateResponse GetSignatureTemplate (String userId, String templateGuid) throws ApiException { + public SignatureEnvelopeResponse UpdateEnvelopeFromTemplate (String userId, String envelopeGuid, String templateGuid) throws ApiException { // verify required params are set - if(userId == null || templateGuid == null ) { + if(userId == null || envelopeGuid == null || templateGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("*", ""); + 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("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + 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, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureTemplateResponse) ApiInvoker.deserialize(response, "", SignatureTemplateResponse.class); + return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); } else { return null; @@ -3235,33 +3291,29 @@ public SignatureTemplateResponse GetSignatureTemplate (String userId, String tem } } } - public SignatureTemplateResponse CreateSignatureTemplate (String userId, String name, String templateGuid, String envelopeGuid, SignatureTemplateSettingsInfo body) throws ApiException { + 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 || name == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null || locationGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/template?name={name}&templateId={templateGuid}&envelopeId={envelopeGuid}".replace("*", ""); + 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)); + 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(name))) - queryParams.put("name", String.valueOf(name)); - if(!"null".equals(String.valueOf(templateGuid))) - queryParams.put("templateId", String.valueOf(templateGuid)); - if(!"null".equals(String.valueOf(envelopeGuid))) - queryParams.put("envelopeId", String.valueOf(envelopeGuid)); + if(!"null".equals(String.valueOf(order))) + queryParams.put("order", String.valueOf(order)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureTemplateResponse) ApiInvoker.deserialize(response, "", SignatureTemplateResponse.class); + return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); } else { return null; @@ -3275,23 +3327,23 @@ public SignatureTemplateResponse CreateSignatureTemplate (String userId, String } } } - public SignatureTemplateResponse ModifySignatureTemplate (String userId, String templateGuid, SignatureTemplateSettingsInfo body) throws ApiException { + public SignaturePredefinedListsResponse GetSignaturePredefinedLists (String userId) throws ApiException { // verify required params are set - if(userId == null || templateGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/lists".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + 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, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureTemplateResponse) ApiInvoker.deserialize(response, "", SignatureTemplateResponse.class); + return (SignaturePredefinedListsResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListsResponse.class); } else { return null; @@ -3305,29 +3357,23 @@ public SignatureTemplateResponse ModifySignatureTemplate (String userId, String } } } - public SignatureTemplateResponse RenameSignatureTemplate (String userId, String templateGuid, String name) throws ApiException { + public SignaturePredefinedListResponse AddPredefinedList (String userId, SignaturePredefinedListSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || templateGuid == null || name == null ) { + if(userId == null || body == 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); - } + String resourcePath = "/signature/{userId}/list".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + 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(name))) - queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureTemplateResponse) ApiInvoker.deserialize(response, "", SignatureTemplateResponse.class); + return (SignaturePredefinedListResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListResponse.class); } else { return null; @@ -3341,14 +3387,14 @@ public SignatureTemplateResponse RenameSignatureTemplate (String userId, String } } } - public SignatureStatusResponse DeleteSignatureTemplate (String userId, String templateGuid) throws ApiException { + public SignaturePredefinedListsResponse DeletePredefinedList (String userId, String listGuid) throws ApiException { // verify required params are set - if(userId == null || templateGuid == null ) { + if(userId == null || listGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/lists/{listGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "listGuid" + "}", String.valueOf(listGuid)); // query params Map queryParams = new HashMap(); @@ -3357,7 +3403,7 @@ public SignatureStatusResponse DeleteSignatureTemplate (String userId, String te try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignaturePredefinedListsResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListsResponse.class); } else { return null; @@ -3371,7 +3417,7 @@ public SignatureStatusResponse DeleteSignatureTemplate (String userId, String te } } } - 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"); @@ -3613,7 +3659,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"); @@ -3649,12 +3695,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); @@ -3666,6 +3712,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 { diff --git a/src/main/java/com/groupdocs/sdk/api/StorageApi.java b/src/main/java/com/groupdocs/sdk/api/StorageApi.java index fbc2793..4deee7e 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 ) { @@ -379,7 +410,7 @@ public DeleteResponse DeleteFromFolder (String userId, String path) throws ApiEx } } } - public FileMoveResponse MoveFile (String userId, String path, String mode, String Groupdocs_Copy, String Groupdocs_Move) throws ApiException { + public FileMoveResponse MoveFile (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"); @@ -398,8 +429,8 @@ public FileMoveResponse MoveFile (String userId, String path, String mode, Strin if(!"null".equals(String.valueOf(mode))) queryParams.put("mode", String.valueOf(mode)); - headerParams.put("Groupdocs-Copy", Groupdocs_Copy); 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){ @@ -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/model/AnnotationInfo.java b/src/main/java/com/groupdocs/sdk/model/AnnotationInfo.java index 73dbf2d..26d7059 100644 --- a/src/main/java/com/groupdocs/sdk/model/AnnotationInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/AnnotationInfo.java @@ -32,6 +32,7 @@ public class AnnotationInfo { private String sessionGuid = null; private String creatorGuid = null; private Rectangle box = null; + private Integer pageNumber = null; private Point annotationPosition = null; private Range range = null; private String svgPath = null; @@ -78,6 +79,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; } @@ -164,6 +172,7 @@ public String toString() { sb.append(" sessionGuid: ").append(sessionGuid).append("\n"); sb.append(" creatorGuid: ").append(creatorGuid).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"); diff --git a/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java b/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java index a507139..cf06c79 100644 --- a/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java @@ -28,6 +28,7 @@ public class AnnotationReplyInfo { private String text = null; private Long repliedOn = null; private String parentReplyGuid = null; + private Boolean isAvatarExist = null; public String getGuid() { return guid; } @@ -70,6 +71,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(); @@ -80,6 +88,7 @@ public String toString() { 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/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/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/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/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/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/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..c22ae54 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java @@ -40,6 +40,7 @@ public class SignatureFormInfo { private Double fieldsCount = null; private Boolean notifyOwnerOnSign = null; private Boolean attachSignedDocument = null; + private String notifyOtherOnSign = null; public String getId() { return id; } @@ -159,6 +160,13 @@ public void setAttachSignedDocument(Boolean attachSignedDocument) { this.attachSignedDocument = attachSignedDocument; } + public String getNotifyOtherOnSign() { + return notifyOtherOnSign; + } + public void setNotifyOtherOnSign(String notifyOtherOnSign) { + this.notifyOtherOnSign = notifyOtherOnSign; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -180,6 +188,7 @@ 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("}\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..3ccaf92 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java @@ -29,6 +29,7 @@ public class SignatureFormSettingsInfo { private String waterMarkImage = null; private Boolean notifyOwnerOnSign = null; private Boolean attachSignedDocument = null; + private String notifyOtherOnSign = null; public String getName() { return name; } @@ -78,6 +79,13 @@ public void setAttachSignedDocument(Boolean attachSignedDocument) { this.attachSignedDocument = attachSignedDocument; } + public String getNotifyOtherOnSign () { + return notifyOtherOnSign ; + } + public void setNotifyOtherOnSign (String notifyOtherOnSign ) { + this.notifyOtherOnSign = notifyOtherOnSign ; + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -89,6 +97,7 @@ 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("}\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/test/java/com/groupdocs/sdk/api/TestAdminApi.java b/src/main/java/com/groupdocs/sdk/model/StyleChangeInfo.java similarity index 61% rename from src/test/java/com/groupdocs/sdk/api/TestAdminApi.java rename to src/main/java/com/groupdocs/sdk/model/StyleChangeInfo.java index 4a57770..6726a43 100644 --- a/src/test/java/com/groupdocs/sdk/api/TestAdminApi.java +++ b/src/main/java/com/groupdocs/sdk/model/StyleChangeInfo.java @@ -13,18 +13,21 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package com.groupdocs.sdk.api; +package com.groupdocs.sdk.model; -import com.groupdocs.sdk.common.*; -import com.groupdocs.sdk.model.*; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.*; -import org.junit.Test; -import org.junit.experimental.categories.Category; -import java.util.*; - -@Category(IntegrationTest.class) -public class TestAdminApi extends AbstractIntegrationTest { - - +/** + * + *

+ * 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 be8cc4e..22753fc 100644 --- a/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java @@ -25,6 +25,7 @@ public class TemplateInfo { private String name = null; private Integer field_count = null; private Long size = null; + private String fileType = null; private Long upload_time = null; private Double id = null; private String guid = null; @@ -49,6 +50,13 @@ public void setSize(Long size) { this.size = size; } + public String getFileType() { + return fileType; + } + public void setFileType(String fileType) { + this.fileType = fileType; + } + public Long getUpload_time() { return upload_time; } @@ -77,6 +85,7 @@ public String toString() { 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(" upload_time: ").append(upload_time).append("\n"); sb.append(" id: ").append(id).append("\n"); sb.append(" guid: ").append(guid).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/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..d8cb766 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,8 @@ 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 Long id = null; private String guid = null; private String primary_email = null; public String getNickname() { @@ -193,6 +195,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 +524,17 @@ 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 Long getId() { return id; } - public void setId(Double id) { + public void setId(Long id) { this.id = id; } @@ -555,6 +571,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 +618,7 @@ 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(" 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/AntApiTest.java b/src/test/java/com/groupdocs/sdk/api/AntApiTest.java index fab604f..7d023d6 100644 --- a/src/test/java/com/groupdocs/sdk/api/AntApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/AntApiTest.java @@ -42,6 +42,8 @@ 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 +62,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 { @@ -175,7 +177,16 @@ public void testCreateAnnotationReply() throws Exception { // add query parameters to expectation mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file - String responseBody = getSampleResponse("ant/CreateAnnotationReply.json"); + String responseBody = "{\n" + + " \"result\": {\n" + + " \"replyGuid\": \"688a648b\",\n" + + " \"annotationGuid\": \"8257702b138f2b55\",\n" + + " \"replyDateTime\": \"Tue Jul 30 18:06:04 EEST 2013\"\n" + + " },\n" + + " \"status\": \"Ok\",\n" + + " \"error_message\": null,\n" + + " \"composedOn\": 1375207486195\n" + + "}"; ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); driver.addExpectation(mockRequest, mockResponse); @@ -541,7 +552,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)); @@ -602,7 +613,7 @@ public void testGetSharedLinkAccessRights() throws Exception { String resourcePath = "/ant/{userId}/files/{fileId}/sharedLinkAccessRights".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)); - ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.APPLICATION_JSON); // add query parameters to expectation mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file @@ -612,7 +623,9 @@ public void testGetSharedLinkAccessRights() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - GetSharedLinkAccessRightsResponse response = api.GetSharedLinkAccessRights(userId, fileId); + AnnotationReviewerRights rights = new AnnotationReviewerRights(); + rights.setCanView(1); + GetSharedLinkAccessRightsResponse response = api.GetSharedLinkAccessRights(userId, fileId, rights); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -627,8 +640,8 @@ public void testSetSharedLinkAccessRights() throws Exception { // sample parameters String userId = "userId"; String fileId = "fileId"; - Integer body = 0; - + AnnotationReviewerRights body = new AnnotationReviewerRights(); + body.setAll(31); String resourcePath = "/ant/{userId}/files/{fileId}/sharedLinkAccessRights".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)); ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.APPLICATION_JSON); diff --git a/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java b/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java index a9ebc22..5a96183 100644 --- a/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java @@ -343,6 +343,7 @@ public void testGetJobs() throws Exception { String statusIds = "statusIds"; String actions = "actions"; String excludedActions = "excludedActions"; + String jobName = "jobName"; String resourcePath = "/async/{userId}/jobs".replace("{" + "userId" + "}", String.valueOf(userId)); @@ -354,6 +355,7 @@ 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("signature", Pattern.compile(".*")); // read response json from file String responseBody = getSampleResponse("async/GetJobs.json"); @@ -362,7 +364,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); // 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 093bcf7..e897649 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/{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/{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,28 +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/{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.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 e35b88b..addc810 100644 --- a/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java +++ b/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java @@ -15,35 +15,25 @@ */ package com.groupdocs.sdk.api; -import static com.github.restdriver.clientdriver.RestClientDriver.giveResponse; -import static com.github.restdriver.clientdriver.RestClientDriver.onRequestTo; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.equalTo; -import static org.junit.Assert.fail; - -import java.util.Arrays; -import java.util.List; - -import javax.ws.rs.core.MediaType; - +import com.github.restdriver.clientdriver.ClientDriverRequest.Method; +import com.github.restdriver.clientdriver.ClientDriverRule; +import com.groupdocs.sdk.common.ApiInvoker; +import com.groupdocs.sdk.model.*; import org.apache.commons.io.IOUtils; import org.junit.Before; import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; -import com.github.restdriver.clientdriver.ClientDriverRequest.Method; -import com.github.restdriver.clientdriver.ClientDriverRule; -import com.groupdocs.sdk.common.ApiInvoker; -import com.groupdocs.sdk.model.AddReplyResponse; -import com.groupdocs.sdk.model.AnnotationInfo; -import com.groupdocs.sdk.model.AnnotationReplyInfo; -import com.groupdocs.sdk.model.CreateAnnotationResponse; -import com.groupdocs.sdk.model.EditReplyResponse; -import com.groupdocs.sdk.model.Rectangle; -import com.groupdocs.sdk.model.ReviewerInfo; -import com.groupdocs.sdk.model.SetCollaboratorsResponse; -import com.groupdocs.sdk.model.SetReviewerRightsResponse; +import javax.ws.rs.core.MediaType; +import java.util.Arrays; +import java.util.List; + +import static com.github.restdriver.clientdriver.RestClientDriver.giveResponse; +import static com.github.restdriver.clientdriver.RestClientDriver.onRequestTo; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.equalTo; +import static org.junit.Assert.fail; /** * Test cases to ensure correctness of Object to JSON serialization and Object from JSON deserialization @@ -165,16 +155,17 @@ 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 userId = "userId"; String fileId = "SomeFileGuid"; String resourcePath = "/ant/{userId}/files/{fileId}/reviewerRights".replace("{userId}", userId).replace("{fileId}", fileId); - String body = "[{\"id\":1232,\"access_rights\":1},{\"id\":1233,\"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 7be8915..fe66268 100644 --- a/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java @@ -40,12 +40,14 @@ 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.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; @@ -57,13 +59,16 @@ 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 +315,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 @@ -347,6 +380,45 @@ public void testGetQuestionnaires() throws Exception { } + @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); + + } catch(ApiException e){ + log(e.getCode() + ": " + e.getMessage()); + } + + } + @Test public void testCreateQuestionnaire() throws Exception { // sample parameters @@ -432,6 +504,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 @@ -661,6 +761,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 @@ -862,6 +990,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 @@ -1066,6 +1222,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 @@ -1212,6 +1396,34 @@ public void testCopyFileToTemplates() throws Exception { } + @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()); + } + + } + } diff --git a/src/test/java/com/groupdocs/sdk/api/SignatureApiTest.java b/src/test/java/com/groupdocs/sdk/api/SignatureApiTest.java index 1167acb..2e72a82 100644 --- a/src/test/java/com/groupdocs/sdk/api/SignatureApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/SignatureApiTest.java @@ -15,91 +15,27 @@ */ package com.groupdocs.sdk.api; -import static com.github.restdriver.clientdriver.RestClientDriver.giveResponse; -import static com.github.restdriver.clientdriver.RestClientDriver.onRequestTo; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.*; - -import java.util.List; -import java.util.regex.Pattern; - -import javax.ws.rs.core.MediaType; - -import org.junit.Before; -import org.junit.Rule; -import org.junit.Test; - import com.fasterxml.jackson.core.type.TypeReference; import com.github.restdriver.clientdriver.ClientDriverRequest; import com.github.restdriver.clientdriver.ClientDriverRequest.Method; import com.github.restdriver.clientdriver.ClientDriverResponse; import com.github.restdriver.clientdriver.ClientDriverRule; - import com.groupdocs.sdk.common.ApiException; import com.groupdocs.sdk.common.FileStream; -import com.groupdocs.sdk.model.SignatureTemplateRecipientsResponse; -import com.groupdocs.sdk.model.SignatureStatusResponse; -import com.groupdocs.sdk.model.SignatureContactResponse; -import com.groupdocs.sdk.model.SignatureFormSettingsInfo; -import com.groupdocs.sdk.model.SignatureFormFieldLocationSettingsInfo; -import com.groupdocs.sdk.model.SignatureRolesResponse; -import com.groupdocs.sdk.model.SignatureEnvelopeFieldsResponse; -import com.groupdocs.sdk.model.PublicSignatureSignDocumentSignerSettingsInfo; -import com.groupdocs.sdk.model.SignatureFormDocumentsResponse; -import com.groupdocs.sdk.model.WebhookInfo; -import com.groupdocs.sdk.model.SignatureEnvelopeRecipientResponse; -import com.groupdocs.sdk.model.SignatureSignatureSettingsInfo; -import com.groupdocs.sdk.model.SignatureFormResponse; -import com.groupdocs.sdk.model.SignatureTemplateFieldLocationSettingsInfo; -import com.groupdocs.sdk.model.SignatureFieldSettingsInfo; -import com.groupdocs.sdk.model.SignatureFormDocumentSettingsInfo; -import com.groupdocs.sdk.model.SignatureEnvelopeResourcesResponse; -import com.groupdocs.sdk.model.SignatureEnvelopeDocumentsResponse; -import com.groupdocs.sdk.model.SignatureTemplatesResponse; -import com.groupdocs.sdk.model.SignaturePredefinedListSettingsInfo; -import com.groupdocs.sdk.model.SignatureFieldsResponse; -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; -import com.groupdocs.sdk.model.SignatureFormDocumentResponse; -import com.groupdocs.sdk.model.SignatureEnvelopeSettingsInfo; -import com.groupdocs.sdk.model.SignatureSignDocumentResponse; -import com.groupdocs.sdk.model.SignatureFormResourcesResponse; -import com.groupdocs.sdk.model.SignatureContactsImportResponse; -import com.groupdocs.sdk.model.SignatureFormFieldResponse; -import com.groupdocs.sdk.model.SignatureFormParticipantResponse; -import com.groupdocs.sdk.model.SignatureFormFieldSettingsInfo; -import com.groupdocs.sdk.model.SignatureTemplateResourcesResponse; -import com.groupdocs.sdk.model.SignatureTemplateDocumentsResponse; -import com.groupdocs.sdk.model.SignatureEnvelopeRecipientsResponse; -import com.groupdocs.sdk.model.SignatureSignatureResponse; -import com.groupdocs.sdk.model.SignatureFieldResponse; -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.SignatureEnvelopesResponse; -import com.groupdocs.sdk.model.SignatureFormFieldsResponse; -import com.groupdocs.sdk.model.SignatureEnvelopeDocumentResponse; -import com.groupdocs.sdk.model.SignaturePredefinedListResponse; -import com.groupdocs.sdk.model.SignatureContactSettingsInfo; -import com.groupdocs.sdk.model.SignatureSignaturesResponse; -import com.groupdocs.sdk.model.SignatureTemplateAssignFieldSettingsInfo; -import com.groupdocs.sdk.model.SignatureTemplateFieldSettingsInfo; -import com.groupdocs.sdk.model.SignatureVerifyDocumentResponse; -import com.groupdocs.sdk.model.SignaturePredefinedListsResponse; -import com.groupdocs.sdk.model.SignatureEnvelopeAssignFieldSettingsInfo; -import com.groupdocs.sdk.model.SignatureEnvelopeAuditLogsResponse; -import com.groupdocs.sdk.model.SignatureContactIntegrationSettings; -import com.groupdocs.sdk.model.SignatureEnvelopeSendResponse; -import com.groupdocs.sdk.model.SignatureTemplateResponse; -import com.groupdocs.sdk.model.SignatureSignDocumentStatusResponse; -import com.groupdocs.sdk.model.SignatureEnvelopeResponse; +import com.groupdocs.sdk.model.*; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; + +import javax.ws.rs.core.MediaType; +import java.util.List; +import java.util.regex.Pattern; + +import static com.github.restdriver.clientdriver.RestClientDriver.giveResponse; +import static com.github.restdriver.clientdriver.RestClientDriver.onRequestTo; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.not; +import static org.hamcrest.Matchers.nullValue; public class SignatureApiTest extends AbstractUnitTest { @@ -495,6 +431,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)); @@ -502,6 +439,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"); @@ -510,7 +448,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); @@ -1401,6 +1339,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)); @@ -1408,6 +1347,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"); @@ -1416,7 +1356,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); @@ -2428,73 +2368,75 @@ public void testDeleteSignatureFormField() throws Exception { } } - - @Test - public void testGetSignatureFormFields() throws Exception { - // sample parameters - String userId = "userId"; - String formGuid = "formGuid"; - String documentGuid = "documentGuid"; - - 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("signature", Pattern.compile(".*")); - // read response json from file - String responseBody = getSampleResponse("signature/GetSignatureFormFields.json"); - - ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); - driver.addExpectation(mockRequest, mockResponse); - - try { - SignatureFormFieldsResponse response = api.GetSignatureFormFields(userId, formGuid, 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 testGetSignatureFormFields() throws Exception { + // sample parameters + 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"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + SignatureFormFieldsResponse response = api.GetSignatureFormFields(userId, formGuid, documentGuid, fieldGuid); + // 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 testGetSignatureForm() throws Exception { // sample parameters String userId = "userId"; String formGuid = "formGuid"; - + String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); - + 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/GetSignatureForm.json"); - + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); driver.addExpectation(mockRequest, mockResponse); - + try { SignatureFormResponse response = api.GetSignatureForm(userId, formGuid); // 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 testModifySignatureForm() throws Exception { // sample parameters String userId = "userId"; String formGuid = "formGuid"; SignatureFormSettingsInfo body = getSampleRequest("signature/payload/ModifySignatureForm.json", new TypeReference(){}); - + String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); - + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.POST).withHeader("Content-Type", MediaType.APPLICATION_JSON); // add query parameters to expectation mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); @@ -3148,6 +3090,40 @@ public void testDeleteSignatureTemplate() throws Exception { } + @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 testPublicFillEnvelopeField() throws Exception { // sample parameters @@ -3155,11 +3131,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 @@ -3383,11 +3359,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(".*")); @@ -3413,12 +3389,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 @@ -3428,7 +3406,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); 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/java/com/groupdocs/sdk/api/SystemApiTest.java b/src/test/java/com/groupdocs/sdk/api/SystemApiTest.java index ed15592..f2cf0af 100644 --- a/src/test/java/com/groupdocs/sdk/api/SystemApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/SystemApiTest.java @@ -147,34 +147,34 @@ public void testGetUserSubscriptionPlan() throws Exception { } } - - @Test - public void testGetSubscriptionPlans() throws Exception { - // sample parameters - String callerId = "callerId"; - String family = "family"; - - String resourcePath = "/system/{callerId}/plans/{family}".replace("{" + "callerId" + "}", String.valueOf(callerId)).replace("{" + "family" + "}", String.valueOf(family)); - - 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("system/GetSubscriptionPlans.json"); - - ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); - driver.addExpectation(mockRequest, mockResponse); - - try { - GetSubscriptionPlansResponse response = api.GetSubscriptionPlans(callerId, family); - // 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 testGetSubscriptionPlans() throws Exception { + // sample parameters + String callerId = "callerId"; + String family = "family"; + + String resourcePath = "/system/{callerId}/plans/{family}".replace("{" + "callerId" + "}", String.valueOf(callerId)).replace("{" + "family" + "}", String.valueOf(family)); + + 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("system/GetSubscriptionPlans.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + GetSubscriptionPlansResponse response = api.GetSubscriptionPlans(callerId, family); + // 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 testSetSubscriptionPlan() throws Exception { diff --git a/src/test/resources/requests/annotation/info/AddAnnotationCollaborator b/src/test/resources/requests/annotation/info/AddAnnotationCollaborator deleted file mode 100644 index 5de4d47..0000000 --- a/src/test/resources/requests/annotation/info/AddAnnotationCollaborator +++ /dev/null @@ -1,7 +0,0 @@ -POST /v2.0/ant/6d75a4d4db83f6fc/files/5a0751f92bca8097c50161f7090d8fb923b023cfc47fdc2fac4dfee0e81daeaf/collaborators?signature=EjMdKZemUiNiQFJyBm0zBhzauv8 - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 176 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/annotation/info/CreateAnnotation b/src/test/resources/requests/annotation/info/CreateAnnotation deleted file mode 100644 index dcda9ff..0000000 --- a/src/test/resources/requests/annotation/info/CreateAnnotation +++ /dev/null @@ -1,7 +0,0 @@ -POST /v2.0/ant/6d75a4d4db83f6fc/files/23e907609a31821a0bdbd9044714f99a2d654ed72f0b0cc63e3f7c464ccd7b5e/annotations?signature=mHBA2eNQIhPY5f8dCrLce6RuYzw - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 89 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/annotation/info/CreateAnnotationReply b/src/test/resources/requests/annotation/info/CreateAnnotationReply deleted file mode 100644 index f1f3f76..0000000 --- a/src/test/resources/requests/annotation/info/CreateAnnotationReply +++ /dev/null @@ -1,7 +0,0 @@ -POST /v2.0/ant/6d75a4d4db83f6fc/annotations/c26778ffcd3d07be/replies?signature=Faj29%2Bfy9dwowuW%2FoPIsewGY6P8 - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 21 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/annotation/info/DeleteAnnotation b/src/test/resources/requests/annotation/info/DeleteAnnotation deleted file mode 100644 index 1b5228c..0000000 --- a/src/test/resources/requests/annotation/info/DeleteAnnotation +++ /dev/null @@ -1,6 +0,0 @@ -DELETE /v2.0/ant/6d75a4d4db83f6fc/annotations/b43cc3eb4feb0902?signature=nrsE7ZKfA1nz1eB%2BY2WxozSuT3Q - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/annotation/info/DeleteAnnotationReply b/src/test/resources/requests/annotation/info/DeleteAnnotationReply deleted file mode 100644 index a95d38d..0000000 --- a/src/test/resources/requests/annotation/info/DeleteAnnotationReply +++ /dev/null @@ -1,6 +0,0 @@ -DELETE /v2.0/ant/6d75a4d4db83f6fc/replies/4a38f746?signature=yvG4XAj8Vo%2B4nREBbZJDfEzFkko - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/annotation/info/EditAnnotationReply b/src/test/resources/requests/annotation/info/EditAnnotationReply deleted file mode 100644 index e877e66..0000000 --- a/src/test/resources/requests/annotation/info/EditAnnotationReply +++ /dev/null @@ -1,7 +0,0 @@ -PUT /v2.0/ant/6d75a4d4db83f6fc/replies/98e964d7?signature=awpEWUJ3ym51LvQy0s2w1LKOET0 - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 16 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/annotation/info/GetAnnotationCollaborators b/src/test/resources/requests/annotation/info/GetAnnotationCollaborators deleted file mode 100644 index ca3e76d..0000000 --- a/src/test/resources/requests/annotation/info/GetAnnotationCollaborators +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/ant/6d75a4d4db83f6fc/files/96c88865a65912fb9858ee8c34894ee80eca8bf70f7601b2deba057712459922/collaborators?signature=k%2Flgb6l57eIagfaoW03tAuBcEYY - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/annotation/info/GetReviewerContacts b/src/test/resources/requests/annotation/info/GetReviewerContacts deleted file mode 100644 index d4ba85c..0000000 --- a/src/test/resources/requests/annotation/info/GetReviewerContacts +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/ant/6d75a4d4db83f6fc/contacts?signature=d59v1G%2B8pV64TxKeuY6OpSSPFVg - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/annotation/info/GetSharedLinkAccessRights b/src/test/resources/requests/annotation/info/GetSharedLinkAccessRights deleted file mode 100644 index fc38237..0000000 --- a/src/test/resources/requests/annotation/info/GetSharedLinkAccessRights +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/ant/6d75a4d4db83f6fc/files/139248ccb04f8f3f9a284e7b81e0d54ec8100a970a76fd163089e6b809bfcaaf/sharedLinkAccessRights?signature=pUfAitq3NarJEH2ly7rNTalDAEg - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/annotation/info/ListAnnotationReplies b/src/test/resources/requests/annotation/info/ListAnnotationReplies deleted file mode 100644 index fb6c141..0000000 --- a/src/test/resources/requests/annotation/info/ListAnnotationReplies +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/ant/6d75a4d4db83f6fc/annotations/ba980427787e2f03/replies?signature=W5pVOgqeSYh9YYei%2FfCfOG2lKcc - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/annotation/info/ListAnnotations b/src/test/resources/requests/annotation/info/ListAnnotations deleted file mode 100644 index 41460b6..0000000 --- a/src/test/resources/requests/annotation/info/ListAnnotations +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/ant/6d75a4d4db83f6fc/files/5562cec6b983fc7e813fb6cb0a09522a9c0e968bed59025ff444a6421986054f/annotations?signature=3eWRfVHwhSdxLq5sEz5gmqsUN%2F0 - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/annotation/info/MoveAnnotation b/src/test/resources/requests/annotation/info/MoveAnnotation deleted file mode 100644 index 5b0845c..0000000 --- a/src/test/resources/requests/annotation/info/MoveAnnotation +++ /dev/null @@ -1,7 +0,0 @@ -PUT /v2.0/ant/6d75a4d4db83f6fc/annotations/8e5ea2b521e15c12/position?signature=jgOlFaCYdfbOvCduHS%2Bi5FIKrjw - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 18 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/annotation/info/MoveAnnotationMarker b/src/test/resources/requests/annotation/info/MoveAnnotationMarker deleted file mode 100644 index 94187bf..0000000 --- a/src/test/resources/requests/annotation/info/MoveAnnotationMarker +++ /dev/null @@ -1,7 +0,0 @@ -PUT /v2.0/ant/6d75a4d4db83f6fc/annotations/fa827598edc76e74/markerPosition?signature=Rm02wORKPLnSnEMaZ2rT3tDucgI - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 18 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/annotation/info/SetAnnotationAccess b/src/test/resources/requests/annotation/info/SetAnnotationAccess deleted file mode 100644 index aa9ebe3..0000000 --- a/src/test/resources/requests/annotation/info/SetAnnotationAccess +++ /dev/null @@ -1,7 +0,0 @@ -PUT /v2.0/ant/6d75a4d4db83f6fc/annotations/446a692e2a17e807/annotationAccess?signature=BTJaG5tB4Kc1mphYuNfSHdUJohM - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 1 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/annotation/info/SetAnnotationCollaborators b/src/test/resources/requests/annotation/info/SetAnnotationCollaborators deleted file mode 100644 index ff55521..0000000 --- a/src/test/resources/requests/annotation/info/SetAnnotationCollaborators +++ /dev/null @@ -1,7 +0,0 @@ -PUT /v2.0/ant/6d75a4d4db83f6fc/files/d6b14380e13ba293a10e187d16f1c3e25721c9c2bfb4fb23400fca0c246ff679/version/1/collaborators?signature=R7NgC%2BnPLz3W%2FE6sYoN7Lt84vUc - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 53 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/annotation/info/SetReviewerContacts b/src/test/resources/requests/annotation/info/SetReviewerContacts deleted file mode 100644 index 73250c7..0000000 --- a/src/test/resources/requests/annotation/info/SetReviewerContacts +++ /dev/null @@ -1,7 +0,0 @@ -PUT /v2.0/ant/6d75a4d4db83f6fc/reviewerContacts?signature=JUbIlwPDdNcfBUFHU3GZALP87OI - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 59 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/annotation/info/SetReviewerRights b/src/test/resources/requests/annotation/info/SetReviewerRights deleted file mode 100644 index f55a6a0..0000000 --- a/src/test/resources/requests/annotation/info/SetReviewerRights +++ /dev/null @@ -1,7 +0,0 @@ -PUT /v2.0/ant/6d75a4d4db83f6fc/files/09a0c0cf11146f9cbb8c41f6ebcf3e2079d98659da21f264c9dea21f629f8f4f/reviewerRights?signature=Pq19FseCimeFX0br8ULVpptcwIE - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 178 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/annotation/info/SetSharedLinkAccessRights b/src/test/resources/requests/annotation/info/SetSharedLinkAccessRights deleted file mode 100644 index d4b185d..0000000 --- a/src/test/resources/requests/annotation/info/SetSharedLinkAccessRights +++ /dev/null @@ -1,7 +0,0 @@ -PUT /v2.0/ant/6d75a4d4db83f6fc/files/91745d0ba6c51557495993f406f98e0dfcc98d309d59ccf658727eec3beab506/sharedLinkAccessRights?signature=GDPd%2BN3Qq2wou4TcPguj9vJCd0M - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 2 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/annotation/payload/AddAnnotationCollaborator.json b/src/test/resources/requests/annotation/payload/AddAnnotationCollaborator.json deleted file mode 100644 index 8221d7b..0000000 --- a/src/test/resources/requests/annotation/payload/AddAnnotationCollaborator.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "id": null, - "guid": null, - "primary_email": "user_one@mailinator.com", - "firstname": "John", - "lastname": "Smith", - "access_rights": 15, - "color": 12582783, - "customEmailMessage": "Hi, reviewer!" -} \ No newline at end of file diff --git a/src/test/resources/requests/annotation/payload/CreateAnnotation.json b/src/test/resources/requests/annotation/payload/CreateAnnotation.json deleted file mode 100644 index c00d112..0000000 --- a/src/test/resources/requests/annotation/payload/CreateAnnotation.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "documentGuid": null, - "type": "text", - "access": "Public", - "box": { - "x": 10, - "y": 10, - "w": 10, - "h": 10 - } -} \ No newline at end of file diff --git a/src/test/resources/requests/annotation/payload/CreateAnnotationReply.json b/src/test/resources/requests/annotation/payload/CreateAnnotationReply.json deleted file mode 100644 index 3a294f7..0000000 --- a/src/test/resources/requests/annotation/payload/CreateAnnotationReply.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "text": "Reply text" -} \ No newline at end of file diff --git a/src/test/resources/requests/annotation/payload/EditAnnotationReply.json b/src/test/resources/requests/annotation/payload/EditAnnotationReply.json deleted file mode 100644 index 326d4b2..0000000 --- a/src/test/resources/requests/annotation/payload/EditAnnotationReply.json +++ /dev/null @@ -1 +0,0 @@ -"New reply text" \ No newline at end of file diff --git a/src/test/resources/requests/annotation/payload/MoveAnnotation.json b/src/test/resources/requests/annotation/payload/MoveAnnotation.json deleted file mode 100644 index 5a43541..0000000 --- a/src/test/resources/requests/annotation/payload/MoveAnnotation.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "x": 10.2, - "y": 7.5 -} \ No newline at end of file diff --git a/src/test/resources/requests/annotation/payload/MoveAnnotationMarker.json b/src/test/resources/requests/annotation/payload/MoveAnnotationMarker.json deleted file mode 100644 index 5a43541..0000000 --- a/src/test/resources/requests/annotation/payload/MoveAnnotationMarker.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "x": 10.2, - "y": 7.5 -} \ No newline at end of file diff --git a/src/test/resources/requests/annotation/payload/SetAnnotationAccess.json b/src/test/resources/requests/annotation/payload/SetAnnotationAccess.json deleted file mode 100644 index c227083..0000000 --- a/src/test/resources/requests/annotation/payload/SetAnnotationAccess.json +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/src/test/resources/requests/annotation/payload/SetAnnotationCollaborators.json b/src/test/resources/requests/annotation/payload/SetAnnotationCollaborators.json deleted file mode 100644 index 92df07b..0000000 --- a/src/test/resources/requests/annotation/payload/SetAnnotationCollaborators.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - "user_one@mailinator.com", - "user_two@mailinator.com" -] \ No newline at end of file diff --git a/src/test/resources/requests/annotation/payload/SetReviewerContacts.json b/src/test/resources/requests/annotation/payload/SetReviewerContacts.json deleted file mode 100644 index ac2c7fb..0000000 --- a/src/test/resources/requests/annotation/payload/SetReviewerContacts.json +++ /dev/null @@ -1,6 +0,0 @@ -[ - { - "emailAddress": "john@smith.com", - "FullName": "John Smith" - } -] \ No newline at end of file diff --git a/src/test/resources/requests/annotation/payload/SetReviewerRights.json b/src/test/resources/requests/annotation/payload/SetReviewerRights.json deleted file mode 100644 index 9766b14..0000000 --- a/src/test/resources/requests/annotation/payload/SetReviewerRights.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "id": 5334, - "guid": null, - "primary_email": "user_one@mailinator.com", - "firstname": "John", - "lastname": "Smith", - "access_rights": 15, - "color": 12582783, - "customEmailMessage": "Hi, reviewer!" - } -] \ No newline at end of file diff --git a/src/test/resources/requests/annotation/payload/SetSharedLinkAccessRights.json b/src/test/resources/requests/annotation/payload/SetSharedLinkAccessRights.json deleted file mode 100644 index 3f10ffe..0000000 --- a/src/test/resources/requests/annotation/payload/SetSharedLinkAccessRights.json +++ /dev/null @@ -1 +0,0 @@ -15 \ No newline at end of file diff --git a/src/test/resources/requests/ant/info/SetSharedLinkAccessRights b/src/test/resources/requests/ant/info/SetSharedLinkAccessRights index 9432b67..860a7ee 100644 --- a/src/test/resources/requests/ant/info/SetSharedLinkAccessRights +++ b/src/test/resources/requests/ant/info/SetSharedLinkAccessRights @@ -1,6 +1,6 @@ PUT /v2.0/ant/ea103bbe8cb8ce07/files/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca/sharedLinkAccessRights?signature=fqMIkTc3GIR%2ByqIG%2Bn6IXMuvJt4 -Host: dev-api-groupdocs.dynabic.com +Host: stage-api-groupdocs.dynabic.com Accept: application/json Content-Length: 2 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/async/info/AddJobDocument b/src/test/resources/requests/async/info/AddJobDocument index 4f99593..142fe6c 100644 --- a/src/test/resources/requests/async/info/AddJobDocument +++ b/src/test/resources/requests/async/info/AddJobDocument @@ -1,6 +1,6 @@ -PUT /v2.0/async/6d75a4d4db83f6fc/jobs/127987/files/c1cd4a9db84431900a5c2eda035ea5a0089ec7bd15babe8155da3c9c6ddf1c8b?signature=aKVlL%2FSVT0kpaDTJW5Vq089p50s +PUT /v2.0/async/ea103bbe8cb8ce07/jobs/801903/files/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca?signature=r1S5nYDnxAXNGfq0yOL%2FJijMjHs -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/async/info/AddJobDocumentUrl b/src/test/resources/requests/async/info/AddJobDocumentUrl index 52a0733..b1651cd 100644 --- a/src/test/resources/requests/async/info/AddJobDocumentUrl +++ b/src/test/resources/requests/async/info/AddJobDocumentUrl @@ -1,6 +1,6 @@ -PUT /v2.0/async/6d75a4d4db83f6fc/jobs/127995/urls?absolute_url=http://www.google.com&signature=Bo030QUoxwk%2BQ93R18FvtFJsA%2FA +PUT /v2.0/async/ea103bbe8cb8ce07/jobs/801911/urls?absolute_url=http://www.google.com&signature=loiBP2CRIOe%2B9KPZ2s6IKb4tzec -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/async/info/Convert b/src/test/resources/requests/async/info/Convert index 6c582f5..a3d4206 100644 --- a/src/test/resources/requests/async/info/Convert +++ b/src/test/resources/requests/async/info/Convert @@ -1,6 +1,6 @@ -POST /v2.0/async/6d75a4d4db83f6fc/files/54916c96d07b6149a032e297f90fd7f9d82e76e619e75188e2dd2f0df9cd72f7?emails_results=false&new_type=doc&signature=%2FWlzYx%2Fyq1nV%2BPVYej9eB%2BvN%2Biw +POST /v2.0/async/ea103bbe8cb8ce07/files/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca?emails_results=false&new_type=doc&signature=o1dHAk4gvfNkdxlWaeBed%2FE7%2BHY -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/async/info/CreateJob b/src/test/resources/requests/async/info/CreateJob index 91c4774..3f64c9d 100644 --- a/src/test/resources/requests/async/info/CreateJob +++ b/src/test/resources/requests/async/info/CreateJob @@ -1,6 +1,6 @@ -POST /v2.0/async/6d75a4d4db83f6fc/jobs?signature=jcMSDWqBsWAbTfrVCyYHWn6ib5M +POST /v2.0/async/ea103bbe8cb8ce07/jobs?signature=RcgLRdHEkWeIZzjqbNLfPWt8zPI -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 13 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/async/info/DeleteJobDocument b/src/test/resources/requests/async/info/DeleteJobDocument index 674e378..f04f8a5 100644 --- a/src/test/resources/requests/async/info/DeleteJobDocument +++ b/src/test/resources/requests/async/info/DeleteJobDocument @@ -1,6 +1,6 @@ -DELETE /v2.0/async/6d75a4d4db83f6fc/jobs/128078/documents/e1cd38aefa7683d999a82cc1c1f38e9a665a6014426fc0af48eefca0a2745a46?signature=tdEETVtcWMo%2FLkylR1mczw2BQiY +DELETE /v2.0/async/ea103bbe8cb8ce07/jobs/801994/documents/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca?signature=lkFNhzLkFcHKuTq0mDwFrYtJMvU -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/async/info/GetJob b/src/test/resources/requests/async/info/GetJob index 48a6b84..53be051 100644 --- a/src/test/resources/requests/async/info/GetJob +++ b/src/test/resources/requests/async/info/GetJob @@ -1,6 +1,6 @@ -GET /v2.0/async/6d75a4d4db83f6fc/jobs/128087?format=json&signature=Q8F8Q6WbVVWOfftcf5VB%2B3SM4a0 +GET /v2.0/async/ea103bbe8cb8ce07/jobs/802003?format=json&signature=PPxSpDwf1HjpHixHQtmT2PoTHNw -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/async/info/GetJobDocument b/src/test/resources/requests/async/info/GetJobDocument index 5ab71ea..5e8d22e 100644 --- a/src/test/resources/requests/async/info/GetJobDocument +++ b/src/test/resources/requests/async/info/GetJobDocument @@ -1,6 +1,6 @@ -GET /v2.0/async/6d75a4d4db83f6fc/jobs/128084/documents?signature=At1MjRyXSv%2FkOzak%2Bn8nEG3%2FjQ0 +GET /v2.0/async/ea103bbe8cb8ce07/jobs/802000/documents?signature=kgVOrrrYvyR0AK8Uq5Qr8RHE5k8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/async/info/GetJobs b/src/test/resources/requests/async/info/GetJobs index 45686a8..415d577 100644 --- a/src/test/resources/requests/async/info/GetJobs +++ b/src/test/resources/requests/async/info/GetJobs @@ -1,6 +1,6 @@ -GET /v2.0/async/6d75a4d4db83f6fc/jobs?page=0&count=3&signature=hSi6qR2pZCWZWBwi2gpgfS90zfE +GET /v2.0/async/ea103bbe8cb8ce07/jobs?page=0&count=3&signature=d5WHtNXCsuhxibJFV5G%2FaCQbRJQ -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/async/info/UpdateJob b/src/test/resources/requests/async/info/UpdateJob index 5112589..325c898 100644 --- a/src/test/resources/requests/async/info/UpdateJob +++ b/src/test/resources/requests/async/info/UpdateJob @@ -1,6 +1,6 @@ -PUT /v2.0/async/6d75a4d4db83f6fc/jobs/128097?signature=bdIxl87tZsBlAWBV9AXkiBCAutQ +PUT /v2.0/async/ea103bbe8cb8ce07/jobs/802013?signature=OBQ8bF2ZJCu8%2BgRlcR62IyVpmmM -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 22 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/document/info/GetDocumentAccessInfo b/src/test/resources/requests/document/info/GetDocumentAccessInfo deleted file mode 100644 index fe11fd9..0000000 --- a/src/test/resources/requests/document/info/GetDocumentAccessInfo +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/doc/6d75a4d4db83f6fc/files/131845/accessinfo?signature=KPBRw7LBMhi6Nn1Mq%2BD6fME4wCQ - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/document/info/GetDocumentFormats b/src/test/resources/requests/document/info/GetDocumentFormats deleted file mode 100644 index 66b57c6..0000000 --- a/src/test/resources/requests/document/info/GetDocumentFormats +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/doc/6d75a4d4db83f6fc/files/131846/formats?signature=CJD7iWw%2BKhYhTfcY6ZWm1gNFZlw - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/document/info/GetDocumentMetadata b/src/test/resources/requests/document/info/GetDocumentMetadata deleted file mode 100644 index b2f7055..0000000 --- a/src/test/resources/requests/document/info/GetDocumentMetadata +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/doc/6d75a4d4db83f6fc/files/73a1b218acecd280cb970b6394f7d6befa827993b695a741d3ed6a51cc6bdff6/metadata?signature=tFxE9pYRHG1PzfKPxzZVpaPH9XM - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/document/info/GetDocumentViews b/src/test/resources/requests/document/info/GetDocumentViews deleted file mode 100644 index 6db28a3..0000000 --- a/src/test/resources/requests/document/info/GetDocumentViews +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/doc/6d75a4d4db83f6fc/views?signature=NR5PLbEcrGFiZnrH6WQk3M8wiEw - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/document/info/GetFolderSharers b/src/test/resources/requests/document/info/GetFolderSharers deleted file mode 100644 index 7cb2bec..0000000 --- a/src/test/resources/requests/document/info/GetFolderSharers +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/doc/6d75a4d4db83f6fc/folders/62074/sharers?signature=ywVDa7qgM5Dtgm7G3aL0nMMIHRk - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/document/info/GetTemplateFields b/src/test/resources/requests/document/info/GetTemplateFields deleted file mode 100644 index c7c7b23..0000000 --- a/src/test/resources/requests/document/info/GetTemplateFields +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/doc/6d75a4d4db83f6fc/files/3436709742c791a470dcc2ca213e1139e3b512bedd28f76057230a45f1bee96d/fields?include_geometry=true&signature=WcJxHmI5vGcNbAI3hxC6hDbHNYM - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/document/info/SetDocumentAccessMode b/src/test/resources/requests/document/info/SetDocumentAccessMode deleted file mode 100644 index beb0c01..0000000 --- a/src/test/resources/requests/document/info/SetDocumentAccessMode +++ /dev/null @@ -1,6 +0,0 @@ -PUT /v2.0/doc/6d75a4d4db83f6fc/files/131854/accessinfo?mode=0&signature=Boi6RSogZbKGmtRV72BjwVTwSOU - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/document/info/ShareDocument b/src/test/resources/requests/document/info/ShareDocument deleted file mode 100644 index 13befc4..0000000 --- a/src/test/resources/requests/document/info/ShareDocument +++ /dev/null @@ -1,7 +0,0 @@ -PUT /v2.0/doc/6d75a4d4db83f6fc/files/131855/sharers?signature=lAwHwhjfzz3qVe7T3rJIwmyTFFA - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 55 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/document/info/ShareFolder b/src/test/resources/requests/document/info/ShareFolder deleted file mode 100644 index a144dfa..0000000 --- a/src/test/resources/requests/document/info/ShareFolder +++ /dev/null @@ -1,7 +0,0 @@ -PUT /v2.0/doc/6d75a4d4db83f6fc/folders/62091/sharers?signature=QtUkZ3Gbf6wJGa5nbPXMu5qLVno - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 55 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/document/info/UnshareDocument b/src/test/resources/requests/document/info/UnshareDocument deleted file mode 100644 index 5be6bb5..0000000 --- a/src/test/resources/requests/document/info/UnshareDocument +++ /dev/null @@ -1,6 +0,0 @@ -DELETE /v2.0/doc/6d75a4d4db83f6fc/files/131856/sharers?signature=rjlPec0TnE2%2FlpMQIpn80fl9frM - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/document/info/UnshareFolder b/src/test/resources/requests/document/info/UnshareFolder deleted file mode 100644 index c478eeb..0000000 --- a/src/test/resources/requests/document/info/UnshareFolder +++ /dev/null @@ -1,6 +0,0 @@ -DELETE /v2.0/doc/6d75a4d4db83f6fc/folders/62114/sharers?signature=C16fLAwBGklONUztaEcj%2Fg8zzSk - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/document/payload/ShareDocument.json b/src/test/resources/requests/document/payload/ShareDocument.json deleted file mode 100644 index c034d0c..0000000 --- a/src/test/resources/requests/document/payload/ShareDocument.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - "user_one@nonexistent.com", - "user_two@nonexistent.com" -] \ No newline at end of file diff --git a/src/test/resources/requests/document/payload/ShareFolder.json b/src/test/resources/requests/document/payload/ShareFolder.json deleted file mode 100644 index c034d0c..0000000 --- a/src/test/resources/requests/document/payload/ShareFolder.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - "user_one@nonexistent.com", - "user_two@nonexistent.com" -] \ No newline at end of file diff --git a/src/test/resources/requests/merge/info/AddDataSource b/src/test/resources/requests/merge/info/AddDataSource index 6fed26e..23ca2d8 100644 --- a/src/test/resources/requests/merge/info/AddDataSource +++ b/src/test/resources/requests/merge/info/AddDataSource @@ -1,6 +1,6 @@ -POST /v2.0/merge/6d75a4d4db83f6fc/datasources?signature=20hzpIjhtOraSzb0xqMsei0u4AM +POST /v2.0/merge/ea103bbe8cb8ce07/datasources?signature=oyke89GfiFhuTJfNTwBxIaoGqr0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 135 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/AddDocumentQuestionnaire b/src/test/resources/requests/merge/info/AddDocumentQuestionnaire index b753629..e9f62e1 100644 --- a/src/test/resources/requests/merge/info/AddDocumentQuestionnaire +++ b/src/test/resources/requests/merge/info/AddDocumentQuestionnaire @@ -1,6 +1,6 @@ -PUT /v2.0/merge/6d75a4d4db83f6fc/files/5f0789849a74049041f17c734d319448c812dc34f6af780a97668abc8a6eee6b/questionnaires/13729?signature=kdTTDMq5uYlSc0NpyroyQC3QgdY +PUT /v2.0/merge/ea103bbe8cb8ce07/files/d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc/questionnaires/66744?signature=R%2BvgxcblTxRJup6NhFjtY%2Ff%2FzlU -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/AddJobDocumentDataSource b/src/test/resources/requests/merge/info/AddJobDocumentDataSource index a3435a7..bff7918 100644 --- a/src/test/resources/requests/merge/info/AddJobDocumentDataSource +++ b/src/test/resources/requests/merge/info/AddJobDocumentDataSource @@ -1,6 +1,6 @@ -PUT /v2.0/merge/6d75a4d4db83f6fc/jobs/128205/files/131866/datasources/4021?signature=zuVsV6SVHr3gkS84KHYb%2Fvc28io +PUT /v2.0/merge/ea103bbe8cb8ce07/jobs/802165/files/317869/datasources/21918?signature=twJxryEgtTvbf2VACCngJ3%2F5qL4 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/AddQuestionnaireCollector b/src/test/resources/requests/merge/info/AddQuestionnaireCollector index 4976f0d..8d2e092 100644 --- a/src/test/resources/requests/merge/info/AddQuestionnaireCollector +++ b/src/test/resources/requests/merge/info/AddQuestionnaireCollector @@ -1,6 +1,6 @@ -POST /v2.0/merge/6d75a4d4db83f6fc/questionnaires/58a8144d45ce7e56f2a0eb3dfda72d79/collectors?signature=2eBz05%2B9RmoRafdRIYGTZuKEQG8 +POST /v2.0/merge/ea103bbe8cb8ce07/questionnaires/86877552d95f953a98e15bcfdd06a2dc/collectors?signature=QUSwo7TZP2uOW28wqoBA7wJTVOw -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 375 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/AddQuestionnaireExecution b/src/test/resources/requests/merge/info/AddQuestionnaireExecution index d658ba9..9cbfb1f 100644 --- a/src/test/resources/requests/merge/info/AddQuestionnaireExecution +++ b/src/test/resources/requests/merge/info/AddQuestionnaireExecution @@ -1,6 +1,6 @@ -POST /v2.0/merge/6d75a4d4db83f6fc/questionnaires/collectors/5fb9ffe283dce10a8cfeeb92c728831f/executions?signature=6hFK6cEmstsiOYQqGgPn%2FURcMvE +POST /v2.0/merge/ea103bbe8cb8ce07/questionnaires/collectors/87ff1a0e14ad609463d05cc5204ff5ac/executions?signature=uST%2FZt6KBMFV27uko6GWMXMpHsA -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 58 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/CreateDocumentQuestionnaire b/src/test/resources/requests/merge/info/CreateDocumentQuestionnaire index e3c2123..8f5bcc3 100644 --- a/src/test/resources/requests/merge/info/CreateDocumentQuestionnaire +++ b/src/test/resources/requests/merge/info/CreateDocumentQuestionnaire @@ -1,6 +1,6 @@ -POST /v2.0/merge/6d75a4d4db83f6fc/files/87b34bbb1d468fe4447752ae146e8e79087866b75fc4940ca5bc2c7598d178e5/questionnaires?signature=rXM8ajj08J1EmXqB9%2B%2FEzYnfTJk +POST /v2.0/merge/ea103bbe8cb8ce07/files/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca/questionnaires?signature=5CU3VuE%2Fjh%2Bsv5JwbXCD0SylSyU -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 261 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/CreateQuestionnaire b/src/test/resources/requests/merge/info/CreateQuestionnaire index b6082d8..3b1499c 100644 --- a/src/test/resources/requests/merge/info/CreateQuestionnaire +++ b/src/test/resources/requests/merge/info/CreateQuestionnaire @@ -1,6 +1,6 @@ -POST /v2.0/merge/6d75a4d4db83f6fc/questionnaires?signature=Hv%2BM1TOSksK2BFD%2BJp4DCtBz%2BWI +POST /v2.0/merge/ea103bbe8cb8ce07/questionnaires?signature=4FqyegRm3alcaO9PK6Pc6k%2FtFOI -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 261 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/DeleteQuestionnaireCollector b/src/test/resources/requests/merge/info/DeleteQuestionnaireCollector index 8c62767..95c33d5 100644 --- a/src/test/resources/requests/merge/info/DeleteQuestionnaireCollector +++ b/src/test/resources/requests/merge/info/DeleteQuestionnaireCollector @@ -1,6 +1,6 @@ -DELETE /v2.0/merge/6d75a4d4db83f6fc/questionnaires/collectors/0b2c7388a88a3db8ea09965192e338e6?signature=su27DKnP%2Bc0EX6%2FJM5yLwElLgqo +DELETE /v2.0/merge/ea103bbe8cb8ce07/questionnaires/collectors/a5673a4772b28d8f2bb81f5a745d4f32?signature=Oobyp52%2BjW84nVbfLaXhyiJMAZo -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/DeleteQuestionnaireExecution b/src/test/resources/requests/merge/info/DeleteQuestionnaireExecution index 3cfaa0c..8dd0f70 100644 --- a/src/test/resources/requests/merge/info/DeleteQuestionnaireExecution +++ b/src/test/resources/requests/merge/info/DeleteQuestionnaireExecution @@ -1,6 +1,6 @@ -DELETE /v2.0/merge/6d75a4d4db83f6fc/questionnaires/executions/5178?signature=GCUQZu66CtbOxUSDIJwa0wV6Y1k +DELETE /v2.0/merge/ea103bbe8cb8ce07/questionnaires/executions/20994?signature=BvUh5RxpndCOAqPwFB1y2qvS2h0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetDataSource b/src/test/resources/requests/merge/info/GetDataSource index 75ef604..ca9c9e3 100644 --- a/src/test/resources/requests/merge/info/GetDataSource +++ b/src/test/resources/requests/merge/info/GetDataSource @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/datasources/4025?field=Test1,Nonexistent&signature=fqEzln%2Bm5bHE%2FXdRro1XboqDoUI +GET /v2.0/merge/ea103bbe8cb8ce07/datasources/21922?field=Test1,Nonexistent&signature=4QrIQv7d%2B8otcg83ELid726hhrY -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetDocumentQuestionnaires b/src/test/resources/requests/merge/info/GetDocumentQuestionnaires index d31a81d..427016d 100644 --- a/src/test/resources/requests/merge/info/GetDocumentQuestionnaires +++ b/src/test/resources/requests/merge/info/GetDocumentQuestionnaires @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/files/8955cfffd627e3d8f90c85559045c255d70b2dc9f28d510f7ea4d4e79a90a8e5/questionnaires?signature=S7vzHwOjIMxFz8aI%2Flb32KkPqKY +GET /v2.0/merge/ea103bbe8cb8ce07/files/d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc/questionnaires?signature=uvX%2FChoWZ8b2oWAJi262JOk8WRs -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetQuestionnaire b/src/test/resources/requests/merge/info/GetQuestionnaire index b84b54c..4b3b0f5 100644 --- a/src/test/resources/requests/merge/info/GetQuestionnaire +++ b/src/test/resources/requests/merge/info/GetQuestionnaire @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/questionnaires/13829?signature=s674Gyk%2ByigFViM7FEoYMOwmpjQ +GET /v2.0/merge/ea103bbe8cb8ce07/questionnaires/66846?signature=DB7bX5jhR%2BJEhkSKgrKpeubHbw0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetQuestionnaireCollector b/src/test/resources/requests/merge/info/GetQuestionnaireCollector index a840206..338401c 100644 --- a/src/test/resources/requests/merge/info/GetQuestionnaireCollector +++ b/src/test/resources/requests/merge/info/GetQuestionnaireCollector @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/questionnaires/collectors/4931d0b704f569de92fa702dce71677e?signature=RDsmzTo1iqlyS%2BmMSdM%2BiIN9S8k +GET /v2.0/merge/ea103bbe8cb8ce07/questionnaires/collectors/47fbcd1b7b1b887d61cc1e1d64460d2c?signature=Paf0KqidNXXXvsf7CG7yiMG5I%2Bs -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetQuestionnaireCollectorExecutions b/src/test/resources/requests/merge/info/GetQuestionnaireCollectorExecutions index d640457..f0a5c74 100644 --- a/src/test/resources/requests/merge/info/GetQuestionnaireCollectorExecutions +++ b/src/test/resources/requests/merge/info/GetQuestionnaireCollectorExecutions @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/questionnaires/collectors/4a6fe32cc688c557c9380444d1939a50/executions?signature=v2DBy3LB0HSr%2B7xrNFbuL%2BELztc +GET /v2.0/merge/ea103bbe8cb8ce07/questionnaires/collectors/2444bf4c0dc68eda0db3b21b3ba8095d/executions?signature=Gtgq%2FondxD9NT37i6C0E8mFsEi8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetQuestionnaireCollectors b/src/test/resources/requests/merge/info/GetQuestionnaireCollectors index 14adcf1..4da206e 100644 --- a/src/test/resources/requests/merge/info/GetQuestionnaireCollectors +++ b/src/test/resources/requests/merge/info/GetQuestionnaireCollectors @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/questionnaires/8962fe81d50e1336121c6c5ade2646f3/collectors?signature=NurezoT4qqa8twOabLZ0kAhv95E +GET /v2.0/merge/ea103bbe8cb8ce07/questionnaires/cf77464f2dd3659be0ca20dab3c7efcf/collectors?signature=skM9G%2Bo6bxeDVb%2BUnefBCGt7Jtc -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetQuestionnaireDataSources b/src/test/resources/requests/merge/info/GetQuestionnaireDataSources index d2b40f0..685469e 100644 --- a/src/test/resources/requests/merge/info/GetQuestionnaireDataSources +++ b/src/test/resources/requests/merge/info/GetQuestionnaireDataSources @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/questionnaires/13785/datasources?signature=72MnuFjCkkliUGKCbholUaNW4vg +GET /v2.0/merge/ea103bbe8cb8ce07/questionnaires/66801/datasources?signature=ZAEAB5YQC6H3KxwQlyxup4niRgw -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetQuestionnaireExecution b/src/test/resources/requests/merge/info/GetQuestionnaireExecution index aeead07..b635135 100644 --- a/src/test/resources/requests/merge/info/GetQuestionnaireExecution +++ b/src/test/resources/requests/merge/info/GetQuestionnaireExecution @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/questionnaires/executions/8237cb9a273d9239c61564867e053825?signature=%2FKi%2Fagzt1O6If9FSlvqcuHYcOcI +GET /v2.0/merge/ea103bbe8cb8ce07/questionnaires/executions/faa1a1513b08db2ec00effe3ca46219c?signature=h284RL578xJE0EvKsR7%2BVPT6Ejc -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetQuestionnaireExecutions b/src/test/resources/requests/merge/info/GetQuestionnaireExecutions index 489c674..b09fa3e 100644 --- a/src/test/resources/requests/merge/info/GetQuestionnaireExecutions +++ b/src/test/resources/requests/merge/info/GetQuestionnaireExecutions @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/questionnaires/66bb348d8935970351c0e27534c7878a/executions?signature=YOBIU2CGO85MA8PV0TweWwxM0Bc +GET /v2.0/merge/ea103bbe8cb8ce07/questionnaires/5288badbf00e34acca2b524432089a4a/executions?signature=mtqb8%2BtsWC3ZNAfZ8mEWIdRZlS0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetQuestionnaireFields b/src/test/resources/requests/merge/info/GetQuestionnaireFields index f0d72b4..32c0789 100644 --- a/src/test/resources/requests/merge/info/GetQuestionnaireFields +++ b/src/test/resources/requests/merge/info/GetQuestionnaireFields @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/questionnaires/95b9e5a8870e8351b7664c3244e0917e/fields?include_geometry=true&signature=5AAJv0UrO3xv6cKuoV9s%2Fj2Q%2BY0 +GET /v2.0/merge/ea103bbe8cb8ce07/questionnaires/0d6cde03cee43366dcc03b2f1a71576f/fields?include_geometry=true&signature=%2BA2Ghuy%2BTmFhxjpnWyzmM3Pk%2FAI -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetQuestionnaireMetadata b/src/test/resources/requests/merge/info/GetQuestionnaireMetadata index a41bda3..96a5e15 100644 --- a/src/test/resources/requests/merge/info/GetQuestionnaireMetadata +++ b/src/test/resources/requests/merge/info/GetQuestionnaireMetadata @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/questionnaires/58fe8c2a26e0e0838b04b84fb250d5c3/metadata?signature=tTf5oyj19oUgnY73PspSW%2BJOyKg +GET /v2.0/merge/ea103bbe8cb8ce07/questionnaires/9a0112fa9de14991787d88b85d0fd74f/metadata?signature=4ui5U2%2B5%2FA5jWiLdRo6F3EeFNEc -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/GetTemplates b/src/test/resources/requests/merge/info/GetTemplates index 2726d2a..3d5b510 100644 --- a/src/test/resources/requests/merge/info/GetTemplates +++ b/src/test/resources/requests/merge/info/GetTemplates @@ -1,6 +1,6 @@ -GET /v2.0/merge/6d75a4d4db83f6fc/templates?signature=pDT41q0K3LcrtXeQrpeh6fna3nE +GET /v2.0/merge/ea103bbe8cb8ce07/templates?signature=VA2SDPAWo4jQZbNoGYn78yhz17o -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/MergeDatasource b/src/test/resources/requests/merge/info/MergeDatasource index bdb0be5..cbb7ce3 100644 --- a/src/test/resources/requests/merge/info/MergeDatasource +++ b/src/test/resources/requests/merge/info/MergeDatasource @@ -1,6 +1,6 @@ -POST /v2.0/merge/6d75a4d4db83f6fc/files/412f57b1a728afb0a87f8501dbb3372eb0273a5f7bbb9d56f24602051a73513f/datasources/4051?signature=Ss19E4R7iYlxVW6eJrZTP6xo7tY +POST /v2.0/merge/ea103bbe8cb8ce07/files/d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc/datasources/21948?signature=byEW4Jpi12STJtWUc%2BW4ozhvJjI -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/MergeDatasourceFields b/src/test/resources/requests/merge/info/MergeDatasourceFields index ae36c3a..820272c 100644 --- a/src/test/resources/requests/merge/info/MergeDatasourceFields +++ b/src/test/resources/requests/merge/info/MergeDatasourceFields @@ -1,6 +1,6 @@ -POST /v2.0/merge/6d75a4d4db83f6fc/files/2327da14c3e36f6e7f134905ca65888d79a27295e173e2fe2408318058f925e1/datasources?signature=Z58gz54FbfjwVcAZW3N2AekyxAE +POST /v2.0/merge/ea103bbe8cb8ce07/files/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca/datasources?signature=gMgH0WJ5cKqGtIBi0wgcaELzxcE -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 66 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/UpdateDataSource b/src/test/resources/requests/merge/info/UpdateDataSource index d4b9f1d..e780280 100644 --- a/src/test/resources/requests/merge/info/UpdateDataSource +++ b/src/test/resources/requests/merge/info/UpdateDataSource @@ -1,6 +1,6 @@ -PUT /v2.0/merge/6d75a4d4db83f6fc/datasources/4057?signature=Bz6fYM5PagZwn8sueXYMcqbXXc4 +PUT /v2.0/merge/ea103bbe8cb8ce07/datasources/21954?signature=40DYqxBjXt2Ic7sXiK6DrGfz0Uo -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 135 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/UpdateQuestionnaire b/src/test/resources/requests/merge/info/UpdateQuestionnaire index dcb4b2f..01918d5 100644 --- a/src/test/resources/requests/merge/info/UpdateQuestionnaire +++ b/src/test/resources/requests/merge/info/UpdateQuestionnaire @@ -1,6 +1,6 @@ -PUT /v2.0/merge/6d75a4d4db83f6fc/questionnaires/13862?signature=VFccWtLKZUjEgUBRoCHyD%2BeJLvM +PUT /v2.0/merge/ea103bbe8cb8ce07/questionnaires/66879?signature=aKtUTwktvULEJZ%2F91WdBl05rLgM -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 261 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/info/UpdateQuestionnaireCollector b/src/test/resources/requests/merge/info/UpdateQuestionnaireCollector index 4a9a8ec..85e2285 100644 --- a/src/test/resources/requests/merge/info/UpdateQuestionnaireCollector +++ b/src/test/resources/requests/merge/info/UpdateQuestionnaireCollector @@ -1,7 +1,7 @@ -PUT /v2.0/merge/6d75a4d4db83f6fc/questionnaires/collectors/3fe2d034a243e588bae0bbef388a023a?signature=eJ9B2%2BPd4eTyl7%2B3qMI48ZtEgts +PUT /v2.0/merge/ea103bbe8cb8ce07/questionnaires/collectors/fec7f534f072cce96066a2f8933338a6?signature=c0d51m9HfVn7ILBnusjSHn89cGk -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 427 +Content-Length: 428 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/merge/info/UpdateQuestionnaireExecution b/src/test/resources/requests/merge/info/UpdateQuestionnaireExecution index 3859f07..2980d08 100644 --- a/src/test/resources/requests/merge/info/UpdateQuestionnaireExecution +++ b/src/test/resources/requests/merge/info/UpdateQuestionnaireExecution @@ -1,7 +1,7 @@ -PUT /v2.0/merge/6d75a4d4db83f6fc/questionnaires/executions/5215?signature=BWuJf2qGxlPplOEmljyQ7N3h%2Bo4 +PUT /v2.0/merge/ea103bbe8cb8ce07/questionnaires/executions/21032?signature=%2FtTYhXDWDRGrvTQI3iyMXN9KLaQ -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 354 +Content-Length: 363 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/merge/info/UpdateQuestionnaireExecutionStatus b/src/test/resources/requests/merge/info/UpdateQuestionnaireExecutionStatus index 1e00342..a464757 100644 --- a/src/test/resources/requests/merge/info/UpdateQuestionnaireExecutionStatus +++ b/src/test/resources/requests/merge/info/UpdateQuestionnaireExecutionStatus @@ -1,6 +1,6 @@ -PUT /v2.0/merge/6d75a4d4db83f6fc/questionnaires/executions/5223/status?signature=Twl7KFTpPWRjtYyTWEqwtjORKTk +PUT /v2.0/merge/ea103bbe8cb8ce07/questionnaires/executions/21040/status?signature=yqajq6FJSF3YSxDvLgQ7%2BWkFsXI -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 11 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/merge/payload/AddDataSource.json b/src/test/resources/requests/merge/payload/AddDataSource.json index e7f4861..1c4ef95 100644 --- a/src/test/resources/requests/merge/payload/AddDataSource.json +++ b/src/test/resources/requests/merge/payload/AddDataSource.json @@ -1,5 +1,5 @@ { - "questionnaire_id": 13726, + "questionnaire_id": 66741, "descr": "Datasource description", "fields": [ { diff --git a/src/test/resources/requests/merge/payload/AddQuestionnaireCollector.json b/src/test/resources/requests/merge/payload/AddQuestionnaireCollector.json index c51fb95..d749d25 100644 --- a/src/test/resources/requests/merge/payload/AddQuestionnaireCollector.json +++ b/src/test/resources/requests/merge/payload/AddQuestionnaireCollector.json @@ -23,8 +23,8 @@ ] } ], - "id": 13737, - "guid": "58a8144d45ce7e56f2a0eb3dfda72d79" + "id": 66752, + "guid": "86877552d95f953a98e15bcfdd06a2dc" }, "type": "Link" } \ No newline at end of file diff --git a/src/test/resources/requests/merge/payload/UpdateDataSource.json b/src/test/resources/requests/merge/payload/UpdateDataSource.json index e7234a3..c206887 100644 --- a/src/test/resources/requests/merge/payload/UpdateDataSource.json +++ b/src/test/resources/requests/merge/payload/UpdateDataSource.json @@ -1,5 +1,5 @@ { - "questionnaire_id": 13836, + "questionnaire_id": 66853, "descr": "Datasource description", "fields": [ { diff --git a/src/test/resources/requests/merge/payload/UpdateQuestionnaireCollector.json b/src/test/resources/requests/merge/payload/UpdateQuestionnaireCollector.json index 2566e56..9452ce1 100644 --- a/src/test/resources/requests/merge/payload/UpdateQuestionnaireCollector.json +++ b/src/test/resources/requests/merge/payload/UpdateQuestionnaireCollector.json @@ -23,10 +23,10 @@ ] } ], - "id": 13840, - "guid": "b1bccd89cfca692b36834a068f8478a1" + "id": 66857, + "guid": "f19c9c3d19095b66633cead91d39e9c1" }, "type": "Link", - "id": 7074, - "guid": "3fe2d034a243e588bae0bbef388a023a" + "id": 23436, + "guid": "fec7f534f072cce96066a2f8933338a6" } \ No newline at end of file diff --git a/src/test/resources/requests/merge/payload/UpdateQuestionnaireExecution.json b/src/test/resources/requests/merge/payload/UpdateQuestionnaireExecution.json index b1df492..86f29af 100644 --- a/src/test/resources/requests/merge/payload/UpdateQuestionnaireExecution.json +++ b/src/test/resources/requests/merge/payload/UpdateQuestionnaireExecution.json @@ -1,9 +1,9 @@ { - "id": 5215, - "guid": "2e8bda202abc532c79f85f6ac7cff1aa", - "collector_id": 7079, - "collector_guid": "f55cff54bf229d1f7733acf2f9880496", - "questionnaire_name": "Test Questionnaire", + "id": 21032, + "guid": "6a8c743b8965c3d59c93dc5f7ae7d950", + "collector_id": 23441, + "collector_guid": "90f89a04b19ec88ba1bda4641e669bbb", + "questionnaire_name": "Test Questionnaire (1135)", "status": "Submitted", "executive": { "primary_email": "user_two@nonexistent.com" diff --git a/src/test/resources/requests/signature/info/AddContact b/src/test/resources/requests/signature/info/AddContact index 227eb99..327dd71 100644 --- a/src/test/resources/requests/signature/info/AddContact +++ b/src/test/resources/requests/signature/info/AddContact @@ -1,7 +1,7 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/contact?signature=GS6NXIeTWyN48vwwrrJeDSrReSU +POST /v2.0/signature/ea103bbe8cb8ce07/contact?signature=qYDYgzb81v69RTdDXDByslWv5W8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 91 +Content-Length: 89 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/AddContactIntegration b/src/test/resources/requests/signature/info/AddContactIntegration deleted file mode 100644 index 13ff2c2..0000000 --- a/src/test/resources/requests/signature/info/AddContactIntegration +++ /dev/null @@ -1,7 +0,0 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/integration?signature=dOvDfgjTnxlshv5Wg8h%2BJTUXwNc - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 94 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/AddPredefinedList b/src/test/resources/requests/signature/info/AddPredefinedList index caada0f..cd4ef8a 100644 --- a/src/test/resources/requests/signature/info/AddPredefinedList +++ b/src/test/resources/requests/signature/info/AddPredefinedList @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/list?signature=JqXIspS9Hek4uG2uS7uuiIIK3XM +POST /v2.0/signature/ea103bbe8cb8ce07/list?signature=rIv%2BTFU8VnJm5au7nEaBbwBTbOI -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 83 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/AddSignatureEnvelopeDocument b/src/test/resources/requests/signature/info/AddSignatureEnvelopeDocument index 53d382d..7b6aae7 100644 --- a/src/test/resources/requests/signature/info/AddSignatureEnvelopeDocument +++ b/src/test/resources/requests/signature/info/AddSignatureEnvelopeDocument @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/envelopes/042ec276737be795b2f6951bd18aab3f/document/e6cf890b46f7d4ac0386ff3d6ff4089e1e6642cc4114ad717d8640cc68195a02?signature=povjHicGLHOf13HzHN99796kfjw +POST /v2.0/signature/ea103bbe8cb8ce07/envelopes/2346321ea0492d2dd1ac9de915c24dd3/document/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca?signature=cieWdm0z%2FzmKFbDkRJcmLTR215g -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/AddSignatureEnvelopeField b/src/test/resources/requests/signature/info/AddSignatureEnvelopeField index 01b40ba..6b58e63 100644 --- a/src/test/resources/requests/signature/info/AddSignatureEnvelopeField +++ b/src/test/resources/requests/signature/info/AddSignatureEnvelopeField @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/envelopes/643bd335f61e530116e38ca01ba0e84a/documents/495b3a9e915198169f65140e97ae633081d25cca6262d937827465d8de8dc223/recipient/98f9fbc6fada83c9fac01e879c5a409c/field/0545e589fb3e27c9bb7a1f59d0e3fcb9?signature=sm8%2B1eHlLuNst0a3fWf1llyGdvg +POST /v2.0/signature/ea103bbe8cb8ce07/envelopes/0cd5d92195bcde2133abc831856c3c0b/documents/6c6cd2b7d02ad6704c2f45ab3d75b847679dc815518b08a8d83be512b35d514c/recipient/eaace2d6f009b1926c46ae24710b7ac9/field/0545e589fb3e27c9bb7a1f59d0e3fcb9?signature=U1cB2msCRjy%2BR8%2FC%2BMip1gyHx4U -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 384 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/AddSignatureEnvelopeRecipient b/src/test/resources/requests/signature/info/AddSignatureEnvelopeRecipient index c779a4f..ff44d42 100644 --- a/src/test/resources/requests/signature/info/AddSignatureEnvelopeRecipient +++ b/src/test/resources/requests/signature/info/AddSignatureEnvelopeRecipient @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/envelopes/83fe8616518c226a4a3813e2ac83406f/recipient?email=recipient-5564351491703736@mailinator.com&firstname=John&lastname=Smith&role=693e6cee8a4a21285f86930491b455ec&order=1&signature=ap4FPDlGMntp2kAdCtvekoPCc7s +POST /v2.0/signature/ea103bbe8cb8ce07/envelopes/3e0250b180c6ecb0cfae5281d0ac6a64/recipient?email=recipient-6207312293153898@mailinator.com&firstname=John&lastname=Smith&role=693e6cee8a4a21285f86930491b455ec&order=1&signature=pLWxQ8ho5HU1d8YAFhntPKcLbKg -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/AddSignatureFormDocument b/src/test/resources/requests/signature/info/AddSignatureFormDocument index fec661a..db29de7 100644 --- a/src/test/resources/requests/signature/info/AddSignatureFormDocument +++ b/src/test/resources/requests/signature/info/AddSignatureFormDocument @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/forms/498a80476c5720f21030e2ffcc049117/document/18722d02f9451ceec08b7be5c395d84d734b395c28d61217a8996ce9aea5d78a?signature=uLasmVZjg2vCeSg17F3U%2FCirK1g +POST /v2.0/signature/ea103bbe8cb8ce07/forms/ce2a2c36378ad1390731a16e634b4ee6/document/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca?signature=oVzyS0EfrQVEtJs8l9pExG8G7l4 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/AddSignatureFormField b/src/test/resources/requests/signature/info/AddSignatureFormField index 16b8cd3..b31c81e 100644 --- a/src/test/resources/requests/signature/info/AddSignatureFormField +++ b/src/test/resources/requests/signature/info/AddSignatureFormField @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/forms/ab7cddcb676ebffc5c47301b97573b93/documents/9789f1382a993d14938abf9e350e10c45a9c7bd10ce6aab649f4a83838710fb0/field/0545e589fb3e27c9bb7a1f59d0e3fcb9?signature=DaHa%2BqocfqszKlFyPybz%2BcivQ%2BI +POST /v2.0/signature/ea103bbe8cb8ce07/forms/cfe3b0c0d78efd69d8604d12fcd31485/documents/bcff63ed734a125995c65abbed33b6bd77b2f8658761db0aeac8a527678def0f/field/0545e589fb3e27c9bb7a1f59d0e3fcb9?signature=E2bLI4iBl8Gnrj8DItB8%2F9O0DdM -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 384 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/AddSignatureTemplateDocument b/src/test/resources/requests/signature/info/AddSignatureTemplateDocument index e59159c..c4cc2e4 100644 --- a/src/test/resources/requests/signature/info/AddSignatureTemplateDocument +++ b/src/test/resources/requests/signature/info/AddSignatureTemplateDocument @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/templates/114534419303120b11eb21b81ea5c47e/document/785f94d248a8379593d8c8efa1d572c383c3586ef5b0a76334ffc06b551cf073?signature=RK7jm%2Bht0jglISGMseop7cIUd2g +POST /v2.0/signature/ea103bbe8cb8ce07/templates/0ef230028c012ba27ca94fcaf5c045f1/document/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca?signature=zhRKpjoPPk9amnUI%2BcC5EboVl8g -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/AddSignatureTemplateField b/src/test/resources/requests/signature/info/AddSignatureTemplateField index 8d1d9a5..7940987 100644 --- a/src/test/resources/requests/signature/info/AddSignatureTemplateField +++ b/src/test/resources/requests/signature/info/AddSignatureTemplateField @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/templates/90cc99ab1019ac2365bc6b10d329bbf6/documents/089ae7db282cc58b7e340c0d69f86490e945a773738aaa900e03e53c0986c3d2/recipient/2c91f450f22d34655cf668b70a358e68/field/0545e589fb3e27c9bb7a1f59d0e3fcb9?signature=8py3oWAYqRa8gtBkRlq6F29%2F1EY +POST /v2.0/signature/ea103bbe8cb8ce07/templates/07ebf782805ab99b4203389ef0eb0aa6/documents/f487ba8303555ae51dc04f911f534d33af24fb93d0de0a1ce332ae051e7e99e3/recipient/253b7da38fa68a43f2a7053fe3a1bf7f/field/0545e589fb3e27c9bb7a1f59d0e3fcb9?signature=DLOajfizKVhMMpOKQ9bWdj3gxII -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 384 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/AddSignatureTemplateRecipient b/src/test/resources/requests/signature/info/AddSignatureTemplateRecipient index 60d6440..e9accee 100644 --- a/src/test/resources/requests/signature/info/AddSignatureTemplateRecipient +++ b/src/test/resources/requests/signature/info/AddSignatureTemplateRecipient @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/templates/46ae9541d2602d575ce9a8e21b2998ef/recipient?nickname=John%20Smith&role=693e6cee8a4a21285f86930491b455ec&order=1&signature=htjv3slS9kmyTBP32OICLSThgI0 +POST /v2.0/signature/ea103bbe8cb8ce07/templates/eb105a7aeccf7169100630f8c2245fee/recipient?nickname=John%20Smith&role=693e6cee8a4a21285f86930491b455ec&order=1&signature=iF0yJHlJ58mROrkORwqfrsVrrNY -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/ArchiveSignatureEnvelope b/src/test/resources/requests/signature/info/ArchiveSignatureEnvelope deleted file mode 100644 index 2e59e4f..0000000 --- a/src/test/resources/requests/signature/info/ArchiveSignatureEnvelope +++ /dev/null @@ -1,6 +0,0 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/8fdccfaacae31afcbcb6a0a42d48c1aa/archive?signature=ks13sX%2Bi6BbJ9dU1P2ZhDUWG8w8 - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/ArchiveSignatureForm b/src/test/resources/requests/signature/info/ArchiveSignatureForm index f73fd9b..1004de3 100644 --- a/src/test/resources/requests/signature/info/ArchiveSignatureForm +++ b/src/test/resources/requests/signature/info/ArchiveSignatureForm @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/forms/eb28875d93135a63613603361193b49e/archive?signature=SaY0BN5N8D8CLuGWG6L2F23MqRo +PUT /v2.0/signature/ea103bbe8cb8ce07/forms/9a8c69f818c8956c3bdf3faaa148cd4f/archive?signature=HHYVRxGeiynSN4XZ0AXZwxgqZgE -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/AssignSignatureEnvelopeField b/src/test/resources/requests/signature/info/AssignSignatureEnvelopeField index e8da683..f37f2d7 100644 --- a/src/test/resources/requests/signature/info/AssignSignatureEnvelopeField +++ b/src/test/resources/requests/signature/info/AssignSignatureEnvelopeField @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/envelopes/408ad036b05f0c5db859a93a046addd1/documents/f55bef07203f5db6505f3cda20194a52a57ceaed4b8bb756a10906d056e82839/field/92098ef92e8f3de69f5c616a064fe9f4?signature=felNyuUbIwT0II1QqaI4FIJaOAc +POST /v2.0/signature/ea103bbe8cb8ce07/envelopes/0cbb85fe4ab392429cef97f0fc4f1b63/documents/430dbf5f86250f1e49a2a81ae61cb0d002a154fc8e9d896d7c82e679b053fdfb/field/5f54ae3eed76028049d0e80c0ae7d150?signature=TJKOTESa4kWp8VdMCKTWRnEAvuc -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 109 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/AssignSignatureTemplateField b/src/test/resources/requests/signature/info/AssignSignatureTemplateField index a0dc9c3..be344ae 100644 --- a/src/test/resources/requests/signature/info/AssignSignatureTemplateField +++ b/src/test/resources/requests/signature/info/AssignSignatureTemplateField @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/templates/a505ffbc791ef66f616f11431d02f13c/documents/1336b66d7c9dd19ce13d1cf72c5b6e75999578d9858ab32ae11f3a1762970d47/field/26842366912a75c8dce11eec1eea472a?signature=8JGvGBqvcZW6RF%2BY3se1CG8trkI +POST /v2.0/signature/ea103bbe8cb8ce07/templates/3d5b8a8183c2303f4f39ae52482f1cea/documents/ef18ca622c70d042d0d90e0b2bd29d886b9fe63c537b80ade8dc2e12cad214ec/field/04bc674b1ee8d501625e413bc6e75c49?signature=G6Gy5JTTlaNgqF6HMHMLoA1uKio -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 109 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/CancelSignatureEnvelope b/src/test/resources/requests/signature/info/CancelSignatureEnvelope deleted file mode 100644 index 10da329..0000000 --- a/src/test/resources/requests/signature/info/CancelSignatureEnvelope +++ /dev/null @@ -1,6 +0,0 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/57b5b29141159edaf4fb2057901404dd/cancel?signature=6NjUuzwPLi5ztRP3LZepdEmsjfE - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/CompleteSignatureForm b/src/test/resources/requests/signature/info/CompleteSignatureForm index 7c13e69..5bdf67f 100644 --- a/src/test/resources/requests/signature/info/CompleteSignatureForm +++ b/src/test/resources/requests/signature/info/CompleteSignatureForm @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/forms/7e84990894202f3ae0d3306fcb121552/complete?signature=dw%2BQK6p0CUXBJ1jbKMqXmT%2BC9Nw +PUT /v2.0/signature/ea103bbe8cb8ce07/forms/840374452f5457d31b276bff13e219c9/complete?signature=zshSAYIaEDe%2F3%2B0XHjeuj6A%2B7jc -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/CreateSignature b/src/test/resources/requests/signature/info/CreateSignature index 8a37334..df9b16b 100644 --- a/src/test/resources/requests/signature/info/CreateSignature +++ b/src/test/resources/requests/signature/info/CreateSignature @@ -1,7 +1,7 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/signature?name=Signature%20622123269984327&signature=b86HKYgHR5ReqO9gqNTr2ACHi34 +POST /v2.0/signature/ea103bbe8cb8ce07/signature?name=Signature%203022425752990485&signature=rl6nNmD5EEqBXCsPg72Zwkr9CO8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 174 +Content-Length: 175 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/CreateSignatureEnvelope b/src/test/resources/requests/signature/info/CreateSignatureEnvelope index 34fa261..10a0227 100644 --- a/src/test/resources/requests/signature/info/CreateSignatureEnvelope +++ b/src/test/resources/requests/signature/info/CreateSignatureEnvelope @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/envelope?name=Envelope%20Test%207812232806311765&signature=gMFEz0JknzyA5NE1kk3Y7o3yaxc +POST /v2.0/signature/ea103bbe8cb8ce07/envelope?name=Envelope%20Test%208137565865601627&signature=Di0oWrE2HXPWWhJhSDenXrcEa40 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 224 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/CreateSignatureField b/src/test/resources/requests/signature/info/CreateSignatureField index 7701b32..305a148 100644 --- a/src/test/resources/requests/signature/info/CreateSignatureField +++ b/src/test/resources/requests/signature/info/CreateSignatureField @@ -1,7 +1,7 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/field?signature=LYAcL8iElzlzya7wR%2B1m6KgG%2BNg +POST /v2.0/signature/ea103bbe8cb8ce07/field?signature=5HkX0MxGKhxlOg0rmyaa6H5aUvc -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 122 +Content-Length: 123 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/CreateSignatureForm b/src/test/resources/requests/signature/info/CreateSignatureForm index eef3ce7..7b9a1aa 100644 --- a/src/test/resources/requests/signature/info/CreateSignatureForm +++ b/src/test/resources/requests/signature/info/CreateSignatureForm @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/form?signature=OVElpp6b2npbjiUV3llN2Eyv%2BKo +POST /v2.0/signature/ea103bbe8cb8ce07/form?signature=3inbna1Wfs7P547RrdqegdGFMEU -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 153 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/CreateSignatureTemplate b/src/test/resources/requests/signature/info/CreateSignatureTemplate index 32d8e52..153ff6d 100644 --- a/src/test/resources/requests/signature/info/CreateSignatureTemplate +++ b/src/test/resources/requests/signature/info/CreateSignatureTemplate @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/template?name=Template%20Test%205519202724285783&signature=dLeTN3oC9IY4sgOwZpP3vSJ49rY +POST /v2.0/signature/ea103bbe8cb8ce07/template?name=Template%20Test%208120702993243918&signature=xC97JX2FToWOipK1gZ%2BaZd%2BXktc -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 210 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeclineEnvelope b/src/test/resources/requests/signature/info/DeclineEnvelope index 7377889..940bf8e 100644 --- a/src/test/resources/requests/signature/info/DeclineEnvelope +++ b/src/test/resources/requests/signature/info/DeclineEnvelope @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/40bd8ff819551335ac8dc18443ff9b62/recipient/43f95a8b0a96abb74913a0c7c3a9c233/decline?signature=eMC4QAwA0lTkZcesInwObPk6hDg +PUT /v2.0/signature/ea103bbe8cb8ce07/envelopes/b5e1ff9bf90ee219729e7f8b629705c4/recipient/6e442e9dcffe6783506cbab65ab47405/decline?signature=v4dOfGA%2BkV29jjlO4puqwblY%2FDQ -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteContact b/src/test/resources/requests/signature/info/DeleteContact index 8a6b51c..9c79025 100644 --- a/src/test/resources/requests/signature/info/DeleteContact +++ b/src/test/resources/requests/signature/info/DeleteContact @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/contacts/f9fdc38518f24f7fd0c689ed4dfd1ad4?signature=p27%2BF8kKHar45cWWqcbzybuv7w4 +DELETE /v2.0/signature/ea103bbe8cb8ce07/contacts/2d34da436cc1b4ac5ff2ea6f1030eba1?signature=0ZjsDV2BilgLiQjm3nMXOoTvHNo -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeletePredefinedList b/src/test/resources/requests/signature/info/DeletePredefinedList index 61d8edf..bf30679 100644 --- a/src/test/resources/requests/signature/info/DeletePredefinedList +++ b/src/test/resources/requests/signature/info/DeletePredefinedList @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/lists/31dd7d6f9677c1f994aa731177525058?signature=m5zzl1c7BUsroGGf8%2FuxiQQHojY +DELETE /v2.0/signature/ea103bbe8cb8ce07/lists/38d51389a5cd1b4a4c42fcb01ac4eaed?signature=eg%2FE%2BwOj5qqg4O%2BX7kZ8fSwIbaM -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignature b/src/test/resources/requests/signature/info/DeleteSignature index 00e7cee..044e350 100644 --- a/src/test/resources/requests/signature/info/DeleteSignature +++ b/src/test/resources/requests/signature/info/DeleteSignature @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/signatures/940a3c0dbb2664994030b89ef2cf0477?signature=uEvBMYEgGvDuJ2mT%2FPkOHJ9WqDI +DELETE /v2.0/signature/ea103bbe8cb8ce07/signatures/5bec185ccf42c63d2718bcb48e89c927?signature=ogdQeUeWLy6p%2BcfHL08Sp0Rv2W8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureEnvelope b/src/test/resources/requests/signature/info/DeleteSignatureEnvelope index 1363451..3a74248 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureEnvelope +++ b/src/test/resources/requests/signature/info/DeleteSignatureEnvelope @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/envelopes/b760738d0cdc806f363e1983e430abc9?signature=gcZgXClkX0UUXy4lcx9zsR71wq8 +DELETE /v2.0/signature/ea103bbe8cb8ce07/envelopes/9caed211cd5538368a0c369faaa0d403?signature=vv0g%2BrRvWrMit2%2Fi21cFK%2F1Y%2Fb8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeDocument b/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeDocument index 3d82e97..eac969e 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeDocument +++ b/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeDocument @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/envelopes/0d454c3c24da65d7e8cca169583c698e/documents/5675e0e096cb5a9d931641f7aa15e034285af25be15871b30d1acb5034ade355?signature=0EUjPxbHU%2Bl1AENZzkjL3cB3e0k +DELETE /v2.0/signature/ea103bbe8cb8ce07/envelopes/e3acbbb2e5077cbd0de31bd3fbf1ecc5/documents/46d555010b10c25a13d6ee6b42d555a491e861391d0eef3f5a1555a5b511e0ee?signature=zYZsiTlYMTWSOEJYMfQ6uJs0%2Buw -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeField b/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeField index 9373e15..7eebdfb 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeField +++ b/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeField @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/envelopes/4d5335d2b56343b38826daf3da3c4411/fields/42dbbcbf58bda62e6f81918357420320?signature=FPFucY5jnIVgpq8jehH8sYUInMI +DELETE /v2.0/signature/ea103bbe8cb8ce07/envelopes/c465aa172ced4c6797188f91bd75ccc2/fields/86db8a967e7bc1539174d570e6bdb10b?signature=DP6YeYfyobillS3ZO%2FrtUvDIGhQ -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeFieldLocation b/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeFieldLocation index 3e2ab7d..c05b880 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeFieldLocation +++ b/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeFieldLocation @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/envelopes/df60b26a06b954e65af75bc7287497a3/fields/dcfb6134dc7ba72d17dc8b4a8952fbe5/locations/dbf10b663f65a7da4c41e61ae40ca7e8?signature=WU%2F3vXHk6kJVUNdY9rANLYeoWh0 +DELETE /v2.0/signature/ea103bbe8cb8ce07/envelopes/eee08011b236a65f982961cc50218c24/fields/3f7633c1144c7b69fcdb96d11fc72ce7/locations/334c16524cc989e462a8cc6f40b3d195?signature=jCut2YFZStIvf9csJNo4EqsLDng -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeRecipient b/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeRecipient index 3dccdd7..33c4740 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeRecipient +++ b/src/test/resources/requests/signature/info/DeleteSignatureEnvelopeRecipient @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/envelopes/b4fb5ffc10fcf4e8e80c7a7b5db1972c/recipients/0171f086731524b9bbd22d5fc5782118?signature=k1Ic0BIOVkz6Y4Bv3I8BWgw7DHk +DELETE /v2.0/signature/ea103bbe8cb8ce07/envelopes/65763e27b43cfbc8ea16d344bacac0a3/recipients/f07249f73db61d0f2cc2d62c12a84839?signature=OEPoSrNj30NW1obdfNtzKWnh7nA -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureField b/src/test/resources/requests/signature/info/DeleteSignatureField index 3dee398..d623d2c 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureField +++ b/src/test/resources/requests/signature/info/DeleteSignatureField @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/fields/d06ef298b5ce1a9a59dd0de5ee94ec84?signature=wCGVfwgy86kqpqDHQI7cR6lDppw +DELETE /v2.0/signature/ea103bbe8cb8ce07/fields/ba7dcbb023fd3f4525bf45ba394823d6?signature=ZBCK0SzkBDb3N5aXUQhvk0J0cjo -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureForm b/src/test/resources/requests/signature/info/DeleteSignatureForm index 785c8ae..48e7ec5 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureForm +++ b/src/test/resources/requests/signature/info/DeleteSignatureForm @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/forms/e1fdea5a96b2f7f85218296380b12fd9?signature=TWz6PdHDciiPNzk0ZglZma80BD0 +DELETE /v2.0/signature/ea103bbe8cb8ce07/forms/b9b00f125522812fd70d353a31a4b13c?signature=tnUxZ8Rcbse1N%2FIevBnD9bWv0jA -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureFormDocument b/src/test/resources/requests/signature/info/DeleteSignatureFormDocument index 3ecb5e5..6066758 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureFormDocument +++ b/src/test/resources/requests/signature/info/DeleteSignatureFormDocument @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/forms/743d0a074f738e76ac74ca945de12503/documents/8dd3baf1ff0260786823b5132450f19142333047fbcad5984de30f721ef51637?signature=UCWgBMhurCsTbi9WpQEHYN28Xw4 +DELETE /v2.0/signature/ea103bbe8cb8ce07/forms/af1dddd337e858568b1cc4eb118c115d/documents/b3bb803b95b7c96cf2d18e46d6f77a09d27c811af3b653bd6a158ba8ac7766c8?signature=2s92wwbs0OKbJTKYVBmpWWirqwo -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureFormField b/src/test/resources/requests/signature/info/DeleteSignatureFormField index b8a8595..b85fddf 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureFormField +++ b/src/test/resources/requests/signature/info/DeleteSignatureFormField @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/forms/b3076ab6b398b9e01863cfb901bb25eb/fields/30f2ca035d8a5279e9c956b2343407de?signature=gLyhifvi4jBOn58kb3xIOvgcNjY +DELETE /v2.0/signature/ea103bbe8cb8ce07/forms/4c3ba7c9647abca7d23521a4017940da/fields/873faa56806fa9c9dfcaf5d25875f7ab?signature=KwkURyFF7wcsbWr5hT7rFb%2BO4Qw -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureFormFieldLocation b/src/test/resources/requests/signature/info/DeleteSignatureFormFieldLocation index b16bfad..257f870 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureFormFieldLocation +++ b/src/test/resources/requests/signature/info/DeleteSignatureFormFieldLocation @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/forms/f5fdf14b122aef7781966b11ddae5f46/fields/e8862d05282f2545e7d9c277ac12aee2/locations/b440036a6abb39da781a760ad7b4c349?signature=K2g2Ot1%2BYa3ZIu7xsBrO0xWpK1U +DELETE /v2.0/signature/ea103bbe8cb8ce07/forms/dbd2a70d6b110ea86dc2c77368c99630/fields/d76d04f4e8ecfbc3f24e38bd73dac2c7/locations/b1fc85cb72b41555ea50108d53232f25?signature=pw0s7RnQIMwSj49scgsT8yNOE9M -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureTemplate b/src/test/resources/requests/signature/info/DeleteSignatureTemplate index b303fff..ef7b51c 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureTemplate +++ b/src/test/resources/requests/signature/info/DeleteSignatureTemplate @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/templates/4bb37a9d9cf9404cc03fe2e3779480eb?signature=zqgmJhIaYetAmlvAaYSJ3lJDpb0 +DELETE /v2.0/signature/ea103bbe8cb8ce07/templates/05e50d1f3e94f26a771c618e5abb482d?signature=e2piJlCKGDkYNqbiKyCN4i7jYg0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureTemplateField b/src/test/resources/requests/signature/info/DeleteSignatureTemplateField index c8857db..fe80ac2 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureTemplateField +++ b/src/test/resources/requests/signature/info/DeleteSignatureTemplateField @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/templates/6ec74bd5d42cf9826fb25b9c938eed0e/fields/e75eac801954a93661f3f58c31693914?signature=rk%2FOwRWg7a2hCL9%2B6E5E6YiKyYQ +DELETE /v2.0/signature/ea103bbe8cb8ce07/templates/d1bf12ae91f5810893ca5f31f458b49e/fields/3484ce6066adba5b5802c8b13a4dd45f?signature=8L2RgyBQSGokKlzOCjgJ9Rh9dVg -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureTemplateFieldLocation b/src/test/resources/requests/signature/info/DeleteSignatureTemplateFieldLocation index f7caea6..cf10beb 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureTemplateFieldLocation +++ b/src/test/resources/requests/signature/info/DeleteSignatureTemplateFieldLocation @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/templates/d2737ce2abc0ca3f8d02a202634b7aee/fields/8218ed3fa07efe68ebbb6b7eb3f69bb2/locations/ccc944390279f14036d333667b74f0c9?signature=1a9hSxKp4GBOpD%2FBaT8OaYQ3%2FQY +DELETE /v2.0/signature/ea103bbe8cb8ce07/templates/e598bca616fc30422dac2fd461d13add/fields/5367b94f4e7aab7d13e5168a4a40415e/locations/c993edaac2ef731875ffbf8c808d5548?signature=bA2DIIE1ISLghjKMSDfn8dqZkVE -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/DeleteSignatureTemplateRecipient b/src/test/resources/requests/signature/info/DeleteSignatureTemplateRecipient index 3590be4..d9be9ba 100644 --- a/src/test/resources/requests/signature/info/DeleteSignatureTemplateRecipient +++ b/src/test/resources/requests/signature/info/DeleteSignatureTemplateRecipient @@ -1,6 +1,6 @@ -DELETE /v2.0/signature/6d75a4d4db83f6fc/templates/d369dee51976bea95ae7e6bbb37fd16a/recipients/b8927c5092b081f3f540efd06a8cebbf?signature=4YAYq3mQhBv52FPEOhotVUUoLX0 +DELETE /v2.0/signature/ea103bbe8cb8ce07/templates/4b7d8c2a3a2e273d0542fa36f6638a44/recipients/9e6949e8540b6007f9a98b6ffa459701?signature=6KMXRlPjgDTy0n%2BmWfjVGGjhnB8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/FillEnvelopeField b/src/test/resources/requests/signature/info/FillEnvelopeField index dfec6f0..6b70f56 100644 --- a/src/test/resources/requests/signature/info/FillEnvelopeField +++ b/src/test/resources/requests/signature/info/FillEnvelopeField @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/29ba0e8bf8588cd558b9ace94bc65485/documents/a96df1d1894f1553816bb4060e7bc0289bb15c943ef3535a61db656a13d2239b/recipient/c2f9d7328c0c96ce701cb9460d7c13e1/field/6f4ceb38ad513b2ae595cf85076006f5?signatureId=bbec8568df83333ddfb78b15a82a673e&signature=YFhsxQsRoVjpe7iOKSEHu5k66jY +PUT /v2.0/signature/ea103bbe8cb8ce07/envelopes/495eb84af8354b6f809cbe21b0e94faa/documents/07f7cce3fa878ef939e917c68d029e237c9793a47e978f6efb6602673a7e6e57/recipient/f2593d2b307b4dd51bbaf28ddf7c7557/field/b54f9b9d2842958dd6486788a86b932f?signature=i85wL6FNp1tQaR%2FcX%2F073PpANEM -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 0 +Content-Length: 2 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetContacts b/src/test/resources/requests/signature/info/GetContacts deleted file mode 100644 index 5265254..0000000 --- a/src/test/resources/requests/signature/info/GetContacts +++ /dev/null @@ -1,6 +0,0 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/contacts?signature=%2BKbcWxKUepO9ej6xJ9RvJE0g%2FAE - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetEnvelopeAuditLogs b/src/test/resources/requests/signature/info/GetEnvelopeAuditLogs index b9818a2..838f701 100644 --- a/src/test/resources/requests/signature/info/GetEnvelopeAuditLogs +++ b/src/test/resources/requests/signature/info/GetEnvelopeAuditLogs @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/envelopes/7a264433bce80b5df4887f617785e066/logs?signature=wqyNeJQ04uDOj0m2GOSvyr3Ypgo +GET /v2.0/signature/ea103bbe8cb8ce07/envelopes/242cd7c2a710900d6129187fdb435c17/logs?signature=QUlDMGLqI4m%2B2mnwR6iGG1Ubve8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetFieldsList b/src/test/resources/requests/signature/info/GetFieldsList index 5e8caba..5197bc1 100644 --- a/src/test/resources/requests/signature/info/GetFieldsList +++ b/src/test/resources/requests/signature/info/GetFieldsList @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/fields?signature=VucV1ZpoDiH9yaXcum2t4Q5bZsQ +GET /v2.0/signature/ea103bbe8cb8ce07/fields?signature=cBQNgw0BMd0u1nkGAMPj9xdgbp8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetRecipientSignatureEnvelopes b/src/test/resources/requests/signature/info/GetRecipientSignatureEnvelopes index f6299fc..bf42e22 100644 --- a/src/test/resources/requests/signature/info/GetRecipientSignatureEnvelopes +++ b/src/test/resources/requests/signature/info/GetRecipientSignatureEnvelopes @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/envelopes/recipient?signature=dmoMyx0Wdq5CDzv2rMiUiVXKbvE +GET /v2.0/signature/ea103bbe8cb8ce07/envelopes/recipient?signature=xJKUOFseSmZPt2v%2FEZhEDjEULDk -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetRolesList b/src/test/resources/requests/signature/info/GetRolesList index d19bc23..ec25125 100644 --- a/src/test/resources/requests/signature/info/GetRolesList +++ b/src/test/resources/requests/signature/info/GetRolesList @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/roles?signature=e%2Bbp1BzRxu1v5MT4%2BvMh7M9JZ8s +GET /v2.0/signature/ea103bbe8cb8ce07/roles?signature=8BLHzLrx%2BMyn6LPXQv47qxACzcg -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureEnvelope b/src/test/resources/requests/signature/info/GetSignatureEnvelope index b064939..b811eb1 100644 --- a/src/test/resources/requests/signature/info/GetSignatureEnvelope +++ b/src/test/resources/requests/signature/info/GetSignatureEnvelope @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/envelopes/eb477c31aea60e54f0c2c87daa35a5a0?signature=aLULAx98tCENq55z2XUDE67oLCM +GET /v2.0/signature/ea103bbe8cb8ce07/envelopes/91e439ba62a36b69a815780854f514fc?signature=jyePMWoFOhdjrrpsN01%2BQTFHtEw -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureEnvelopeDocuments b/src/test/resources/requests/signature/info/GetSignatureEnvelopeDocuments index fb4bb24..add3a02 100644 --- a/src/test/resources/requests/signature/info/GetSignatureEnvelopeDocuments +++ b/src/test/resources/requests/signature/info/GetSignatureEnvelopeDocuments @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/envelopes/71f439615572fc82699ff741a28bf933/documents?signature=hW%2Fwvz5GzqCZKnH71b3BZR6uyt4 +GET /v2.0/signature/ea103bbe8cb8ce07/envelopes/8e74f2350604f51c8158152325d00bf3/documents?signature=ENsrzpEgrlNwaxuDHLH9cPRyfr0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureEnvelopeFields b/src/test/resources/requests/signature/info/GetSignatureEnvelopeFields index 7d16130..81ec84f 100644 --- a/src/test/resources/requests/signature/info/GetSignatureEnvelopeFields +++ b/src/test/resources/requests/signature/info/GetSignatureEnvelopeFields @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/envelopes/84d1d24edd82db1fc37d8f5ef5195594/fields?signature=2MQLcSs3l51fuYODWPc0CtcxFPY +GET /v2.0/signature/ea103bbe8cb8ce07/envelopes/ee63173e3b74757d5c0e13096fd1dd01/fields?signature=SCrQyZWACtbeLQsycwOb85OIBpM -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureEnvelopeRecipients b/src/test/resources/requests/signature/info/GetSignatureEnvelopeRecipients index db90f04..16c60ad 100644 --- a/src/test/resources/requests/signature/info/GetSignatureEnvelopeRecipients +++ b/src/test/resources/requests/signature/info/GetSignatureEnvelopeRecipients @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/envelopes/445f7e9dbd2e4ede42c28280f269ace2/recipients?signature=1t4aI2Qia7a1uF3er2lOJSKZ1VA +GET /v2.0/signature/ea103bbe8cb8ce07/envelopes/5cc2b79b7f20ab81806a19d83167c2a5/recipients?signature=jLc3jc8oIKjbkuHRjSLBvUB6rPA -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureEnvelopeResources b/src/test/resources/requests/signature/info/GetSignatureEnvelopeResources index 4d75a5c..f06b344 100644 --- a/src/test/resources/requests/signature/info/GetSignatureEnvelopeResources +++ b/src/test/resources/requests/signature/info/GetSignatureEnvelopeResources @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/envelopes/resources?signature=1fNjSZHmrU7o%2BpWkQw%2FIVYEZAgI +GET /v2.0/signature/ea103bbe8cb8ce07/envelopes/resources?signature=xtG04e2%2FO29gW%2Fzd3hGmbrYwA%2FA -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureEnvelopes b/src/test/resources/requests/signature/info/GetSignatureEnvelopes index 59c2018..02aaafa 100644 --- a/src/test/resources/requests/signature/info/GetSignatureEnvelopes +++ b/src/test/resources/requests/signature/info/GetSignatureEnvelopes @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/envelopes?signature=nfJqukvBTSzk9Hqg0f6ChZ5AFS8 +GET /v2.0/signature/ea103bbe8cb8ce07/envelopes?signature=1VHniSMc6GcsPzBWVywaf98un2g -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureForm b/src/test/resources/requests/signature/info/GetSignatureForm index 3e03c58..e13a898 100644 --- a/src/test/resources/requests/signature/info/GetSignatureForm +++ b/src/test/resources/requests/signature/info/GetSignatureForm @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/forms/2c2f3585fa543d68d2c537e42bbe9ba0?signature=WXOT3ul8%2FtzWZHOZt5uqcj6WUhU +GET /v2.0/signature/ea103bbe8cb8ce07/forms/7d4ce3bf73b205bc199fde496194028a?signature=TrMWfd8ekv6arDnxWusG9LIiw0A -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureFormDocuments b/src/test/resources/requests/signature/info/GetSignatureFormDocuments index 15de191..059cbb1 100644 --- a/src/test/resources/requests/signature/info/GetSignatureFormDocuments +++ b/src/test/resources/requests/signature/info/GetSignatureFormDocuments @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/forms/6e5116c8cb225e983a5d0c2c1f7973a4/documents?signature=l1aV9JgcjGeVZ6IMpcxHlI%2FRSws +GET /v2.0/signature/ea103bbe8cb8ce07/forms/f37d65e98da471bfd82f4a45259d56bc/documents?signature=C%2BO3qeP4v9GOZMqjW3WVxeDZV0c -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureFormFields b/src/test/resources/requests/signature/info/GetSignatureFormFields index b619f4c..aba6d69 100644 --- a/src/test/resources/requests/signature/info/GetSignatureFormFields +++ b/src/test/resources/requests/signature/info/GetSignatureFormFields @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/forms/01ec1a91299645e432577a8b81effb88/documents/8b770ccf24c260e0d2e85cc21181b31eac07b8c43ff41fed5759fd9ba87f3cdb/fields?signature=UZCBx%2B%2BE0t17MorJB28WAJRtcuk +GET /v2.0/signature/ea103bbe8cb8ce07/forms/93d83c829ab4d8ffc5abf94d2f520c03/documents/57d8150d963ff517ee77285888b0a67127c6f897c4db575a2ad2024e235fa0c6/fields?signature=gN3BlCtR%2B5kZnMApeChA7EbEyME -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureFormResources b/src/test/resources/requests/signature/info/GetSignatureFormResources index bac4fe4..d7ef805 100644 --- a/src/test/resources/requests/signature/info/GetSignatureFormResources +++ b/src/test/resources/requests/signature/info/GetSignatureFormResources @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/forms/resources?signature=2O0braxdAGdmKHwrHJe7x4uRE78 +GET /v2.0/signature/ea103bbe8cb8ce07/forms/resources?signature=CXkBtlIACH8%2FVH3FPSj9r119HL4 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureForms b/src/test/resources/requests/signature/info/GetSignatureForms index a394495..19aabd7 100644 --- a/src/test/resources/requests/signature/info/GetSignatureForms +++ b/src/test/resources/requests/signature/info/GetSignatureForms @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/forms?signature=QgZWA0xA6KqIEEHpF36pSS9retY +GET /v2.0/signature/ea103bbe8cb8ce07/forms?signature=wd9g6TCESfJMiGu9wPIez9uFjcg -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignaturePredefinedLists b/src/test/resources/requests/signature/info/GetSignaturePredefinedLists index 134ddb1..c4454fc 100644 --- a/src/test/resources/requests/signature/info/GetSignaturePredefinedLists +++ b/src/test/resources/requests/signature/info/GetSignaturePredefinedLists @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/lists?signature=FEalPL2bwC%2FjmXIyC1UH2oxJnJk +GET /v2.0/signature/ea103bbe8cb8ce07/lists?signature=vCzkfT4A1BzHe353LToOm3D6nQQ -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureTemplate b/src/test/resources/requests/signature/info/GetSignatureTemplate index 65f86dc..ad2cc59 100644 --- a/src/test/resources/requests/signature/info/GetSignatureTemplate +++ b/src/test/resources/requests/signature/info/GetSignatureTemplate @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/templates/67d1cf7a1fef82796846077aeabe7412?signature=iP4nbIUJyqMlkyATnImwqr%2BQfsQ +GET /v2.0/signature/ea103bbe8cb8ce07/templates/98fa2df94425d2344bcb3e6d15300bf2?signature=0x1k2b9CULVRmFPjizXfn7Nk7kE -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureTemplateDocuments b/src/test/resources/requests/signature/info/GetSignatureTemplateDocuments index f24941b..9619089 100644 --- a/src/test/resources/requests/signature/info/GetSignatureTemplateDocuments +++ b/src/test/resources/requests/signature/info/GetSignatureTemplateDocuments @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/templates/75652b2bedefa884826d5477a650df2e/documents?signature=hq1zJQYgv7eIb39E9Lnt0JKH%2BCs +GET /v2.0/signature/ea103bbe8cb8ce07/templates/3086d40e0b9c7b5cfe7178ad85ea875c/documents?signature=2NaL32xVMLKB6gFwRhfqhUZhEAs -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureTemplateFields b/src/test/resources/requests/signature/info/GetSignatureTemplateFields index 19f678c..78dfdb2 100644 --- a/src/test/resources/requests/signature/info/GetSignatureTemplateFields +++ b/src/test/resources/requests/signature/info/GetSignatureTemplateFields @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/templates/1817b4a89a43eda343ccb9b4c6f602bf/fields?signature=5jmlVFXAHiTMLHYjO6fRhlVsh88 +GET /v2.0/signature/ea103bbe8cb8ce07/templates/8dd6e1be32b6a471cb72b4a2c125e509/fields?signature=W1hj1C4qTpmm1QCY1G%2FvaPKnenk -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureTemplateRecipients b/src/test/resources/requests/signature/info/GetSignatureTemplateRecipients index c8b1e26..c9757d0 100644 --- a/src/test/resources/requests/signature/info/GetSignatureTemplateRecipients +++ b/src/test/resources/requests/signature/info/GetSignatureTemplateRecipients @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/templates/cf69731e1ef81541bddb7cb2df205479/recipients?signature=XVvt%2B5UqqYDgjQ34pJAPh49MOH4 +GET /v2.0/signature/ea103bbe8cb8ce07/templates/b9fd52a9023dbe1eb077c1bf3e0ee985/recipients?signature=CbG6K%2F4qUcBNOvM7rWF9xalD%2BUY -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureTemplateResources b/src/test/resources/requests/signature/info/GetSignatureTemplateResources index e9439a4..b87e869 100644 --- a/src/test/resources/requests/signature/info/GetSignatureTemplateResources +++ b/src/test/resources/requests/signature/info/GetSignatureTemplateResources @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/templates/resources?signature=5ZtbQ329FeerYP4lQxvB7Vn45v8 +GET /v2.0/signature/ea103bbe8cb8ce07/templates/resources?signature=y%2FqPh1yoRWkxyz0b9vDrhdYqB%2F0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatureTemplates b/src/test/resources/requests/signature/info/GetSignatureTemplates index e424784..dfcc881 100644 --- a/src/test/resources/requests/signature/info/GetSignatureTemplates +++ b/src/test/resources/requests/signature/info/GetSignatureTemplates @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/templates?signature=mMgAhcYqwHgKNAPr7K%2BtNe4OoW0 +GET /v2.0/signature/ea103bbe8cb8ce07/templates?signature=KWwrSr0EqdJujobLXcZExhnh4Ao -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/GetSignatures b/src/test/resources/requests/signature/info/GetSignatures index 14fe877..467c8af 100644 --- a/src/test/resources/requests/signature/info/GetSignatures +++ b/src/test/resources/requests/signature/info/GetSignatures @@ -1,6 +1,6 @@ -GET /v2.0/signature/6d75a4d4db83f6fc/signatures?signature=MgvYmbmNWSeNpaLWariTFaQUvzQ +GET /v2.0/signature/ea103bbe8cb8ce07/signatures?signature=6av6XSi2G7DCDyB%2F35lyDjs5dYY -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/ImportContacts b/src/test/resources/requests/signature/info/ImportContacts index d16e969..ee6b340 100644 --- a/src/test/resources/requests/signature/info/ImportContacts +++ b/src/test/resources/requests/signature/info/ImportContacts @@ -1,7 +1,7 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/contacts?signature=%2BKbcWxKUepO9ej6xJ9RvJE0g%2FAE +POST /v2.0/signature/ea103bbe8cb8ce07/contacts?signature=0dwmEvcQBpz55XlZcOwolKLIkX8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 240 +Content-Length: 246 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/ModifyContact b/src/test/resources/requests/signature/info/ModifyContact index 01d430a..fc5a8f0 100644 --- a/src/test/resources/requests/signature/info/ModifyContact +++ b/src/test/resources/requests/signature/info/ModifyContact @@ -1,7 +1,7 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/contacts/7eb1bbd84bcbbcf27bb708abfa390c7d?signature=c2%2Bsqw7ep%2FVPoMl3lxQhM4O%2B14M +POST /v2.0/signature/ea103bbe8cb8ce07/contacts/bc5c944c1d8228ef9690887efad91a3c?signature=oXaK2YQrKyA8JA9icMGQcpfxhYk -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 89 +Content-Length: 90 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/ModifySignatureEnvelope b/src/test/resources/requests/signature/info/ModifySignatureEnvelope index 00b3dfe..6c24790 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureEnvelope +++ b/src/test/resources/requests/signature/info/ModifySignatureEnvelope @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/envelopes/9a6a3c33d417a4655c5ca36a435d5b13?signature=mVicZjAakAIAhR%2F5se8qZRBpm74 +POST /v2.0/signature/ea103bbe8cb8ce07/envelopes/534571cee9aeffe865560cb1d547b369?signature=B%2BFdPrzm2iKKLKVxRmeEJK3lo%2BU -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 224 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/ModifySignatureEnvelopeField b/src/test/resources/requests/signature/info/ModifySignatureEnvelopeField index 99c6ac4..afc04e1 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureEnvelopeField +++ b/src/test/resources/requests/signature/info/ModifySignatureEnvelopeField @@ -1,7 +1,7 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/09ec24f8c19518c5df63296078832077/documents/b9b78313f0ada0fa16a7cb2e5f82176e5c05e1a7aa1a9a73ba042834754c4825/field/b090ea6cc41afe7645c7914cb3d595b7?signature=fEtit5rxVoc1S957kqsB1hjIQmo +PUT /v2.0/signature/ea103bbe8cb8ce07/envelopes/b761dad8a2dd4a6f24afcbe37b5f7f64/documents/1585f265bbe2d79041e70b1481146d2ed99c55ddddb72d16898e5f6288196cd9/field/f0b371777ae3a20d33b097a295fbf6bc?signature=boFuBVw3PAl0VPqgiitYB4sZH%2F4 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 400 +Content-Length: 401 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/ModifySignatureEnvelopeFieldLocation b/src/test/resources/requests/signature/info/ModifySignatureEnvelopeFieldLocation index eb54312..bbd4723 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureEnvelopeFieldLocation +++ b/src/test/resources/requests/signature/info/ModifySignatureEnvelopeFieldLocation @@ -1,7 +1,7 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/3289367689a425375d4519bf2a028cc5/documents/3cad6755580a8bc8efdc7315b0f8b114aea0defee1bface3f29d66dbb89191d8/recipient/6224f8dc15e02de402d3446e29ea946c/fields/41b09370a1e43b05d62f7c3772c9a3ee/locations/29c6c68b04a09e9cdcb7f5823147b80e?signature=pC2an%2F9Srnn8hhhnQ%2FB3RuSX1uA +PUT /v2.0/signature/ea103bbe8cb8ce07/envelopes/c47202c7a5e3e1ca97ef31f3a59ffbcd/documents/db7da448305d67ce5acd011e8b1e79f5697dc928580b8b9c5b1a17d252aa1e1a/recipient/e203492fce86c386b591ec4d188767d2/fields/e578ca9b65f2d9a1914222cd8d0a5f9f/locations/0e65e5516154b7f56e33f520a98045d1?signature=7gHGfiNlvRp6TqntqhaFRYTQayA -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 223 +Content-Length: 225 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/ModifySignatureEnvelopeRecipient b/src/test/resources/requests/signature/info/ModifySignatureEnvelopeRecipient index 12e5bde..744b436 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureEnvelopeRecipient +++ b/src/test/resources/requests/signature/info/ModifySignatureEnvelopeRecipient @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/4382e173ec84c1c8395d1cb7f1b6b2d5/recipient/929fe05becb7a2a0b6c8339e4a4a8b4f?email=new-recipient-5660726436554973@mailinator.com&firstname=New%20John&lastname=New%20Smith&role=6df1056f4d9a27ec34698552a6372a68&order=1&signature=D4OEinKHOrYARmf0o1c8AnQR6EI +PUT /v2.0/signature/ea103bbe8cb8ce07/envelopes/54cfb911fd2bf67a406410956edc40ee/recipient/ae0c81f2783ca9817def9a65eb023769?email=new-recipient-9026574703507284@mailinator.com&firstname=New%20John&lastname=New%20Smith&role=6df1056f4d9a27ec34698552a6372a68&order=1&signature=qJly6ny2%2BOVVDrqGyDXGrVRzj7w -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/ModifySignatureField b/src/test/resources/requests/signature/info/ModifySignatureField index 00b2a5b..424fd9c 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureField +++ b/src/test/resources/requests/signature/info/ModifySignatureField @@ -1,7 +1,7 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/fields/33a6373569f13ffd381bc91d229612d7?signature=8j7lkC%2B99aqAnR5jyCKar4r7Ym4 +POST /v2.0/signature/ea103bbe8cb8ce07/fields/2eb8b5e69b2a30688b9e2927225e1bcc?signature=CunFighuF2MDp8%2BK68jAoczsUm0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 122 +Content-Length: 119 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/ModifySignatureForm b/src/test/resources/requests/signature/info/ModifySignatureForm index 88a0ac8..7b2fd58 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureForm +++ b/src/test/resources/requests/signature/info/ModifySignatureForm @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/forms/ecf76e434d54e2b13dda70283460a753?signature=2OG5aczZr2xTIZhwgJ3AgiPN%2Fz4 +POST /v2.0/signature/ea103bbe8cb8ce07/forms/d064ea6a9428eb356abbf6608a7e65e2?signature=ejSKj5hg1LjuskHIa8iR45gfXl8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 153 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/ModifySignatureFormDocument b/src/test/resources/requests/signature/info/ModifySignatureFormDocument deleted file mode 100644 index 2a5e63d..0000000 --- a/src/test/resources/requests/signature/info/ModifySignatureFormDocument +++ /dev/null @@ -1,7 +0,0 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/forms/7d1dbe1fada4a78645b6b9f61c4e08dc/document/c05eac35ab1df1d2cd50e6e6533fae81ecf5459ee59b34649fbed57c17276d52?signature=yQ78giXJO0hTkvv14L%2FQdvqizYQ - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 96 -Groupdocs-Referrer: ruby/1.4.2 -Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/ModifySignatureFormField b/src/test/resources/requests/signature/info/ModifySignatureFormField index 76d4322..0ed82cd 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureFormField +++ b/src/test/resources/requests/signature/info/ModifySignatureFormField @@ -1,7 +1,7 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/forms/9ca35b9e41b52c5331b37771ef99b8f8/documents/9fb03317b09eba44889fed8c30f2cfea286c9e519170917bf3562fb2674ea2f7/field/4b8bbb1db7bd4c4ea030590b60e9ae41?signature=Z0IocjbJt1jKLA0YWG5SxEgctlk +PUT /v2.0/signature/ea103bbe8cb8ce07/forms/9b3fea93327d7907d0e2d4ed51b9410a/documents/8b7ee12ea7373c249bf62d8e9dcb9d9b0c905dc87a07f02ab3872827d0d9428f/field/1aac696a25c6c61e26c8c780fefc81b0?signature=E5PzO%2Fu078NXcSy72bOIbGodibI -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 401 +Content-Length: 402 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/ModifySignatureFormFieldLocation b/src/test/resources/requests/signature/info/ModifySignatureFormFieldLocation index 6369bab..ec903eb 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureFormFieldLocation +++ b/src/test/resources/requests/signature/info/ModifySignatureFormFieldLocation @@ -1,7 +1,7 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/forms/d7fdb014d285ac6fa0e20241a918b021/documents/653854e9a216226c81e7e903c86f693551e5fc6543875d3fdc853efedf5f7c89/fields/0b68c8e86696d8057473540d1990c023/locations/49ffbec7d2e2901c6bc571dcf5f3a52e?signature=A0QzH5nTjp4tWQKt111%2F32ZrgQQ +PUT /v2.0/signature/ea103bbe8cb8ce07/forms/1c4c3a7c85ffe24fec68f351fdd69621/documents/1dc7ea9dd442e23c428261563523657c867a28bc0c68eeb12e3efb7cb845c4e1/fields/7e88d75bc4af0f389ebf735764ff505a/locations/0405d43861545942949b41c95d820507?signature=f2HlJP%2BNAzpP9uOpPmssMKQ542U -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 223 +Content-Length: 225 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/ModifySignatureTemplate b/src/test/resources/requests/signature/info/ModifySignatureTemplate index ae6e01a..b92feac 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureTemplate +++ b/src/test/resources/requests/signature/info/ModifySignatureTemplate @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/templates/e49a154e7829e977b7cab656db4003cb?signature=tDtW2rMk%2Bbzyq0y0ffSSeoWF6fE +POST /v2.0/signature/ea103bbe8cb8ce07/templates/e171c182366b36bffe326e28ecf90733?signature=urOTaL7tFUzaavKa3rX5cX9IFQk -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 210 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/ModifySignatureTemplateField b/src/test/resources/requests/signature/info/ModifySignatureTemplateField index 462bb89..efd4310 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureTemplateField +++ b/src/test/resources/requests/signature/info/ModifySignatureTemplateField @@ -1,7 +1,7 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/templates/1cf9378756f846ce568dd21f595532d2/documents/d5865256d6da6ce7d7f98c319fff5a3d8436d554437fa8887b2dd5f4e78cf4a2/field/578c3eee5e84c827f026dc325b9549f9?signature=gjljy%2BOLW%2BHQdTKD4xbSP1zoCgQ +PUT /v2.0/signature/ea103bbe8cb8ce07/templates/fcf187ea60a692fadcee52d9b70a97b7/documents/bec1f3bfa7ef7c98b5ce9a2b8ff6080a78d5717c4c9f653b3e9e4d29b957183a/field/a6233dc3d879ca94c00897bcf27c5f06?signature=Y5o6FaA9vuaDHop8fsD6Darhei0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 401 +Content-Length: 400 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/ModifySignatureTemplateFieldLocation b/src/test/resources/requests/signature/info/ModifySignatureTemplateFieldLocation index 88f8121..9a6d03f 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureTemplateFieldLocation +++ b/src/test/resources/requests/signature/info/ModifySignatureTemplateFieldLocation @@ -1,7 +1,7 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/templates/32fad24daf743c81b163beedd8ac0cc9/documents/e9ba16b182324d41aa332ab0df60c21df335ba2059cada9af07899d4e689b3f7/recipient/6c0b199db3498282faaf706093782a8f/fields/1e255f2c867d49bb75d89009f0f33907/locations/784e8126672080dce08ab559b86686cb?signature=%2FaDrA6E593hgdmEQV2Fh66wTyAA +PUT /v2.0/signature/ea103bbe8cb8ce07/templates/78cfc0015f5701430a0b5198c271b4a3/documents/4c7a6b6010cac00c6f1d7758ab5b50ee4d29a6dd0ac8c0cda4073ca22c7328c3/recipient/0e27ab42d5f2a68a9d0f479c3d1e61f2/fields/039836b06dbca3f80c9fd7a66a2a23de/locations/dddbaa2fcf070ceabe2b0c9fd4399179?signature=FGfJPhww%2FBwSDOMlCRj8iWYrR6o -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 223 +Content-Length: 225 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/ModifySignatureTemplateRecipient b/src/test/resources/requests/signature/info/ModifySignatureTemplateRecipient index 831caf9..6e0c04a 100644 --- a/src/test/resources/requests/signature/info/ModifySignatureTemplateRecipient +++ b/src/test/resources/requests/signature/info/ModifySignatureTemplateRecipient @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/templates/7703c3124c320d30c96292912d0441c2/recipient/15d02effc15a970fa13efb56289a8820?nickname=John%20Smith%202&role=693e6cee8a4a21285f86930491b455ec&order=1&signature=k10hUq7Xl70PQRDjC6Fgo7ydyHY +PUT /v2.0/signature/ea103bbe8cb8ce07/templates/3fc440ab71773b046ceef7c0bfec8205/recipient/c0b116e59a17e604f96f2a54f8ad8382?nickname=John%20Smith%202&role=693e6cee8a4a21285f86930491b455ec&order=1&signature=n8pc3q2ex3K5Hds6x5mmSjWwcc0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/PublicCreateSignature b/src/test/resources/requests/signature/info/PublicCreateSignature index b2ba432..5ad4a45 100644 --- a/src/test/resources/requests/signature/info/PublicCreateSignature +++ b/src/test/resources/requests/signature/info/PublicCreateSignature @@ -1,7 +1,7 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/signature?name=Signature%206579859354264942&recipientId=917a5607c2acf7fa4db639e06cec1f80&signature=kDWm2YLcnp2DtV6wnZW%2FObo5cvE +POST /v2.0/signature/ea103bbe8cb8ce07/signature?name=Signature%2026654325684980473&recipientId=b2a5077e701bbc2ad2e448f404a4a276&signature=uvEU1sspcUHvN8cXxcbqYZ0O3Is -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json -Content-Length: 175 +Content-Length: 176 Groupdocs-Referrer: ruby/1.4.2 Content-Type: application/json diff --git a/src/test/resources/requests/signature/info/PublicFillEnvelopeField b/src/test/resources/requests/signature/info/PublicFillEnvelopeField index 0c1aecf..4522afa 100644 --- a/src/test/resources/requests/signature/info/PublicFillEnvelopeField +++ b/src/test/resources/requests/signature/info/PublicFillEnvelopeField @@ -1,6 +1,6 @@ -PUT /v2.0/signature/public/envelopes/92a9e26cb515bf2e462af8e2ffbc9ca3/documents/0d43e7f95001019f96bbf826bd3c572d84beadb268f00a9a2e25840c37350d7b/recipient/f5ca14fb896bce51f32ab5102daddb8d/field/821c4c4e20b80e613e2d8398f74512b3?signature=El9pd2iccxR%2BZZz8is3%2ByQhbO%2F8 +PUT /v2.0/signature/public/envelopes/5aa86f661a36f7f7b9575fa826d4dcce/documents/fd858b5c6d9aa1b654414323a9cadcc6d704d26cac1fad8242aa8bdf3b10c63f/recipient/3e79365551df699128631cb23db36690/field/5113fe30c59416c8f5bdc05be0d869fb?signature=AZ%2FdMffY0zshhaSpTegLDal9vNs -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 2 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/PublicGetEnvelopeDocuments b/src/test/resources/requests/signature/info/PublicGetEnvelopeDocuments index e639e66..8c029fe 100644 --- a/src/test/resources/requests/signature/info/PublicGetEnvelopeDocuments +++ b/src/test/resources/requests/signature/info/PublicGetEnvelopeDocuments @@ -1,6 +1,6 @@ -GET /v2.0/signature/public/envelopes/11b54ee62853984b1f2cdf084af9076f/recipient/c89ff418ed2b512ee318f361e4a80701/documents?signature=C4gXJ1JdfuL%2F5mxx0AFUw1faxNo +GET /v2.0/signature/public/envelopes/f363c1878d4aaf7c0d75488c3e4860cf/recipient/184977f28f64e823440c3c10e3ee34ae/documents?signature=Lr2eZ1S0pPbMrvJ7XqHAlUv9N0Q -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/PublicGetEnvelopeRecipients b/src/test/resources/requests/signature/info/PublicGetEnvelopeRecipients index 2f0f946..de53f57 100644 --- a/src/test/resources/requests/signature/info/PublicGetEnvelopeRecipients +++ b/src/test/resources/requests/signature/info/PublicGetEnvelopeRecipients @@ -1,6 +1,6 @@ -GET /v2.0/signature/public/envelopes/0b775b8fd2d4de5ac415c16cd17e43ec/recipients?signature=QCXDs12WhDEgTL%2BGMuWvGealDOA +GET /v2.0/signature/public/envelopes/648052dda05bc3c1a48357715727a712/recipients?signature=7WLW4uO6Dp8cNc4ylpC015BXXt0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/PublicGetSignatureEnvelope b/src/test/resources/requests/signature/info/PublicGetSignatureEnvelope index 6c84508..26ef52c 100644 --- a/src/test/resources/requests/signature/info/PublicGetSignatureEnvelope +++ b/src/test/resources/requests/signature/info/PublicGetSignatureEnvelope @@ -1,6 +1,6 @@ -GET /v2.0/signature/public/envelopes/3ea9feb1dadfeb63a3675f69e93cd2d3/recipient/1dd6af8ebaee5c0cf5ccf3ab1ccae235?signature=ocK6Lzh33bLR7kI%2FMZ8vQFEoxtc +GET /v2.0/signature/public/envelopes/2757e229258b3a5d59626e1b93675a24/recipient/5716a06e6274aaa16bdb26e5a0aa1a4c?signature=2XusZGzvTE3GUdcMs%2FvEzp59iB8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/PublicGetSignatureEnvelopeFields b/src/test/resources/requests/signature/info/PublicGetSignatureEnvelopeFields index 2af18dd..3cd8b25 100644 --- a/src/test/resources/requests/signature/info/PublicGetSignatureEnvelopeFields +++ b/src/test/resources/requests/signature/info/PublicGetSignatureEnvelopeFields @@ -1,6 +1,6 @@ -GET /v2.0/signature/public/envelopes/0a1d28dbb03f67c74f33322102213a16/fields?signature=t42VOFu7iqQywUoLw%2BImqJpjMMw +GET /v2.0/signature/public/envelopes/132ae0acd89fb6608ffc92be05203d69/fields?signature=YaPF%2BqPta7jmQyadHOw35B%2BdHIY -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/PublicGetSignatureForm b/src/test/resources/requests/signature/info/PublicGetSignatureForm index 42c8a35..1482daf 100644 --- a/src/test/resources/requests/signature/info/PublicGetSignatureForm +++ b/src/test/resources/requests/signature/info/PublicGetSignatureForm @@ -1,6 +1,6 @@ -GET /v2.0/signature/public/forms/0f1730722dd48e6371f1a1c296f8b237?signature=8Jc1Qt9nsYgO5z1xgWuf441nbXo +GET /v2.0/signature/public/forms/1dd3f83f37c4b74214f39a71132b7a02?signature=qyoy%2FtpJpDdaa45%2FYUW8v5FUKj4 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/PublicGetSignatureFormDocuments b/src/test/resources/requests/signature/info/PublicGetSignatureFormDocuments index aede059..ceb366e 100644 --- a/src/test/resources/requests/signature/info/PublicGetSignatureFormDocuments +++ b/src/test/resources/requests/signature/info/PublicGetSignatureFormDocuments @@ -1,6 +1,6 @@ -GET /v2.0/signature/public/forms/52b2f9a193ee6a866a9016cd28e2c728/documents?signature=9IvQpVvzxWSESP%2FhY8Gc9It4k3o +GET /v2.0/signature/public/forms/51f506831d78f59fdd4c33f17d5c90bf/documents?signature=sHHqWBNHx%2BaA3y%2BWepH8vdip8lQ -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/PublicSignDocument b/src/test/resources/requests/signature/info/PublicSignDocument index aaa2171..75141f8 100644 --- a/src/test/resources/requests/signature/info/PublicSignDocument +++ b/src/test/resources/requests/signature/info/PublicSignDocument @@ -1,6 +1,6 @@ -POST /v2.0/signature/public/documents/f55ae0c85f650f412c0133fcd8886db91269047e12f61fafbeef0d75f5c4f76e/sign?signature=LQFNo1b4Ud03F180II9aTQ5SIkQ +POST /v2.0/signature/public/documents/f5c5ce6abf3d6f04ac0cdc968b37b4fbd48c2fd993b87bfce840c0932592dc25/sign?signature=3tP14SpqTh81YsdZ3uYB4XEz71U -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 6334 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/PublicVerifyDocument b/src/test/resources/requests/signature/info/PublicVerifyDocument index 9c3d880..7664fbe 100644 --- a/src/test/resources/requests/signature/info/PublicVerifyDocument +++ b/src/test/resources/requests/signature/info/PublicVerifyDocument @@ -1,6 +1,6 @@ -POST /v2.0/signature/public/verify?signature=bF9tbz18NgSXm49rwC%2FtkfRBwGs +POST /v2.0/signature/public/verify?signature=RWNuPK5rv0LfnlhnxH9J5Wz213s -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/PublishSignatureForm b/src/test/resources/requests/signature/info/PublishSignatureForm index fbf7c74..dfea9a3 100644 --- a/src/test/resources/requests/signature/info/PublishSignatureForm +++ b/src/test/resources/requests/signature/info/PublishSignatureForm @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/forms/1747c796276dd7068729a7ec4ca5db81/publish?signature=%2FQEKbWww44R%2Fc6jU%2B5dtB6ME9%2Fk +PUT /v2.0/signature/ea103bbe8cb8ce07/forms/5948b6b890dfff893141ac0e9a7a38c7/publish?signature=NNia2%2B%2BIc8%2FMUqTFNoxe3Nutth0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/RenameSignatureEnvelope b/src/test/resources/requests/signature/info/RenameSignatureEnvelope index 575e9a3..e9504e0 100644 --- a/src/test/resources/requests/signature/info/RenameSignatureEnvelope +++ b/src/test/resources/requests/signature/info/RenameSignatureEnvelope @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/77c9c3b1dfedfbbd77e7126b6a36f15e?name=Envelope%20-%20020434552002888573&signature=d3TQJLNlqM2vVzunERb2Aqr9ZMI +PUT /v2.0/signature/ea103bbe8cb8ce07/envelopes/aec59dc26868cab5ae0ba1552d3a95d1?name=Envelope%20-%203797726614276461&signature=82qVlXOC78OQEDLTXp7E2PkqPD0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/RenameSignatureEnvelopeDocument b/src/test/resources/requests/signature/info/RenameSignatureEnvelopeDocument deleted file mode 100644 index 99421dd..0000000 --- a/src/test/resources/requests/signature/info/RenameSignatureEnvelopeDocument +++ /dev/null @@ -1,6 +0,0 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/433e5d764c2cee0b6813a782501ecc64/document/c084c1f56d76ac474429c6a580825024427eaf8b57213ceb7afcedea3bf033be?newName=Document%20-%203852280852152479&signature=ji6HzcOlQCnBYdzv1%2FF63goL02k - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/RenameSignatureForm b/src/test/resources/requests/signature/info/RenameSignatureForm index 5f29daa..03d7033 100644 --- a/src/test/resources/requests/signature/info/RenameSignatureForm +++ b/src/test/resources/requests/signature/info/RenameSignatureForm @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/forms/7115a1d33c60a4c2f283be60a6786f91?new_name=Form%20-%207272819885586904&signature=X9Cc2eNNhXf54Rr2i%2BFYmZEg%2BhU +PUT /v2.0/signature/ea103bbe8cb8ce07/forms/c732fbff4b1206843826338ea22e55df?new_name=Form%20-%205404702098959463&signature=U4jzI8aaK7uyh7xusm9p8FMXrZ8 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/RenameSignatureFormDocument b/src/test/resources/requests/signature/info/RenameSignatureFormDocument deleted file mode 100644 index 4311443..0000000 --- a/src/test/resources/requests/signature/info/RenameSignatureFormDocument +++ /dev/null @@ -1,6 +0,0 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/forms/10ab52c1b0b33b6f17c08098e7a22d9a/document/45d9c78f2cc4880e02e7513177191341a994f59ba238977d58e1facbebdd70b1?newName=Form%20-%2029144570224404587&signature=%2B2%2FoAlGHSXZQRtvVQI5ghcJ45KE - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/RenameSignatureTemplate b/src/test/resources/requests/signature/info/RenameSignatureTemplate index 12920bd..6324aed 100644 --- a/src/test/resources/requests/signature/info/RenameSignatureTemplate +++ b/src/test/resources/requests/signature/info/RenameSignatureTemplate @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/templates/3386a523d2804a43dcc08533246897ec?name=Template%20-%205691259309148357&signature=iXO%2BOEthdW05HkZCwPF6vY9cgGw +PUT /v2.0/signature/ea103bbe8cb8ce07/templates/d2dc358eb4e5602c29ae5a50f2f84ec0?name=Template%20-%200072861268946695645&signature=bXFnWmoS%2F1SMoAVyTer1lPQWMok -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/RenameSignatureTemplateDocument b/src/test/resources/requests/signature/info/RenameSignatureTemplateDocument deleted file mode 100644 index 974db59..0000000 --- a/src/test/resources/requests/signature/info/RenameSignatureTemplateDocument +++ /dev/null @@ -1,6 +0,0 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/templates/e5060b38d918eecf3bc20cbe9dd83088/document/fbace24862bb268aa4b1de223a61a79d7d8b7aceec2df621381b58f3f090fd05?newName=Document%20-%2005985362426913665&signature=w4bHR6G6wMM4t3TDrMGFFQ%2FfYBY - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/RestartExpiredSignatureEnvelope b/src/test/resources/requests/signature/info/RestartExpiredSignatureEnvelope index 1b49062..6bae63c 100644 --- a/src/test/resources/requests/signature/info/RestartExpiredSignatureEnvelope +++ b/src/test/resources/requests/signature/info/RestartExpiredSignatureEnvelope @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/11c869419de0486fc02f3ef93d09a6ba/restart?signature=1bizDZeaLZgFFezZAE%2BDRrRhE64 +PUT /v2.0/signature/ea103bbe8cb8ce07/envelopes/4d066cea15b7eb393767a0f6c7880123/restart?signature=gWtIp5NEVoxaRfrJ%2BFRU4o%2FFpLM -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/RetrySignEnvelope b/src/test/resources/requests/signature/info/RetrySignEnvelope deleted file mode 100644 index 2fafb54..0000000 --- a/src/test/resources/requests/signature/info/RetrySignEnvelope +++ /dev/null @@ -1,6 +0,0 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/7e5874acb904445b763b0908a621570e/retry?signature=gvByLJpvqB%2Fcnd9efkPBiLK3rUM - -Host: stage-api-groupdocs.dynabic.com -Accept: application/json -Content-Length: 0 -Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/SignDocument b/src/test/resources/requests/signature/info/SignDocument index a955b80..c3d56c2 100644 --- a/src/test/resources/requests/signature/info/SignDocument +++ b/src/test/resources/requests/signature/info/SignDocument @@ -1,6 +1,6 @@ -POST /v2.0/signature/6d75a4d4db83f6fc/sign?signature=3fsieFJnBMJaPt%2Fz4CTE9d9eyAY +POST /v2.0/signature/ea103bbe8cb8ce07/sign?signature=S23rnp458Cz%2BrVyAOI8KagI7FFs -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 36742 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/info/SignatureEnvelopeSend b/src/test/resources/requests/signature/info/SignatureEnvelopeSend index 69d512f..ec627d7 100644 --- a/src/test/resources/requests/signature/info/SignatureEnvelopeSend +++ b/src/test/resources/requests/signature/info/SignatureEnvelopeSend @@ -1,6 +1,6 @@ -PUT /v2.0/signature/6d75a4d4db83f6fc/envelopes/7b63fa70f2f83fe9efc6a007ae718f3b/send?signature=hHDmhxjMW9VELiZElS0Jtm%2BoI4g +PUT /v2.0/signature/ea103bbe8cb8ce07/envelopes/a485c49b83cdc82147a5caabcfa0656c/send?signature=CqSOTCvaXIOTQuPS1nqk7IhGO74 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/signature/payload/AddContact.json b/src/test/resources/requests/signature/payload/AddContact.json index 7a0bdfc..877d7aa 100644 --- a/src/test/resources/requests/signature/payload/AddContact.json +++ b/src/test/resources/requests/signature/payload/AddContact.json @@ -1,5 +1,5 @@ { "firstName": "John", "lastName": "Smith", - "email": "user_one_14877360212805524@mailinator.com" + "email": "user_one_996782329062215@mailinator.com" } \ No newline at end of file diff --git a/src/test/resources/requests/signature/payload/AddContactIntegration.json b/src/test/resources/requests/signature/payload/AddContactIntegration.json deleted file mode 100644 index 46b08fa..0000000 --- a/src/test/resources/requests/signature/payload/AddContactIntegration.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "provider": 2, - "refreshToken": "fake", - "accessToken": "fake", - "accessTokenExpiration": "2014-12-12" -} \ No newline at end of file diff --git a/src/test/resources/requests/signature/payload/AddPredefinedList.json b/src/test/resources/requests/signature/payload/AddPredefinedList.json index f065879..19ee9ab 100644 --- a/src/test/resources/requests/signature/payload/AddPredefinedList.json +++ b/src/test/resources/requests/signature/payload/AddPredefinedList.json @@ -1,5 +1,5 @@ { - "name": "List - 5406043595139229", + "name": "List - 8434865226745041", "values": "value1;value2", "defaultValue": "value1" } \ No newline at end of file diff --git a/src/test/resources/requests/signature/payload/AssignSignatureEnvelopeField.json b/src/test/resources/requests/signature/payload/AssignSignatureEnvelopeField.json index 98ee079..972d3c3 100644 --- a/src/test/resources/requests/signature/payload/AssignSignatureEnvelopeField.json +++ b/src/test/resources/requests/signature/payload/AssignSignatureEnvelopeField.json @@ -1,4 +1,4 @@ { - "currentRecipientId": "15741085b66ca6409a8739c3f580e4aa", - "newRecipientId": "211b060d7cdeb61e20f3b3a43fb9c33b" + "currentRecipientId": "56028b386be9b064a108fd06f2dce26e", + "newRecipientId": "73d7b0dfc7c146e15ad4dab74c83a711" } \ No newline at end of file diff --git a/src/test/resources/requests/signature/payload/AssignSignatureTemplateField.json b/src/test/resources/requests/signature/payload/AssignSignatureTemplateField.json index e4c25f1..e14a26e 100644 --- a/src/test/resources/requests/signature/payload/AssignSignatureTemplateField.json +++ b/src/test/resources/requests/signature/payload/AssignSignatureTemplateField.json @@ -1,4 +1,4 @@ { - "currentRecipientId": "34345db2bb5195fb366b10654fbb0d38", - "newRecipientId": "821d2495f079b8e67e01665f5d8a4758" + "currentRecipientId": "d9ed734f157d4f5620af47db84d0a08e", + "newRecipientId": "7e6545a640da60fd0ced9a0506be3593" } \ No newline at end of file diff --git a/src/test/resources/requests/signature/payload/CreateSignature.json b/src/test/resources/requests/signature/payload/CreateSignature.json index 782cbf6..849bc41 100644 --- a/src/test/resources/requests/signature/payload/CreateSignature.json +++ b/src/test/resources/requests/signature/payload/CreateSignature.json @@ -1,5 +1,5 @@ { - "name": "Signature 622123269984327", + "name": "Signature 3022425752990485", "companyName": "Aspose", "position": "QA", "firstName": "John", diff --git a/src/test/resources/requests/signature/payload/CreateSignatureField.json b/src/test/resources/requests/signature/payload/CreateSignatureField.json index 715d532..ac294a6 100644 --- a/src/test/resources/requests/signature/payload/CreateSignatureField.json +++ b/src/test/resources/requests/signature/payload/CreateSignatureField.json @@ -1,5 +1,5 @@ { - "name": "TestSignField7952128628642078", + "name": "TestSignField22988871892044416", "graphSizeW": 100, "graphSizeH": 100, "getDataFrom": "Test", diff --git a/src/test/resources/requests/signature/payload/ImportContacts.json b/src/test/resources/requests/signature/payload/ImportContacts.json index 4a302fa..3eb7493 100644 --- a/src/test/resources/requests/signature/payload/ImportContacts.json +++ b/src/test/resources/requests/signature/payload/ImportContacts.json @@ -2,12 +2,12 @@ { "firstName": "John1", "lastName": "Smith1", - "email": "user_one_572695848487654@mailinator.com" + "email": "user_one_057279492727743686@mailinator.com" }, { "firstName": "John2", "lastName": "Smith2", - "email": "user_two_572695848487654@mailinator.com" + "email": "user_two_057279492727743686@mailinator.com" }, { "firstName": "John3", diff --git a/src/test/resources/requests/signature/payload/ModifyContact.json b/src/test/resources/requests/signature/payload/ModifyContact.json index ab336d8..8f07e95 100644 --- a/src/test/resources/requests/signature/payload/ModifyContact.json +++ b/src/test/resources/requests/signature/payload/ModifyContact.json @@ -1,5 +1,5 @@ { "firstName": "John", "lastName": "Smith", - "email": "user_one_431150232582761@mailinator.com" + "email": "user_one_5520834057821428@mailinator.com" } \ No newline at end of file diff --git a/src/test/resources/requests/signature/payload/ModifySignatureEnvelopeField.json b/src/test/resources/requests/signature/payload/ModifySignatureEnvelopeField.json index ad8491c..f7ab9c9 100644 --- a/src/test/resources/requests/signature/payload/ModifySignatureEnvelopeField.json +++ b/src/test/resources/requests/signature/payload/ModifySignatureEnvelopeField.json @@ -1,5 +1,5 @@ { - "name": "Signature8982622757671102", + "name": "Signature07921589405565932", "graphSizeW": 0, "graphSizeH": 0, "getDataFrom": null, diff --git a/src/test/resources/requests/signature/payload/ModifySignatureEnvelopeFieldLocation.json b/src/test/resources/requests/signature/payload/ModifySignatureEnvelopeFieldLocation.json index 704244e..54f15fb 100644 --- a/src/test/resources/requests/signature/payload/ModifySignatureEnvelopeFieldLocation.json +++ b/src/test/resources/requests/signature/payload/ModifySignatureEnvelopeFieldLocation.json @@ -2,8 +2,8 @@ "page": 1, "locationX": 0.2, "locationY": 0.2, - "locationWidth": 90, - "locationHeight": 30, + "locationWidth": 0.2, + "locationHeight": 0.2, "fontName": "Helvetica", "fontColor": "red", "fontSize": 10, diff --git a/src/test/resources/requests/signature/payload/ModifySignatureField.json b/src/test/resources/requests/signature/payload/ModifySignatureField.json index 9407a42..29523b1 100644 --- a/src/test/resources/requests/signature/payload/ModifySignatureField.json +++ b/src/test/resources/requests/signature/payload/ModifySignatureField.json @@ -1,5 +1,5 @@ { - "name": "TestSignField5478138672444844", + "name": "TestSignField5737660748021", "graphSizeW": 100, "graphSizeH": 100, "getDataFrom": "Test", diff --git a/src/test/resources/requests/signature/payload/ModifySignatureFormDocument.json b/src/test/resources/requests/signature/payload/ModifySignatureFormDocument.json deleted file mode 100644 index 0e49166..0000000 --- a/src/test/resources/requests/signature/payload/ModifySignatureFormDocument.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Order": 2, - "newDocumentGuid": "52b4a11f1381296bdb318905c735338f696ff2f555de1398a82e488f429f9e27" -} \ No newline at end of file diff --git a/src/test/resources/requests/signature/payload/ModifySignatureFormField.json b/src/test/resources/requests/signature/payload/ModifySignatureFormField.json index c4e2917..d8c76ed 100644 --- a/src/test/resources/requests/signature/payload/ModifySignatureFormField.json +++ b/src/test/resources/requests/signature/payload/ModifySignatureFormField.json @@ -1,5 +1,5 @@ { - "name": "Signature32641435903285954", + "name": "Signature025986879487182257", "graphSizeW": 0, "graphSizeH": 0, "getDataFrom": null, diff --git a/src/test/resources/requests/signature/payload/ModifySignatureFormFieldLocation.json b/src/test/resources/requests/signature/payload/ModifySignatureFormFieldLocation.json index 704244e..54f15fb 100644 --- a/src/test/resources/requests/signature/payload/ModifySignatureFormFieldLocation.json +++ b/src/test/resources/requests/signature/payload/ModifySignatureFormFieldLocation.json @@ -2,8 +2,8 @@ "page": 1, "locationX": 0.2, "locationY": 0.2, - "locationWidth": 90, - "locationHeight": 30, + "locationWidth": 0.2, + "locationHeight": 0.2, "fontName": "Helvetica", "fontColor": "red", "fontSize": 10, diff --git a/src/test/resources/requests/signature/payload/ModifySignatureTemplateField.json b/src/test/resources/requests/signature/payload/ModifySignatureTemplateField.json index bf2fec5..d1ba6ff 100644 --- a/src/test/resources/requests/signature/payload/ModifySignatureTemplateField.json +++ b/src/test/resources/requests/signature/payload/ModifySignatureTemplateField.json @@ -1,5 +1,5 @@ { - "name": "Signature39996187776526027", + "name": "Signature2847649691220322", "graphSizeW": 0, "graphSizeH": 0, "getDataFrom": null, diff --git a/src/test/resources/requests/signature/payload/ModifySignatureTemplateFieldLocation.json b/src/test/resources/requests/signature/payload/ModifySignatureTemplateFieldLocation.json index 704244e..54f15fb 100644 --- a/src/test/resources/requests/signature/payload/ModifySignatureTemplateFieldLocation.json +++ b/src/test/resources/requests/signature/payload/ModifySignatureTemplateFieldLocation.json @@ -2,8 +2,8 @@ "page": 1, "locationX": 0.2, "locationY": 0.2, - "locationWidth": 90, - "locationHeight": 30, + "locationWidth": 0.2, + "locationHeight": 0.2, "fontName": "Helvetica", "fontColor": "red", "fontSize": 10, diff --git a/src/test/resources/requests/signature/payload/PublicCreateSignature.json b/src/test/resources/requests/signature/payload/PublicCreateSignature.json index afa4675..92c254d 100644 --- a/src/test/resources/requests/signature/payload/PublicCreateSignature.json +++ b/src/test/resources/requests/signature/payload/PublicCreateSignature.json @@ -1,5 +1,5 @@ { - "name": "Signature 6579859354264942", + "name": "Signature 26654325684980473", "companyName": "Aspose", "position": "QA", "firstName": "John", diff --git a/src/test/resources/requests/storage/info/Compress b/src/test/resources/requests/storage/info/Compress index e23dbb2..4f1e6ee 100644 --- a/src/test/resources/requests/storage/info/Compress +++ b/src/test/resources/requests/storage/info/Compress @@ -1,6 +1,6 @@ -POST /v2.0/storage/6d75a4d4db83f6fc/files/132427/archive/zip?signature=YXxmPH7BId6V9LYlDlVvBb8sw9E +POST /v2.0/storage/ea103bbe8cb8ce07/files/325150/archive/zip?signature=ZpF98ff%2Fnf1dAGx7gLMt4KielbE -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/CopyFile b/src/test/resources/requests/storage/info/CopyFile index 5d063c4..6b48704 100644 --- a/src/test/resources/requests/storage/info/CopyFile +++ b/src/test/resources/requests/storage/info/CopyFile @@ -1,7 +1,7 @@ -PUT /v2.0/storage/6d75a4d4db83f6fc/files/document_two_6709735136595472.doc?signature=vphgIYf38a9PQgRL4s%2Bq9oAi%2Fyg +PUT /v2.0/storage/ea103bbe8cb8ce07/files/document_two_37692914293512625.doc?signature=%2BsulxpZmNnt8r0Rex9OUVckD9qc -Host: stage-api-groupdocs.dynabic.com -Groupdocs-copy: 132429 +Host: dev-api-groupdocs.dynabic.com +Groupdocs-copy: 325150 Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/CopyFolder b/src/test/resources/requests/storage/info/CopyFolder index 665cbd2..33ecb65 100644 --- a/src/test/resources/requests/storage/info/CopyFolder +++ b/src/test/resources/requests/storage/info/CopyFolder @@ -1,7 +1,7 @@ -PUT /v2.0/storage/6d75a4d4db83f6fc/folders/NewFolder-8336892236570631?signature=vAaDw0feh7ivKFgyQmWjumcKEJw +PUT /v2.0/storage/ea103bbe8cb8ce07/folders/NewFolder-36542806556370655?signature=Zr%2Bf9bA2GTaFBrO%2FoEkwcCXsbcs -Host: stage-api-groupdocs.dynabic.com -Groupdocs-copy: Folder-8336892236570631 +Host: dev-api-groupdocs.dynabic.com +Groupdocs-copy: Folder-36542806556370655 Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/Create b/src/test/resources/requests/storage/info/Create index 42bed14..7ee8766 100644 --- a/src/test/resources/requests/storage/info/Create +++ b/src/test/resources/requests/storage/info/Create @@ -1,6 +1,6 @@ -POST /v2.0/storage/6d75a4d4db83f6fc/paths/Folder-5484273897830484?signature=UOpD3%2BrPW%2FEc9qYoGzWAzHzvxf0 +POST /v2.0/storage/ea103bbe8cb8ce07/paths/Folder-4176872196184557?signature=v9ceUSuHD3a%2BNtioQkqWNDL1w6I -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/CreatePackage b/src/test/resources/requests/storage/info/CreatePackage index 6c3931b..c8bbf7c 100644 --- a/src/test/resources/requests/storage/info/CreatePackage +++ b/src/test/resources/requests/storage/info/CreatePackage @@ -1,6 +1,6 @@ -POST /v2.0/storage/6d75a4d4db83f6fc/packages/package.zip?signature=EQjgWUAy%2B0hMiaCEDNKQ6MdQIKQ +POST /v2.0/storage/ea103bbe8cb8ce07/packages/package.zip?signature=rWUhQrwrrp%2BwcoZp9CK2JOd%2BOxg -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 39 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/Delete b/src/test/resources/requests/storage/info/Delete index 47d95e9..0052901 100644 --- a/src/test/resources/requests/storage/info/Delete +++ b/src/test/resources/requests/storage/info/Delete @@ -1,6 +1,6 @@ -DELETE /v2.0/storage/6d75a4d4db83f6fc/folders/document_one.doc?signature=dp3uZ%2BhOsdv1dIOuCwXliCRXZMY +DELETE /v2.0/storage/ea103bbe8cb8ce07/folders/document_one.doc?signature=hX3OpSyNq2N28hnsRwT9nqutDIA -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/DeleteFromFolder b/src/test/resources/requests/storage/info/DeleteFromFolder index 0b338da..c808856 100644 --- a/src/test/resources/requests/storage/info/DeleteFromFolder +++ b/src/test/resources/requests/storage/info/DeleteFromFolder @@ -1,6 +1,6 @@ -DELETE /v2.0/storage/6d75a4d4db83f6fc/folders/Folder-8528550163583494?signature=C%2FQSmtfXz5%2FaQcoJ61RlyjOnr%2F4 +DELETE /v2.0/storage/ea103bbe8cb8ce07/folders/Folder-3193367992485978?signature=Q35YCzEQ2z71CpW1NnswHEaFZPo -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/GetFile b/src/test/resources/requests/storage/info/GetFile index 6fec4ca..4e81030 100644 --- a/src/test/resources/requests/storage/info/GetFile +++ b/src/test/resources/requests/storage/info/GetFile @@ -1,6 +1,6 @@ -DOWNLOAD /v2.0/storage/6d75a4d4db83f6fc/files/96c04ca5f07c8bea4e7299faa81c0f1706391d2aed1a35868c1e15e5e5bba648?signature=yGNuUs1eYpjvSlLdortu1MvWOdg +DOWNLOAD /v2.0/storage/ea103bbe8cb8ce07/files/2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355?signature=SX%2B7V6Z1PQ5lFe9x5ZH2qNuYElQ -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/GetStorageInfo b/src/test/resources/requests/storage/info/GetStorageInfo index 4fb0f4f..fa7375d 100644 --- a/src/test/resources/requests/storage/info/GetStorageInfo +++ b/src/test/resources/requests/storage/info/GetStorageInfo @@ -1,6 +1,6 @@ -GET /v2.0/storage/6d75a4d4db83f6fc?signature=kqS8kTOTnD2qvXBrYns7LJdyMxI +GET /v2.0/storage/ea103bbe8cb8ce07?signature=dUYSvnJoLKBdUDs1txwsx4Dqh%2BI -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/ListEntities b/src/test/resources/requests/storage/info/ListEntities index 4d7ae9e..7f29abc 100644 --- a/src/test/resources/requests/storage/info/ListEntities +++ b/src/test/resources/requests/storage/info/ListEntities @@ -1,6 +1,6 @@ -GET /v2.0/storage/6d75a4d4db83f6fc/folders/?signature=dvAiHPrUCAroDPsVS4hBFEEe9xE +GET /v2.0/storage/ea103bbe8cb8ce07/folders/?signature=zCJdqh1v4HnfT038LxUtHmJ4RnU -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/MoveFile b/src/test/resources/requests/storage/info/MoveFile index d052896..291e34c 100644 --- a/src/test/resources/requests/storage/info/MoveFile +++ b/src/test/resources/requests/storage/info/MoveFile @@ -1,7 +1,7 @@ -PUT /v2.0/storage/6d75a4d4db83f6fc/files/document_two.doc?signature=eRSNS5C5kvvIWgPc7SJxib2vegI +PUT /v2.0/storage/ea103bbe8cb8ce07/files/document_two.doc?signature=YshAYxdYmieWJOmWRIqFxGM3jIY -Host: stage-api-groupdocs.dynabic.com -Groupdocs-move: 132457 +Host: dev-api-groupdocs.dynabic.com +Groupdocs-move: 325683 Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/MoveFolder b/src/test/resources/requests/storage/info/MoveFolder index fbe5dc7..65a1a16 100644 --- a/src/test/resources/requests/storage/info/MoveFolder +++ b/src/test/resources/requests/storage/info/MoveFolder @@ -1,7 +1,7 @@ -PUT /v2.0/storage/6d75a4d4db83f6fc/folders/NewFolder-437802616248015?signature=jL4VHa%2F95uM1sPTyMX953HHPXrI +PUT /v2.0/storage/ea103bbe8cb8ce07/folders/NewFolder-37321294257731785?signature=JJxlaOM%2B76OfZCQeJWxbow0QUgM -Host: stage-api-groupdocs.dynabic.com -Groupdocs-move: Folder-437802616248015 +Host: dev-api-groupdocs.dynabic.com +Groupdocs-move: Folder-37321294257731785 Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/MoveToTrash b/src/test/resources/requests/storage/info/MoveToTrash index e32080c..2203807 100644 --- a/src/test/resources/requests/storage/info/MoveToTrash +++ b/src/test/resources/requests/storage/info/MoveToTrash @@ -1,6 +1,6 @@ -PUT /v2.0/storage/6d75a4d4db83f6fc/trash/document_one.doc?signature=QTxmePXwFkmhLeUpH57V8sTJpZQ +PUT /v2.0/storage/ea103bbe8cb8ce07/trash/document_one.doc?signature=Fi0TY6xMnBAP%2BiUOIYrkIYVRxk0 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/Upload b/src/test/resources/requests/storage/info/Upload index 3f58fcd..26f353d 100644 --- a/src/test/resources/requests/storage/info/Upload +++ b/src/test/resources/requests/storage/info/Upload @@ -1,6 +1,6 @@ -POST /v2.0/storage/6d75a4d4db83f6fc/folders/document_one.doc.docx?signature=k11p2B5dwgcFPVNdA%2BylvK%2F5368 +POST /v2.0/storage/ea103bbe8cb8ce07/folders/document_one.doc.docx?signature=BiszuOcdNH5r7E0tjTrawYecz3c -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/info/UploadWeb b/src/test/resources/requests/storage/info/UploadWeb index 33ceaf3..51ec9bf 100644 --- a/src/test/resources/requests/storage/info/UploadWeb +++ b/src/test/resources/requests/storage/info/UploadWeb @@ -1,6 +1,6 @@ -POST /v2.0/storage/6d75a4d4db83f6fc/urls?url=http://www.google.com&signature=vbexpDc5lykLqwidtd4wXRcyuYg +POST /v2.0/storage/ea103bbe8cb8ce07/urls?url=http://www.google.com&signature=wv%2FOFviQb63HXhCRbcCe7puJ%2BdM -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/storage/payload/Upload.json b/src/test/resources/requests/storage/payload/Upload.json index 37d98ff..f4fbfae 100644 --- a/src/test/resources/requests/storage/payload/Upload.json +++ b/src/test/resources/requests/storage/payload/Upload.json @@ -1 +1 @@ -# \ No newline at end of file +# \ No newline at end of file diff --git a/src/test/resources/requests/system/info/GetCountries b/src/test/resources/requests/system/info/GetCountries index 15a3f39..a8202e6 100644 --- a/src/test/resources/requests/system/info/GetCountries +++ b/src/test/resources/requests/system/info/GetCountries @@ -1,6 +1,6 @@ -GET /v2.0/system/6d75a4d4db83f6fc/countries?signature=01s8yGEfP02cwqzOO%2FI%2FUMlFfW4 +GET /v2.0/system/ea103bbe8cb8ce07/countries?signature=gThqEA%2B%2BgxSmoMl6brNjUxEVcvQ -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/system/info/GetStates b/src/test/resources/requests/system/info/GetStates index 7eff1d6..20fe1af 100644 --- a/src/test/resources/requests/system/info/GetStates +++ b/src/test/resources/requests/system/info/GetStates @@ -1,6 +1,6 @@ -GET /v2.0/system/6d75a4d4db83f6fc/countries/Russia/states?signature=WvD3tTHG%2FZEk193T3eYBxxm%2BXfE +GET /v2.0/system/ea103bbe8cb8ce07/countries/Russia/states?signature=c30rf0G3y82BafVRYhQpiVFvvDs -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/system/info/GetSubscriptionPlans b/src/test/resources/requests/system/info/GetSubscriptionPlans index bcc7dda..3aadeb9 100644 --- a/src/test/resources/requests/system/info/GetSubscriptionPlans +++ b/src/test/resources/requests/system/info/GetSubscriptionPlans @@ -1,6 +1,6 @@ -GET /v2.0/system/6d75a4d4db83f6fc/plans/groupdocs?signature=NVcONOXhBxuefpS6akOtqHQo6TQ +GET /v2.0/system/faa5c82daad84030/plans/groupdocs?signature=T2INN2qxR7rdFdHFn2PPMc7TtPM -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/system/info/GetUserPlan b/src/test/resources/requests/system/info/GetUserPlan index a75f6f5..622cc1c 100644 --- a/src/test/resources/requests/system/info/GetUserPlan +++ b/src/test/resources/requests/system/info/GetUserPlan @@ -1,6 +1,6 @@ -GET /v2.0/system/6d75a4d4db83f6fc/plan?signature=LMCpGHnmZK62V04axionRrBlfrk +GET /v2.0/system/ea103bbe8cb8ce07/plan?signature=17CRuCrHufJiqtobNXNHBR9YRTA -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/system/info/GetUserSubscriptionPlan b/src/test/resources/requests/system/info/GetUserSubscriptionPlan index bf669e1..7afb454 100644 --- a/src/test/resources/requests/system/info/GetUserSubscriptionPlan +++ b/src/test/resources/requests/system/info/GetUserSubscriptionPlan @@ -1,6 +1,6 @@ -GET /v2.0/system/6d75a4d4db83f6fc/subscription?signature=NoUcRRoe64ZYV4y9rC1SoGATsKE +GET /v2.0/system/ea103bbe8cb8ce07/subscription?signature=3Eyk3TbYbItZY4zeQuvYsNop5fs -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/user/info/GetAccountUsers b/src/test/resources/requests/user/info/GetAccountUsers index 155543f..4e152e2 100644 --- a/src/test/resources/requests/user/info/GetAccountUsers +++ b/src/test/resources/requests/user/info/GetAccountUsers @@ -1,6 +1,6 @@ -GET /v2.0/mgmt/6d75a4d4db83f6fc/account/users?signature=y43GEV06%2BehjqYQSxrtlR20OLZo +GET /v2.0/mgmt/ea103bbe8cb8ce07/account/users?signature=1yAcWqZ72BrawZfLD3GJcmcPhkQ -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/user/info/GetRoles b/src/test/resources/requests/user/info/GetRoles index b5357c6..61099a8 100644 --- a/src/test/resources/requests/user/info/GetRoles +++ b/src/test/resources/requests/user/info/GetRoles @@ -1,6 +1,6 @@ -GET /v2.0/mgmt/6d75a4d4db83f6fc/roles?signature=PcVxX2XyYvh2ENks2B8ji8ChiPA +GET /v2.0/mgmt/ea103bbe8cb8ce07/roles?signature=jiWOMKZjMkJa88J8BdLooeEzbqU -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/user/info/GetStorageProviders b/src/test/resources/requests/user/info/GetStorageProviders index ce80c04..a4ac035 100644 --- a/src/test/resources/requests/user/info/GetStorageProviders +++ b/src/test/resources/requests/user/info/GetStorageProviders @@ -1,6 +1,6 @@ -GET /v2.0/mgmt/6d75a4d4db83f6fc/storages?signature=5HvpZCp6k3GHWYnXtieBnNzB0fw +GET /v2.0/mgmt/ea103bbe8cb8ce07/storages?signature=m6hjmFyiYFDQFzTxJYJDRfXr8bQ -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/user/info/GetUserProfile b/src/test/resources/requests/user/info/GetUserProfile index 0b56936..0a613b5 100644 --- a/src/test/resources/requests/user/info/GetUserProfile +++ b/src/test/resources/requests/user/info/GetUserProfile @@ -1,6 +1,6 @@ -GET /v2.0/mgmt/6d75a4d4db83f6fc/profile?signature=zed%2FIsKpWbAOObeiKm8gDyoRxfQ +GET /v2.0/mgmt/ea103bbe8cb8ce07/profile?signature=PDluqmiB%2B56taXY9r8Yxpj5AGO4 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/requests/user/info/GetUserRoles b/src/test/resources/requests/user/info/GetUserRoles index 5dc726d..65ea866 100644 --- a/src/test/resources/requests/user/info/GetUserRoles +++ b/src/test/resources/requests/user/info/GetUserRoles @@ -1,6 +1,6 @@ -GET /v2.0/mgmt/6d75a4d4db83f6fc/users/6d75a4d4db83f6fc/roles?signature=TqxyBNZ1XJvKW1Xm0lpYHmSvHao +GET /v2.0/mgmt/faa5c82daad84030/users/ea103bbe8cb8ce07/roles?signature=VMcuy7k6G1mx9A2pQF5PSMCB8XM -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 0 Groupdocs-Referrer: ruby/1.4.2 diff --git a/src/test/resources/responses/annotation/AddAnnotationCollaborator.json b/src/test/resources/responses/annotation/AddAnnotationCollaborator.json deleted file mode 100644 index 5c2ac84..0000000 --- a/src/test/resources/responses/annotation/AddAnnotationCollaborator.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "result": { - "documentGuid": "5a0751f92bca8097c50161f7090d8fb923b023cfc47fdc2fac4dfee0e81daeaf", - "sessionGuid": "6b8a8f8df0d7df12", - "owner": { - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com", - "firstName": null, - "lastName": null, - "access_rights": null, - "color": null, - "customEmailMessage": null - }, - "collaborators": [ - { - "id": 5296, - "guid": "7279fabf84617f0b", - "primary_email": "user_one@mailinator.com", - "firstName": "John", - "lastName": "Smith", - "access_rights": 15, - "color": 3264358, - "customEmailMessage": null - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383328871218 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/CreateAnnotation.json b/src/test/resources/responses/annotation/CreateAnnotation.json deleted file mode 100644 index 251dadb..0000000 --- a/src/test/resources/responses/annotation/CreateAnnotation.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "result": { - "id": 21362, - "annotationGuid": "75d0b66a21c1bc61", - "replyGuid": null, - "documentGuid": "23e907609a31821a0bdbd9044714f99a2d654ed72f0b0cc63e3f7c464ccd7b5e", - "sessionGuid": "f8e993d053b5bea8", - "access": "Public", - "serverTime": 1383328987898 - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383328987640 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/CreateAnnotationReply.json b/src/test/resources/responses/annotation/CreateAnnotationReply.json deleted file mode 100644 index bc1cfdd..0000000 --- a/src/test/resources/responses/annotation/CreateAnnotationReply.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "result": { - "replyGuid": "63838807", - "annotationGuid": "c26778ffcd3d07be", - "replyDateTime": "2013-11-01T18:02:52.732586Z" - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383328972598 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/DeleteAnnotation.json b/src/test/resources/responses/annotation/DeleteAnnotation.json deleted file mode 100644 index c4c139f..0000000 --- a/src/test/resources/responses/annotation/DeleteAnnotation.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "result": { - "id": 21378, - "guid": "b43cc3eb4feb0902" - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329029753 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/DeleteAnnotationReply.json b/src/test/resources/responses/annotation/DeleteAnnotationReply.json deleted file mode 100644 index d1fec17..0000000 --- a/src/test/resources/responses/annotation/DeleteAnnotationReply.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "result": { - "replyGuid": "4a38f746", - "annotationGuid": "62b7dafa022cab19", - "replies": [ - - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329018183 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/EditAnnotationReply.json b/src/test/resources/responses/annotation/EditAnnotationReply.json deleted file mode 100644 index 741ec54..0000000 --- a/src/test/resources/responses/annotation/EditAnnotationReply.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "result": { - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329042801 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/GetAnnotationCollaborators.json b/src/test/resources/responses/annotation/GetAnnotationCollaborators.json deleted file mode 100644 index 24bed0a..0000000 --- a/src/test/resources/responses/annotation/GetAnnotationCollaborators.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "result": { - "documentGuid": "96c88865a65912fb9858ee8c34894ee80eca8bf70f7601b2deba057712459922", - "sessionGuid": "c8ae104f21057835", - "owner": { - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com", - "firstName": null, - "lastName": null, - "access_rights": null, - "color": null, - "customEmailMessage": null - }, - "collaborators": [ - - ], - "shared_link_access_rights": null - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329054003 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/GetReviewerContacts.json b/src/test/resources/responses/annotation/GetReviewerContacts.json deleted file mode 100644 index 8f178a3..0000000 --- a/src/test/resources/responses/annotation/GetReviewerContacts.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "result": { - "reviewerContacts": [ - - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329091670 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/GetSharedLinkAccessRights.json b/src/test/resources/responses/annotation/GetSharedLinkAccessRights.json deleted file mode 100644 index 4d15997..0000000 --- a/src/test/resources/responses/annotation/GetSharedLinkAccessRights.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "result": { - "accessRights": 1 - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329098562 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/ListAnnotationReplies.json b/src/test/resources/responses/annotation/ListAnnotationReplies.json deleted file mode 100644 index c9df6d9..0000000 --- a/src/test/resources/responses/annotation/ListAnnotationReplies.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "result": { - "annotationGuid": "ba980427787e2f03", - "replies": [ - - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329140542 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/ListAnnotations.json b/src/test/resources/responses/annotation/ListAnnotations.json deleted file mode 100644 index b9ebcc4..0000000 --- a/src/test/resources/responses/annotation/ListAnnotations.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "result": { - "documentGuid": "5562cec6b983fc7e813fb6cb0a09522a9c0e968bed59025ff444a6421986054f", - "sessionGuid": "d9e67ade1cf72ce5", - "annotations": [ - - ], - "serverTime": 1383329124979 - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329124774 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/MoveAnnotation.json b/src/test/resources/responses/annotation/MoveAnnotation.json deleted file mode 100644 index e1bc050..0000000 --- a/src/test/resources/responses/annotation/MoveAnnotation.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "result": { - "annotationGuid": "8e5ea2b521e15c12" - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329173696 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/MoveAnnotationMarker.json b/src/test/resources/responses/annotation/MoveAnnotationMarker.json deleted file mode 100644 index edb3e54..0000000 --- a/src/test/resources/responses/annotation/MoveAnnotationMarker.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "result": { - "annotationGuid": "fa827598edc76e74" - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329162518 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/SetAnnotationAccess.json b/src/test/resources/responses/annotation/SetAnnotationAccess.json deleted file mode 100644 index 80e0bc5..0000000 --- a/src/test/resources/responses/annotation/SetAnnotationAccess.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "result": { - "annotation": { - "guid": "446a692e2a17e807", - "documentGuid": "47300cb980090a73599fc72f93a70d5a485e738f3facc22108426356e0392e04", - "sessionGuid": "469f1303eaafc5d6", - "creatorGuid": "6d75a4d4db83f6fc", - "box": { - "x": 10.0, - "y": 10.0, - "width": 10.0, - "height": 10.0 - }, - "annotationPosition": { - "x": 10.0, - "y": 10.0 - }, - "range": null, - "svgPath": null, - "type": "Point", - "access": "Public", - "replies": [ - - ], - "createdOn": 1383329183813, - "fontColor": 0, - "fieldText": null, - "fontFamily": null, - "fontSize": null - } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329184231 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/SetAnnotationCollaborators.json b/src/test/resources/responses/annotation/SetAnnotationCollaborators.json deleted file mode 100644 index 29037e0..0000000 --- a/src/test/resources/responses/annotation/SetAnnotationCollaborators.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "result": { - "documentGuid": "d6b14380e13ba293a10e187d16f1c3e25721c9c2bfb4fb23400fca0c246ff679", - "sessionGuid": "8ddfb0cb0cd2dcbf", - "owner": { - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com", - "firstName": null, - "lastName": null, - "access_rights": null, - "color": null, - "customEmailMessage": null - }, - "collaborators": [ - { - "id": 5332, - "guid": "7279fabf84617f0b", - "primary_email": "user_one@mailinator.com", - "firstName": "John", - "lastName": "Smith", - "access_rights": 15, - "color": 601756, - "customEmailMessage": null - }, - { - "id": 5333, - "guid": "e5f468fc7574a5f2", - "primary_email": "user_two@mailinator.com", - "firstName": null, - "lastName": null, - "access_rights": 15, - "color": 6621505, - "customEmailMessage": null - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329220115 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/SetReviewerContacts.json b/src/test/resources/responses/annotation/SetReviewerContacts.json deleted file mode 100644 index 8c3ac71..0000000 --- a/src/test/resources/responses/annotation/SetReviewerContacts.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "result": { - "reviewerContacts": [ - { - "emailAddress": "john@smith.com", - "firstName": null, - "lastName": null - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329238730 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/SetReviewerRights.json b/src/test/resources/responses/annotation/SetReviewerRights.json deleted file mode 100644 index 426eb28..0000000 --- a/src/test/resources/responses/annotation/SetReviewerRights.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "result": { - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329246473 -} \ No newline at end of file diff --git a/src/test/resources/responses/annotation/SetSharedLinkAccessRights.json b/src/test/resources/responses/annotation/SetSharedLinkAccessRights.json deleted file mode 100644 index abb8280..0000000 --- a/src/test/resources/responses/annotation/SetSharedLinkAccessRights.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "result": { - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329317826 -} \ 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..5d8c2eb 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,9 +20,10 @@ "primary_email": "user_one@mailinator.com", "firstName": "John", "lastName": "Smith", - "access_rights": 15, + "color": 13828740, - "customEmailMessage": null + "customEmailMessage": null, + "avatar": null } ] }, diff --git a/src/test/resources/responses/ant/CreateAnnotationReply.json b/src/test/resources/responses/ant/CreateAnnotationReply.json index 6a3864b..b73ac27 100644 --- a/src/test/resources/responses/ant/CreateAnnotationReply.json +++ b/src/test/resources/responses/ant/CreateAnnotationReply.json @@ -1,9 +1,10 @@ { - "result": { - "replyGuid": "688a648b", - "annotationGuid": "8257702b138f2b55", - "replyDateTime": "2013-07-30T18:06:04.657Z" - }, - "status": "Ok", - "composedOn": 1375207486195 + "result": { + "replyGuid": "688a648b", + "annotationGuid": "8257702b138f2b55", + "replyDateTime": "2013-07-30T18:04:47.0077657Z" + }, + "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..94f7b60 100644 --- a/src/test/resources/responses/ant/GetAnnotationCollaborators.json +++ b/src/test/resources/responses/ant/GetAnnotationCollaborators.json @@ -10,10 +10,10 @@ "lastName": "Strashniy", "access_rights": null, "color": null, - "customEmailMessage": null + "customEmailMessage": null, + "avatar": null }, "collaborators": [ - ], "shared_link_access_rights": null }, 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 87758e8..f1c5619 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", + "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 } \ 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 374e75d..c33c7bc 100644 --- a/src/test/resources/responses/ant/SetAnnotationAccess.json +++ b/src/test/resources/responses/ant/SetAnnotationAccess.json @@ -1,29 +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 - }, - "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 - } - }, - "status": "Ok", - "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..fbb28d6 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": null }, "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": null }, { "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": 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/AddJobDocument.json b/src/test/resources/responses/async/AddJobDocument.json index 2bde18e..17e271b 100644 --- a/src/test/resources/responses/async/AddJobDocument.json +++ b/src/test/resources/responses/async/AddJobDocument.json @@ -1,8 +1,8 @@ { "result": { - "document_id": 131805 + "document_id": 325150 }, "status": "Ok", "error_message": null, - "composedOn": 1383329323588 + "composedOn": 1375208390418 } \ No newline at end of file diff --git a/src/test/resources/responses/async/AddJobDocumentUrl.json b/src/test/resources/responses/async/AddJobDocumentUrl.json index eec5cf9..ea1ba0f 100644 --- a/src/test/resources/responses/async/AddJobDocumentUrl.json +++ b/src/test/resources/responses/async/AddJobDocumentUrl.json @@ -1,8 +1,8 @@ { "result": { - "document_id": 131806 + "document_id": 325158 }, "status": "Ok", "error_message": null, - "composedOn": 1383329333838 + "composedOn": 1375208429450 } \ No newline at end of file diff --git a/src/test/resources/responses/async/Convert.json b/src/test/resources/responses/async/Convert.json index 97cf19e..e8f3b39 100644 --- a/src/test/resources/responses/async/Convert.json +++ b/src/test/resources/responses/async/Convert.json @@ -1,8 +1,8 @@ { "result": { - "job_id": 128000 + "job_id": 801916 }, "status": "Ok", "error_message": null, - "composedOn": 1383329342534 + "composedOn": 1375208465325 } \ No newline at end of file diff --git a/src/test/resources/responses/async/CreateJob.json b/src/test/resources/responses/async/CreateJob.json index 6e54c5d..2039f81 100644 --- a/src/test/resources/responses/async/CreateJob.json +++ b/src/test/resources/responses/async/CreateJob.json @@ -1,9 +1,9 @@ { "result": { - "job_id": 128073, - "job_guid": "0d55f2835cce373081185811c1f84c5a5fb51ac6b9ebac7a5e71a57d52462d5b" + "job_id": 801989, + "job_guid": "f1c8e5ef37fdfb5868481b1dc8b405bd2932f55b28ec983c21f4b318e9f08540" }, "status": "Ok", "error_message": null, - "composedOn": 1383329532970 + "composedOn": 1375208736356 } \ 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/DeleteJobDocument.json b/src/test/resources/responses/async/DeleteJobDocument.json index 9dcb6a1..31307cd 100644 --- a/src/test/resources/responses/async/DeleteJobDocument.json +++ b/src/test/resources/responses/async/DeleteJobDocument.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383329543651 + "composedOn": 1375208788122 } \ No newline at end of file diff --git a/src/test/resources/responses/async/GetJob.json b/src/test/resources/responses/async/GetJob.json index 6fdf7d3..32e13e1 100644 --- a/src/test/resources/responses/async/GetJob.json +++ b/src/test/resources/responses/async/GetJob.json @@ -1,6 +1,6 @@ { "result": { - "id": 128087, + "id": 802003, "out_formats": null, "actions": "Convert, CompressZip", "status": "Draft", @@ -8,13 +8,13 @@ "priority": 5, "url_only": null, "documents": null, - "requested_time": 1383329580107, - "scheduled_time": 1383329580107, - "guid": "ada925111d16cad87d2abef65f89b2fc173b822de92f408e5d60e7b9dc955f5c", + "requested_time": 1375209056217, + "scheduled_time": 1375209056217, + "guid": "9004e980845e18228f7f46c5445fe4e6bd693257ec3a0f80458f6ef35d1a3721", "name": null, "callback_url": null }, "status": "Ok", "error_message": null, - "composedOn": 1383329580339 + "composedOn": 1375209056450 } \ No newline at end of file diff --git a/src/test/resources/responses/async/GetJobDocument.json b/src/test/resources/responses/async/GetJobDocument.json index 147b2ad..bbe3b04 100644 --- a/src/test/resources/responses/async/GetJobDocument.json +++ b/src/test/resources/responses/async/GetJobDocument.json @@ -6,5 +6,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383329573302 + "composedOn": 1375209022278 } \ 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/GetJobs.json b/src/test/resources/responses/async/GetJobs.json index 5fc1528..4a487b8 100644 --- a/src/test/resources/responses/async/GetJobs.json +++ b/src/test/resources/responses/async/GetJobs.json @@ -1,9 +1,9 @@ { "result": { - "count": 29532, + "count": 698619, "jobs": [ { - "id": 128080, + "id": 801996, "out_formats": null, "actions": "Convert", "status": "Draft", @@ -11,31 +11,74 @@ "priority": 5, "url_only": null, "documents": null, - "requested_time": 1383329548550, - "scheduled_time": 1383329548550, - "guid": "5aa2cf2b94db794080c936d9e17a9bb22b38b15090645ce64338861a40f3ad80", + "requested_time": 1375208819997, + "scheduled_time": 1375208819997, + "guid": "b571d5657c89a06d8568811d061803274e657e05da84bf79aa8b58225713cc32", "name": null, "callback_url": null }, { - "id": 128079, + "id": 801995, "out_formats": [ "Jpg" ], "actions": "View, Index", - "status": "Archived", + "status": "Postponed", "email_results": null, "priority": 5, "url_only": null, - "documents": null, - "requested_time": 1383329543070, - "scheduled_time": 1383329543070, - "guid": "b0ce0dab75ce1af56a0fffb74ba173f874c1cbb9a92b41e4f556addf7661b748", + "documents": { + "inputs": [ + { + "status": "Processed", + "proc_date": 1375208787560, + "output_formats": "jpg", + "outputs": [ + { + "error": null, + "name": null, + "version": null, + "size": 0, + "type": "Cells", + "type_str": "Cells", + "file_type_str": "Jpg", + "document_path": null, + "access": "Private", + "url": null, + "file_type": "Jpg", + "id": 0, + "guid": null + } + ], + "job_errors": [ + + ], + "actions": "View, Index", + "supported_output_file_types": null, + "name": "document_one.doc", + "version": 210, + "size": 9216, + "type": "Words", + "type_str": "Words", + "file_type_str": "Doc", + "document_path": "document_one.doc", + "access": "Private", + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", + "file_type": "Doc", + "id": 325150, + "guid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca" + } + ], + "outputs": null + }, + "requested_time": 1375208787560, + "scheduled_time": 1375208787560, + "guid": "501e3185542c8de8928237c18590135596d9b52e575898246c3105c1096d9fef", "name": null, "callback_url": null }, { - "id": 128078, + "id": 801994, "out_formats": null, "actions": "Convert, CompressZip", "status": "Draft", @@ -43,9 +86,9 @@ "priority": 5, "url_only": null, "documents": null, - "requested_time": 1383329542487, - "scheduled_time": 1383329542487, - "guid": "243add364351f436125ab93a5924d4188fbe59584c424b7cf29d9b59b4968f4d", + "requested_time": 1375208786730, + "scheduled_time": 1375208786730, + "guid": "5fde62ac7e5156c43ae80eff725ddc30a81ff1a0ea32f6ef7ac5ea0556b9754d", "name": null, "callback_url": null } @@ -53,5 +96,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383329548786 + "composedOn": 1375208820184 } \ 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/async/UpdateJob.json b/src/test/resources/responses/async/UpdateJob.json index 0bb7a79..5268816 100644 --- a/src/test/resources/responses/async/UpdateJob.json +++ b/src/test/resources/responses/async/UpdateJob.json @@ -1,8 +1,8 @@ { "result": { - "job_id": 128097 + "job_id": 802013 }, "status": "Ok", "error_message": null, - "composedOn": 1383329592161 + "composedOn": 1375209099137 } \ 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/document/GetDocumentAccessInfo.json b/src/test/resources/responses/document/GetDocumentAccessInfo.json deleted file mode 100644 index 04ea480..0000000 --- a/src/test/resources/responses/document/GetDocumentAccessInfo.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "result": { - "status": "Pending", - "owner": { - "nickname": "api@groupdocs.com", - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": null, - "claimed_id": null, - "token": null, - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 0, - "signedinOn": 0, - "signin_count": null, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": null - }, - "sharers": [ - - ], - "shared_on": 0, - "name": "document_one.doc", - "version": 1, - "size": 9216, - "type": "Words", - "type_str": "Words", - "file_type_str": "Doc", - "document_path": null, - "access": "Private", - "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/cfc0f987e841417bbec25808e4a289995926d05b7d956d6c2c1f8b376ad5775e", - "file_type": "Doc", - "id": 131845, - "guid": "cfc0f987e841417bbec25808e4a289995926d05b7d956d6c2c1f8b376ad5775e" - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329604270 -} \ No newline at end of file diff --git a/src/test/resources/responses/document/GetDocumentFormats.json b/src/test/resources/responses/document/GetDocumentFormats.json deleted file mode 100644 index c8609f3..0000000 --- a/src/test/resources/responses/document/GetDocumentFormats.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "result": { - "types": [ - "Doc", - "Docx", - "Docm", - "Dot", - "Dotx", - "Dotm", - "Rtf", - "Odt", - "Ott", - "Txt", - "Html", - "Pdf", - "Tiff", - "Xps", - "Epub", - "Jpeg", - "HtmlFixed" - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329619615 -} \ No newline at end of file diff --git a/src/test/resources/responses/document/GetDocumentMetadata.json b/src/test/resources/responses/document/GetDocumentMetadata.json deleted file mode 100644 index abe14a1..0000000 --- a/src/test/resources/responses/document/GetDocumentMetadata.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "result": { - "page_count": 1, - "views_count": 0, - "last_view": null, - "id": 131850, - "guid": "73a1b218acecd280cb970b6394f7d6befa827993b695a741d3ed6a51cc6bdff6" - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329656223 -} \ No newline at end of file diff --git a/src/test/resources/responses/document/GetDocumentViews.json b/src/test/resources/responses/document/GetDocumentViews.json deleted file mode 100644 index c212187..0000000 --- a/src/test/resources/responses/document/GetDocumentViews.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "result": { - "views": [ - - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329677071 -} \ No newline at end of file diff --git a/src/test/resources/responses/document/GetFolderSharers.json b/src/test/resources/responses/document/GetFolderSharers.json deleted file mode 100644 index d9724fa..0000000 --- a/src/test/resources/responses/document/GetFolderSharers.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "result": { - "owner": { - "nickname": "api@groupdocs.com", - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", - "claimed_id": null, - "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", - "storage": null, - "photo": null, - "active": false, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1381234750823, - "signedinOn": 1382132641813, - "signin_count": 5, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" - }, - "shared_users": [ - - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329691579 -} \ No newline at end of file diff --git a/src/test/resources/responses/document/GetTemplateFields.json b/src/test/resources/responses/document/GetTemplateFields.json deleted file mode 100644 index f70c403..0000000 --- a/src/test/resources/responses/document/GetTemplateFields.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "result": { - "fields": [ - - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329708511 -} \ No newline at end of file diff --git a/src/test/resources/responses/document/SetDocumentAccessMode.json b/src/test/resources/responses/document/SetDocumentAccessMode.json deleted file mode 100644 index 9b86a28..0000000 --- a/src/test/resources/responses/document/SetDocumentAccessMode.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "result": { - "status": "Pending", - "owner": { - "nickname": "api@groupdocs.com", - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": null, - "claimed_id": null, - "token": null, - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 0, - "signedinOn": 0, - "signin_count": null, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": null - }, - "sharers": [ - - ], - "shared_on": 0, - "name": "document_one.doc", - "version": 1, - "size": 9216, - "type": "Words", - "type_str": "Words", - "file_type_str": "Doc", - "document_path": null, - "access": "Private", - "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/1103d08eb954ff821c5dbb216320e3b66e460ea68f69c51620408c49f170c3d4", - "file_type": "Doc", - "id": 131854, - "guid": "1103d08eb954ff821c5dbb216320e3b66e460ea68f69c51620408c49f170c3d4" - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329727671 -} \ No newline at end of file diff --git a/src/test/resources/responses/document/ShareDocument.json b/src/test/resources/responses/document/ShareDocument.json deleted file mode 100644 index 162abb6..0000000 --- a/src/test/resources/responses/document/ShareDocument.json +++ /dev/null @@ -1,207 +0,0 @@ -{ - "result": { - "owner": { - "nickname": "api@groupdocs.com", - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", - "claimed_id": null, - "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", - "storage": null, - "photo": null, - "active": false, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1381234750823, - "signedinOn": 1382132641813, - "signin_count": 5, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" - }, - "shared_users": [ - { - "nickname": "user_one@nonexistent.com", - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": "user_one@nonexistent.com", - "claimed_id": null, - "token": "ae2e0dc90c4c8f0eecf1210f1b99bfe4c4665782b58c5fdeb88e7a0758fdb081", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1340364980483, - "signedinOn": 0, - "signin_count": null, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 435, - "guid": "594f22ae2d322b9c", - "primary_email": "user_one@nonexistent.com" - }, - { - "nickname": "user_two@nonexistent.com", - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": "user_two@nonexistent.com", - "claimed_id": null, - "token": "c348b143c91f799b625bda3cbde53e73189495dc9cd8cec2de03f53c65814730", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1340365001703, - "signedinOn": 0, - "signin_count": null, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 436, - "guid": "3cddd20d6eff25cd", - "primary_email": "user_two@nonexistent.com" - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329742657 -} \ No newline at end of file diff --git a/src/test/resources/responses/document/ShareFolder.json b/src/test/resources/responses/document/ShareFolder.json deleted file mode 100644 index 1f437b5..0000000 --- a/src/test/resources/responses/document/ShareFolder.json +++ /dev/null @@ -1,207 +0,0 @@ -{ - "result": { - "owner": { - "nickname": "api@groupdocs.com", - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", - "claimed_id": null, - "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", - "storage": null, - "photo": null, - "active": false, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1381234750823, - "signedinOn": 1382132641813, - "signin_count": 5, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" - }, - "shared_users": [ - { - "nickname": "user_one@nonexistent.com", - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": "user_one@nonexistent.com", - "claimed_id": null, - "token": "ae2e0dc90c4c8f0eecf1210f1b99bfe4c4665782b58c5fdeb88e7a0758fdb081", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1340364980483, - "signedinOn": 0, - "signin_count": null, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 435, - "guid": "594f22ae2d322b9c", - "primary_email": "user_one@nonexistent.com" - }, - { - "nickname": "user_two@nonexistent.com", - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": "user_two@nonexistent.com", - "claimed_id": null, - "token": "c348b143c91f799b625bda3cbde53e73189495dc9cd8cec2de03f53c65814730", - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1340365001703, - "signedinOn": 0, - "signin_count": null, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 436, - "guid": "3cddd20d6eff25cd", - "primary_email": "user_two@nonexistent.com" - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329759013 -} \ No newline at end of file diff --git a/src/test/resources/responses/document/UnshareDocument.json b/src/test/resources/responses/document/UnshareDocument.json deleted file mode 100644 index 7a8ed4b..0000000 --- a/src/test/resources/responses/document/UnshareDocument.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "result": { - "owner": { - "nickname": "api@groupdocs.com", - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", - "claimed_id": null, - "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", - "storage": null, - "photo": null, - "active": false, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1381234750823, - "signedinOn": 1382132641813, - "signin_count": 5, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" - }, - "shared_users": null - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329776970 -} \ No newline at end of file diff --git a/src/test/resources/responses/document/UnshareFolder.json b/src/test/resources/responses/document/UnshareFolder.json deleted file mode 100644 index d6e2526..0000000 --- a/src/test/resources/responses/document/UnshareFolder.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "result": { - "owner": { - "nickname": "api@groupdocs.com", - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", - "claimed_id": null, - "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", - "storage": null, - "photo": null, - "active": false, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1381234750823, - "signedinOn": 1382132641813, - "signin_count": 5, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" - }, - "shared_users": null - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383329785784 -} \ No newline at end of file diff --git a/src/test/resources/responses/merge/AddDataSource.json b/src/test/resources/responses/merge/AddDataSource.json index 2412f79..996508e 100644 --- a/src/test/resources/responses/merge/AddDataSource.json +++ b/src/test/resources/responses/merge/AddDataSource.json @@ -1,8 +1,8 @@ { "result": { - "datasource_id": 4018 + "datasource_id": 21915 }, "status": "Ok", "error_message": null, - "composedOn": 1383329797563 + "composedOn": 1375211108509 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/AddDocumentQuestionnaire.json b/src/test/resources/responses/merge/AddDocumentQuestionnaire.json index c4d43f3..dac1b71 100644 --- a/src/test/resources/responses/merge/AddDocumentQuestionnaire.json +++ b/src/test/resources/responses/merge/AddDocumentQuestionnaire.json @@ -1,11 +1,11 @@ { "result": { - "document_id": 131861, - "questionnaire_id": 13729, + "document_id": 317869, + "questionnaire_id": 66744, "questionnaire_guid": null, "adjusted_name": null }, "status": "Ok", "error_message": null, - "composedOn": 1383329811925 + "composedOn": 1375211187728 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/AddJobDocumentDataSource.json b/src/test/resources/responses/merge/AddJobDocumentDataSource.json index c1a00a2..64e2df9 100644 --- a/src/test/resources/responses/merge/AddJobDocumentDataSource.json +++ b/src/test/resources/responses/merge/AddJobDocumentDataSource.json @@ -1,10 +1,10 @@ { "result": { - "job_id": 128205, - "document_id": 131866, - "datasource_id": 4021 + "job_id": 802165, + "document_id": 317869, + "datasource_id": 21918 }, "status": "Ok", "error_message": null, - "composedOn": 1383329830787 + "composedOn": 1375211291650 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/AddQuestionnaireCollector.json b/src/test/resources/responses/merge/AddQuestionnaireCollector.json index e21a11d..769b72f 100644 --- a/src/test/resources/responses/merge/AddQuestionnaireCollector.json +++ b/src/test/resources/responses/merge/AddQuestionnaireCollector.json @@ -1,10 +1,10 @@ { "result": { - "questionnaire_id": 13737, - "collector_id": 7017, - "collector_guid": "a8ea74488b87ceef53ca4ccef683993e" + "questionnaire_id": 66752, + "collector_id": 23377, + "collector_guid": "8256cb47482d604ce080eb661265e6eb" }, "status": "Ok", "error_message": null, - "composedOn": 1383329851562 + "composedOn": 1375211393755 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/AddQuestionnaireExecution.json b/src/test/resources/responses/merge/AddQuestionnaireExecution.json index b9a60dd..d591473 100644 --- a/src/test/resources/responses/merge/AddQuestionnaireExecution.json +++ b/src/test/resources/responses/merge/AddQuestionnaireExecution.json @@ -1,10 +1,10 @@ { "result": { - "collector_id": 7024, - "execution_id": 5171, - "execution_guid": "6624877073ed9ca09f9b04e8c6c19db0" + "collector_id": 23385, + "execution_id": 20987, + "execution_guid": "027cf53708caaceb8b4f3d529902ca4e" }, "status": "Ok", "error_message": null, - "composedOn": 1383329878010 + "composedOn": 1375211553819 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/CreateDocumentQuestionnaire.json b/src/test/resources/responses/merge/CreateDocumentQuestionnaire.json index 14d513a..4ec4af9 100644 --- a/src/test/resources/responses/merge/CreateDocumentQuestionnaire.json +++ b/src/test/resources/responses/merge/CreateDocumentQuestionnaire.json @@ -1,11 +1,11 @@ { "result": { - "document_id": 131887, - "questionnaire_id": 13751, - "questionnaire_guid": "ff9de8501545cbaf7d801170a65f54a8", - "adjusted_name": "New Questionnaire" + "document_id": 325150, + "questionnaire_id": 66767, + "questionnaire_guid": "3069044fb198d84a0f8abf912df1465e", + "adjusted_name": "New Questionnaire (208)" }, "status": "Ok", "error_message": null, - "composedOn": 1383329905548 + "composedOn": 1375211687678 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/CreateQuestionnaire.json b/src/test/resources/responses/merge/CreateQuestionnaire.json index 79f499f..82dc977 100644 --- a/src/test/resources/responses/merge/CreateQuestionnaire.json +++ b/src/test/resources/responses/merge/CreateQuestionnaire.json @@ -1,10 +1,10 @@ { "result": { - "questionnaire_id": 13757, - "questionnaire_guid": "2203d3e53e1781d6fda86bcce8e1693d", - "adjusted_name": "New Questionnaire" + "questionnaire_id": 66773, + "questionnaire_guid": "7d49d0b2a279226ac513c9137f0ed924", + "adjusted_name": "New Questionnaire (214)" }, "status": "Ok", "error_message": null, - "composedOn": 1383329920356 + "composedOn": 1375211749678 } \ 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/DeleteQuestionnaireCollector.json b/src/test/resources/responses/merge/DeleteQuestionnaireCollector.json index b6e4e95..6b5acbe 100644 --- a/src/test/resources/responses/merge/DeleteQuestionnaireCollector.json +++ b/src/test/resources/responses/merge/DeleteQuestionnaireCollector.json @@ -1,9 +1,9 @@ { "result": { - "questionnaire_id": 13761, - "collector_id": 7031 + "questionnaire_id": 66777, + "collector_id": 23392 }, "status": "Ok", "error_message": null, - "composedOn": 1383329931329 + "composedOn": 1375211809569 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/DeleteQuestionnaireExecution.json b/src/test/resources/responses/merge/DeleteQuestionnaireExecution.json index 4170aa7..03b5cd3 100644 --- a/src/test/resources/responses/merge/DeleteQuestionnaireExecution.json +++ b/src/test/resources/responses/merge/DeleteQuestionnaireExecution.json @@ -1,9 +1,9 @@ { "result": { - "collector_id": 7035, - "execution_id": 5178 + "collector_id": 23396, + "execution_id": 20994 }, "status": "Ok", "error_message": null, - "composedOn": 1383329950034 + "composedOn": 1375211907850 } \ 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/GetDataSource.json b/src/test/resources/responses/merge/GetDataSource.json index e6d9029..3a44b7f 100644 --- a/src/test/resources/responses/merge/GetDataSource.json +++ b/src/test/resources/responses/merge/GetDataSource.json @@ -1,8 +1,8 @@ { "result": { "datasource": { - "id": 4025, - "questionnaire_id": 13770, + "id": 21922, + "questionnaire_id": 66786, "descr": "Description", "fields": [ { @@ -16,11 +16,11 @@ "nested_fields": null } ], - "created_on": 1383329973557, - "modified_on": 1383329973587 + "created_on": 1375212023334, + "modified_on": 1375212023397 } }, "status": "Ok", "error_message": null, - "composedOn": 1383329973865 + "composedOn": 1375212023663 } \ 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 2893c53..de42019 100644 --- a/src/test/resources/responses/merge/GetDocumentQuestionnaires.json +++ b/src/test/resources/responses/merge/GetDocumentQuestionnaires.json @@ -1,11 +1,1902 @@ -{ - "result": { - "document_id": 131921, - "questionnaires": [ +class GetDocumentQuestionnairesResponse { +result: class GetDocumentQuestionnairesResult { +document_id: 317869.0 +questionnaires: [class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65037.0 +guid: cc30ac78109970d85d4893108682949c +name: Test Questionnaire (3) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373693966920 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65038.0 +guid: cecca4bd695d763e6af45451b5083b2e +name: Test Questionnaire (4) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373693970797 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65039.0 +guid: d127df78f77092d746df244e84e85543 +name: Test Questionnaire (5) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373693974693 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65040.0 +guid: 85ccde3aaf5cb88c710e78ea126f5c68 +name: Test Questionnaire (6) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373693979233 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] +formats: [] +id: 65090.0 +guid: efcaf18442371fda5e19f2a0969af631 +name: Test Questionnaire (46) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373694230697 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65192.0 +guid: 2130b24aa8782a06d207a8ee1e530c79 +name: Test Questionnaire (131) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373741420243 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65193.0 +guid: 0fb4e4f7788755f234e9e1b8caafa457 +name: Test Questionnaire (132) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373741425603 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65194.0 +guid: b36af52afeba73af930266f7912bc522 +name: Test Questionnaire (133) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373741430557 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65195.0 +guid: e5a2efe41e70fa0fc875522d1c22121d +name: Test Questionnaire (134) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373741437540 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] +formats: [] +id: 65245.0 +guid: f1165a8cdfb4dd5c5264b9dad419e9d6 +name: Test Questionnaire (174) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373741739300 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65347.0 +guid: 9d6914f676bafbc8ab25a4431fad65af +name: Test Questionnaire (259) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373780434070 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65348.0 +guid: cb0c8f0562272a4b6113a95ef629fc32 +name: Test Questionnaire (260) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373780441230 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65349.0 +guid: 85823d049fb7df3697ee061d0536262a +name: Test Questionnaire (261) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373780449803 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65350.0 +guid: 7b49db528f83fed96287fb0ca8dc0558 +name: Test Questionnaire (262) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373780461357 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] +formats: [] +id: 65400.0 +guid: 7abc6fb66aa7724480ba85e5fd531d55 +name: Test Questionnaire (302) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373780878867 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65502.0 +guid: 1ef22d9702131e427693061d8b46c8fb +name: Test Questionnaire (387) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373866901253 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65503.0 +guid: 830a19305553b76a815918477de4ca4f +name: Test Questionnaire (388) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373866909307 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65504.0 +guid: 616cd33ee7d1e1ae5ba28829550b19a7 +name: Test Questionnaire (389) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373866917493 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65505.0 +guid: dc2dca6ae9915b1d66db28d7120243ca +name: Test Questionnaire (390) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373866928150 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] +formats: [] +id: 65555.0 +guid: 75e3db1c8da3204ebbeee280d1c58aeb +name: Test Questionnaire (430) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373867372953 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65656.0 +guid: 71c0b64380c41b8fafa0cf31a662d1ba +name: Test Questionnaire (514) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373953445447 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65657.0 +guid: 99e92571e31f0ca9c599926cd304597c +name: Test Questionnaire (515) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373953456370 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65658.0 +guid: da259d98fcd0b9c84dd797d5bd240d97 +name: Test Questionnaire (516) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373953466963 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65659.0 +guid: 597569ca2251366d659b7dfaee0edd9d +name: Test Questionnaire (517) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373953485387 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] +formats: [] +id: 65709.0 +guid: dee637993b7523810a35bd61f3f46398 +name: Test Questionnaire (557) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1373954073697 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65811.0 +guid: 409bb38dcc3ce947d62957d9f98ccd7b +name: Test Questionnaire (642) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1374034019980 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65812.0 +guid: ab2fd7e8f73c84fd31a20dbb3aec66ef +name: Test Questionnaire (643) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1374034032647 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65813.0 +guid: 550f9fe05d5843474a0199f7db142bf0 +name: Test Questionnaire (644) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1374034044757 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 65814.0 +guid: f2b703e89d4b7443378014acb82bd6b5 +name: Test Questionnaire (645) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1374034060990 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] +formats: [] +id: 65864.0 +guid: 32fcc9538b022e70372ee589fe37c84c +name: Test Questionnaire (685) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1374034687263 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 66431.0 +guid: 66480838c64bbe75cd83bf03df896489 +name: Test Questionnaire (770) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1374064278627 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 66432.0 +guid: 19792a12d4eebd7c4719933fe7ca787a +name: Test Questionnaire (771) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1374064294313 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 66433.0 +guid: 48732590d19ad556a62ace2b5a0215ac +name: Test Questionnaire (772) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1374064308300 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 66434.0 +guid: d676966ab0f2271a0dea336b133404b6 +name: Test Questionnaire (773) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1374064332173 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] +formats: [] +id: 66484.0 +guid: 13332812056b42adc7a1f3f3d972abc7 +name: Test Questionnaire (813) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1374065085247 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 66589.0 +guid: 350e31bc77a3a626dc1e86bdb8dbfe01 +name: Test Questionnaire (899) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1375124949303 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: [] +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 66590.0 +guid: 74542e490e9a267c808c1f4717c97e72 +name: Test Questionnaire (900) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1375124963613 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 66591.0 +guid: 7593923a3210023d9d5bab56f2402159 +name: Test Questionnaire (901) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1375124977457 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: [] +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 66592.0 +guid: c7a1260aa8b1b5272286e16c97b1c727 +name: Test Questionnaire (902) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1375124997317 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] +formats: [] +id: 66642.0 +guid: 2b19f7b7738e574e2a6ae54086e2d3b4 +name: Test Questionnaire (942) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1375125954350 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 66744.0 +guid: 5e87ca755487aa2743a2c3755be0f9d1 +name: Test Questionnaire (1027) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1375211187027 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 66745.0 +guid: b3a65377ce2b032aff82025b60aa3835 +name: Test Questionnaire (1028) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1375211203527 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [] +id: 66746.0 +guid: b8602b2e5b1fec3d35273ee6d21792c3 +name: Test Questionnaire (1029) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1375211219777 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +, class QuestionnaireInfo { +resolved_executions: 0 +pages: [class QuestionnairePageInfo { +number: 1 +title: Page +questions: [class QuestionInfo { +field: topmostSubform[0].Page1[0].f1_01_0_[0] +text: Text +def_answer: Answer +required: true +disabled: false +type: GenericText +answers: [class AnswerInfo { +text: Text +value: Value +ordinal: null +} +] +conditions: null +acceptableValues: null +max_length: null +rect: null +} +] +} +] +document_ids: null +formats: [Pdf, Xps, Tiff, Jpeg, Jpg, Txt] +id: 66747.0 +guid: 7ece1ddcf52490b6ea84fcd6dfaff479 +name: Test Questionnaire (1030) +descr: Test Questionnaire Description +status: Ready +assigned_questions: 1 +total_questions: 1 +modified: 1375211242103 +expires: 0 +folder: null +emails: null +output_format: null +open_on_completion: false +allowed_operations: null +} +] +} - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383330012330 -} \ No newline at end of file +status: Ok +error_message: null +composedOn: 1375212226053 +} diff --git a/src/test/resources/responses/merge/GetQuestionnaire.json b/src/test/resources/responses/merge/GetQuestionnaire.json index 6e6da6b..0aafa71 100644 --- a/src/test/resources/responses/merge/GetQuestionnaire.json +++ b/src/test/resources/responses/merge/GetQuestionnaire.json @@ -17,28 +17,30 @@ "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", + "ordinal": null } ], - "conditions": null + "conditions": null, + "acceptableValues": null, + "max_length": null, + "rect": null } ] } ], - "document_ids": [ - - ], + "document_ids": null, "formats": [ ], - "id": 13829, - "guid": "4888a1461cf94e8b2cc36009db82860f", - "name": "Test Questionnaire", + "id": 66846, + "guid": "d295826a5c1c941106c75237fabb31f5", + "name": "Test Questionnaire (1119)", "descr": "Test Questionnaire Description", "status": "Ready", "assigned_questions": 1, "total_questions": 1, - "modified": 1383330248407, + "modified": 1375213454127, "expires": 0, "folder": null, "emails": null, @@ -49,5 +51,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383330249020 + "composedOn": 1375213454720 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireCollector.json b/src/test/resources/responses/merge/GetQuestionnaireCollector.json index 84a7e64..9d2639a 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireCollector.json +++ b/src/test/resources/responses/merge/GetQuestionnaireCollector.json @@ -1,19 +1,19 @@ { "result": { "collector": { - "id": 7041, - "guid": "4931d0b704f569de92fa702dce71677e", + "id": 23402, + "guid": "47fbcd1b7b1b887d61cc1e1d64460d2c", "type": "Link", "status": "Active", - "questionnaire_id": 13784, + "questionnaire_id": 66800, "resolved_executions": 0, "emails": [ ], - "modified": 1383330043057 + "modified": 1375212421257 } }, "status": "Ok", "error_message": null, - "composedOn": 1383330043298 + "composedOn": 1375212421506 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireCollectorExecutions.json b/src/test/resources/responses/merge/GetQuestionnaireCollectorExecutions.json index 787d23a..5a9a61a 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireCollectorExecutions.json +++ b/src/test/resources/responses/merge/GetQuestionnaireCollectorExecutions.json @@ -1,32 +1,32 @@ { "result": { - "questionnaire_guid": "a2b53e8bc8ac73295485b9c88789fdf6", + "questionnaire_guid": "491c35145d30916144f5fa6e0941fd90", "executions": [ { "status": "Draft", - "guid": "ccaf6464af1d8309a5a3978996e39c03", - "collector_id": 7040, - "collector_guid": "4a6fe32cc688c557c9380444d1939a50", - "questionnaire_name": "Test Questionnaire", + "guid": "d5e362662535343861fad1dddc85749c", + "collector_id": 23401, + "collector_guid": "2444bf4c0dc68eda0db3b21b3ba8095d", + "questionnaire_name": "Test Questionnaire (1072)", "owner": { - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" + "id": 167, + "guid": "ea103bbe8cb8ce07", + "primary_email": "api-tests@groupdocs.com" }, "executive": { - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" + "id": 167, + "guid": "ea103bbe8cb8ce07", + "primary_email": "api-tests@groupdocs.com" }, "approver": null, "datasource_id": null, - "id": 5182, - "modified": 1383330034113, + "id": 20998, + "modified": 1375212369320, "document": null } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383330034467 + "composedOn": 1375212369569 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireCollectors.json b/src/test/resources/responses/merge/GetQuestionnaireCollectors.json index e9b16e4..ac26701 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireCollectors.json +++ b/src/test/resources/responses/merge/GetQuestionnaireCollectors.json @@ -2,20 +2,20 @@ "result": { "collectors": [ { - "id": 7039, - "guid": "017867d68e64291ec42aec31b8ed3637", + "id": 23400, + "guid": "285ab572ef02721c162ebcc41cfce675", "type": "Link", "status": "Active", - "questionnaire_id": 13782, + "questionnaire_id": 66798, "resolved_executions": 0, "emails": [ ], - "modified": 1383330025407 + "modified": 1375212318773 } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383330025697 + "composedOn": 1375212319022 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireDataSources.json b/src/test/resources/responses/merge/GetQuestionnaireDataSources.json index 021fcd0..18976b7 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireDataSources.json +++ b/src/test/resources/responses/merge/GetQuestionnaireDataSources.json @@ -6,5 +6,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383330051518 + "composedOn": 1375212469788 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireExecution.json b/src/test/resources/responses/merge/GetQuestionnaireExecution.json index 0ac53f7..468c1db 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireExecution.json +++ b/src/test/resources/responses/merge/GetQuestionnaireExecution.json @@ -17,28 +17,30 @@ "answers": [ { "text": "Text", - "value": "Value" + "value": "Value", + "ordinal": null } ], - "conditions": null + "conditions": null, + "acceptableValues": null, + "max_length": null, + "rect": null } ] } ], - "document_ids": [ - - ], + "document_ids": null, "formats": [ ], - "id": 13796, - "guid": "873e50f40fd3e07673deadd669cbadf5", - "name": "Test Questionnaire", + "id": 66812, + "guid": "9108c81ad5753fda73bf523b016270a7", + "name": "Test Questionnaire (1085)", "descr": "Test Questionnaire Description", "status": "Ready", "assigned_questions": 1, "total_questions": 1, - "modified": 1383330097303, + "modified": 1375212725413, "expires": 0, "folder": null, "emails": null, @@ -48,28 +50,28 @@ }, "execution": { "status": "Draft", - "guid": "8237cb9a273d9239c61564867e053825", - "collector_id": 7043, - "collector_guid": "41d5fb18de072b580feb9a41bb4fbc13", - "questionnaire_name": "Test Questionnaire", + "guid": "faa1a1513b08db2ec00effe3ca46219c", + "collector_id": 23404, + "collector_guid": "60e2ce9f8e76f52a6d30fb42b1229afa", + "questionnaire_name": "Test Questionnaire (1085)", "owner": { - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" + "id": 167, + "guid": "ea103bbe8cb8ce07", + "primary_email": "api-tests@groupdocs.com" }, "executive": { - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" + "id": 167, + "guid": "ea103bbe8cb8ce07", + "primary_email": "api-tests@groupdocs.com" }, "approver": null, "datasource_id": null, - "id": 5184, - "modified": 1383330098870, + "id": 21000, + "modified": 1375212727320, "document": null } }, "status": "Ok", "error_message": null, - "composedOn": 1383330099157 + "composedOn": 1375212727616 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireExecutions.json b/src/test/resources/responses/merge/GetQuestionnaireExecutions.json index 7fd9b94..4cd0a6c 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireExecutions.json +++ b/src/test/resources/responses/merge/GetQuestionnaireExecutions.json @@ -1,32 +1,32 @@ { "result": { - "questionnaire_guid": "66bb348d8935970351c0e27534c7878a", + "questionnaire_guid": "5288badbf00e34acca2b524432089a4a", "executions": [ { "status": "Draft", - "guid": "6bda2ff761e5caf01d70fa1e4a08b834", - "collector_id": 7042, - "collector_guid": "ef0c467a2fe6b6a8f15a89fba9c0b5bc", - "questionnaire_name": "Test Questionnaire", + "guid": "f440ad3ae61f71c41fbeec1170f0f577", + "collector_id": 23403, + "collector_guid": "3ca1b6383c2784b02b327602d164d8c5", + "questionnaire_name": "Test Questionnaire (1084)", "owner": { - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" + "id": 167, + "guid": "ea103bbe8cb8ce07", + "primary_email": "api-tests@groupdocs.com" }, "executive": { - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" + "id": 167, + "guid": "ea103bbe8cb8ce07", + "primary_email": "api-tests@groupdocs.com" }, "approver": null, "datasource_id": null, - "id": 5183, - "modified": 1383330089953, + "id": 20999, + "modified": 1375212676693, "document": null } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383330090256 + "composedOn": 1375212677022 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireFields.json b/src/test/resources/responses/merge/GetQuestionnaireFields.json index 0d26a6c..0040f0e 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireFields.json +++ b/src/test/resources/responses/merge/GetQuestionnaireFields.json @@ -5,11 +5,15 @@ "page": 0, "name": "topmostSubform[0].Page1[0].f1_01_0_[0]", "type": null, - "rect": null + "rect": null, + "fieldtype": null, + "acceptableValues": null, + "mandatory": null, + "maxlength":null } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383330232498 + "composedOn": 1375213354001 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaireMetadata.json b/src/test/resources/responses/merge/GetQuestionnaireMetadata.json index 1ec67bf..770ba2d 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireMetadata.json +++ b/src/test/resources/responses/merge/GetQuestionnaireMetadata.json @@ -1,14 +1,14 @@ { "result": { "questionnaire": { - "id": 13828, - "guid": "58fe8c2a26e0e0838b04b84fb250d5c3", - "name": "Test Questionnaire", + "id": 66845, + "guid": "9a0112fa9de14991787d88b85d0fd74f", + "name": "Test Questionnaire (1118)", "descr": "Test Questionnaire Description", "status": "Ready", "assigned_questions": 1, "total_questions": 1, - "modified": 1383330239523, + "modified": 1375213402690, "expires": 0, "folder": null, "emails": null, @@ -19,5 +19,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383330240011 + "composedOn": 1375213403439 } \ No newline at end of file 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/GetTemplates.json b/src/test/resources/responses/merge/GetTemplates.json index 9bfcc96..e8e8f6b 100644 --- a/src/test/resources/responses/merge/GetTemplates.json +++ b/src/test/resources/responses/merge/GetTemplates.json @@ -4,14 +4,12 @@ { "name": "document_one_with_fields.pdf", "field_count": 42, - "size": 109410, - "upload_time": 1383330254720, - "id": 131980, - "guid": "11e14fc78a88857b9d138b75ee10dbb9e1e510a27b06aa6bacbc1717410bed68" + "id": 324660, + "guid": "4fd1c98cc2a8a69bfc5d166967675541af1887588e26a0e5911829a90cf54828" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383330255402 + "composedOn": 1375213488533 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/MergeDatasource.json b/src/test/resources/responses/merge/MergeDatasource.json index a4f8231..bb3d7bc 100644 --- a/src/test/resources/responses/merge/MergeDatasource.json +++ b/src/test/resources/responses/merge/MergeDatasource.json @@ -1,10 +1,10 @@ { "result": { - "job_id": 128320, - "document_id": 131994, - "datasource_id": 4051 + "job_id": 802282, + "document_id": 317869, + "datasource_id": 21948 }, "status": "Ok", "error_message": null, - "composedOn": 1383330280635 + "composedOn": 1375213608142 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/MergeDatasourceFields.json b/src/test/resources/responses/merge/MergeDatasourceFields.json index d289b3a..71c9d97 100644 --- a/src/test/resources/responses/merge/MergeDatasourceFields.json +++ b/src/test/resources/responses/merge/MergeDatasourceFields.json @@ -1,10 +1,10 @@ { "result": { - "job_id": 128308, - "document_id": 131981, - "datasource_id": 4045 + "job_id": 802270, + "document_id": 325150, + "datasource_id": 21942 }, "status": "Ok", "error_message": null, - "composedOn": 1383330261064 + "composedOn": 1375213521767 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/UpdateDataSource.json b/src/test/resources/responses/merge/UpdateDataSource.json index 2ce237b..534a121 100644 --- a/src/test/resources/responses/merge/UpdateDataSource.json +++ b/src/test/resources/responses/merge/UpdateDataSource.json @@ -1,8 +1,8 @@ { "result": { - "datasource_id": 4057 + "datasource_id": 21954 }, "status": "Ok", "error_message": null, - "composedOn": 1383330311259 + "composedOn": 1375213775345 } \ 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/merge/UpdateQuestionnaire.json b/src/test/resources/responses/merge/UpdateQuestionnaire.json index 93c326f..83fa042 100644 --- a/src/test/resources/responses/merge/UpdateQuestionnaire.json +++ b/src/test/resources/responses/merge/UpdateQuestionnaire.json @@ -1,8 +1,8 @@ { "result": { - "questionnaire_id": 13862 + "questionnaire_id": 66879 }, "status": "Ok", "error_message": null, - "composedOn": 1383330442474 + "composedOn": 1375214426158 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/UpdateQuestionnaireCollector.json b/src/test/resources/responses/merge/UpdateQuestionnaireCollector.json index d178838..93090d1 100644 --- a/src/test/resources/responses/merge/UpdateQuestionnaireCollector.json +++ b/src/test/resources/responses/merge/UpdateQuestionnaireCollector.json @@ -1,8 +1,8 @@ { "result": { - "collector_id": 7074 + "collector_id": 23436 }, "status": "Ok", "error_message": null, - "composedOn": 1383330330381 + "composedOn": 1375213882470 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/UpdateQuestionnaireExecution.json b/src/test/resources/responses/merge/UpdateQuestionnaireExecution.json index d648dcb..b261cbe 100644 --- a/src/test/resources/responses/merge/UpdateQuestionnaireExecution.json +++ b/src/test/resources/responses/merge/UpdateQuestionnaireExecution.json @@ -1,8 +1,8 @@ { "result": { - "execution_id": 5215 + "execution_id": 21032 }, "status": "Ok", "error_message": null, - "composedOn": 1383330353593 + "composedOn": 1375214005330 } \ No newline at end of file diff --git a/src/test/resources/responses/merge/UpdateQuestionnaireExecutionStatus.json b/src/test/resources/responses/merge/UpdateQuestionnaireExecutionStatus.json index bc4cf73..2db65e5 100644 --- a/src/test/resources/responses/merge/UpdateQuestionnaireExecutionStatus.json +++ b/src/test/resources/responses/merge/UpdateQuestionnaireExecutionStatus.json @@ -1,8 +1,8 @@ { "result": { - "execution_id": 5223 + "execution_id": 21040 }, "status": "Ok", "error_message": null, - "composedOn": 1383330395068 + "composedOn": 1375214190392 } \ 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/AddContact.json b/src/test/resources/responses/signature/AddContact.json index 05a2605..ea659bd 100644 --- a/src/test/resources/responses/signature/AddContact.json +++ b/src/test/resources/responses/signature/AddContact.json @@ -1,14 +1,14 @@ { "result": { "contact": { - "id": "32c96869e2c8273957c7ba5943f0e60b", + "id": "df32684608b8493a164d79451dec0a96", "firstName": "John", "lastName": "Smith", - "email": "user_one_14877360212805524@mailinator.com", + "email": "user_one_996782329062215@mailinator.com", "provider": "Groupdocs" } }, "status": "Ok", "error_message": null, - "composedOn": 1383330504652 + "composedOn": 1375214794939 } \ 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 3515cd8..0000000 --- a/src/test/resources/responses/signature/AddContactIntegration.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "result": { - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383330499404 -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddPredefinedList.json b/src/test/resources/responses/signature/AddPredefinedList.json index d92fd53..5c8eb70 100644 --- a/src/test/resources/responses/signature/AddPredefinedList.json +++ b/src/test/resources/responses/signature/AddPredefinedList.json @@ -1,13 +1,13 @@ { "result": { "list": { - "id": "66100d8d38286c6ca5eb53fbd9509022", - "name": "List - 5406043595139229", + "id": "c1fe03372d1db4131f8a35a3aadb425d", + "name": "List - 8434865226745041", "values": "value1;value2", "defaultValue": "value1" } }, "status": "Ok", "error_message": null, - "composedOn": 1383330514717 + "composedOn": 1375214830575 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddSignatureEnvelopeDocument.json b/src/test/resources/responses/signature/AddSignatureEnvelopeDocument.json index 78b1eac..86c1d67 100644 --- a/src/test/resources/responses/signature/AddSignatureEnvelopeDocument.json +++ b/src/test/resources/responses/signature/AddSignatureEnvelopeDocument.json @@ -1,11 +1,11 @@ { "result": { - "envelopeId": "042ec276737be795b2f6951bd18aab3f", + "envelopeId": "2346321ea0492d2dd1ac9de915c24dd3", "document": { - "documentId": "3b011135dc346f035eab90a0bc0fa654917e57d75a6d2c0e82a97a1b0b45b1ae", - "envelopeId": "042ec276737be795b2f6951bd18aab3f", + "documentId": "f031d102c275cda523686ae98f96ece9d9632ac669090c938fe291cf706c6ecc", + "envelopeId": "2346321ea0492d2dd1ac9de915c24dd3", "order": 0, - "name": "document_one_doc.pdf", + "name": "document_one.doc", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "finalDocumentMD5": "", "originalDocumentPagesCount": 1, @@ -13,10 +13,10 @@ "originalDocumentImportedFields": [ ], - "originalDocumentId": "3b011135dc346f035eab90a0bc0fa654917e57d75a6d2c0e82a97a1b0b45b1ae" + "originalDocumentId": "f031d102c275cda523686ae98f96ece9d9632ac669090c938fe291cf706c6ecc" } }, "status": "Ok", "error_message": null, - "composedOn": 1383330530955 + "composedOn": 1375214883215 } \ 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 c220419..8fdd3ee 100644 --- a/src/test/resources/responses/signature/AddSignatureEnvelopeField.json +++ b/src/test/resources/responses/signature/AddSignatureEnvelopeField.json @@ -1,10 +1,47 @@ { - "result": { - "envelopeId": "643bd335f61e530116e38ca01ba0e84a", - "fields": [ - - ] - }, - "status": "Ok", - "composedOn": 1383330566521 + "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/AddSignatureEnvelopeRecipient.json b/src/test/resources/responses/signature/AddSignatureEnvelopeRecipient.json index 829f196..eab99b3 100644 --- a/src/test/resources/responses/signature/AddSignatureEnvelopeRecipient.json +++ b/src/test/resources/responses/signature/AddSignatureEnvelopeRecipient.json @@ -1,17 +1,17 @@ { "result": { - "envelopeId": "83fe8616518c226a4a3813e2ac83406f", + "envelopeId": "3e0250b180c6ecb0cfae5281d0ac6a64", "recipient": { - "id": "e5ded2d3e09b8268e5575670b5532b6a", + "id": "8215458f3af1f22c0c6f40b6f42dc747", "firstName": "John", "lastName": "Smith", - "email": "recipient-5564351491703736@mailinator.com", + "email": "recipient-6207312293153898@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "", + "statusDateTime": "1970-01-01T00:00:00.0000000ZZ", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -22,5 +22,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383330602575 + "composedOn": 1375215000793 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddSignatureFormDocument.json b/src/test/resources/responses/signature/AddSignatureFormDocument.json index 05fb621..8e7b114 100644 --- a/src/test/resources/responses/signature/AddSignatureFormDocument.json +++ b/src/test/resources/responses/signature/AddSignatureFormDocument.json @@ -1,18 +1,18 @@ { "result": { - "formId": "498a80476c5720f21030e2ffcc049117", + "formId": "ce2a2c36378ad1390731a16e634b4ee6", "document": { - "id": "c16d40be6bfeceac3edfa6cb68093d8fdac28433d78a3d39ee0d58ab71eb11f4", - "name": "document_one_doc.pdf", - "formGuid": "498a80476c5720f21030e2ffcc049117", - "documentGuid": "c16d40be6bfeceac3edfa6cb68093d8fdac28433d78a3d39ee0d58ab71eb11f4", - "originalDocumentGuid": "18722d02f9451ceec08b7be5c395d84d734b395c28d61217a8996ce9aea5d78a", + "id": "4e9de06a4ef704ae359c722609915fe3e9b5ceea6296d7b2bb467afe7ad35a2c", + "name": "document_one.doc", + "formGuid": "ce2a2c36378ad1390731a16e634b4ee6", + "documentGuid": "4e9de06a4ef704ae359c722609915fe3e9b5ceea6296d7b2bb467afe7ad35a2c", + "originalDocumentGuid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", - "assignedDateTime": "2013-11-01T18:30:26.9851250ZZ", + "assignedDateTime": "2013-07-30T20:10:47.4188985ZZ", "order": 0 } }, "status": "Ok", "error_message": null, - "composedOn": 1383330626163 + "composedOn": 1375215046403 } \ 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 3035984..dad1eef 100644 --- a/src/test/resources/responses/signature/AddSignatureFormField.json +++ b/src/test/resources/responses/signature/AddSignatureFormField.json @@ -1,27 +1,27 @@ { "result": { - "formId": "ab7cddcb676ebffc5c47301b97573b93", - "documentId": "9789f1382a993d14938abf9e350e10c45a9c7bd10ce6aab649f4a83838710fb0", + "formId": "cfe3b0c0d78efd69d8604d12fcd31485", + "documentId": "bcff63ed734a125995c65abbed33b6bd77b2f8658761db0aeac8a527678def0f", "participantId": null, "field": { - "id": "4fac871a1aff6d4a45584d48a3f0bf95", - "formGuid": "ab7cddcb676ebffc5c47301b97573b93", + "id": "a7e8ed61945a869b9545d71cebe310be", + "formGuid": "cfe3b0c0d78efd69d8604d12fcd31485", "participantGuid": "", - "name": "Signature_1", + "name": "Signature", "mandatory": true, "regularExpression": "^.+$", - "data": "", + "data": null, "fillTimeStamp": "1/1/1970 12:00:00 AM", "locations": [ { - "id": "c68458b1f907c1c029165d69bdde4b4b", - "documentGuid": "9789f1382a993d14938abf9e350e10c45a9c7bd10ce6aab649f4a83838710fb0", - "fieldGuid": "4fac871a1aff6d4a45584d48a3f0bf95", + "id": "0a859f45ff40a8c5a2b92faff8ee272f", + "documentGuid": "bcff63ed734a125995c65abbed33b6bd77b2f8658761db0aeac8a527678def0f", + "fieldGuid": "a7e8ed61945a869b9545d71cebe310be", "page": 1, "locationX": 0.1, "locationY": 0.1, - "locationWidth": 90.0, - "locationHeight": 30.0, + "locationWidth": 90, + "locationHeight": 30, "fontName": "Arial", "fontColor": "black", "fontSize": 10, @@ -34,11 +34,11 @@ "fieldType": 1, "acceptableValues": null, "defaultValue": null, - "tooltip": "Signature_1", + "tooltip": "Signature", "guidanceText": "" } }, "status": "Ok", "error_message": null, - "composedOn": 1383330656778 + "composedOn": 1375215104090 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/AddSignatureTemplateDocument.json b/src/test/resources/responses/signature/AddSignatureTemplateDocument.json index 5b1c241..f275c09 100644 --- a/src/test/resources/responses/signature/AddSignatureTemplateDocument.json +++ b/src/test/resources/responses/signature/AddSignatureTemplateDocument.json @@ -1,18 +1,18 @@ { "result": { - "templateId": "114534419303120b11eb21b81ea5c47e", + "templateId": "0ef230028c012ba27ca94fcaf5c045f1", "document": { - "documentId": "7b856e4929cf58c7b7a8aaa6cef0aeb17f743a262546b39aeb38406a5790032d", - "templateId": "114534419303120b11eb21b81ea5c47e", + "documentId": "09efad13e5dfcf7a5d8fc34bfd21f6f1ad5b5e160e293a5cbd779dd63d7cf52b", + "templateId": "0ef230028c012ba27ca94fcaf5c045f1", "order": 0, - "name": "document_one_doc.pdf", + "name": "document_one.doc", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "originalDocumentPagesCount": 1, "fieldsCount": 0, - "originalDocumentId": "7b856e4929cf58c7b7a8aaa6cef0aeb17f743a262546b39aeb38406a5790032d" + "originalDocumentId": "09efad13e5dfcf7a5d8fc34bfd21f6f1ad5b5e160e293a5cbd779dd63d7cf52b" } }, "status": "Ok", "error_message": null, - "composedOn": 1383330685272 + "composedOn": 1375215157418 } \ 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 a53be1b..5129b92 100644 --- a/src/test/resources/responses/signature/AddSignatureTemplateField.json +++ b/src/test/resources/responses/signature/AddSignatureTemplateField.json @@ -1,41 +1,44 @@ { - "result": { - "templateId": "90cc99ab1019ac2365bc6b10d329bbf6", - "documentId": "089ae7db282cc58b7e340c0d69f86490e945a773738aaa900e03e53c0986c3d2", - "recipientId": "2c91f450f22d34655cf668b70a358e68", - "field": { - "id": "f5a52438862bbc1b120973871392029f", - "templateId": "90cc99ab1019ac2365bc6b10d329bbf6", - "recipientId": "2c91f450f22d34655cf668b70a358e68", - "name": "Signature_1", - "mandatory": true, - "order": 0, - "regularExpression": "^.+$", - "signatureFieldId": 1, - "locations": [ - { - "id": "a6df41d9a7e8c96c457485c56b916e44", - "documentId": "089ae7db282cc58b7e340c0d69f86490e945a773738aaa900e03e53c0986c3d2", - "fieldId": "f5a52438862bbc1b120973871392029f", - "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, - "tooltip": "Signature_1", - "guidanceText": "" + "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 } - }, - "status": "Ok", - "composedOn": 1383330718052 + ], + "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/AddSignatureTemplateRecipient.json b/src/test/resources/responses/signature/AddSignatureTemplateRecipient.json index dd28abd..c761e01 100644 --- a/src/test/resources/responses/signature/AddSignatureTemplateRecipient.json +++ b/src/test/resources/responses/signature/AddSignatureTemplateRecipient.json @@ -1,14 +1,14 @@ { "result": { - "templateId": "46ae9541d2602d575ce9a8e21b2998ef", + "templateId": "eb105a7aeccf7169100630f8c2245fee", "recipient": { - "id": "d74150715224aa0b3f63d80f7076fa95", + "id": "826c585137f1fcfb942016ab87d03b23", "nickname": "John Smith", - "order": 1, + "order": 0, "roleId": 2 } }, "status": "Ok", "error_message": null, - "composedOn": 1383330750427 + "composedOn": 1375215270559 } \ 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 af0dad6..0000000 --- a/src/test/resources/responses/signature/ArchiveSignatureEnvelope.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "result": { - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383330779712 -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/ArchiveSignatureForm.json b/src/test/resources/responses/signature/ArchiveSignatureForm.json index a9bfe1f..ef1dacc 100644 --- a/src/test/resources/responses/signature/ArchiveSignatureForm.json +++ b/src/test/resources/responses/signature/ArchiveSignatureForm.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383330816448 + "composedOn": 1375215310997 } \ 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 4b1776d..218e6c8 100644 --- a/src/test/resources/responses/signature/AssignSignatureEnvelopeField.json +++ b/src/test/resources/responses/signature/AssignSignatureEnvelopeField.json @@ -1,30 +1,30 @@ { "result": { - "envelopeId": "408ad036b05f0c5db859a93a046addd1", - "documentId": "f55bef07203f5db6505f3cda20194a52a57ceaed4b8bb756a10906d056e82839", - "recipientId": "211b060d7cdeb61e20f3b3a43fb9c33b", + "envelopeId": "0cbb85fe4ab392429cef97f0fc4f1b63", + "documentId": "430dbf5f86250f1e49a2a81ae61cb0d002a154fc8e9d896d7c82e679b053fdfb", + "recipientId": "73d7b0dfc7c146e15ad4dab74c83a711", "field": { - "id": "92098ef92e8f3de69f5c616a064fe9f4", - "envelopeId": "408ad036b05f0c5db859a93a046addd1", - "recipientId": "211b060d7cdeb61e20f3b3a43fb9c33b", - "name": "Signature_1", + "id": "5f54ae3eed76028049d0e80c0ae7d150", + "envelopeId": "0cbb85fe4ab392429cef97f0fc4f1b63", + "recipientId": "73d7b0dfc7c146e15ad4dab74c83a711", + "name": "Signature", "mandatory": true, "order": 0, "regularExpression": "", "getDataFrom": null, - "data": "", - "fillTimeStamp": "", + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", "signatureFieldId": 1, "locations": [ { - "id": "abbb492c9a33015815ab823e44ee5b33", - "documentId": "f55bef07203f5db6505f3cda20194a52a57ceaed4b8bb756a10906d056e82839", - "fieldId": "92098ef92e8f3de69f5c616a064fe9f4", + "id": "786969ad2fdcf8eecb0b0c6bd7eccedc", + "documentId": "430dbf5f86250f1e49a2a81ae61cb0d002a154fc8e9d896d7c82e679b053fdfb", + "fieldId": "5f54ae3eed76028049d0e80c0ae7d150", "page": 1, "locationX": 0.1, "locationY": 0.1, - "locationWidth": 90.0, - "locationHeight": 30.0, + "locationWidth": 90, + "locationHeight": 30, "fontName": "Arial", "fontColor": "black", "fontSize": 10, @@ -35,13 +35,13 @@ } ], "fieldType": 1, - "acceptableValues": null, - "defaultValue": null, - "tooltip": "Signature_1", + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Signature", "guidanceText": "" } }, "status": "Ok", "error_message": null, - "composedOn": 1383330863182 + "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 a890ea9..5d2a110 100644 --- a/src/test/resources/responses/signature/AssignSignatureTemplateField.json +++ b/src/test/resources/responses/signature/AssignSignatureTemplateField.json @@ -1,41 +1,44 @@ { - "result": { - "templateId": "a505ffbc791ef66f616f11431d02f13c", - "documentId": "1336b66d7c9dd19ce13d1cf72c5b6e75999578d9858ab32ae11f3a1762970d47", - "recipientId": "821d2495f079b8e67e01665f5d8a4758", - "field": { - "id": "26842366912a75c8dce11eec1eea472a", - "templateId": "a505ffbc791ef66f616f11431d02f13c", - "recipientId": "821d2495f079b8e67e01665f5d8a4758", - "name": "Signature_1", - "mandatory": true, - "order": 0, - "regularExpression": "", - "signatureFieldId": 1, - "locations": [ - { - "id": "7390cf291058866e4e84e1fa6cde9d99", - "documentId": "1336b66d7c9dd19ce13d1cf72c5b6e75999578d9858ab32ae11f3a1762970d47", - "fieldId": "26842366912a75c8dce11eec1eea472a", - "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, - "tooltip": "Signature_1", - "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", - "composedOn": 1383330942429 + ], + "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 037ef8a..0000000 --- a/src/test/resources/responses/signature/CancelSignatureEnvelope.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "result": { - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383330995972 -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/CompleteSignatureForm.json b/src/test/resources/responses/signature/CompleteSignatureForm.json index f4f2823..fe8641a 100644 --- a/src/test/resources/responses/signature/CompleteSignatureForm.json +++ b/src/test/resources/responses/signature/CompleteSignatureForm.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331021628 + "composedOn": 1375215549278 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CreateSignature.json b/src/test/resources/responses/signature/CreateSignature.json index 3e6c22d..b830228 100644 --- a/src/test/resources/responses/signature/CreateSignature.json +++ b/src/test/resources/responses/signature/CreateSignature.json @@ -1,20 +1,24 @@ { - "result": { - "signature": { - "id": "c4d44d1d7f86544d514b79de437c0597", - "userGuid": "6d75a4d4db83f6fc", - "name": "Signature 622123269984327", - "companyName": "Aspose", - "position": "QA", - "firstName": "John", - "lastName": "Smith", - "fullName": "John Smith", - "textInitials": "JS", - "signatureImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c4d44d1d7f86544d514b79de437c0597/signatureData", - "initialsImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c4d44d1d7f86544d514b79de437c0597/initialsData", - "createdTimeStamp": "2013-11-01T18:40:59.586Z" - } - }, - "status": "Ok", - "composedOn": 1383331103135 + "result": { + "signature": { + "id": "04499241ae3aa5cb9a7ab9c4274c088c", + "userGuid": "ea103bbe8cb8ce07", + "recipientId": null, + "name": "Signature 3022425752990485", + "companyName": "Aspose", + "position": "QA", + "firstName": "John", + "lastName": "Smith", + "fullName": "John Smith", + "textInitials": "JS", + "signatureImageFileId": null, + "initialsImageFileId": null, + "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/04499241ae3aa5cb9a7ab9c4274c088c/signatureData", + "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/04499241ae3aa5cb9a7ab9c4274c088c/initialsData", + "createdTimeStamp": "2013-07-30T20:22:05.187" + } + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375215725139 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CreateSignatureEnvelope.json b/src/test/resources/responses/signature/CreateSignatureEnvelope.json index 548dd26..ff1eda9 100644 --- a/src/test/resources/responses/signature/CreateSignatureEnvelope.json +++ b/src/test/resources/responses/signature/CreateSignatureEnvelope.json @@ -1,11 +1,11 @@ { "result": { "envelope": { - "id": "c5bc4c6765d2964fb29fcba840fef642", - "name": "Envelope Test 7812232806311765", - "creationDateTime": "2013-11-01T18:37:17.6956485ZZ", - "updatedDateTime": "2013-11-01T18:37:17.6956485ZZ", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "30de7477eee1717aa02369b01f58e96f", + "name": "Envelope Test 8137565865601627", + "creationDateTime": "2013-07-30T20:19:51.0751485ZZ", + "updatedDateTime": "2013-07-30T20:19:51.0751485ZZ", + "ownerGuid": "ea103bbe8cb8ce07", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000ZZ", "reminderTime": 1, @@ -26,10 +26,10 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" } }, "status": "Ok", "error_message": null, - "composedOn": 1383331037654 + "composedOn": 1375215591012 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CreateSignatureField.json b/src/test/resources/responses/signature/CreateSignatureField.json index b66febd..b5f27ae 100644 --- a/src/test/resources/responses/signature/CreateSignatureField.json +++ b/src/test/resources/responses/signature/CreateSignatureField.json @@ -1,8 +1,8 @@ { "result": { "field": { - "id": "2fd24249883fcdc0db2338dfce92a7e5", - "name": "TestSignField7952128628642078", + "id": "800c45eaedd1c508dfb2efa59a858c7e", + "name": "TestSignField22988871892044416", "graphSizeW": 100, "graphSizeH": 100, "getDataFrom": "Test", @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331061417 + "composedOn": 1375215644202 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CreateSignatureForm.json b/src/test/resources/responses/signature/CreateSignatureForm.json index c5e95ba..9ae86b9 100644 --- a/src/test/resources/responses/signature/CreateSignatureForm.json +++ b/src/test/resources/responses/signature/CreateSignatureForm.json @@ -1,11 +1,11 @@ { "result": { "form": { - "id": "5eb041dd113ac45bb80bbefc6bde40f5", - "name": "New Form (1)", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "65c9905c452d5f857f75381fdc9b42c8", + "name": "New Form 216", + "ownerGuid": "ea103bbe8cb8ce07", "templateGuid": null, - "createdTimeStamp": "2013-11-01T18:38:03.9153750ZZ", + "createdTimeStamp": "2013-07-30T20:21:24.6083516ZZ", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000ZZ", "documentsCount": 0, @@ -25,5 +25,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331083889 + "composedOn": 1375215684561 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/CreateSignatureTemplate.json b/src/test/resources/responses/signature/CreateSignatureTemplate.json index 708e054..0b9b249 100644 --- a/src/test/resources/responses/signature/CreateSignatureTemplate.json +++ b/src/test/resources/responses/signature/CreateSignatureTemplate.json @@ -1,9 +1,9 @@ { "result": { "template": { - "id": "a189c7748a999d7ed57b6d5b7b6946c2", - "name": "Template Test 5519202724285783", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "302d490491c638447c7751e548987e16", + "name": "Template Test 8120702993243918", + "ownerGuid": "ea103bbe8cb8ce07", "reminderTime": 1, "stepExpireTime": 1, "templateExpireTime": 1, @@ -23,5 +23,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331123518 + "composedOn": 1375215766311 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeclineEnvelope.json b/src/test/resources/responses/signature/DeclineEnvelope.json index ba011c3..c252f83 100644 --- a/src/test/resources/responses/signature/DeclineEnvelope.json +++ b/src/test/resources/responses/signature/DeclineEnvelope.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331151690 + "composedOn": 1375215814889 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteContact.json b/src/test/resources/responses/signature/DeleteContact.json index 5dd48b7..9e569a8 100644 --- a/src/test/resources/responses/signature/DeleteContact.json +++ b/src/test/resources/responses/signature/DeleteContact.json @@ -4,5 +4,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331217013 + "composedOn": 1375215923733 } \ 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 df1850a..b3ccabf 100644 --- a/src/test/resources/responses/signature/DeletePredefinedList.json +++ b/src/test/resources/responses/signature/DeletePredefinedList.json @@ -1,10 +1,13 @@ { "result": { - "lists": [ - - ] + "lists": { + "id": "38d51389a5cd1b4a4c42fcb01ac4eaed", + "name": "List 90026545089663", + "values": "value1;value2", + "defaultValue": "value1" + } }, "status": "Ok", "error_message": null, - "composedOn": 1383331224481 + "composedOn": 1375215957467 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignature.json b/src/test/resources/responses/signature/DeleteSignature.json index ffd7bdc..888925f 100644 --- a/src/test/resources/responses/signature/DeleteSignature.json +++ b/src/test/resources/responses/signature/DeleteSignature.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331416046 + "composedOn": 1375216440280 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureEnvelope.json b/src/test/resources/responses/signature/DeleteSignatureEnvelope.json index cf83863..e2333fb 100644 --- a/src/test/resources/responses/signature/DeleteSignatureEnvelope.json +++ b/src/test/resources/responses/signature/DeleteSignatureEnvelope.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331334596 + "composedOn": 1375216193670 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureEnvelopeDocument.json b/src/test/resources/responses/signature/DeleteSignatureEnvelopeDocument.json index 08c2ffd..d87fafd 100644 --- a/src/test/resources/responses/signature/DeleteSignatureEnvelopeDocument.json +++ b/src/test/resources/responses/signature/DeleteSignatureEnvelopeDocument.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331234087 + "composedOn": 1375215994123 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureEnvelopeField.json b/src/test/resources/responses/signature/DeleteSignatureEnvelopeField.json index 0563ea0..cb07a29 100644 --- a/src/test/resources/responses/signature/DeleteSignatureEnvelopeField.json +++ b/src/test/resources/responses/signature/DeleteSignatureEnvelopeField.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331296459 + "composedOn": 1375216106420 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureEnvelopeFieldLocation.json b/src/test/resources/responses/signature/DeleteSignatureEnvelopeFieldLocation.json index ca143ab..aa2556f 100644 --- a/src/test/resources/responses/signature/DeleteSignatureEnvelopeFieldLocation.json +++ b/src/test/resources/responses/signature/DeleteSignatureEnvelopeFieldLocation.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331257746 + "composedOn": 1375216041655 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureEnvelopeRecipient.json b/src/test/resources/responses/signature/DeleteSignatureEnvelopeRecipient.json index cca7b9e..6b8a0e0 100644 --- a/src/test/resources/responses/signature/DeleteSignatureEnvelopeRecipient.json +++ b/src/test/resources/responses/signature/DeleteSignatureEnvelopeRecipient.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331320426 + "composedOn": 1375216153264 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureField.json b/src/test/resources/responses/signature/DeleteSignatureField.json index eeb9022..dc0fe8c 100644 --- a/src/test/resources/responses/signature/DeleteSignatureField.json +++ b/src/test/resources/responses/signature/DeleteSignatureField.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331340873 + "composedOn": 1375216227155 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureForm.json b/src/test/resources/responses/signature/DeleteSignatureForm.json index 07dab23..84aca52 100644 --- a/src/test/resources/responses/signature/DeleteSignatureForm.json +++ b/src/test/resources/responses/signature/DeleteSignatureForm.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331410452 + "composedOn": 1375216407373 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureFormDocument.json b/src/test/resources/responses/signature/DeleteSignatureFormDocument.json index f119f86..a4fecdd 100644 --- a/src/test/resources/responses/signature/DeleteSignatureFormDocument.json +++ b/src/test/resources/responses/signature/DeleteSignatureFormDocument.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331349975 + "composedOn": 1375216263811 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureFormField.json b/src/test/resources/responses/signature/DeleteSignatureFormField.json index 3723b4a..e491ebc 100644 --- a/src/test/resources/responses/signature/DeleteSignatureFormField.json +++ b/src/test/resources/responses/signature/DeleteSignatureFormField.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331392696 + "composedOn": 1375216363123 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureFormFieldLocation.json b/src/test/resources/responses/signature/DeleteSignatureFormFieldLocation.json index aa0c688..3e99f68 100644 --- a/src/test/resources/responses/signature/DeleteSignatureFormFieldLocation.json +++ b/src/test/resources/responses/signature/DeleteSignatureFormFieldLocation.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331368897 + "composedOn": 1375216310795 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureTemplate.json b/src/test/resources/responses/signature/DeleteSignatureTemplate.json index 9d7e3a9..c99b4f6 100644 --- a/src/test/resources/responses/signature/DeleteSignatureTemplate.json +++ b/src/test/resources/responses/signature/DeleteSignatureTemplate.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331504050 + "composedOn": 1375216620533 } \ No newline at end of file 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 0ea0c0d..402511f 100644 --- a/src/test/resources/responses/signature/DeleteSignatureTemplateField.json +++ b/src/test/resources/responses/signature/DeleteSignatureTemplateField.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331471961 + "composedOn": 1375216537845 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureTemplateFieldLocation.json b/src/test/resources/responses/signature/DeleteSignatureTemplateFieldLocation.json index f1e661c..1997d5a 100644 --- a/src/test/resources/responses/signature/DeleteSignatureTemplateFieldLocation.json +++ b/src/test/resources/responses/signature/DeleteSignatureTemplateFieldLocation.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331442781 + "composedOn": 1375216479155 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/DeleteSignatureTemplateRecipient.json b/src/test/resources/responses/signature/DeleteSignatureTemplateRecipient.json index 2670323..c260013 100644 --- a/src/test/resources/responses/signature/DeleteSignatureTemplateRecipient.json +++ b/src/test/resources/responses/signature/DeleteSignatureTemplateRecipient.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331492240 + "composedOn": 1375216582173 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/FillEnvelopeField.json b/src/test/resources/responses/signature/FillEnvelopeField.json index bc2f82c..2e7a757 100644 --- a/src/test/resources/responses/signature/FillEnvelopeField.json +++ b/src/test/resources/responses/signature/FillEnvelopeField.json @@ -1,30 +1,30 @@ { "result": { - "envelopeId": "29ba0e8bf8588cd558b9ace94bc65485", - "documentId": "a96df1d1894f1553816bb4060e7bc0289bb15c943ef3535a61db656a13d2239b", - "recipientId": "c2f9d7328c0c96ce701cb9460d7c13e1", + "envelopeId": "495eb84af8354b6f809cbe21b0e94faa", + "documentId": "07f7cce3fa878ef939e917c68d029e237c9793a47e978f6efb6602673a7e6e57", + "recipientId": "f2593d2b307b4dd51bbaf28ddf7c7557", "field": { - "id": "6f4ceb38ad513b2ae595cf85076006f5", - "envelopeId": "29ba0e8bf8588cd558b9ace94bc65485", - "recipientId": "c2f9d7328c0c96ce701cb9460d7c13e1", - "name": "Signature_1", + "id": "b54f9b9d2842958dd6486788a86b932f", + "envelopeId": "495eb84af8354b6f809cbe21b0e94faa", + "recipientId": "f2593d2b307b4dd51bbaf28ddf7c7557", + "name": "Checkbox", "mandatory": true, "order": 0, "regularExpression": "", "getDataFrom": null, - "data": "", - "fillTimeStamp": "11/1/2013 6:45:17 PM", - "signatureFieldId": 1, + "data": "b24=", + "fillTimeStamp": "7/30/2013 8:37:40 PM", + "signatureFieldId": 10, "locations": [ { - "id": "881063566d1068da895eaf5078248881", - "documentId": "a96df1d1894f1553816bb4060e7bc0289bb15c943ef3535a61db656a13d2239b", - "fieldId": "6f4ceb38ad513b2ae595cf85076006f5", + "id": "12af715a7e8c8754af6478883eade607", + "documentId": "07f7cce3fa878ef939e917c68d029e237c9793a47e978f6efb6602673a7e6e57", + "fieldId": "b54f9b9d2842958dd6486788a86b932f", "page": 1, "locationX": 0.1, "locationY": 0.1, - "locationWidth": 90.0, - "locationHeight": 30.0, + "locationWidth": 25.0, + "locationHeight": 25.0, "fontName": "Arial", "fontColor": "black", "fontSize": 10, @@ -34,14 +34,14 @@ "align": 0 } ], - "fieldType": 1, - "acceptableValues": null, - "defaultValue": null, - "tooltip": "Signature_1", + "fieldType": 6, + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Checkbox", "guidanceText": "" } }, "status": "Ok", "error_message": null, - "composedOn": 1383331517116 + "composedOn": 1375216660533 } \ 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 c4fc74f..0000000 --- a/src/test/resources/responses/signature/GetContacts.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "result": { - "count": 1, - "contacts": [ - { - "id": "13df387148922dbe4047561d8ed127cd", - "firstName": "Test", - "lastName": "User", - "email": "test-8941016934115329@mailinator.com", - "provider": "Groupdocs" - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383331615319 -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetEnvelopeAuditLogs.json b/src/test/resources/responses/signature/GetEnvelopeAuditLogs.json index f97537e..c3baa8f 100644 --- a/src/test/resources/responses/signature/GetEnvelopeAuditLogs.json +++ b/src/test/resources/responses/signature/GetEnvelopeAuditLogs.json @@ -1,12 +1,12 @@ { "result": { - "envelopeId": "7a264433bce80b5df4887f617785e066", + "envelopeId": "242cd7c2a710900d6129187fdb435c17", "logs": [ { - "id": "37a3b6bcd686b570a5eaf63a448ba98c", + "id": "c346f2581a1d69382de888fe23108f09", "type": 1, - "date": "2013-11-01T18:47:01.0530000Z", - "userName": " ", + "date": "2013-07-30T20:39:50.1270000Z", + "userName": "Pavel Strashniy", "action": "Envelope created", "remoteAddress": "208.180.210.92", "details": null @@ -15,5 +15,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331621365 + "composedOn": 1375216790392 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetFieldsList.json b/src/test/resources/responses/signature/GetFieldsList.json index 1e090c6..7001bb5 100644 --- a/src/test/resources/responses/signature/GetFieldsList.json +++ b/src/test/resources/responses/signature/GetFieldsList.json @@ -1,6 +1,6 @@ { "result": { - "count": 6, + "count": 329, "fields": [ { "id": "0545e589fb3e27c9bb7a1f59d0e3fcb9", @@ -42,7 +42,7 @@ "defaultValue": null, "align": 0, "minGraphSizeW": 25, - "minGraphSizeH": 15 + "minGraphSizeH": 19 }, { "id": "bcbb376c4f16bea26c66bec641d05411", @@ -63,7 +63,7 @@ "defaultValue": null, "align": 0, "minGraphSizeW": 59, - "minGraphSizeH": 15 + "minGraphSizeH": 19 }, { "id": "84f8a77c6745b65cdbb1480c53210da8", @@ -84,7 +84,7 @@ "defaultValue": null, "align": 0, "minGraphSizeW": 59, - "minGraphSizeH": 15 + "minGraphSizeH": 19 }, { "id": "c2b69374f4174b54b13d5b89da85d628", @@ -105,7 +105,7 @@ "defaultValue": null, "align": 0, "minGraphSizeW": 59, - "minGraphSizeH": 15 + "minGraphSizeH": 19 }, { "id": "ea76bd592bbe4b42b305e8814f7c5420", @@ -125,12 +125,6795 @@ "acceptableValues": null, "defaultValue": null, "align": 0, - "minGraphSizeW": 10, - "minGraphSizeH": 10 + "minGraphSizeW": 25, + "minGraphSizeH": 25 + }, + { + "id": "a486e4c40b2af8b1823db9053488b5bb", + "name": "TestSignField5725294004217641", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b5194913aa156e7ac2ea529ba14b646a", + "name": "TestSignField33733027792312553", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a2c0d056ccfa3ecaf80fdcf3e5b2b1bc", + "name": "TestSignField28980303169920363", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "73a124fbdea190108c1209e2c40ac506", + "name": "TestSignField6286347347246184", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f484a40e8d9ab80898d657d93fbccbea", + "name": "TestSignField34002634786667807", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7eee0ece94e340288dd3bd62f7a2cc09", + "name": "TestSignField9997751478670727", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c407c1d6671e2384fa4c8c229e1c10ef", + "name": "TestSignField7225788423112908", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "32218ccce21caa29c9aaabb83e979171", + "name": "TestSignField5850880674881684", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e10b7271ec2008cb904567fb1c5123f5", + "name": "TestSignField3371090034743097", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b04b4ea5a49661e8af10032894ddfc2d", + "name": "TestSignField17476021868748526", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c8d0a27abff097213c05169c484f8a4e", + "name": "TestSignField2819724133500615", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "5549b13fcea161776c7fcd05ec9ffaf1", + "name": "TestSignField8748536824762019", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b4748481fca9b6f08ec4d5a78c8d5c2e", + "name": "TestSignField30467293690110786", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "09ce73eb9e9804adc1baafe99f4d57d1", + "name": "TestSignField6821574816842265", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3ce08eff7910cbf262a6b7b827b2d460", + "name": "TestSignField29870738321515045", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "111d608bff1f6ad6d6be5787d84f2232", + "name": "TestSignField7852870137727914", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "8e4ff4a7025c6b68a2c11f071496d314", + "name": "TestSignField5581998519261985", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "31eea46693da3c5d74a66fbc62478340", + "name": "TestSignField44803516091848306", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "faf8ddb2c5c2507dd9694f3817cafc14", + "name": "TestSignField3768243813234855", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3ccba3d73aea4535ef25c35ca9553a72", + "name": "TestSignField9610643610663155", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "df68fcd9777e05fe8ab73f18bc5393f4", + "name": "TestSignField9376460214462665", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e35b53323f3a3a551398476755b1c06f", + "name": "TestSignField10017448415292929", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "84f0ba5e314b4b5e7c12833a0c81f1be", + "name": "TestSignField47296990722669396", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "eb82e0a61a1427f3ac3b33374e402ba3", + "name": "TestSignField3982068859997141", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "215378ccf7a6b5cd9507afe6aa7fb46d", + "name": "TestSignField5254802658338316", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1c3d13fa46e0d049868309a3a61a1990", + "name": "TestSignField2858717010555323", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a986e905276783296ae5f1325b7cea6d", + "name": "TestSignField3824122593239567", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "996760d3fead5c3e20cdb12bcf93dca9", + "name": "TestSignField38899003916656616", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "915bf183067eb75eff698df53e5e358d", + "name": "TestSignField3311857699402021", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "60b0cada2a53b17c59221a3aeb27dda7", + "name": "TestSignField8113847892775623", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "71258e71f666f1f617e949bc9fed3d6e", + "name": "TestSignField20521439874145997", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "312a30461256fba661af46e36e760521", + "name": "TestSignField6183516891810308", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "013f5a421c0e25e1a5337c9ca1edf09f", + "name": "TestSignField009687878263254346", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "53ec292c0e6a2c7324b8e0605fedc019", + "name": "TestSignField9161172669444995", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "723531682c0a8d457ccc116f9e85bbeb", + "name": "TestSignField7647040870738133", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "2a905964ac838e1633763485ee7eccf0", + "name": "TestSignField011847372358728459", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "23ab9556522914f40792b704f8765d80", + "name": "TestSignField5149396039753633", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "5b859e0a581902481086e7d2e22f34a1", + "name": "TestSignField036347272138563924", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7ae6b993b2198faec522794d33d20cd1", + "name": "TestSignField5634665543303162", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "fea305a15f5cdec63652ddcd3e5ac714", + "name": "TestSignField1985142337806376", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "77b7aa54f7cd8c5e5a054b1075a36978", + "name": "TestSignField655014053068028", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "4fad4f6a58a45fd44a0bf0c814858243", + "name": "TestSignField5360407432259581", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "54676f136d5421c2fe9fe71beb6506e0", + "name": "TestSignField7177831964222251", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "5f596fb8a988c90152857f184d96f22a", + "name": "TestSignField7428611764298384", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "bff9790317ba04fcff43a3dcbe5b66e8", + "name": "TestSignField11960191750910676", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "721afefda83d5f6875678db1d68a4f66", + "name": "TestSignField6282546314728393", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "8ab993d5e990a30d16b085fee8976923", + "name": "TestSignField535437594153371", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3e18e3354ce77fd3814939c10aff184d", + "name": "TestSignField7993493545051359", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f83c5a11f1b5251d812b0b3f26a49bf1", + "name": "TestSignField7573426368513689", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f025549e17b8a94315b78791c079523d", + "name": "TestSignField9161960947605149", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "31776e6f59fddcd0a9ad07fe3ae05bce", + "name": "TestSignField9838760390717401", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "cbb8c4c1e0f3335ebf849474f68bee86", + "name": "TestSignField5069651207234641", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c2983497ee8fc795a4558fbd88e3ede6", + "name": "TestSignField9022871433967349", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "2f214048e17730501b876c09600c2503", + "name": "TestSignField32343706759573587", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "594c7aac06376e34c9fe180c6ce063b7", + "name": "TestSignField6138903474056716", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "8ff22db8091910810f810528c9586b7b", + "name": "TestSignField976646983823041", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "010aee20f1fa1c3ea93b95cf3e2c0e39", + "name": "TestSignField5452022598022219", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1aa94524f55b98f6dd6e82bf6834e7f1", + "name": "TestSignField3010308960233177", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c2c8ba7c4b4de9ee821bb1b70d8e26fe", + "name": "TestSignField8571398819124851", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f33dffb6b1e35d719c0f46dcd7b3fef9", + "name": "TestSignField20939751701845077", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "17f2195e8869b3450ebe6aa3f31f7e72", + "name": "TestSignField20342755109339117", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "59a3c4ff7e9c24fa95fd2e90c5754107", + "name": "TestSignField9189267812099796", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "bdb0bfd9731fc2c77b1199df0e2a7126", + "name": "TestSignField8655125293234814", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "12b37fb9dc18c152da705513267e9795", + "name": "TestSignField7682941610001701", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "472cc2a40f72b326776029fffc19bc0a", + "name": "TestSignField5789453385691722", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "18d98105ab5e883e0c24f5b2fedfab22", + "name": "TestSignField9740624136095791", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "126cb5c346ce1f9c5a25b849d0d22ae9", + "name": "TestSignField8726264951031757", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "876776b8e8cc78165448574fac68cf3a", + "name": "TestSignField01781042989612558", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "cce62557f9f3c5593de513ab28bd6e7a", + "name": "TestSignField8859855978082904", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d2eb8c507db4943ade211c3ca1b5f518", + "name": "TestSignField30147442740832764", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "0dbb5a37e2814c9527cf61601002fbd9", + "name": "TestSignField8552871321910479", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "5e2781b2c8d2411a76db4aaf3ff832ea", + "name": "TestSignField5959071448798664", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "14b574b868519a91fc4b6ea1589cc46b", + "name": "TestSignField0862710525442445", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e9116fa1b4a1d27ee0e1a5ed7e0345a9", + "name": "TestSignField016861197659535088", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a3b9eed006e5d0e0216e7201f096eab5", + "name": "TestSignField15816620865280973", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "bac5bd998348f0cef0ee82db6bc6d79d", + "name": "TestSignField726474797215122", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "294857b852c9038dc4ea225ba72a390d", + "name": "TestSignField7950493934406702", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "0d12078b795eae343ab0a1ddf9e0e82e", + "name": "TestSignField07665644779847947", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "fb7e9acde3abf02d75b87e1341b90952", + "name": "TestSignField7520849269229067", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1609d2b86b13f869034e456d034b715d", + "name": "TestSignField10751483416160268", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "5cc699216d60f0acdc9df6e938ffb421", + "name": "TestSignField5528875559368014", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d148f4d2d147fac61d20de84897be365", + "name": "TestSignField24972594570854922", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "0cd1626517b78bcc63d8c2ce858b85ef", + "name": "TestSignField8956025832091004", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b004f1435229d2042ce4172ec70364f1", + "name": "TestSignField7994526242881353", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b0e2913ee525d394523bfd4a3163aa32", + "name": "TestSignField5837318345606741", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b9b1ee4631371e0aef1f6f82a6ed6714", + "name": "TestSignField15906116466993858", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b866d9225bb78556c6b225ffd515b6ba", + "name": "TestSignField29418442827654434", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f10f82f918c8a1a82e9d218d40111ebb", + "name": "TestSignField07997857016666754", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e4b6901108ed1a38662dd7d33e3a3920", + "name": "TestSignField8367935549050817", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "775dc8833a616714719d9b1c2f59e2bd", + "name": "TestSignField34413391154943973", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "cee744f538b5bd7fa02c3f2e04bd4d1d", + "name": "TestSignField8643800536589019", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "2d66cc365308bf174657d864ff5fd35c", + "name": "TestSignField551074328645662", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c8259464e7d04caee5fd4c06df969f42", + "name": "TestSignField8401045798611347", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c94f536145f64e844079fe195db19a65", + "name": "TestSignField43148401703040273", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "8ea8f03db04bd12dab1f4996c74ee9e6", + "name": "TestSignField9650077250652191", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "91ecf91ba26426870bbd34b014cfddf4", + "name": "TestSignField8433337844155122", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "4ceac81dca70980ce61214c164d478d8", + "name": "TestSignField35303834877357765", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3d61bb5a1b236216d16eb5d8cdc34c0e", + "name": "TestSignField4403821470887751", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f578d3afcc0fcf3a4aea56333cb6bbe1", + "name": "TestSignField8485914656355618", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a635b7dd0e1daa5bb5728edd2ea7faef", + "name": "TestSignField17336098125622235", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "9133af68e5379f19468a7042072de85d", + "name": "TestSignField9805584364216519", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "fe449192558670b6e26c37b4dd4f47dd", + "name": "TestSignField6482675592381459", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ffa707c973964b9a8a6e320756fdd121", + "name": "TestSignField37466881381160355", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "de20ecfe1062455005e7c9a5c24eb59b", + "name": "TestSignField13052472332939924", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ce46e6fdc8e306ab8e28309cbebe51ae", + "name": "TestSignField1213068590653329", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e9675bc8f79541314ed36c2982300a36", + "name": "TestSignField6094091241622436", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a8fcc796d89f8facdba383fc4128fa6d", + "name": "TestSignField800983652022584", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "97dfc65c3080892e5cf47223d7d58885", + "name": "TestSignField16995705775248326", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3bf577363bd087f847c3bbb5c17c31ee", + "name": "TestSignField7767581179391988", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d1ff12c0b38d79244831e87a217c1f08", + "name": "TestSignField6696347712001285", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "191ae605500f509de81768534f454163", + "name": "TestSignField9544136179852223", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b66da4aac936c7072348e031230baa8c", + "name": "TestSignField2386988456777328", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "22c7087ed5f216f7923cc9a50c18641d", + "name": "TestSignField3186901641060197", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "986aaa1501f255d1708a180c29a34eb7", + "name": "TestSignField14856641386844693", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "6e6266e73af9348af72f60fee1da24fe", + "name": "TestSignField207758545560497", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "06f7ee5ec857452e798b306738679a81", + "name": "TestSignField30312599944013086", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f21de8cbe98d6d56c2256c97bf320be5", + "name": "TestSignField27890724854211135", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b33dc9320436a17b689254e24cfe1b92", + "name": "TestSignField3386597141622556", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f4127224a78b734114fe0b0a094ab974", + "name": "TestSignField4388338986925642", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e7cbf3982fc8cae45537d1ecb73e7f67", + "name": "TestSignField6174568412488639", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d7c9ec9a75b6ff32bd43833b8bad50c6", + "name": "TestSignField5859993551244609", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "bf77ac1f2d7d4a59c50a2123c5663a1a", + "name": "TestSignField0661257332702474", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "9a065bd74f61b6e1a35281dfccad6e0b", + "name": "TestSignField19644186640927164", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "51daae67af810b2243e4fdc2f738fdd8", + "name": "TestSignField17244036726911438", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d501faecc9c7f64f97e1143c4b7464ad", + "name": "TestSignField30393103695946855", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "319b6612d74a1005c17c8e4d1c133eb3", + "name": "TestSignField3812635348409982", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "da34ed403bc98f22fd465dec3fc6450f", + "name": "TestSignField5130007094202038", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "011860b1ac52b91ad23eae09e3979088", + "name": "TestSignField6447555963756116", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d72d63874805970118b774e368b7eb3d", + "name": "TestSignField152402419074244", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "469c4e3d8b46ed1cf17fc37b837ae1ab", + "name": "TestSignField9102062681748869", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d72644b0a36df55ee3caf2b101dae3fb", + "name": "TestSignField8006994239856092", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b311d9e0a3d1d3be5508e7956ac67a91", + "name": "TestSignField8052039854046593", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "fdd1dca8e914fc3dc85ece8671f97ad7", + "name": "TestSignField35146251398279627", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e3fa41b2b1bc2e47d17bfcf46eed25ee", + "name": "TestSignField6732017420310502", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "95f0c578a5f834bde74f5d28bb7a273d", + "name": "TestSignField8804653862162497", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "123dc7e3eba2f70a277c024a11cbfcdb", + "name": "TestSignField7406938948113816", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f6143dddca245391c409eac7c9fd627e", + "name": "TestSignField781586735087209", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "34ef5c1326a6ae807168886506c7d91c", + "name": "TestSignField7194786278489135", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3693624ab1895dbcce61f0f777025c51", + "name": "TestSignField3261385383983355", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "209e1c9221fc4ae87254107988b857a3", + "name": "TestSignField29414947700581673", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ae36e37485cd2b5f7493d50f138a523b", + "name": "TestSignField44141326761510147", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "2da7fd595d9451611409759d507e384b", + "name": "TestSignField11612911413890159", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3da5731bca7fb61d9969dc871aef6674", + "name": "TestSignField8815775173806107", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "0b20a7795f4ef08087f355f85ed4e367", + "name": "TestSignField9760875963195158", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "76961b773cbcaa753ebb14e1f7fd9d76", + "name": "TestSignField28905980579960333", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ab3a2548330e5c3734997bf7c8a61352", + "name": "TestSignField4552859681027851", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3b3c9ec5bcce7c39ee123824f90c546a", + "name": "TestSignField07969417070832352", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f62928df0e8551368ac5edf5f4363aab", + "name": "TestSignField557296801269115", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ec4a902df0b349ed75ee6fb26273c770", + "name": "TestSignField69961728014699", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "9dd739e7e979f8a2b9a38c999b84d151", + "name": "TestSignField4064407708374359", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "4aac78caecba910ddd4282dfb90a1cc8", + "name": "TestSignField34040549422280086", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a70f37783ac86bf6a6c66f571e18599b", + "name": "TestSignField09413388312871551", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e47ce9e50f9e5c7097ed0bda73673280", + "name": "TestSignField6763851817788938", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "03a67c3cdb0a43f797218caaa36fa831", + "name": "TestSignField3091109330103856", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7c55a5b8325ae1fc8d5e0e9ba9ec812b", + "name": "TestSignField03392736495188653", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "af81d939af11a3ae68f58a13f82825b5", + "name": "TestSignField8316616421314614", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "44e69d75ebb3dc174e7c6431b9245258", + "name": "TestSignField039489296172938726", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "de74e44ac647568525185516c689e9c9", + "name": "TestSignField41319105210222173", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a85fa017e72a59708494acce38dfd129", + "name": "TestSignField4711725068201047", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e68c6ef43322b466bc16d2f0895fbba9", + "name": "TestSignField44119807176442805", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c23404a949a7d6e4a184aafb50e14495", + "name": "TestSignField7089604440650039", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "233939d8eb4223073459ec0ac62f3076", + "name": "TestSignField7889974205693362", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ed20c3df62859f59d957f139c5943de2", + "name": "TestSignField7911263635089034", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7855f071c36d6db1e52f49735ed3108d", + "name": "TestSignField9321199236489045", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b6b647a4a30b1f90d85c34c2b431724a", + "name": "TestSignField23010325522110442", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "19e9e61ca29540e6826b779fda01bc99", + "name": "TestSignField6096491059612885", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "4ccfc089e9ed45a086d0c420e3e4e8c1", + "name": "TestSignField5678440942973005", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f62ca81d6a2a7640212247ad6e783667", + "name": "TestSignField460036867192671", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "08702d6c159d6816eeed4ce7a4ae1436", + "name": "TestSignField8315024469546656", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "2c5b0e50d26ab1a57b34434b9f724317", + "name": "TestSignField4354217892080495", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7ddf1587cd1ee5ab39777ddabe14180a", + "name": "TestSignField9694117005030988", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "325a3ef47d721ebfbb78ca081e07cb91", + "name": "TestSignField9871780034397099", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3ca79e80dacf8bbe9e3389c176810de2", + "name": "TestSignField9198979389879341", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b9c373718267859451b1ddd9db4a6841", + "name": "TestSignField9086667842642161", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "dd1578f9df1c027869b46a45d45ee42c", + "name": "TestSignField020440058648185988", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7ddd30c6318c77709847b048328338af", + "name": "TestSignField5376142510034306", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1796ce84309f3e9e563f3d43648c46e5", + "name": "TestSignField8997980094298899", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "67a975c4c53b7e8edf751551de4f6ca2", + "name": "TestSignField057595087373810916", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "2036716e930eaec1d17d67527deb3c9b", + "name": "TestSignField3018432024700177", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "0d9e02fb74ddcf6f400ccc3144dfea96", + "name": "TestSignField46130887187923464", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d8951f72a4a7f7fa3e599d6af9c75ddb", + "name": "TestSignField4956446526078433", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "84308ff4770d1e719495148add4f5e53", + "name": "TestSignField025656567603964175", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "6491a25e67bc404ec9cf764235ce8068", + "name": "TestSignField8661343161582412", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c36eff07a71b3a0f3c85e31ae35a9003", + "name": "TestSignField4785715409185899", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1cf640ad4c6248c6be353322e50f74ed", + "name": "TestSignField08110200036039528", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a452d509253432c6900f5a85a12e70d7", + "name": "TestSignField8312197443038328", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "54d93a3024d2ada2c82ad25e8e48b3cc", + "name": "TestSignField0908723975458604", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "88ca253e50601516b77f941a06fdbc58", + "name": "TestSignField9563914428928085", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f4fe77ef0303cb5a1e28a7b8dfb9f902", + "name": "TestSignField07503255350883598", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "520cc4d63ea332724788cf9931f4626a", + "name": "TestSignField7151747683824413", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "67a39313ca81875e99aa885201e07987", + "name": "TestSignField17586675258329998", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "5d63d9310a82fba889ae7e6ac4996c39", + "name": "TestSignField7098464010194016", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b5676d5c4642da6c3dd8aba29683033c", + "name": "TestSignField8386614842265484", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "9fd48f0b6af6aaa28f490845fd824957", + "name": "TestSignField37450308330756465", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c8ea0f0f1ee2ae9d541f639e23a5bfff", + "name": "TestSignField40563122585736744", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1b2b5ef172192a79b03848d3163c5265", + "name": "TestSignField43696196611414684", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b479b0a315a20e6245f3d89ae30e0c14", + "name": "TestSignField7947239548837087", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "6c98d7e9717d54039df6f96232431c6f", + "name": "TestSignField9195129454697073", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "661353d1e7c1d7c1716096cee9243b16", + "name": "TestSignField9594365933565956", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d0855315ecdb48a23433569791f9125d", + "name": "TestSignField8589836115912739", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "2cc1c9e9306a2f648fa4b9abd1aa9e93", + "name": "TestSignField8521401168923809", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7c75e0eef4aa352c58b3ee9325d8f887", + "name": "TestSignField8890732167701858", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "eb0ac19f701e915b15c4a704a990c9c5", + "name": "TestSignField7300472834349683", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a336733c51e85a70b722f43da065853b", + "name": "TestSignField837019941310401", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "4c049dde271c92bb2b89af3d956f5610", + "name": "TestSignField7518230832643029", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "aceddc5857902a98a42e1df02e3e543f", + "name": "TestSignField3005755215532443", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1a9eac70fb82b05841c2224ca411d734", + "name": "TestSignField1800083520217315", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "01a510399e6e80d8c97c20fdf96338e7", + "name": "TestSignField2705199784911906", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "6827c56d17e58ef9ebd295fca37ef166", + "name": "TestSignField07668170514202255", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3b3845e8a94839040d676a0b9883df27", + "name": "TestSignField41031686576406157", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "bb3c1d107ba751c6ec59fab885a38c4f", + "name": "TestSignField47498473717402123", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "cc46579bc6d737ee7c5b6dc922bf9f9c", + "name": "TestSignField726593734112403", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "afae0cbb13f5a3b678ee725a92585e8d", + "name": "TestSignField006650409560099435", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "eb6ca39b9c2d488d716e19ab4131aea2", + "name": "TestSignField6791565219964834", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ba160f1d29f6207f7b843a845a680da7", + "name": "TestSignField006918910586141913", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "36d299f2f3c44bffa95661bdaf987971", + "name": "TestSignField06792911015927283", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "66359c8339469cc35965ac244fd61e1f", + "name": "TestSignField4278168743361205", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "20ab80862a21024665fc1f1ca1d64d40", + "name": "TestSignField8362800649020138", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b0595130d2ebc6878389e3847f05c0e1", + "name": "TestSignField5060980206640338", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "2f7301a3d360116ab51276bbcff96995", + "name": "TestSignField1377685354822915", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "2fff1296919c6e88932bc9d8c16255ae", + "name": "TestSignField6912938605991217", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1cb025717d94d29d3be549fe7eaf560a", + "name": "TestSignField58842844514867", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "bfaa5cef1ee83e0b0b6e4814baaf7fb3", + "name": "TestSignField6907726599467774", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "4d80bce46a5725b221276c4102e0fd69", + "name": "TestSignField5562762998520758", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c0999199b4f05f8c38bf183da09535ef", + "name": "TestSignField7596257593875201", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a2c03f5c518bc984f1e9d74e15ab6d09", + "name": "TestSignField8081446441193215", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "0d98df30ac1f069e3ab7390ef4cc8395", + "name": "TestSignField19996494780648721", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "6d1ed9a40f03b60d39b5014f7a4785a9", + "name": "TestSignField9815966387860228", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "8e634f6c66c05c1d615e6c30ffe4f9e6", + "name": "TestSignField06698180265856957", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ae818ee41b17c9e59445ab4e305b2298", + "name": "TestSignField9196972357049874", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "93ae75598f66a9cadedebec954641984", + "name": "TestSignField35572179883336175", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b5de91f7b8cb82eff95a5833c9e01372", + "name": "TestSignField1775359085478927", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1c14618aee6a1b791fdaff3b53baad6a", + "name": "TestSignField1005907468156979", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "0782fdf9b76e805777fe10620b58e81c", + "name": "TestSignField4081384845474465", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f333b69969ec8b31d4baeea068bb77c1", + "name": "TestSignField15908135586403893", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "27d60f7edf2ba872c99624893a94da0b", + "name": "TestSignField08752276362376288", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "50eb817cdf7ba05a2556db5f35a2aa0d", + "name": "TestSignField77365814490327", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "0db8c733c3ef23589f2dea15b8e78cc5", + "name": "TestSignField02333382928398553", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7e08e2dfb68fe079c2e27d1daa7f9802", + "name": "TestSignField24164574045564047", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "8c02dc3479dd504ec48bbd972fa2096b", + "name": "TestSignField43336944208931316", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e916a9cfb2d937c887473381dc531bca", + "name": "TestSignField6180500821532791", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "52b9a08da33ad0f9dbcbd6878fb2cc9d", + "name": "TestSignField4003992721381865", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ac767f806764b999831e5b74bf0c6a23", + "name": "TestSignField6818045608796288", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "310a7b86ad9401dcf560f0141ddd5803", + "name": "TestSignField5893289645116842", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e31c54c73539bfb41c7cfea44a1af1ea", + "name": "TestSignField8024463183387579", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "8627dc22ddfeefb7439fbc1fd1418ece", + "name": "TestSignField13082729278806582", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7d97a93c2eac820e9e32ca46d83411fe", + "name": "TestSignField3972356320225714", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "469ddc656fb57515819401b597086770", + "name": "TestSignField033420759529042554", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "56890f0c51f7fc84cd3fd4230659634b", + "name": "TestSignField43700561943936744", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "730857373a1d6d6c579684661501a439", + "name": "TestSignField05866811597582999", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "9ada0d92117d2b7633f9a7e57deeae63", + "name": "TestSignField5141989522835214", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3e6291c2c346d05638ae57a5a0f4244b", + "name": "TestSignField7981109031515993", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a65baf8540bc2e0aef1ad6423b977d2b", + "name": "TestSignField5147092263427339", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "97471345dbf5d1a613a6a0964652966c", + "name": "TestSignField40752539914386265", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "27643a1680204cf6b164b2ecb9e5f2da", + "name": "TestSignField752146554033223", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c2b86b1bd356445bcbc0c2e0d34747b1", + "name": "TestSignField047439760881543114", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b96ca6b0773d1299c567f2e9c02bd9bb", + "name": "TestSignField5337834386355155", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ce1342a53eb5d0298b9f496887d80805", + "name": "TestSignField9438039405338089", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "42b811eca2b680fd4ebbabedc023f5d9", + "name": "TestSignField7282295812877293", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "e0e3a1c8bbd97aa3e17691b3460a35cc", + "name": "TestSignField9305468281073235", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "5985724ebc7816f7a29f295236d1578a", + "name": "TestSignField7984441562169745", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3a29706d6a4a0e657819da353ec73138", + "name": "TestSignField5591377608670148", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "4f2c02737f312b17d733f9dd47e1ca91", + "name": "TestSignField4021382468038204", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "14ed2408e85bef4d454d07689dd98a74", + "name": "TestSignField27430653704696184", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "4e485dd4b234b3485da1c312da24909e", + "name": "TestSignField5298432389009625", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "da2425dbf753f1d2e16211a5633a1005", + "name": "TestSignField9019151369437881", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a6113cf992a1395a452ec520ae254383", + "name": "TestSignField3159595590752967", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "6b1bf41449f8a61b92024b9d20169c69", + "name": "TestSignField07690631355701749", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "fd623a78560f978ac6f48ad0172ac4b0", + "name": "TestSignField04701533279451642", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ce986ec0c9515a87ed854711460c0e17", + "name": "TestSignField7557774110489797", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d73a1833ed7c7e4ba077f55a7a9d8551", + "name": "TestSignField859570341567188", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ed05ed16cab27b4fe708499ba67feabc", + "name": "TestSignField4921520150653669", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "3a33eadf85b1c546b669cc6899905f0a", + "name": "TestSignField8479168056503245", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "551e58c87a306d39d2f4d6fb808f5169", + "name": "TestSignField26025099829883014", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b44eba4faabfa2e4c494b8734832a750", + "name": "TestSignField8603103320753333", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "98bfb35a18a6109de3d888b49e823fad", + "name": "TestSignField9245406183497231", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "bead8d6a1dacd88798f7cdb64d933ee0", + "name": "TestSignField5129552704869584", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "95ee15b3623b2c31017e91489f9348d1", + "name": "TestSignField6117026684226767", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f725f8e7f39fb97d611578afb37dc0b2", + "name": "TestSignField42345795478271797", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "dde134910c3555db903d0375e31f2dc0", + "name": "TestSignField6793981049950037", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1a6afa1670b4d80ee57a2dc08f0c64a8", + "name": "TestSignField993185124785382", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "59c158053d281a3e322234c950b98873", + "name": "TestSignField17141718567405717", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "cd5cf45404372e3c2f1410fb38eab6d0", + "name": "TestSignField6410816785785228", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "0a8ec893b5e4fde2133887bc515f83b4", + "name": "TestSignField18250803776506574", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "82a5aaae111107e25fcd97774f12f15d", + "name": "TestSignField7221855715466816", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a40fd09ab812e718101dbb7f344a9396", + "name": "TestSignField23410887499705246", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1d8622d84d22d2f2ab31fea1bb36c2ff", + "name": "TestSignField9551920788517606", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d1ed82515b7cc1f828b6d1f535c39a8f", + "name": "TestSignField1362412387853017", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "abe25c2c1633ba0a4b1f1d975f479d9a", + "name": "TestSignField19777505720677901", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "fcb52706658240a2acfb02a98b5d2106", + "name": "TestSignField15743710574899528", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7e0b899a356130d7c0da852f5fa19124", + "name": "TestSignField4475110747074814", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "c83ddacaaf0267acaa2a8bb96821cbcf", + "name": "TestSignField8414234887936815", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "2c5182e86563b8659a1080133ed04ec8", + "name": "TestSignField6751468431088535", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1f704af68c2743f821fd411192175e8d", + "name": "TestSignField8301816015784547", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "08e3aa7572fc2cb273a49e8baf174fa3", + "name": "TestSignField9372260317473704", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "8f84cd101f322a78db75f3eee46495d9", + "name": "TestSignField7621290283486438", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "313de51229db11d2bbf81aae573fd612", + "name": "TestSignField763549087221282", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7b9ca172e5f8f0bcafa135a38584371d", + "name": "TestSignField7258089275203392", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "722591e3297b475e43913e46a7898758", + "name": "TestSignField9492289396861627", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "5ddd435f9d5ef4fe9afcfbb6d9860ef2", + "name": "TestSignField6881504981871717", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "8eb165ae64278c0a52010d24719f89ca", + "name": "TestSignField05256164077466974", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "f660aec26f5c908bbdbb393e60fa8096", + "name": "TestSignField3812266325937008", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "9706757bf948e2814ff44e81b6b9bae0", + "name": "TestSignField47494885585219304", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "95a516364143c216b40fe1cc094064d3", + "name": "TestSignField910539211830344", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "a04eb2c19b23c019831e837739ea8523", + "name": "TestSignField5755706778518193", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "800c45eaedd1c508dfb2efa59a858c7e", + "name": "TestSignField22988871892044416", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "ca04c0ee16e235ef2ee90f1a92a64c1b", + "name": "TestSignField23545322637089083", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d1092941d31b72e62a038f9128501cf1", + "name": "TestSignField5788652823059871", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "b184d5b56cb50592e37744ff7d7cbdea", + "name": "TestSignField4873056150413042", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d1491346354035234db0d39f574fb268", + "name": "TestSignField7032723645652279", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "6df3c3a2234e2f9f8967a3fb494fdde5", + "name": "TestSignField9019076637122564", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "4f0cb8f23ad1beb3406aa29742b32ee7", + "name": "TestSignField05913879291692037", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "76c8923c7b557a88613758c2baa002d8", + "name": "TestSignField5894136925618143", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "7e093bd15107bc1c10ca702dc72dad6e", + "name": "TestSignField49377827101276817", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "af059c125ec5e78323c82e863240d34d", + "name": "TestSignField7437509587481796", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1037dd21a210c85bbadd0c0855cbf6c6", + "name": "TestSignField0896796186410278", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "530423c44a2002670ab304bf10ac1626", + "name": "TestSignField8786100556648985", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "10ce1afbef75cafd97d115c930760a40", + "name": "TestSignField37453053844607787", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d9b1b53de10999815ebc27ec4669777e", + "name": "TestSignField008106185147493505", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "1816c9607ca8c6b7da500f729b485db2", + "name": "TestSignField7456267644881055", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "483cc6a89495d812cfcee391d5b0a134", + "name": "TestSignField5421081145982968", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "d9ad3eb91108c61a228150e5db8817e1", + "name": "TestSignField3642417437000135", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 + }, + { + "id": "0f2957eb8c5e9c27a0f7431213048d96", + "name": "TestSignField3604737160639111", + "graphSizeW": 100, + "graphSizeH": 100, + "getDataFrom": "Test", + "regularExpression": "^.+$", + "fontName": null, + "fontColor": null, + "fontSize": 0, + "fontBold": false, + "fontItalic": false, + "fontUnderline": false, + "isSystem": false, + "fieldType": 0, + "acceptableValues": null, + "defaultValue": null, + "align": 0, + "minGraphSizeW": 0, + "minGraphSizeH": 0 } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383331637682 + "composedOn": 1375216832939 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetRecipientSignatureEnvelopes.json b/src/test/resources/responses/signature/GetRecipientSignatureEnvelopes.json index 2836c22..1b23130 100644 --- a/src/test/resources/responses/signature/GetRecipientSignatureEnvelopes.json +++ b/src/test/resources/responses/signature/GetRecipientSignatureEnvelopes.json @@ -1,13 +1,13 @@ { "result": { - "envelopesCount": 1756, + "envelopesCount": 6298, "envelopes": [ { - "id": "7c2f53d6b5f7394c48cfa7a4fbbd0c3e", - "name": "Envelope 5215761241817342", - "creationDateTime": "2013-11-01T18:47:28.7730000Z", - "updatedDateTime": "2013-11-01T18:47:29.7800000Z", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "bcbf413a10f5e0e515b6dec2ee7ce6c6", + "name": "Envelope 2160477246995125", + "creationDateTime": "2013-07-30T20:41:10.7370000Z", + "updatedDateTime": "2013-07-30T20:41:11.5500000Z", + "ownerGuid": "ea103bbe8cb8ce07", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, @@ -21,16 +21,16 @@ "documentsPages": 0, "recipients": [ { - "id": "b14df6f513c157591ba9e78f8e7c175f", + "id": "bded2c4bfe9f1ffd22891d046f236467", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -45,16 +45,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" }, { - "id": "ec1d3b9ea849c6a74c30ec3f9b36c298", - "name": "Envelope 1233896619121313", - "creationDateTime": "2013-11-01T18:46:39.3530000Z", - "updatedDateTime": "2013-11-01T18:46:45.5030000Z", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "e2bc578223c3e3501584d25f26b1209e", + "name": "Envelope 5280744322052812", + "creationDateTime": "2013-07-30T20:38:40.1570000Z", + "updatedDateTime": "2013-07-30T20:38:45.0170000Z", + "ownerGuid": "ea103bbe8cb8ce07", "status": 1, - "statusDateTime": "2013-11-01T18:46:45.5030000Z", + "statusDateTime": "2013-07-30T20:38:45.0170000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -62,26 +62,26 @@ "orderedSignature": false, "emailSubject": "Sign this!", "emailBody": "", - "documentsCount": 0, - "documentsPages": 0, + "documentsCount": 1, + "documentsPages": 1, "recipients": [ { - "id": "a4acc6c0e220d51a94ba6121e30f7617", + "id": "543209ded2f4242e79118e5e6ba0e461", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-11-01T18:46:45.4870000Z", + "statusDateTime": "2013-07-30T20:38:44.9870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/ec1d3b9ea849c6a74c30ec3f9b36c298/a4acc6c0e220d51a94ba6121e30f7617" + "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/e2bc578223c3e3501584d25f26b1209e/543209ded2f4242e79118e5e6ba0e461" } ], "waterMarkText": "", @@ -90,16 +90,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" }, { - "id": "96d4906f30898bc37a430dcb2725b0bf", - "name": "Envelope 015749699663053285", - "creationDateTime": "2013-11-01T18:46:31.2670000Z", - "updatedDateTime": "2013-11-01T18:46:37.3370000Z", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "57eabe9b2a7ad58a1de93c2ed8eca9c3", + "name": "Envelope 6993423792616403", + "creationDateTime": "2013-07-30T20:38:32.8000000Z", + "updatedDateTime": "2013-07-30T20:38:38.5030000Z", + "ownerGuid": "ea103bbe8cb8ce07", "status": 1, - "statusDateTime": "2013-11-01T18:46:37.3370000Z", + "statusDateTime": "2013-07-30T20:38:38.5030000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -107,26 +107,26 @@ "orderedSignature": false, "emailSubject": "Sign this!", "emailBody": "", - "documentsCount": 0, - "documentsPages": 0, + "documentsCount": 1, + "documentsPages": 1, "recipients": [ { - "id": "43b9a743f24b65a058b9f9681fcdbacb", + "id": "d5c7f2a93a2886b4283fe84f56b08c8e", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-11-01T18:46:37.3130000Z", + "statusDateTime": "2013-07-30T20:38:38.4870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/96d4906f30898bc37a430dcb2725b0bf/43b9a743f24b65a058b9f9681fcdbacb" + "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/57eabe9b2a7ad58a1de93c2ed8eca9c3/d5c7f2a93a2886b4283fe84f56b08c8e" } ], "waterMarkText": "", @@ -135,16 +135,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" }, { - "id": "fda1879239aff2a5ed3c81316e604dbd", - "name": "Envelope 766919943839699", - "creationDateTime": "2013-11-01T18:46:23.2100000Z", - "updatedDateTime": "2013-11-01T18:46:29.2100000Z", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "1d782a2260c3e30d627429e335a6d7db", + "name": "Envelope 8215914853706076", + "creationDateTime": "2013-07-30T20:38:25.5800000Z", + "updatedDateTime": "2013-07-30T20:38:31.2830000Z", + "ownerGuid": "ea103bbe8cb8ce07", "status": 1, - "statusDateTime": "2013-11-01T18:46:29.2100000Z", + "statusDateTime": "2013-07-30T20:38:31.2830000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -152,26 +152,26 @@ "orderedSignature": false, "emailSubject": "Sign this!", "emailBody": "", - "documentsCount": 0, - "documentsPages": 0, + "documentsCount": 1, + "documentsPages": 1, "recipients": [ { - "id": "c98811fa144aeb5a4f05e7160d812862", + "id": "bcc6ef0e0fa0ee3dde0edc355b056fa0", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-11-01T18:46:29.1930000Z", + "statusDateTime": "2013-07-30T20:38:31.2530000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/fda1879239aff2a5ed3c81316e604dbd/c98811fa144aeb5a4f05e7160d812862" + "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/1d782a2260c3e30d627429e335a6d7db/bcc6ef0e0fa0ee3dde0edc355b056fa0" } ], "waterMarkText": "", @@ -180,16 +180,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" }, { - "id": "d7f9abdda48d10fbb087cdd812c3956c", - "name": "Envelope 766853939078461", - "creationDateTime": "2013-11-01T18:46:14.9370000Z", - "updatedDateTime": "2013-11-01T18:46:21.1870000Z", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "4a9b5943520fbbf9f5857dca11290baf", + "name": "Envelope 317393528127661", + "creationDateTime": "2013-07-30T20:38:18.3600000Z", + "updatedDateTime": "2013-07-30T20:38:23.9230000Z", + "ownerGuid": "ea103bbe8cb8ce07", "status": 1, - "statusDateTime": "2013-11-01T18:46:21.1870000Z", + "statusDateTime": "2013-07-30T20:38:23.9230000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -197,26 +197,26 @@ "orderedSignature": false, "emailSubject": "Sign this!", "emailBody": "", - "documentsCount": 0, - "documentsPages": 0, + "documentsCount": 1, + "documentsPages": 1, "recipients": [ { - "id": "19c3101d4cfe1affe8aaf5b61bb1b97e", + "id": "64dc172afcf6bf4a5dfce23322cd3252", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-11-01T18:46:21.1630000Z", + "statusDateTime": "2013-07-30T20:38:23.9070000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/d7f9abdda48d10fbb087cdd812c3956c/19c3101d4cfe1affe8aaf5b61bb1b97e" + "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/4a9b5943520fbbf9f5857dca11290baf/64dc172afcf6bf4a5dfce23322cd3252" } ], "waterMarkText": "", @@ -225,16 +225,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" }, { - "id": "aac89cb362a47de92cb163f138ddaf20", - "name": "Envelope 7784095745494438", - "creationDateTime": "2013-11-01T18:46:06.5970000Z", - "updatedDateTime": "2013-11-01T18:46:12.7970000Z", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "1399e169f217c737ea81f7ce63fa1fa0", + "name": "Envelope 3944138526365114", + "creationDateTime": "2013-07-30T20:38:10.7070000Z", + "updatedDateTime": "2013-07-30T20:38:16.7670000Z", + "ownerGuid": "ea103bbe8cb8ce07", "status": 1, - "statusDateTime": "2013-11-01T18:46:12.7970000Z", + "statusDateTime": "2013-07-30T20:38:16.7670000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -242,26 +242,26 @@ "orderedSignature": false, "emailSubject": "Sign this!", "emailBody": "", - "documentsCount": 0, - "documentsPages": 0, + "documentsCount": 1, + "documentsPages": 1, "recipients": [ { - "id": "c37d6ebf96d9344818fef2d51ce5d24c", + "id": "51b16ad73e9765bb840be7ca7fb09af7", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-11-01T18:46:12.7830000Z", + "statusDateTime": "2013-07-30T20:38:16.7370000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/aac89cb362a47de92cb163f138ddaf20/c37d6ebf96d9344818fef2d51ce5d24c" + "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/1399e169f217c737ea81f7ce63fa1fa0/51b16ad73e9765bb840be7ca7fb09af7" } ], "waterMarkText": "", @@ -270,11 +270,11 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383331650208 + "composedOn": 1375216871892 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetRolesList.json b/src/test/resources/responses/signature/GetRolesList.json index 4e18ca6..5589f36 100644 --- a/src/test/resources/responses/signature/GetRolesList.json +++ b/src/test/resources/responses/signature/GetRolesList.json @@ -30,5 +30,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331675127 + "composedOn": 1375216923501 } \ 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/GetSignatureEnvelope.json b/src/test/resources/responses/signature/GetSignatureEnvelope.json index 6556bc7..737c098 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelope.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelope.json @@ -1,11 +1,11 @@ { "result": { "envelope": { - "id": "eb477c31aea60e54f0c2c87daa35a5a0", - "name": "Envelope 710484964577702", - "creationDateTime": "2013-11-01T18:50:25.3800000Z", - "updatedDateTime": "2013-11-01T18:50:25.3800000Z", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "91e439ba62a36b69a815780854f514fc", + "name": "Envelope 5916256021203607", + "creationDateTime": "2013-07-30T20:47:41.0800000Z", + "updatedDateTime": "2013-07-30T20:47:41.0800000Z", + "ownerGuid": "ea103bbe8cb8ce07", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, @@ -26,10 +26,10 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" } }, "status": "Ok", "error_message": null, - "composedOn": 1383331825848 + "composedOn": 1375217261423 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureEnvelopeDocuments.json b/src/test/resources/responses/signature/GetSignatureEnvelopeDocuments.json index 55947c7..53e4c4e 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopeDocuments.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopeDocuments.json @@ -1,12 +1,12 @@ { "result": { - "envelopeId": "71f439615572fc82699ff741a28bf933", + "envelopeId": "8e74f2350604f51c8158152325d00bf3", "documents": [ { - "documentId": "50966967019b6ccf8145504d05ca1ac763c57f41f5f8293e0334e9ea59783b72", - "envelopeId": "71f439615572fc82699ff741a28bf933", + "documentId": "52f8a37b4ba2b95fd9df1a6d5f4ef744656bdf51e8e88e0f03ecc2d9f53ac4d4", + "envelopeId": "8e74f2350604f51c8158152325d00bf3", "order": 0, - "name": "document_one_doc.pdf", + "name": "document_one.doc", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "finalDocumentMD5": "", "originalDocumentPagesCount": 1, @@ -14,11 +14,11 @@ "originalDocumentImportedFields": [ ], - "originalDocumentId": "50966967019b6ccf8145504d05ca1ac763c57f41f5f8293e0334e9ea59783b72" + "originalDocumentId": "52f8a37b4ba2b95fd9df1a6d5f4ef744656bdf51e8e88e0f03ecc2d9f53ac4d4" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383331745905 + "composedOn": 1375217072642 } \ 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 7ff5c1c..61ed628 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopeFields.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopeFields.json @@ -1,29 +1,29 @@ { "result": { - "envelopeId": "84d1d24edd82db1fc37d8f5ef5195594", + "envelopeId": "ee63173e3b74757d5c0e13096fd1dd01", "fields": [ { - "id": "16f096b81c3a39168b7863f2d4e570b5", - "envelopeId": "84d1d24edd82db1fc37d8f5ef5195594", - "recipientId": "7015284a06a18d979711d4853546ad74", - "name": "Signature_1", + "id": "1219b36c8f33a776b1b3a9dc843052fc", + "envelopeId": "ee63173e3b74757d5c0e13096fd1dd01", + "recipientId": "1c5bb235a13dbf064d78295d4bc878b4", + "name": "Signature", "mandatory": true, "order": 0, "regularExpression": "", "getDataFrom": null, - "data": "", - "fillTimeStamp": "", + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", "signatureFieldId": 1, "locations": [ { - "id": "21ebaf6682c3cbdf04d54767d2169490", - "documentId": "792cc6245305d6c0fe22ae94b2f27b2e28d7f26007595f7ba339f04c60216b7b", - "fieldId": "16f096b81c3a39168b7863f2d4e570b5", + "id": "67fb68afe59f0e4ba99c3bd95f6d7349", + "documentId": "d55f95241389b63add7dd780688ea386a02a6068253ba8cdf30e1bc6a4720782", + "fieldId": "1219b36c8f33a776b1b3a9dc843052fc", "page": 1, "locationX": 0.1, "locationY": 0.1, - "locationWidth": 90.0, - "locationHeight": 30.0, + "locationWidth": 90, + "locationHeight": 30, "fontName": "Arial", "fontColor": "black", "fontSize": 10, @@ -34,14 +34,14 @@ } ], "fieldType": 1, - "acceptableValues": null, - "defaultValue": null, - "tooltip": "Signature_1", + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Signature", "guidanceText": "" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383331764889 + "composedOn": 1375217117892 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureEnvelopeRecipients.json b/src/test/resources/responses/signature/GetSignatureEnvelopeRecipients.json index 6dcfc87..e3ea830 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopeRecipients.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopeRecipients.json @@ -1,18 +1,18 @@ { "result": { - "envelopeId": "445f7e9dbd2e4ede42c28280f269ace2", + "envelopeId": "5cc2b79b7f20ab81806a19d83167c2a5", "recipients": [ { - "id": "71201052420855421b1820f959de766d", + "id": "3df09ef6c04f2dbf22c696c32db9a1cc", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331813855 + "composedOn": 1375217190001 } \ 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 147da9c..7960a3a 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopeResources.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopeResources.json @@ -1,38 +1,154 @@ { "result": { "documents": [ + { + "documentId": "ee5729654be08a887194b11c38e216f5de44c988acff84cfc293c86269475e92", + "envelopeId": "", + "order": 1, + "name": "document_one_sign.pdf", + "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", + "finalDocumentMD5": "49b7eecc3102f50f11e793ecd94fe603", + "originalDocumentPagesCount": 1, + "fieldsCount": 0, + "originalDocumentImportedFields": [ + + ], + "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 + } + ], + "originalDocumentId": "de3aa7ea290fe07cdf24f3020bc3838742c11745bd4f1061591d176071576592" + }, + { + "documentId": "fe07139b49b38989b528db6e37496e964fc7b6d6eab2e159a1995d44a8505ab9", + "envelopeId": "", + "order": 0, + "name": "document_one_sign.pdf", + "originalDocumentMD5": "edf5f871f275bdc5158ad6b3c4a5e9f4", + "finalDocumentMD5": "0c4f082d4404c8451c3116008bffa79f", + "originalDocumentPagesCount": 1, + "fieldsCount": 0, + "originalDocumentImportedFields": [ + ], + "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": "9858263efbf61be1640d2631450ecaee", - "firstName": "John", - "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "id": "4d7291859aafc0ecf688f9701853a72c", + "firstName": "sadf", + "lastName": "asdf", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, - "status": -2, + "status": 4, "statusMessage": null, - "statusDateTime": "2013-10-11T14:05:03.6570000Z", + "statusDateTime": "2012-12-03T10:28:36.3300000Z", "delegatedRecipientId": null, "signatureFingerprint": null, - "signatureHost": null, + "signatureHost": "66.76.27.32", "signatureLocation": null, "signatureBrowser": null, "embedUrl": "" }, { - "id": "46c715bbf59ace573d217764d959e16f", + "id": "dba7c9b4d1e937b13ad0a9dbfa0b8463", "firstName": "John", "lastName": "Smith", - "email": "assigned-9515219474520413@mailinator.com", - "userGuid": "", + "email": "john@smith.com", + "userGuid": "07821256758a81f8", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-11T14:05:04.3130000Z", + "statusDateTime": "2013-01-31T21:36:49.3430000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -41,34 +157,34 @@ "embedUrl": "" }, { - "id": "d9e54de37c51ecbd0a468d037b2a82af", + "id": "dfa43f659417c01c50f786b276ddf3fe", "firstName": "John", "lastName": "Smith", - "email": "assigned-08210259564901057@mailinator.com", + "email": "averkiev.jr@gmail.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 4, "statusMessage": null, - "statusDateTime": "2013-10-11T14:06:06.4230000Z", + "statusDateTime": "2013-02-01T04:17:12.4530000Z", "delegatedRecipientId": null, "signatureFingerprint": null, - "signatureHost": null, + "signatureHost": "195.189.16.125", "signatureLocation": null, "signatureBrowser": null, "embedUrl": "" }, { - "id": "1beab0d7e2cc3b9cbfd1a370faffcccd", + "id": "af88e8156c232dc61497b6b78de54f53", "firstName": "John", "lastName": "Smith", - "email": "assigned-38170443729026404@mailinator.com", + "email": "john+1@smith.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-11T14:06:07.7370000Z", + "statusDateTime": "2013-02-11T09:02:45.3270000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -77,16 +193,16 @@ "embedUrl": "" }, { - "id": "ac420cdf3b39fe27a3d215e34ed996f8", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-9688659039564458@mailinator.com", + "id": "b1788be0d8f66136aa63d9b9f929662d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9206728655707215@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-11T14:06:08.8000000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -95,16 +211,16 @@ "embedUrl": "" }, { - "id": "4e80460f2b2640ef43f976c53d2a0a3b", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-30727652244012393@mailinator.com", + "id": "7b63efc88d15ac3b19a47bd3b1af6d21", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-09383019258934455@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-11T14:06:09.8600000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -113,16 +229,16 @@ "embedUrl": "" }, { - "id": "3d1bd7b29dac9bc8ffc8ab61bfdaa053", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-1934477676175148@mailinator.com", + "id": "a82e63ca5d99b3af6ffc2d6aeb4e6904", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9070569751675689@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-11T14:06:10.9230000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -131,16 +247,16 @@ "embedUrl": "" }, { - "id": "0911d4634fdbc71a0c878412184c0988", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-5805040536193053@mailinator.com", + "id": "f19c48f5b1b0306b10ec6f1affb6774e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6461044579751362@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-11T14:07:13.0130000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -149,16 +265,16 @@ "embedUrl": "" }, { - "id": "9e082e312439e75f90a16fef2e084b7f", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-5765926001019718@mailinator.com", + "id": "9198c2d1fcf47615d6925ce62a2129a6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-07643618210985414@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-11T18:32:21.3200000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -167,16 +283,16 @@ "embedUrl": "" }, { - "id": "13ecb8750b5e1cfb1d43fd9c97ef40d4", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-8069878591982309@mailinator.com", + "id": "31164e4899f81e77102021a0758834b1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4719817319695657@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-11T18:33:23.2670000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -185,16 +301,16 @@ "embedUrl": "" }, { - "id": "25b4557a7adcc670d1903b6a09488cb5", + "id": "0e54937598e6a4a49b3f96f5eb4a7567", "firstName": "John", "lastName": "Smith", - "email": "assigned-8246147118778752@mailinator.com", + "email": "assigned-43740937168804384@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-11T18:33:24.5530000Z", + "statusDateTime": "2013-03-10T13:27:57.6200000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -203,16 +319,16 @@ "embedUrl": "" }, { - "id": "c160f8d8b189452f71e743cdc1982115", + "id": "c3d10c982a17216406c34b1ae9cb2137", "firstName": "John", "lastName": "Smith", - "email": "assigned-8972871714568411@mailinator.com", + "email": "assigned-40370183746577293@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-11T18:33:25.8100000Z", + "statusDateTime": "2013-03-10T14:08:03.9270000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -221,16 +337,16 @@ "embedUrl": "" }, { - "id": "0324c8d635309048a88fa0ff1d5de6f2", + "id": "281aa81c15c5a7a3dccdea3d0898b80a", "firstName": "John", "lastName": "Smith", - "email": "assigned-7055017976979097@mailinator.com", + "email": "assigned-4350460384736726@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-11T18:33:27.0800000Z", + "statusDateTime": "2013-03-10T14:10:15.5500000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -239,16 +355,16 @@ "embedUrl": "" }, { - "id": "1067673b9e717ae89e22c4d5156f44bb", + "id": "3fffc030c971929d12d13857db8a89d1", "firstName": "John", "lastName": "Smith", - "email": "assigned-37269517058657@mailinator.com", + "email": "assigned-8843818224553833@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-11T18:33:28.4700000Z", + "statusDateTime": "2013-03-10T14:10:40.0830000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -257,16 +373,16 @@ "embedUrl": "" }, { - "id": "4d6b3c63625dfc92864faf61ddd89b61", + "id": "7932c466903c421ee3f9dd0b36e07c7c", "firstName": "John", "lastName": "Smith", - "email": "assigned-559543619387504@mailinator.com", + "email": "assigned-7853082354901888@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-11T18:33:29.8070000Z", + "statusDateTime": "2013-03-10T14:11:07.0030000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -275,16 +391,16 @@ "embedUrl": "" }, { - "id": "ff0fe8a65e045a2e856e8e65ce78b387", + "id": "916776d1233c532e01cc076a75c82eec", "firstName": "John", "lastName": "Smith", - "email": "assigned-10784394534505837@mailinator.com", + "email": "assigned-4014856644505582@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-13T15:16:14.7170000Z", + "statusDateTime": "2013-03-10T14:14:37.6530000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -293,16 +409,16 @@ "embedUrl": "" }, { - "id": "89a929fb4f536d41492d11e2860a5af4", + "id": "6cc182949d0a622a50f81b9650a24188", "firstName": "John", "lastName": "Smith", - "email": "assigned-4507240266455127@mailinator.com", + "email": "assigned-3135801193085397@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-13T15:16:16.1100000Z", + "statusDateTime": "2013-03-10T14:16:23.9330000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -311,16 +427,16 @@ "embedUrl": "" }, { - "id": "cbc4aa6c9a81c48df37bce61797cec8f", + "id": "ca09c53a9db39ef499cb1a9c98865576", "firstName": "John", "lastName": "Smith", - "email": "assigned-43463094814811987@mailinator.com", + "email": "assigned-2827397496941514@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-13T15:16:17.3900000Z", + "statusDateTime": "2013-03-10T14:23:23.2300000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -329,16 +445,16 @@ "embedUrl": "" }, { - "id": "cdc83264116702016d181e03a0314f9a", + "id": "d97a0dc99173236d6152c6ba0e107e45", "firstName": "John", "lastName": "Smith", - "email": "assigned-1127263933753494@mailinator.com", + "email": "assigned-8927465062748162@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-13T15:16:18.6870000Z", + "statusDateTime": "2013-03-10T14:25:01.1230000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -347,16 +463,16 @@ "embedUrl": "" }, { - "id": "a814ade6a2a72e7c3c1bef5c8d623479", + "id": "61a0be6ae855db0e65def94302fb06e7", "firstName": "John", "lastName": "Smith", - "email": "assigned-5936162215315607@mailinator.com", + "email": "assigned-24287876280543175@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-13T15:17:20.9530000Z", + "statusDateTime": "2013-03-10T15:20:07.6970000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -365,16 +481,16 @@ "embedUrl": "" }, { - "id": "6aa4753ea552eee08950e713a28c2605", + "id": "3c53f9e78127cd0edc4bd8901183035c", "firstName": "John", "lastName": "Smith", - "email": "assigned-39807588441843467@mailinator.com", + "email": "assigned-5808653112799861@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-13T15:17:22.2600000Z", + "statusDateTime": "2013-03-10T15:20:39.9630000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -383,16 +499,16 @@ "embedUrl": "" }, { - "id": "9145a561dd82ae30d6e5c2c6c7b94343", + "id": "36f71605c16ced619eb4306f721d2abb", "firstName": "John", "lastName": "Smith", - "email": "assigned-21746643892463413@mailinator.com", + "email": "assigned-24299759261855458@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-13T15:17:23.3570000Z", + "statusDateTime": "2013-03-10T15:21:13.2130000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -401,16 +517,16 @@ "embedUrl": "" }, { - "id": "d06e349d6c451b200e617d41ca56df58", + "id": "479530557cf45003a80c465adb17c39f", "firstName": "John", "lastName": "Smith", - "email": "assigned-4397567618823496@mailinator.com", + "email": "assigned-07064828336670415@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-14T18:33:07.6970000Z", + "statusDateTime": "2013-03-10T15:21:44.4330000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -419,16 +535,16 @@ "embedUrl": "" }, { - "id": "d173c919b80949282e0ea5bf2a387b86", + "id": "d50ac33b6ea9c4a346fbc2ff23a2b843", "firstName": "John", "lastName": "Smith", - "email": "assigned-6728286666315869@mailinator.com", + "email": "assigned-3893927072533042@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-14T18:33:09.1370000Z", + "statusDateTime": "2013-03-10T15:22:17.3070000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -437,16 +553,16 @@ "embedUrl": "" }, { - "id": "4e83daaf4099a091fb6e88062bc4805f", + "id": "a573a09a59684cb135d20bebc0c43098", "firstName": "John", "lastName": "Smith", - "email": "assigned-9614902759668063@mailinator.com", + "email": "assigned-04407537801754724@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-14T18:33:10.4970000Z", + "statusDateTime": "2013-03-10T15:22:48.3400000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -455,16 +571,16 @@ "embedUrl": "" }, { - "id": "fd6ca48d914435307fee2d5cb1a0afdb", + "id": "08b734ca959c6bb9d358e34c637ff074", "firstName": "John", "lastName": "Smith", - "email": "assigned-537217313731218@mailinator.com", + "email": "assigned-5848130456380978@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-14T18:33:11.9700000Z", + "statusDateTime": "2013-03-10T15:23:19.7130000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -473,16 +589,16 @@ "embedUrl": "" }, { - "id": "dedd7f0c02915262db084d8b36fbbe04", + "id": "9e0ea3cce339306b9b02404a4e0e20be", "firstName": "John", "lastName": "Smith", - "email": "assigned-5640487052412153@mailinator.com", + "email": "assigned-016861464038545937@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-14T18:33:13.4430000Z", + "statusDateTime": "2013-03-10T15:23:53.2930000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -491,16 +607,16 @@ "embedUrl": "" }, { - "id": "f93a175fcbcb311d1e373490d746adc5", + "id": "8799f72c58ba318466bc1429688d8dff", "firstName": "John", "lastName": "Smith", - "email": "assigned-2198287955711421@mailinator.com", + "email": "assigned-4349248141891744@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-14T18:34:16.0230000Z", + "statusDateTime": "2013-03-10T15:24:26.4170000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -509,16 +625,16 @@ "embedUrl": "" }, { - "id": "69c21caf1b7aded7c59da84a335dd664", + "id": "a5498ea69ef3a041f191e1c05610326f", "firstName": "John", "lastName": "Smith", - "email": "assigned-280264446018469@mailinator.com", + "email": "assigned-010301165014037883@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-14T18:34:17.4700000Z", + "statusDateTime": "2013-03-10T15:24:58.4470000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -527,16 +643,16 @@ "embedUrl": "" }, { - "id": "e97a5b415ab4f91aa4c08d0ae4cfc233", + "id": "faceb1232a3c13095d54ae5bdc137d52", "firstName": "John", "lastName": "Smith", - "email": "assigned-6452370718131504@mailinator.com", + "email": "assigned-6333479368303288@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T18:33:20.0100000Z", + "statusDateTime": "2013-03-10T15:25:29.7930000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -545,16 +661,16 @@ "embedUrl": "" }, { - "id": "fb42ef514aed3e695469b17ce7c97a65", + "id": "9621bd62aff248b3e827b9952303b2e1", "firstName": "John", "lastName": "Smith", - "email": "assigned-4864187612784656@mailinator.com", + "email": "assigned-1998480018485581@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T18:33:20.7130000Z", + "statusDateTime": "2013-03-10T15:26:02.4470000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -563,16 +679,16 @@ "embedUrl": "" }, { - "id": "c5519c0e4414d0f695de3fb42c0d7eb3", + "id": "be8aaae932432171ac7b43a670d3dedc", "firstName": "John", "lastName": "Smith", - "email": "assigned-6010998528508211@mailinator.com", + "email": "assigned-8518579175006114@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T18:33:21.4000000Z", + "statusDateTime": "2013-03-10T15:26:34.0430000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -581,16 +697,16 @@ "embedUrl": "" }, { - "id": "787b4eaf4212a7735ee2a7ecf16ff16f", + "id": "3ec4d8de4f9aa86bdd1a163ea24b545c", "firstName": "John", "lastName": "Smith", - "email": "assigned-8878239787831138@mailinator.com", + "email": "assigned-8764719215117406@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T18:33:22.1200000Z", + "statusDateTime": "2013-03-10T15:27:06.7600000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -599,16 +715,16 @@ "embedUrl": "" }, { - "id": "63d7d7a1638c3f60b555a52f5d94cf86", + "id": "d7fceacb844e74860451c7431087e09d", "firstName": "John", "lastName": "Smith", - "email": "assigned-6897200026889598@mailinator.com", + "email": "assigned-8097011132392192@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T18:34:25.3070000Z", + "statusDateTime": "2013-03-10T15:27:40.2770000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -617,16 +733,16 @@ "embedUrl": "" }, { - "id": "7849a96e81f88249ae2e9a7d08a3ccb5", + "id": "46cdb0fa4f5a5d8a77ef04027d8c82ae", "firstName": "John", "lastName": "Smith", - "email": "assigned-07405317053496896@mailinator.com", + "email": "assigned-9493944680853794@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T18:34:26.0570000Z", + "statusDateTime": "2013-03-10T15:28:12.7930000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -635,16 +751,16 @@ "embedUrl": "" }, { - "id": "e0c7b9d7bf0b39584ccbaa19fbc326ac", + "id": "504ab77d3feef3919ebe17088bca75c1", "firstName": "John", "lastName": "Smith", - "email": "assigned-11078446455546609@mailinator.com", + "email": "assigned-44514284929451997@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T18:34:26.7900000Z", + "statusDateTime": "2013-03-10T15:28:45.2230000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -653,16 +769,16 @@ "embedUrl": "" }, { - "id": "c757302bdf834eb7615a5430d6050996", + "id": "6c2fbae4d064e6a356295933eedd67fa", "firstName": "John", "lastName": "Smith", - "email": "assigned-13029770962908604@mailinator.com", + "email": "assigned-6541381469183847@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T21:19:17.6670000Z", + "statusDateTime": "2013-03-10T15:29:17.2870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -671,16 +787,16 @@ "embedUrl": "" }, { - "id": "054f39890cabb41efc8f11fee1d69c23", + "id": "d80e25ecda86c062de4bff91f2af72fe", "firstName": "John", "lastName": "Smith", - "email": "assigned-11630153824222744@mailinator.com", + "email": "assigned-9794184663492925@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T21:19:18.7230000Z", + "statusDateTime": "2013-03-10T15:29:50.0830000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -689,16 +805,16 @@ "embedUrl": "" }, { - "id": "4c91bf434a20a50a22ee512a5ecff325", + "id": "abd4e8686975795ccd88bba59b353ab1", "firstName": "John", "lastName": "Smith", - "email": "assigned-38723424390948125@mailinator.com", + "email": "assigned-4226307334422631@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T21:19:19.8100000Z", + "statusDateTime": "2013-03-10T15:30:20.6470000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -707,16 +823,16 @@ "embedUrl": "" }, { - "id": "09ed3e46df4ee9df3948cf4924de665d", + "id": "40b217a377f5e97edf5a65d075baabc0", "firstName": "John", "lastName": "Smith", - "email": "assigned-12574676746785018@mailinator.com", + "email": "assigned-07243045173134022@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T21:19:20.8130000Z", + "statusDateTime": "2013-03-10T15:30:51.7530000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -725,16 +841,16 @@ "embedUrl": "" }, { - "id": "38e962e90544471420fe08189dab8078", + "id": "823e93c87d55799b07b69bd9bd3d68b6", "firstName": "John", "lastName": "Smith", - "email": "assigned-6982554890132479@mailinator.com", + "email": "assigned-7498482770411473@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T21:20:22.4870000Z", + "statusDateTime": "2013-03-10T15:31:25.5670000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -743,16 +859,16 @@ "embedUrl": "" }, { - "id": "41c280966a580d600fc130755632c169", + "id": "e9b044b2075ab555b7df93398ff92ca3", "firstName": "John", "lastName": "Smith", - "email": "assigned-47645863744086125@mailinator.com", + "email": "assigned-24872058087812954@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T21:20:23.5030000Z", + "statusDateTime": "2013-03-10T15:31:58.8330000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -761,16 +877,16 @@ "embedUrl": "" }, { - "id": "fc12ca16b681ae159104de8c439b1e2e", + "id": "c537387b5474f57b49c4a1dc8875d2e2", "firstName": "John", "lastName": "Smith", - "email": "assigned-09023330565666188@mailinator.com", + "email": "assigned-24304161519140033@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-17T21:20:24.4600000Z", + "statusDateTime": "2013-03-10T15:32:29.9570000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -779,16 +895,16 @@ "embedUrl": "" }, { - "id": "e015329e0a9acded8e58e09de2929a9a", + "id": "619f59f7358bab0ce149d6a61c9c6ddc", "firstName": "John", "lastName": "Smith", - "email": "assigned-18601382093781926@mailinator.com", + "email": "assigned-19234143639013346@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T09:55:20.1830000Z", + "statusDateTime": "2013-03-10T15:33:04.0500000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -797,16 +913,16 @@ "embedUrl": "" }, { - "id": "b161806189fd2d535fac3950aa6ff46c", + "id": "6ea2330f4013dda6d630a052ec1c1be4", "firstName": "John", "lastName": "Smith", - "email": "assigned-6680867151184955@mailinator.com", + "email": "assigned-19408500678185314@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T09:55:21.2070000Z", + "statusDateTime": "2013-03-10T15:33:36.6300000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -815,16 +931,16 @@ "embedUrl": "" }, { - "id": "0a30226b661531ec68a06ca84a5f59e7", + "id": "5ea0c8b5b3ab73e8c6964f9bce9e5a97", "firstName": "John", "lastName": "Smith", - "email": "assigned-5062942259291259@mailinator.com", + "email": "assigned-8973104267340949@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T09:55:22.3130000Z", + "statusDateTime": "2013-03-10T15:34:08.5370000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -833,16 +949,16 @@ "embedUrl": "" }, { - "id": "e407a167eb2748e705e0d2e182a62e14", + "id": "13cb2926a5a7a8f9af7f863bd6f802a8", "firstName": "John", "lastName": "Smith", - "email": "assigned-8051016953953711@mailinator.com", + "email": "assigned-11297095984204208@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T09:56:24.0500000Z", + "statusDateTime": "2013-03-10T15:34:41.5830000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -851,16 +967,16 @@ "embedUrl": "" }, { - "id": "a9c936c888fc29d0c999ad84ad12d012", + "id": "f0e37c1b7cfb2651ee5bb6b29804912a", "firstName": "John", "lastName": "Smith", - "email": "assigned-2556862753242882@mailinator.com", + "email": "assigned-623616329181309@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T09:56:25.0870000Z", + "statusDateTime": "2013-03-10T15:35:14.0100000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -869,16 +985,16 @@ "embedUrl": "" }, { - "id": "17ffd55410a87f789c3b63730ef7e773", + "id": "42c652ab7f50ed73b2274f94cebb4ff4", "firstName": "John", "lastName": "Smith", - "email": "assigned-9320188449920268@mailinator.com", + "email": "assigned-569285373154538@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T09:56:26.1730000Z", + "statusDateTime": "2013-03-10T15:35:47.5370000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -887,16 +1003,16 @@ "embedUrl": "" }, { - "id": "7b1a5714b5aecce1f3e50fd2dcae8b91", + "id": "26396b8e13509192930c5447236e3cd8", "firstName": "John", "lastName": "Smith", - "email": "assigned-12240579614750668@mailinator.com", + "email": "assigned-24872350994458436@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T09:56:27.2670000Z", + "statusDateTime": "2013-03-10T15:36:20.5530000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -905,16 +1021,16 @@ "embedUrl": "" }, { - "id": "ed2dcdfab8a9e79dbb547c2c3a5d6594", + "id": "c558b55150f16f780c62eea6f1921326", "firstName": "John", "lastName": "Smith", - "email": "assigned-8589410459766514@mailinator.com", + "email": "assigned-2911927735002309@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T18:33:29.8830000Z", + "statusDateTime": "2013-03-10T15:36:54.6630000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -923,16 +1039,16 @@ "embedUrl": "" }, { - "id": "d16241de9f1b0e9bdd88a49ba6d5f143", + "id": "eb2e16f9fdc4d0e936b50b0bfb0d9666", "firstName": "John", "lastName": "Smith", - "email": "assigned-3537243295502417@mailinator.com", + "email": "assigned-5941392645031991@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T18:33:30.4170000Z", + "statusDateTime": "2013-03-10T15:37:29.4130000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -941,16 +1057,16 @@ "embedUrl": "" }, { - "id": "f87bb6e957b46d02b1c66ba9d566f1eb", + "id": "5de804dbdf94e0c1fb4154852ee75180", "firstName": "John", "lastName": "Smith", - "email": "assigned-6572504300005526@mailinator.com", + "email": "assigned-2559092025987365@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T18:33:31.0100000Z", + "statusDateTime": "2013-03-10T15:38:02.9430000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -959,16 +1075,16 @@ "embedUrl": "" }, { - "id": "cf112e3d98a8e48ca0dd6aac8b2fa36d", + "id": "239345ec8015aae3a98a335f7546bee8", "firstName": "John", "lastName": "Smith", - "email": "assigned-9420325817356362@mailinator.com", + "email": "assigned-5504521500710458@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T18:34:01.9870000Z", + "statusDateTime": "2013-03-10T15:38:36.6470000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -977,16 +1093,16 @@ "embedUrl": "" }, { - "id": "dcfe6ce26cd1c6a7030b8276b6774619", + "id": "0177f5aa5d9f95657131a4557cfda43d", "firstName": "John", "lastName": "Smith", - "email": "assigned-4933873072308781@mailinator.com", + "email": "assigned-6070415686354678@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T18:34:02.6600000Z", + "statusDateTime": "2013-03-10T15:39:11.0200000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -995,16 +1111,16 @@ "embedUrl": "" }, { - "id": "e3895e048c6b3cb65aef5492191eb056", + "id": "092ddb93bf08786c97467a33408197ba", "firstName": "John", "lastName": "Smith", - "email": "assigned-7626660283856604@mailinator.com", + "email": "assigned-9989080615390356@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T18:34:03.2530000Z", + "statusDateTime": "2013-03-10T15:47:22.3700000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1013,16 +1129,16 @@ "embedUrl": "" }, { - "id": "249658a637054e34014216762137d7aa", + "id": "0eae88f14ec9e80f2b5b46acfd44c082", "firstName": "John", "lastName": "Smith", - "email": "assigned-8891133529070934@mailinator.com", + "email": "assigned-5778564526809552@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-18T18:34:03.8300000Z", + "statusDateTime": "2013-03-10T15:50:54.1970000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1031,16 +1147,16 @@ "embedUrl": "" }, { - "id": "0503795f4773c3d918cb9e662775ea63", + "id": "5cc8b1afe322a23b4efa6fcb06180236", "firstName": "John", "lastName": "Smith", - "email": "assigned-49927882678062896@mailinator.com", + "email": "assigned-4397924099956064@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T11:55:05.6130000Z", + "statusDateTime": "2013-03-10T15:51:33.0730000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1049,16 +1165,16 @@ "embedUrl": "" }, { - "id": "cc493f6809f2a24856b531a1ff76a4e9", + "id": "ffa4cb60cbe6586f963e045cfadad5bb", "firstName": "John", "lastName": "Smith", - "email": "assigned-9744617916931669@mailinator.com", + "email": "assigned-6992081643057364@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T11:55:06.4100000Z", + "statusDateTime": "2013-03-10T15:52:05.3530000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1067,16 +1183,16 @@ "embedUrl": "" }, { - "id": "b5f115c6b902de0adcb23a1afedca383", + "id": "894871b913c797ef1e024e57e6531a72", "firstName": "John", "lastName": "Smith", - "email": "assigned-8381892259222402@mailinator.com", + "email": "assigned-5257876840199842@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T11:56:08.0330000Z", + "statusDateTime": "2013-03-10T15:52:36.6670000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1085,16 +1201,16 @@ "embedUrl": "" }, { - "id": "342374782f3ff2ab77568c292283baa5", + "id": "f8cb683bb1eeea59f0e82edc4643c960", "firstName": "John", "lastName": "Smith", - "email": "assigned-16352292408421643@mailinator.com", + "email": "assigned-7943946885038354@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T11:56:08.9400000Z", + "statusDateTime": "2013-03-10T15:53:09.9170000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1103,16 +1219,16 @@ "embedUrl": "" }, { - "id": "b0ce35e971889c01fd129afa15c1acd5", + "id": "c0e91e60ed55cbfe764f7b0a46f914d4", "firstName": "John", "lastName": "Smith", - "email": "assigned-6322297569344106@mailinator.com", + "email": "assigned-4294093555494335@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T11:56:09.7670000Z", + "statusDateTime": "2013-03-10T15:53:41.7670000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1121,16 +1237,16 @@ "embedUrl": "" }, { - "id": "5a2fca82d1fb4a2966aef30dc53202c2", + "id": "f9fcffb8024fe3d15d3e204a798ad9e8", "firstName": "John", "lastName": "Smith", - "email": "assigned-5696788497404576@mailinator.com", + "email": "assigned-23014605280723766@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T11:56:10.5800000Z", + "statusDateTime": "2013-03-10T15:54:14.9570000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1139,16 +1255,16 @@ "embedUrl": "" }, { - "id": "2422e93a026b824f23645a961706eae4", + "id": "195832e242556c7ad2e14332d772f9d9", "firstName": "John", "lastName": "Smith", - "email": "assigned-12271256670001063@mailinator.com", + "email": "assigned-014493241795133671@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T11:56:11.4570000Z", + "statusDateTime": "2013-03-10T15:54:48.4700000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1157,16 +1273,16 @@ "embedUrl": "" }, { - "id": "747cc76595f225d688674d55faad3472", + "id": "3c7d235252e537889754795450bea695", "firstName": "John", "lastName": "Smith", - "email": "assigned-7585249053022542@mailinator.com", + "email": "assigned-3984129224658761@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T16:07:17.8070000Z", + "statusDateTime": "2013-03-10T15:55:20.2370000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1175,16 +1291,16 @@ "embedUrl": "" }, { - "id": "95e2a54efadb5a17274c6c7b2172e67d", + "id": "2c5420d7ac3ef8aa2ae5145aff75e3bd", "firstName": "John", "lastName": "Smith", - "email": "assigned-06399375943463348@mailinator.com", + "email": "assigned-38179284959024984@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T16:07:18.9070000Z", + "statusDateTime": "2013-03-10T15:55:54.4100000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1193,16 +1309,16 @@ "embedUrl": "" }, { - "id": "aefb88a38177e8fde8177730934deca3", + "id": "21a21275f304e0fc39cfc370db18d519", "firstName": "John", "lastName": "Smith", - "email": "assigned-4301965480300842@mailinator.com", + "email": "assigned-07702164512774345@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T16:07:19.7730000Z", + "statusDateTime": "2013-03-10T15:56:27.8930000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1211,16 +1327,16 @@ "embedUrl": "" }, { - "id": "cd8fad4bd2fdf2605565d9de76edf0ee", + "id": "2bf77fa84a82f1c54bd59e2447116a4e", "firstName": "John", "lastName": "Smith", - "email": "assigned-5731324749268948@mailinator.com", + "email": "assigned-09782799810737719@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T16:07:20.6770000Z", + "statusDateTime": "2013-03-10T15:57:02.6430000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1229,16 +1345,16 @@ "embedUrl": "" }, { - "id": "8a9428c83bf9d92107ec2f422c829ad6", + "id": "97a4862ff3422f71bb8eaef4e68ac374", "firstName": "John", "lastName": "Smith", - "email": "assigned-8086506583434938@mailinator.com", + "email": "assigned-5762037822967221@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T16:08:22.4130000Z", + "statusDateTime": "2013-03-10T15:57:37.2830000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1247,16 +1363,16 @@ "embedUrl": "" }, { - "id": "a0206e405f21c084ff70ba737d496544", + "id": "5a17d35757cfb2669f90a0e2b5aa38e3", "firstName": "John", "lastName": "Smith", - "email": "assigned-33690324825757434@mailinator.com", + "email": "assigned-9642658973155347@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T16:08:23.3600000Z", + "statusDateTime": "2013-03-10T15:58:11.4400000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1265,16 +1381,16 @@ "embedUrl": "" }, { - "id": "e285d2ad5f7e8c844c01232e07c0e161", + "id": "8a1812b38d5d7025aa88b1f6ecead9c7", "firstName": "John", "lastName": "Smith", - "email": "assigned-4761700404961412@mailinator.com", + "email": "assigned-9383411932098629@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T16:08:24.3130000Z", + "statusDateTime": "2013-03-10T15:58:46.8470000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1283,16 +1399,16 @@ "embedUrl": "" }, { - "id": "173327339643e06490ba9cfb1a2f83f8", + "id": "d296fb4d18748ae025fcf0a9e4a2c01e", "firstName": "John", "lastName": "Smith", - "email": "assigned-35772581387377167@mailinator.com", + "email": "assigned-8647063797662804@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T18:34:09.3700000Z", + "statusDateTime": "2013-03-10T15:59:20.9870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1301,16 +1417,16 @@ "embedUrl": "" }, { - "id": "4025bc6d37f10facbbf9cbaa21fb72f0", + "id": "3ed3701a91851fb01e40bdc527f414a6", "firstName": "John", "lastName": "Smith", - "email": "assigned-8379815528457735@mailinator.com", + "email": "assigned-6401597306002792@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T18:34:10.4470000Z", + "statusDateTime": "2013-03-10T15:59:55.8470000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1319,16 +1435,16 @@ "embedUrl": "" }, { - "id": "b28639af16f3639eb4e8b3e91fe7bb29", + "id": "d91feb1762fe66ad875ce630f1a33bd3", "firstName": "John", "lastName": "Smith", - "email": "assigned-910374201424298@mailinator.com", + "email": "assigned-27250517534037044@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T18:35:15.8970000Z", + "statusDateTime": "2013-03-10T16:00:27.1270000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1337,16 +1453,16 @@ "embedUrl": "" }, { - "id": "7db1dc6818aa4f746a5a49a0aaac478a", + "id": "1069ca578a16504cb8f9c86546790c94", "firstName": "John", "lastName": "Smith", - "email": "assigned-7330540277797539@mailinator.com", + "email": "assigned-6202810831320013@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T18:35:16.8900000Z", + "statusDateTime": "2013-03-10T16:01:00.9100000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1355,16 +1471,16 @@ "embedUrl": "" }, { - "id": "321d7716b91b1efc24a70863427ba638", + "id": "3c8f8fe74c95c8a9d2f2de39a6fbfeea", "firstName": "John", "lastName": "Smith", - "email": "assigned-6812867265507777@mailinator.com", + "email": "assigned-6266633585549269@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T18:35:17.9700000Z", + "statusDateTime": "2013-03-10T16:01:34.5800000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1373,16 +1489,16 @@ "embedUrl": "" }, { - "id": "50eda6fbe1f3c052e852882d63edda75", + "id": "0d6d607540808e0661f9c00ac90163b7", "firstName": "John", "lastName": "Smith", - "email": "assigned-4030063708974494@mailinator.com", + "email": "assigned-6225122411459068@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T18:35:19.0270000Z", + "statusDateTime": "2013-03-10T16:02:07.9700000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1391,16 +1507,16 @@ "embedUrl": "" }, { - "id": "340496eb7bb8e1e2f7aa095fca58a9c3", + "id": "cdbf05018868ba4fc09bd858ec912a14", "firstName": "John", "lastName": "Smith", - "email": "assigned-5398042020085101@mailinator.com", + "email": "assigned-8245370985265535@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-19T18:35:19.9670000Z", + "statusDateTime": "2013-03-10T16:02:42.1600000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1409,16 +1525,16 @@ "embedUrl": "" }, { - "id": "ff9bb26cc3fbac2c07bf7d79cbb39126", + "id": "225f2a32cb0449729bcc04dcd1bc08c0", "firstName": "John", "lastName": "Smith", - "email": "assigned-8069043956144636@mailinator.com", + "email": "assigned-41413463850342@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T06:58:26.3570000Z", + "statusDateTime": "2013-03-10T16:03:15.3770000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1427,16 +1543,16 @@ "embedUrl": "" }, { - "id": "b1d3f04e5119f4c6aa4b23d8c5e67562", + "id": "10e3063ad53f4fc59663e6b1b3cb36c0", "firstName": "John", "lastName": "Smith", - "email": "assigned-37732343827968307@mailinator.com", + "email": "assigned-79164384497076@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T06:58:27.7970000Z", + "statusDateTime": "2013-03-10T16:03:49.5070000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1445,16 +1561,16 @@ "embedUrl": "" }, { - "id": "5abdbe636d09f95d5cdfae5feac8106e", + "id": "f0cf189c358bf859870ec00830f8772e", "firstName": "John", "lastName": "Smith", - "email": "assigned-022732534079180744@mailinator.com", + "email": "assigned-07045637274932326@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T06:59:30.9830000Z", + "statusDateTime": "2013-03-10T16:04:22.1800000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1463,16 +1579,16 @@ "embedUrl": "" }, { - "id": "6a4ff947df1a5337ab13047245341052", + "id": "46646fe4eb65c484de2d1e619b8bb30e", "firstName": "John", "lastName": "Smith", - "email": "assigned-7701838252090216@mailinator.com", + "email": "assigned-09162701922321204@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T06:59:32.1670000Z", + "statusDateTime": "2013-03-10T16:04:56.0400000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1481,16 +1597,16 @@ "embedUrl": "" }, { - "id": "2b53fc3b3f19452b978324e1277c9078", + "id": "15a2f389760ed3d8177dc17918127e55", "firstName": "John", "lastName": "Smith", - "email": "assigned-40375126322156507@mailinator.com", + "email": "assigned-5502188660971453@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T06:59:34.1570000Z", + "statusDateTime": "2013-03-10T16:05:29.5400000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1499,16 +1615,16 @@ "embedUrl": "" }, { - "id": "45ac80f0d48e903dc09237997ddc6e6c", + "id": "b513a58d6e1a37ae98055a66d6543fbb", "firstName": "John", "lastName": "Smith", - "email": "assigned-052347761432617435@mailinator.com", + "email": "assigned-4622354919265349@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T06:59:36.1670000Z", + "statusDateTime": "2013-03-10T16:06:01.7430000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1517,16 +1633,16 @@ "embedUrl": "" }, { - "id": "5831c72831a38fa03caf923e9a1e8f63", + "id": "43a4ea7a4042ace515ada1f3e480909d", "firstName": "John", "lastName": "Smith", - "email": "assigned-816214261003302@mailinator.com", + "email": "assigned-3835467946604747@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T06:59:38.1630000Z", + "statusDateTime": "2013-03-10T16:06:36.4930000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1535,16 +1651,16 @@ "embedUrl": "" }, { - "id": "ff41cebd783da7fe82ef2f72155446ec", + "id": "0ec18b13ed4fcb4ef2a5ed4f35bd3549", "firstName": "John", "lastName": "Smith", - "email": "assigned-533785225647208@mailinator.com", + "email": "assigned-7790018874630215@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T18:33:20.4670000Z", + "statusDateTime": "2013-03-10T16:07:11.1030000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1553,16 +1669,16 @@ "embedUrl": "" }, { - "id": "28536a6635978552e8625f0c3ee78f41", + "id": "0a2c5dcce38de3811218731ba7d4e921", "firstName": "John", "lastName": "Smith", - "email": "assigned-3468274747426273@mailinator.com", + "email": "assigned-278887075925746@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T18:33:20.9500000Z", + "statusDateTime": "2013-03-10T16:07:45.6970000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1571,16 +1687,16 @@ "embedUrl": "" }, { - "id": "b6229fdfabb02b3664d5b38b622183fb", + "id": "a572a8eb8f7ce097c73a8a0b415e9141", "firstName": "John", "lastName": "Smith", - "email": "assigned-8562254680030004@mailinator.com", + "email": "assigned-8252629471151048@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T18:34:26.4170000Z", + "statusDateTime": "2013-03-10T16:08:21.1630000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1589,16 +1705,16 @@ "embedUrl": "" }, { - "id": "89f78acd29507f9d6c7bd8a21dece941", + "id": "f9c3e03981b70bad9d595e71a975a128", "firstName": "John", "lastName": "Smith", - "email": "assigned-6970732817812251@mailinator.com", + "email": "assigned-9991943571587234@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T18:34:27.0430000Z", + "statusDateTime": "2013-03-10T16:08:53.9470000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1607,16 +1723,16 @@ "embedUrl": "" }, { - "id": "6ff8784b9b8ec004a0e9138d567a8031", + "id": "6741f649ab5ffb78cd130385094c129a", "firstName": "John", "lastName": "Smith", - "email": "assigned-09911144065266286@mailinator.com", + "email": "assigned-50786222672034@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T18:34:27.5800000Z", + "statusDateTime": "2013-03-10T16:09:27.0570000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1625,16 +1741,16 @@ "embedUrl": "" }, { - "id": "8f0c2789f9d5e507079d7a555084e963", + "id": "e105ca39466779b09bc5d6ac5ed3f2a6", "firstName": "John", "lastName": "Smith", - "email": "assigned-8300068985832728@mailinator.com", + "email": "assigned-12136416833127717@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T18:34:28.0500000Z", + "statusDateTime": "2013-03-10T16:10:00.3830000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1643,16 +1759,16 @@ "embedUrl": "" }, { - "id": "b7d511314db0c3251eee953a2b1737db", + "id": "21401303a145f7a22dd80881a46bf4db", "firstName": "John", "lastName": "Smith", - "email": "assigned-7158765330584547@mailinator.com", + "email": "assigned-32716941990454573@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 1, "statusMessage": null, - "statusDateTime": "2013-10-21T18:34:28.5500000Z", + "statusDateTime": "2013-03-10T16:10:33.5700000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1661,16 +1777,16 @@ "embedUrl": "" }, { - "id": "73af5243d13d9bdf79727ab1cab4a2e5", + "id": "4ffd6d1b0f7f531161d158c7df0750ba", "firstName": "John", "lastName": "Smith", - "email": "assigned-33242818298032994@mailinator.com", + "email": "assigned-642072178043681@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-22T18:32:13.1370000Z", + "statusDateTime": "2013-04-17T22:46:17.9030000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1679,16 +1795,16 @@ "embedUrl": "" }, { - "id": "6cdd5556ad9286177a9e255b2da8987d", + "id": "4d5b4162e1b42f4b7afa2705c4d3f294", "firstName": "John", "lastName": "Smith", - "email": "assigned-4517282223096848@mailinator.com", + "email": "assigned-40935933919770284@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-22T18:33:14.9530000Z", + "statusDateTime": "2013-04-17T22:46:18.3870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1697,16 +1813,16 @@ "embedUrl": "" }, { - "id": "f572be5bd0902ff380bb4e2811fecf82", + "id": "c5e36a771a0eda44c08bdc40a87fe89b", "firstName": "John", "lastName": "Smith", - "email": "assigned-005368107156486612@mailinator.com", + "email": "assigned-5647628934906905@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-22T18:33:15.5270000Z", + "statusDateTime": "2013-04-17T22:46:18.8100000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1715,16 +1831,16 @@ "embedUrl": "" }, { - "id": "e081e52cce82ae39e7c83ef66e72d73b", + "id": "e8dd2981fcaa92c9d0f3fd646fb2e308", "firstName": "John", "lastName": "Smith", - "email": "assigned-3397757188131626@mailinator.com", + "email": "assigned-3942873420210642@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-22T18:33:15.9870000Z", + "statusDateTime": "2013-04-17T22:46:19.1700000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1733,16 +1849,16 @@ "embedUrl": "" }, { - "id": "6a47be80a9c87ca0ecfea0de8097776b", + "id": "07de5ef9b12b4cd513b095e983b2c818", "firstName": "John", "lastName": "Smith", - "email": "assigned-7564994842619739@mailinator.com", + "email": "assigned-6743116158278719@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-22T18:33:16.4430000Z", + "statusDateTime": "2013-04-17T22:46:19.4970000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1751,16 +1867,16 @@ "embedUrl": "" }, { - "id": "f13f71db9602d949d4309e2759ad3fa3", + "id": "7084b621f22390e798a1530c16e4575f", "firstName": "John", "lastName": "Smith", - "email": "assigned-534531824623487@mailinator.com", + "email": "assigned-3122437567166634@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-22T18:33:16.9970000Z", + "statusDateTime": "2013-04-17T22:46:19.8270000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1769,16 +1885,16 @@ "embedUrl": "" }, { - "id": "5ead16301cbc5ea6decdccdd3f9425c1", + "id": "bc6e3403d1fbd60c44548728d29e54a5", "firstName": "John", "lastName": "Smith", - "email": "assigned-30795400751803237@mailinator.com", + "email": "assigned-18505894982806037@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-22T18:34:23.4300000Z", + "statusDateTime": "2013-04-17T22:46:20.1530000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1787,16 +1903,16 @@ "embedUrl": "" }, { - "id": "5d0764f9477b7ed401c7e5fa4cb649ad", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-49274903571309114@mailinator.com", + "id": "e26a54fda24314ba0e3b684a7c033f9e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-15762472105257241@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-23T18:33:01.9930000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1805,16 +1921,16 @@ "embedUrl": "" }, { - "id": "9df70661fa1e9669cf8ddb5a56171217", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-8021676799867695@mailinator.com", + "id": "511d87db0d689f1d4c0f68b79312d0ef", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8139440236535144@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-23T18:33:02.6470000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1823,16 +1939,16 @@ "embedUrl": "" }, { - "id": "a257e72e9bb15c9681cbf781a6613fd0", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-7245730127074677@mailinator.com", + "id": "70d7863535db849f62719c53c4bfd0d2", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-3939938296666543@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-23T18:33:03.2130000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1841,16 +1957,16 @@ "embedUrl": "" }, { - "id": "153658fc7573abe07c13283094f2ee9b", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-4834327706882464@mailinator.com", + "id": "c3fc240f929b3ed9b399d3077c402012", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7565842690010821@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-23T18:33:03.6900000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1859,16 +1975,16 @@ "embedUrl": "" }, { - "id": "82c88cccb271fb8747fa47ebb7c5a1f5", + "id": "52978d2a314cc7d7e479846d3e8afd46", "firstName": "John", "lastName": "Smith", - "email": "assigned-8222919178809742@mailinator.com", + "email": "assigned-443571059425551@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-23T18:33:04.2070000Z", + "statusDateTime": "2013-04-18T09:23:35.6000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1877,16 +1993,16 @@ "embedUrl": "" }, { - "id": "26b5fde80870aea5dab3b28795a0f062", + "id": "1198bfbcee830d43a4aacce3123a87e7", "firstName": "John", "lastName": "Smith", - "email": "assigned-8147572371283277@mailinator.com", + "email": "assigned-45448455310969427@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-23T18:34:07.9830000Z", + "statusDateTime": "2013-04-18T09:23:36.9430000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1895,16 +2011,16 @@ "embedUrl": "" }, { - "id": "44c41e9af3361ca6841d09895bfaa798", + "id": "88e892ac76b0d77685c105b530b0a5f8", "firstName": "John", "lastName": "Smith", - "email": "assigned-0327085402735644@mailinator.com", + "email": "assigned-08613279302421117@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-23T18:34:08.5070000Z", + "statusDateTime": "2013-04-18T09:24:12.3500000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1913,16 +2029,16 @@ "embedUrl": "" }, { - "id": "012e7c13c0ad2d2938603ad185c570f6", + "id": "da970da4378afd106a8087fe2df10f4c", "firstName": "John", "lastName": "Smith", - "email": "assigned-5853706232173982@mailinator.com", + "email": "assigned-020458534603180478@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-24T18:32:15.3270000Z", + "statusDateTime": "2013-04-18T09:24:12.7570000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1931,16 +2047,16 @@ "embedUrl": "" }, { - "id": "91bed70c7d7a921d516c95286fb6204a", + "id": "81df2a2565b1e5d43ef4abb865cd62b0", "firstName": "John", "lastName": "Smith", - "email": "assigned-010923533659875306@mailinator.com", + "email": "assigned-4512013922846434@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-24T18:33:16.7970000Z", + "statusDateTime": "2013-04-18T09:24:13.0070000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1949,16 +2065,16 @@ "embedUrl": "" }, { - "id": "7f7c83568bc6ac9f03c3e6286b33606d", + "id": "0a1766c626d5040c9fc8cedf0d8b684e", "firstName": "John", "lastName": "Smith", - "email": "assigned-7302111782163755@mailinator.com", + "email": "assigned-9248931650916692@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-24T18:33:17.7170000Z", + "statusDateTime": "2013-04-18T09:24:13.3500000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1967,16 +2083,16 @@ "embedUrl": "" }, { - "id": "ddf7bea2bd9f85e1c91456a30f9df9b6", + "id": "c3a1d955e5586e65c4b49bed84501fe1", "firstName": "John", "lastName": "Smith", - "email": "assigned-7994954120314206@mailinator.com", + "email": "assigned-1963939379523999@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-24T18:33:18.7730000Z", + "statusDateTime": "2013-04-18T09:24:14.1470000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -1985,16 +2101,16 @@ "embedUrl": "" }, { - "id": "be1fac843e716835e983f459850db9c0", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-30495198322221584@mailinator.com", + "id": "d49169db35a26c29efe9829c990f47dc", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5360641682705809@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-24T18:33:19.6700000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2003,16 +2119,16 @@ "embedUrl": "" }, { - "id": "db0d793373e51d1434cf1e81ba17abcb", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-8646356590045691@mailinator.com", + "id": "48602a313cb718be7f386e90677aefd9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9550320383316303@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-24T18:33:20.5130000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2021,16 +2137,16 @@ "embedUrl": "" }, { - "id": "8c52f9e792d44b0559c2dfbd563e2db7", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-3390716392254609@mailinator.com", + "id": "f0c326ddef8558e7d7588e2a89ef1cc1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6620222215909731@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-24T18:34:24.8730000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2039,16 +2155,16 @@ "embedUrl": "" }, { - "id": "0a9b9713b041c6db2be9d52cf81691e6", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-10602366525099316@mailinator.com", + "id": "893985a8dcea83730fbaca4d874e14b6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5940058825665663@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-25T11:32:12.4170000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2057,16 +2173,16 @@ "embedUrl": "" }, { - "id": "7e11db8ac456abe8fa500a173d468d2d", + "id": "f52183835a24b465219634340f9e37ad", "firstName": "John", "lastName": "Smith", - "email": "assigned-8861063268776012@mailinator.com", + "email": "assigned-8718315815911554@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-25T11:33:14.4100000Z", + "statusDateTime": "2013-04-19T05:39:21.0630000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2075,16 +2191,16 @@ "embedUrl": "" }, { - "id": "f92e0f081936253b840f131d8ba34b61", + "id": "ddba555ee1e607164caf7fa7e43d43e4", "firstName": "John", "lastName": "Smith", - "email": "assigned-6265320654886947@mailinator.com", + "email": "assigned-8077843927566373@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-25T11:33:15.4830000Z", + "statusDateTime": "2013-04-19T05:40:26.3770000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2093,16 +2209,16 @@ "embedUrl": "" }, { - "id": "bbcce5284bef9fcae97fa6d656c0d92f", + "id": "14c5c8f8cd349637063bbe40fe6db760", "firstName": "John", "lastName": "Smith", - "email": "assigned-17166333956180835@mailinator.com", + "email": "assigned-5707992925948325@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-25T11:33:16.6100000Z", + "statusDateTime": "2013-04-19T05:40:26.8770000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2111,16 +2227,16 @@ "embedUrl": "" }, { - "id": "5b40b3ef8e4523d167e32ea5be818edf", + "id": "e427f612140edea4da923ebfe7dbcf34", "firstName": "John", "lastName": "Smith", - "email": "assigned-9782635118876288@mailinator.com", + "email": "assigned-7807335447660004@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-25T11:33:17.6370000Z", + "statusDateTime": "2013-04-19T05:40:27.2670000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2129,16 +2245,16 @@ "embedUrl": "" }, { - "id": "f1be8be1cac440d73edd4e2eb101093e", + "id": "b5d0b7072a6c8bff6b96d8b0fdfc54ef", "firstName": "John", "lastName": "Smith", - "email": "assigned-27752640020667463@mailinator.com", + "email": "assigned-008360014490725654@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-25T11:33:18.7900000Z", + "statusDateTime": "2013-04-19T05:40:36.3600000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2147,16 +2263,16 @@ "embedUrl": "" }, { - "id": "c39152ba4c82ab82f5d78b9906a95ffc", + "id": "81a7b5a44ad0c830e307343d4d5835fc", "firstName": "John", "lastName": "Smith", - "email": "assigned-7784964032834502@mailinator.com", + "email": "assigned-49735142503186125@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-25T11:34:20.7670000Z", + "statusDateTime": "2013-04-19T05:40:40.8130000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2165,16 +2281,16 @@ "embedUrl": "" }, { - "id": "a9e4f13791b7afbe582f57a179fd3806", + "id": "4f0579d1f702cd84150baf8022c7efbc", "firstName": "John", "lastName": "Smith", - "email": "assigned-07798472997936179@mailinator.com", + "email": "assigned-3989069114069891@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-25T18:34:25.2230000Z", + "statusDateTime": "2013-04-19T05:40:41.2030000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2183,16 +2299,16 @@ "embedUrl": "" }, { - "id": "4ace0fc7c654aeeb5663f89afed95a78", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-2779965385715465@mailinator.com", + "id": "d7d5bf4fdaa855aa5cc1c8d35b47173e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5480694823720446@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-25T18:34:26.2700000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2201,16 +2317,16 @@ "embedUrl": "" }, { - "id": "75302471dd907613fbbc63f822451713", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-8515584213062815@mailinator.com", + "id": "ad6e431c1d850bf7c4f7c3c169490f07", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-573930626090376@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-25T18:35:04.2230000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2219,16 +2335,16 @@ "embedUrl": "" }, { - "id": "e2b17035ffb83cc61690c84db4a0ad9e", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-7181211759261921@mailinator.com", + "id": "5d3878eba7e4130a2118b4ac83aecf2e", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8005977653586692@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-25T18:35:05.3630000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2237,16 +2353,16 @@ "embedUrl": "" }, { - "id": "ca99bdd96db70b09ef9495fe8dce3030", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-27711853281478094@mailinator.com", + "id": "938239343ac17f5cd60ab29913b92fff", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5384361447872407@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-25T18:35:06.5070000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2255,16 +2371,16 @@ "embedUrl": "" }, { - "id": "c6db488b9ba986c34d9114674d952afa", + "id": "ed490c9ce34bafbfabfadbb98ae318dd", "firstName": "John", "lastName": "Smith", - "email": "assigned-008718482430491892@mailinator.com", + "email": "assigned-152804520336161@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-25T18:35:07.6470000Z", + "statusDateTime": "2013-04-19T10:43:08.7100000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2273,16 +2389,16 @@ "embedUrl": "" }, { - "id": "424724a2d43190ee189c080a277cd148", + "id": "7de123c5c7717cdd6aef86503311aece", "firstName": "John", "lastName": "Smith", - "email": "assigned-5935423747135059@mailinator.com", + "email": "assigned-46784346515881825@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-25T18:35:08.6930000Z", + "statusDateTime": "2013-04-19T10:43:09.1470000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2291,16 +2407,16 @@ "embedUrl": "" }, { - "id": "ee2cfd3af39e79956e8a475feb6fcdb7", + "id": "876b5e41f731eda9f06ab9127d85f8f1", "firstName": "John", "lastName": "Smith", - "email": "assigned-6520692214611924@mailinator.com", + "email": "assigned-07007568553132737@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-26T18:33:25.4030000Z", + "statusDateTime": "2013-04-19T10:44:10.1300000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2309,16 +2425,16 @@ "embedUrl": "" }, { - "id": "d0c60f2f1e8e0e17ff9c92ffa820f023", + "id": "12a8e2be432c0e1e75906a39c0118a71", "firstName": "John", "lastName": "Smith", - "email": "assigned-6282513084717106@mailinator.com", + "email": "assigned-5367151918224916@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-26T18:33:26.5900000Z", + "statusDateTime": "2013-04-19T10:44:10.5830000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2327,16 +2443,16 @@ "embedUrl": "" }, { - "id": "178995a2c37f82aefb1861fb3ecf087f", + "id": "65788240898c99c7906d16c2c66a5082", "firstName": "John", "lastName": "Smith", - "email": "assigned-9164406547291604@mailinator.com", + "email": "assigned-4459097047856976@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-26T18:33:27.7170000Z", + "statusDateTime": "2013-04-19T10:44:11.1770000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2345,16 +2461,16 @@ "embedUrl": "" }, { - "id": "c011a276767cdf72d62ab834cb894587", + "id": "4b2895a275f5521ca7bff13a2a10ea05", "firstName": "John", "lastName": "Smith", - "email": "assigned-7894610334011164@mailinator.com", + "email": "assigned-5776056049416477@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-26T18:33:28.8570000Z", + "statusDateTime": "2013-04-19T10:44:11.6630000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2363,16 +2479,16 @@ "embedUrl": "" }, { - "id": "a3e92b8ecced20a90124512ffdb3f2e5", + "id": "c11d1cf7c611c503c322ce5283ec1285", "firstName": "John", "lastName": "Smith", - "email": "assigned-280226962996194@mailinator.com", + "email": "assigned-9422636225020389@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-26T18:34:02.2930000Z", + "statusDateTime": "2013-04-19T10:44:12.2230000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2381,16 +2497,16 @@ "embedUrl": "" }, { - "id": "3ab3471b59b8c5d03c31a723b86efc6b", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-8541135414699477@mailinator.com", + "id": "450d388da5b7ec148b3a45b2827df88c", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5274782975571047@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-26T18:34:03.5270000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2399,16 +2515,16 @@ "embedUrl": "" }, { - "id": "17ca7876f850efbc56ed8498a47e4549", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-5667910331586209@mailinator.com", + "id": "e0e0cd54fe0c05742740adaab9ff4586", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-36634741881618893@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-26T18:34:04.6830000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2417,16 +2533,16 @@ "embedUrl": "" }, { - "id": "4c59585293ac0704c4671d0663c1efc8", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-22697905580050404@mailinator.com", + "id": "bd633bd86bcd4e35566524c0ae172e46", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-06807144961676814@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-27T18:33:10.1270000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2435,16 +2551,16 @@ "embedUrl": "" }, { - "id": "1486348bc48b95b024c5cb1b8ed2776d", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-07638797762809024@mailinator.com", + "id": "4c3f3de4890c8ad3d562b895e19f15dd", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-8963197183814202@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-27T18:33:11.4070000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2453,16 +2569,16 @@ "embedUrl": "" }, { - "id": "c8531e6ed62dcafcd92f380350d58161", + "id": "8ea73e64acd8055732fd774445fe5b91", "firstName": "John", "lastName": "Smith", - "email": "assigned-8818091576698326@mailinator.com", + "email": "assigned-3908486069945708@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-27T18:34:18.8930000Z", + "statusDateTime": "2013-04-20T05:43:20.3800000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2471,16 +2587,16 @@ "embedUrl": "" }, { - "id": "7b0bfe1bc8ad4bee1b26f121c9a53890", + "id": "26e00d60311013ee884d4e83bfb727b3", "firstName": "John", "lastName": "Smith", - "email": "assigned-22611581863706254@mailinator.com", + "email": "assigned-9564421804614175@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-27T18:34:20.1730000Z", + "statusDateTime": "2013-04-20T05:44:21.3200000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2489,16 +2605,16 @@ "embedUrl": "" }, { - "id": "bed28d40cee4377c28dea4ad478d8c25", + "id": "aea94577ef5ee996e9164f2c571ed00c", "firstName": "John", "lastName": "Smith", - "email": "assigned-04774389589321937@mailinator.com", + "email": "assigned-43035021390657036@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-27T18:34:21.6270000Z", + "statusDateTime": "2013-04-20T05:44:21.6170000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2507,16 +2623,16 @@ "embedUrl": "" }, { - "id": "602c5eef60e70845f9413e03cd74c3dc", + "id": "18641d68c887f8cbeb4810689bca8de3", "firstName": "John", "lastName": "Smith", - "email": "assigned-37292429603394417@mailinator.com", + "email": "assigned-10450753153698367@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-27T18:34:22.9230000Z", + "statusDateTime": "2013-04-20T05:44:22.0070000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2525,16 +2641,16 @@ "embedUrl": "" }, { - "id": "50a758448787b98bc9653899e6f016b9", + "id": "ae996d732e16a55fadaa19a2f85f5093", "firstName": "John", "lastName": "Smith", - "email": "assigned-5254098728650154@mailinator.com", + "email": "assigned-8765256758821187@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-27T18:34:24.4870000Z", + "statusDateTime": "2013-04-20T05:44:22.2100000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2543,16 +2659,16 @@ "embedUrl": "" }, { - "id": "50bdf1168fbd5ed3cd520eaa1c869de5", + "id": "3c2b5da3c2e1732edf5296c6919f074e", "firstName": "John", "lastName": "Smith", - "email": "assigned-2942571321416517@mailinator.com", + "email": "assigned-9869828041178128@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-28T18:34:24.4730000Z", + "statusDateTime": "2013-04-20T05:44:22.3670000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2561,16 +2677,16 @@ "embedUrl": "" }, { - "id": "5ac65236ab8903f616f42724efe67ffe", + "id": "b3a9e34bcc7487644b70c8e3c4d7760f", "firstName": "John", "lastName": "Smith", - "email": "assigned-9163569813995065@mailinator.com", + "email": "assigned-7240191865046121@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-28T18:34:25.0530000Z", + "statusDateTime": "2013-04-20T05:44:22.6770000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2579,16 +2695,16 @@ "embedUrl": "" }, { - "id": "0caf2cf9d6fd371420ec6804d63b4018", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-08477830739961678@mailinator.com", + "id": "fc3524451499c13dd946588c2677fbae", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-7058488833524673@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-28T18:34:25.5100000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2597,16 +2713,16 @@ "embedUrl": "" }, { - "id": "114caf94b870f87dc1f73203d781142a", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-980007099496591@mailinator.com", + "id": "06e1498746102fa4a8c371f5b02102b9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-4296562986107636@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-28T18:35:28.2430000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2615,16 +2731,16 @@ "embedUrl": "" }, { - "id": "0508a02194baf3d2ea0a4e2b8cfba2e3", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-09444399428547323@mailinator.com", + "id": "4070c0a109962c3c087a3d4c1f0d7670", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-2596297759549103@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-28T18:35:28.6670000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2633,16 +2749,16 @@ "embedUrl": "" }, { - "id": "c64f6dc5786baf06d43f1cc65ba867c0", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-6331037018829349@mailinator.com", + "id": "56d974fd7d6f16f4f7b42928c4b5ff53", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-6222838138010307@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-28T18:35:29.1930000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2651,16 +2767,16 @@ "embedUrl": "" }, { - "id": "f9141c4f4f33bf8d0b3e5045d27484e1", + "id": "75ca78101fa655e1bf85b28ec5c2e3e7", "firstName": "John", "lastName": "Smith", - "email": "assigned-48665539794656243@mailinator.com", + "email": "assigned-22000502112022013@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-28T18:35:29.7100000Z", + "statusDateTime": "2013-04-20T11:00:22.7870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2669,16 +2785,16 @@ "embedUrl": "" }, { - "id": "33ec50ab123bb924488d28e53c76a38a", + "id": "758aaa6dd1c22f657ae5f68bee52b609", "firstName": "John", "lastName": "Smith", - "email": "assigned-2444942831204996@mailinator.com", + "email": "assigned-22707028101095605@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-29T18:33:18.8170000Z", + "statusDateTime": "2013-04-20T11:00:23.1770000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2687,16 +2803,16 @@ "embedUrl": "" }, { - "id": "ab7802e14f4e78b95c058517b6f4b255", + "id": "b82d4bb9755fac5ffdff11fd753fca3e", "firstName": "John", "lastName": "Smith", - "email": "assigned-9556932419615036@mailinator.com", + "email": "assigned-5890324459175382@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-29T18:33:19.5270000Z", + "statusDateTime": "2013-04-20T11:00:23.5200000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2705,16 +2821,16 @@ "embedUrl": "" }, { - "id": "a5f70ed714abcc140482843c3afb37c6", + "id": "ddca88919ef45ef3bafe057847a2ca79", "firstName": "John", "lastName": "Smith", - "email": "assigned-11587502131879779@mailinator.com", + "email": "assigned-4480079210831769@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-29T18:33:20.2700000Z", + "statusDateTime": "2013-04-20T11:00:23.8000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2723,16 +2839,16 @@ "embedUrl": "" }, { - "id": "057f77fe3a1ee9685bc8883c9421d0b6", + "id": "1f80e9fa88af4a845b2a896f73bf1e79", "firstName": "John", "lastName": "Smith", - "email": "assigned-2139342968476069@mailinator.com", + "email": "assigned-3875911405750614@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-29T18:33:21.0730000Z", + "statusDateTime": "2013-04-20T11:01:25.6770000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2741,16 +2857,16 @@ "embedUrl": "" }, { - "id": "6e3fe3de0c9fe6d058ad711d8ae06a5d", + "id": "19ba8246c925ba79851286f1cf859b1b", "firstName": "John", "lastName": "Smith", - "email": "assigned-04341588863230139@mailinator.com", + "email": "assigned-8756851145831438@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-29T18:33:21.8200000Z", + "statusDateTime": "2013-04-20T11:01:26.1300000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2759,16 +2875,16 @@ "embedUrl": "" }, { - "id": "1bbf564083b55ffdbdf6ed22aa030452", + "id": "e8382b7d7c3a0622f2c898a870d4ca74", "firstName": "John", "lastName": "Smith", - "email": "assigned-6450511758614067@mailinator.com", + "email": "assigned-0017751875951652618@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-29T18:34:26.0670000Z", + "statusDateTime": "2013-04-20T11:01:26.5670000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2777,16 +2893,16 @@ "embedUrl": "" }, { - "id": "b44495823f22681a322730f51ce05bc2", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-4247778776033774@mailinator.com", + "id": "d50245c8a0efb7a3cdc5e457a5b980e1", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-29890219921173744@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-29T18:34:26.8070000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2795,16 +2911,16 @@ "embedUrl": "" }, { - "id": "5b1633fefc731c8d2a140cc065992bb7", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-9230495141830519@mailinator.com", + "id": "f395292f604f3096b7f818c4c78446d0", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-1736955702190952@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-30T18:32:08.2200000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2813,16 +2929,16 @@ "embedUrl": "" }, { - "id": "01c1df46ff47d91f428a9f4d5f82b5f5", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-8500050087578999@mailinator.com", + "id": "02d143198785aa29dff3c3a20974622a", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5795236135016284@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-30T18:33:09.4030000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2831,16 +2947,16 @@ "embedUrl": "" }, { - "id": "8dd7491e720751e7bf56722ba778197c", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-8693648015774945@mailinator.com", + "id": "d5fed5f998192087118f69f788c2937d", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9473581036380162@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -2, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-30T18:33:09.9300000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2849,16 +2965,16 @@ "embedUrl": "" }, { - "id": "cf23a87cf99d357ef0ac687a59a3582f", + "id": "c801e4e72b0631853f7f4f6cb0950536", "firstName": "John", "lastName": "Smith", - "email": "assigned-3602715430176874@mailinator.com", + "email": "assigned-7517249906466011@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-30T18:33:10.4370000Z", + "statusDateTime": "2013-04-21T05:41:24.2430000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2867,16 +2983,16 @@ "embedUrl": "" }, { - "id": "c2dc49059c287156f9e22438f8075544", + "id": "8cd2578157b0bc538498bc67874902ee", "firstName": "John", "lastName": "Smith", - "email": "assigned-5262170200315702@mailinator.com", + "email": "assigned-4971932159117206@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-30T18:33:10.9930000Z", + "statusDateTime": "2013-04-21T05:41:25.3370000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2885,16 +3001,16 @@ "embedUrl": "" }, { - "id": "86ba828eef24c62f18ffac41fdb5639d", + "id": "6d7808b67a17eee4e5d84eb0acc1d2ea", "firstName": "John", "lastName": "Smith", - "email": "assigned-19151189600533025@mailinator.com", + "email": "assigned-9176070802678374@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-30T18:33:11.4770000Z", + "statusDateTime": "2013-04-21T05:41:25.8670000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2903,16 +3019,16 @@ "embedUrl": "" }, { - "id": "fa201e149b94bd3942391c3632b7b214", + "id": "26be26e9d1d55d01a6f51724f44d8db1", "firstName": "John", "lastName": "Smith", - "email": "assigned-9320105533643255@mailinator.com", + "email": "assigned-8977357024535199@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-30T18:34:12.6530000Z", + "statusDateTime": "2013-04-21T05:41:26.3830000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2921,16 +3037,16 @@ "embedUrl": "" }, { - "id": "53c343244c50c786725f2ea8eb85d0ea", + "id": "d6b2271516b4c4ff9a9b4ca31cc51ddb", "firstName": "John", "lastName": "Smith", - "email": "assigned-9810057303773383@mailinator.com", + "email": "assigned-6411221343305712@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T11:13:26.8970000Z", + "statusDateTime": "2013-04-21T05:41:33.8200000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2939,16 +3055,16 @@ "embedUrl": "" }, { - "id": "e62590c08285dfc0ed3342a55d2cba6c", + "id": "f2d9bca3c9b8e9842f3872c2a0f94232", "firstName": "John", "lastName": "Smith", - "email": "assigned-8564379812181483@mailinator.com", + "email": "assigned-44149518478116856@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T11:14:28.0200000Z", + "statusDateTime": "2013-04-21T05:41:36.0570000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2957,16 +3073,16 @@ "embedUrl": "" }, { - "id": "f389d249748bb729a81f4c42a6668514", + "id": "5c9be3c3282db7ebcaef62fe5fa7870c", "firstName": "John", "lastName": "Smith", - "email": "assigned-35946876245595905@mailinator.com", + "email": "assigned-30123503975277144@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T11:14:28.5500000Z", + "statusDateTime": "2013-04-21T05:42:08.0870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2975,16 +3091,70 @@ "embedUrl": "" }, { - "id": "7bcb4837f0047adba63d3616f9ed8151", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-17929853946177265@mailinator.com", + "id": "d766dc85c23a2ed2965c524c07281d78", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9305030427222922@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": -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": "2013-10-31T11:14:28.9800000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -2993,16 +3163,16 @@ "embedUrl": "" }, { - "id": "1a2703d855e359a0fc018c0dbc43a7ff", + "id": "78621b1d76ca0c0689f8e76ea4221511", "firstName": "John", "lastName": "Smith", - "email": "assigned-8920444575048684@mailinator.com", + "email": "assigned-6305261591983666@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T11:14:29.4070000Z", + "statusDateTime": "2013-04-21T11:01:26.5100000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3011,16 +3181,16 @@ "embedUrl": "" }, { - "id": "1b13b89169d960b0187414250fd81dd4", + "id": "bcb273b2515c37c90c643df894062718", "firstName": "John", "lastName": "Smith", - "email": "assigned-669955820521036@mailinator.com", + "email": "assigned-15020133804158065@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T11:14:29.8270000Z", + "statusDateTime": "2013-04-21T11:02:27.3870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3029,16 +3199,16 @@ "embedUrl": "" }, { - "id": "ae7a99c9d18c4ac57c16c269f105d839", + "id": "79217b55e09fbc0659a33c8d749e9520", "firstName": "John", "lastName": "Smith", - "email": "assigned-3939760521887823@mailinator.com", + "email": "assigned-053705749907575595@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T11:15:30.9230000Z", + "statusDateTime": "2013-04-21T11:02:27.9030000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3047,16 +3217,16 @@ "embedUrl": "" }, { - "id": "623fd49e722182cb9c0dc7ae1aa0ab7a", + "id": "faf27c822c7a75465ae34e2c26202840", "firstName": "John", "lastName": "Smith", - "email": "assigned-046921245000057676@mailinator.com", + "email": "assigned-9641261533904368@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T12:37:21.9100000Z", + "statusDateTime": "2013-04-21T11:02:28.5730000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3065,16 +3235,16 @@ "embedUrl": "" }, { - "id": "d36bd4748ed12d759173b458652a40f9", + "id": "8ebaa8b66594ca8418a6f26c2646e73a", "firstName": "John", "lastName": "Smith", - "email": "assigned-3648876598354215@mailinator.com", + "email": "assigned-7708147403874857@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T12:37:22.4830000Z", + "statusDateTime": "2013-04-21T11:02:29.1830000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3083,16 +3253,16 @@ "embedUrl": "" }, { - "id": "301fe8ac25f637fb3652d705791c16c3", + "id": "353e0afbb492ccea9815ec4d278182f9", "firstName": "John", "lastName": "Smith", - "email": "assigned-4218585905181731@mailinator.com", + "email": "assigned-31588109604321535@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T12:37:23.0400000Z", + "statusDateTime": "2013-04-21T11:02:29.7600000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3101,16 +3271,88 @@ "embedUrl": "" }, { - "id": "07c5e1c1fcdcccaa3a8e0f2e04ff2932", + "id": "34ff2c95a6a23d9eab695dbbfda9ae0b", "firstName": "John", "lastName": "Smith", - "email": "assigned-4582645423932784@mailinator.com", + "email": "assigned-5961919029309909@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T12:37:23.5900000Z", + "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, @@ -3119,16 +3361,16 @@ "embedUrl": "" }, { - "id": "4113663bbd88d4d23f8aa7ec3d3a0dca", + "id": "1ff9a2260615dcab05cc7576d77993c6", "firstName": "John", "lastName": "Smith", - "email": "assigned-4766791011306505@mailinator.com", + "email": "assigned-5833346149536001@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T12:38:24.9470000Z", + "statusDateTime": "2013-04-22T09:35:10.6530000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3137,16 +3379,16 @@ "embedUrl": "" }, { - "id": "c82dce99d85872590539eee4f8c8730c", + "id": "51a848471d8dc5c71ad231e8aadbf887", "firstName": "John", "lastName": "Smith", - "email": "assigned-005896894366963945@mailinator.com", + "email": "assigned-23772888357229183@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T12:38:25.5700000Z", + "statusDateTime": "2013-04-22T09:35:11.1200000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3155,16 +3397,16 @@ "embedUrl": "" }, { - "id": "915db61e0af31c83507c253a1712247f", + "id": "6940a94fd209d80e8aa8738dad7f2bc4", "firstName": "John", "lastName": "Smith", - "email": "assigned-28714791110389715@mailinator.com", + "email": "assigned-37829044785564025@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T12:38:26.0630000Z", + "statusDateTime": "2013-04-22T09:35:11.6030000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3173,16 +3415,16 @@ "embedUrl": "" }, { - "id": "18e3376f3e95a039e05a3f06dc1db0a9", + "id": "7d73a5637b9449bd72c627b4198ae36d", "firstName": "John", "lastName": "Smith", - "email": "assigned-6599311011311568@mailinator.com", + "email": "assigned-7565006292453038@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:36:05.8770000Z", + "statusDateTime": "2013-04-22T09:35:12.1200000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3191,16 +3433,16 @@ "embedUrl": "" }, { - "id": "6210a9eef3c37d54b91b2e8cfbbc5e02", + "id": "78074e62088e43ee14690793bd0622a0", "firstName": "John", "lastName": "Smith", - "email": "assigned-30113233416441176@mailinator.com", + "email": "assigned-08667222608356495@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:37:09.1930000Z", + "statusDateTime": "2013-04-22T09:35:12.6030000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3209,16 +3451,16 @@ "embedUrl": "" }, { - "id": "b045a351e99f2138aa66a763415d43b1", + "id": "c13da487caed189c64ffb5c5236a7f4b", "firstName": "John", "lastName": "Smith", - "email": "assigned-1506992284401678@mailinator.com", + "email": "assigned-6201572755250552@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:37:09.6770000Z", + "statusDateTime": "2013-04-22T09:36:14.0100000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3227,16 +3469,88 @@ "embedUrl": "" }, { - "id": "e491b28f65084b5d11732b77fa0dd71d", + "id": "3f9ccc29fd525ac615780983310ccfde", "firstName": "John", "lastName": "Smith", - "email": "assigned-9916772185486696@mailinator.com", + "email": "assigned-811575727403244@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:37:10.2870000Z", + "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, @@ -3245,16 +3559,16 @@ "embedUrl": "" }, { - "id": "bc36f61f48815fdda9f497c816d4c67d", + "id": "89ad9657dc089eb96781a891aeda3808", "firstName": "John", "lastName": "Smith", - "email": "assigned-09276904040474354@mailinator.com", + "email": "assigned-25086788861858733@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:37:10.8000000Z", + "statusDateTime": "2013-04-23T05:57:07.3000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3263,16 +3577,16 @@ "embedUrl": "" }, { - "id": "97699dc17048d25c8c050177aaf29211", + "id": "12ddd13fe1ee843dc757bc7b97e549cb", "firstName": "John", "lastName": "Smith", - "email": "assigned-139254422260497@mailinator.com", + "email": "assigned-3762019174442751@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-28T18:38:00.0030000Z", + "statusDateTime": "2013-04-23T05:57:07.4870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3281,16 +3595,16 @@ "embedUrl": "" }, { - "id": "2ca1ee5da3b5349baafb11e31bcdc71e", + "id": "848f2c58e7a52d6535187f2d7e652955", "firstName": "John", "lastName": "Smith", - "email": "assigned-011941811841038041@mailinator.com", + "email": "assigned-47838215240732107@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:38:12.3000000Z", + "statusDateTime": "2013-04-23T05:57:07.6770000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3299,16 +3613,16 @@ "embedUrl": "" }, { - "id": "ff33e90669d163ff8f0b29c320ee53d6", + "id": "06261d3fa1073a0edc4c6f3e12e1a06b", "firstName": "John", "lastName": "Smith", - "email": "assigned-4484349186328559@mailinator.com", + "email": "assigned-5565703687559224@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-11-01T18:35:14.1770000Z", + "statusDateTime": "2013-04-23T05:58:08.3000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3317,16 +3631,16 @@ "embedUrl": "" }, { - "id": "5bd27becfd27d023b5462a54fcc20f35", + "id": "bc07963299ab7de0fe57562d8895b7b9", "firstName": "John", "lastName": "Smith", - "email": "assigned-9809217437185195@mailinator.com", + "email": "assigned-6857815804884205@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-11-01T18:35:15.0270000Z", + "statusDateTime": "2013-04-23T05:58:08.4400000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3335,16 +3649,16 @@ "embedUrl": "" }, { - "id": "7e19dc95ff94c846b6524d5c40cd6b96", + "id": "bb41b40d7b3edfe1ea337a57a876b278", "firstName": "John", "lastName": "Smith", - "email": "assigned-38854098669286974@mailinator.com", + "email": "assigned-38563270202555355@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-11-01T18:36:19.2000000Z", + "statusDateTime": "2013-04-23T05:58:08.6600000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3353,16 +3667,88 @@ "embedUrl": "" }, { - "id": "909fef47287ddda32310e8b592e48779", + "id": "342ea0376d0f77dc90f0ffcaf0231084", "firstName": "John", "lastName": "Smith", - "email": "assigned-8964965548974076@mailinator.com", + "email": "assigned-8042858415162975@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-11-01T18:36:19.9400000Z", + "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, @@ -3371,16 +3757,16 @@ "embedUrl": "" }, { - "id": "f8897618f596482fc49f4c568436a9d1", + "id": "f0e7929d17eaeae5b85961e9f1470304", "firstName": "John", "lastName": "Smith", - "email": "assigned-4190199545898893@mailinator.com", + "email": "assigned-27742419882063674@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-11-01T18:36:20.6770000Z", + "statusDateTime": "2013-04-23T11:11:26.5000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3389,16 +3775,16 @@ "embedUrl": "" }, { - "id": "85da0d80567f9230ec49a512a7f94285", + "id": "88656f2ef9fd5466f87c1ec47fbcc64a", "firstName": "John", "lastName": "Smith", - "email": "assigned-3993378827168528@mailinator.com", + "email": "assigned-3083506259269675@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-11-01T18:36:21.4600000Z", + "statusDateTime": "2013-04-23T11:12:31.0800000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3407,16 +3793,16 @@ "embedUrl": "" }, { - "id": "dcb8156c58617c791ff047fa7d2eef1e", + "id": "fb7c0d63c2cf668a5989e72f516f03af", "firstName": "John", "lastName": "Smith", - "email": "assigned-6566391602772023@mailinator.com", + "email": "assigned-8461568547048178@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, "status": -2, "statusMessage": null, - "statusDateTime": "2013-11-01T18:36:22.2370000Z", + "statusDateTime": "2013-04-23T11:12:31.4700000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3425,16 +3811,16 @@ "embedUrl": "" }, { - "id": "5584055add2e968b5d3b8fa701c270f9", + "id": "058ac72b527bf7e48ac7586578df2ca9", "firstName": "John", "lastName": "Smith", - "email": "assigned-7448558393786099@mailinator.com", + "email": "assigned-6970484781118814@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T12:59:58.2530000Z", + "statusDateTime": "2013-04-23T11:12:31.8130000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3443,16 +3829,16 @@ "embedUrl": "" }, { - "id": "fd1bc3857bb42a2fbb944d5c26436564", + "id": "a26201a03d95abb726ee7bbf1675b004", "firstName": "John", "lastName": "Smith", - "email": "assigned-1928770118132982@mailinator.com", + "email": "assigned-8105089974986341@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T13:00:12.7530000Z", + "statusDateTime": "2013-04-23T11:12:32.3130000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3461,16 +3847,16 @@ "embedUrl": "" }, { - "id": "306703a244772143c4495c84eaa59143", + "id": "e3b85cd225959179a64b2e6ad8f2fd2c", "firstName": "John", "lastName": "Smith", - "email": "assigned-46111256534291467@mailinator.com", + "email": "assigned-6520698560991589@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T13:00:24.0570000Z", + "statusDateTime": "2013-04-23T11:12:32.9070000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3479,16 +3865,16 @@ "embedUrl": "" }, { - "id": "8fb765ee0639de748d016ba07fdd998a", + "id": "f9d1178463eccac475f7a0b0e680d6bd", "firstName": "John", "lastName": "Smith", - "email": "assigned-4979464415089503@mailinator.com", + "email": "assigned-14900945372029128@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T13:00:35.2230000Z", + "statusDateTime": "2013-04-23T11:12:41.2030000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3497,16 +3883,16 @@ "embedUrl": "" }, { - "id": "a27e46435e3666817137a5aa28089f58", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-8233489200135331@mailinator.com", + "id": "9a7fdd0fb375b501b1191d70c47adfb6", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-9795442593487093@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-31T13:00:46.5370000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3515,16 +3901,16 @@ "embedUrl": "" }, { - "id": "48cb5b1b6d453d8631444d78d53621a2", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-40474992027231793@mailinator.com", + "id": "fb05416e04dd3c2dc8ea32aa8a9d5af9", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-5042784003167168@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-31T13:00:57.9030000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3533,16 +3919,16 @@ "embedUrl": "" }, { - "id": "47dc868250d9d45c9dadb68b331cb719", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-007559562298249389@mailinator.com", + "id": "9832eccb0f296dcab03d9b70292589b3", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-21990399981886077@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-31T13:01:09.3370000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3551,16 +3937,16 @@ "embedUrl": "" }, { - "id": "2252d4f99e24112177102aeeb2bc19ff", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-7542603779570927@mailinator.com", + "id": "b019991d8cf7eeccc571ff1d5c446fda", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-29693159352778065@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-10-31T18:34:24.3670000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3569,16 +3955,16 @@ "embedUrl": "" }, { - "id": "2f29dd57c2bc9611fdced641ec94388b", + "id": "eef3b4328a7c87c4edd110bdebba8007", "firstName": "John", "lastName": "Smith", - "email": "assigned-45835667075429365@mailinator.com", + "email": "assigned-020940046982125038@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:34:38.2570000Z", + "statusDateTime": "2013-04-24T09:18:07.8600000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3587,16 +3973,16 @@ "embedUrl": "" }, { - "id": "72b3154e25dd3b2f902260a454e37fe9", + "id": "e4e673764494cefefb328bcd51ffde9b", "firstName": "John", "lastName": "Smith", - "email": "assigned-7781605031166939@mailinator.com", + "email": "assigned-025964769737534144@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:34:49.7530000Z", + "statusDateTime": "2013-04-24T09:19:13.2370000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3605,16 +3991,16 @@ "embedUrl": "" }, { - "id": "dfb2f4816553cba958b350ee9e28a3c6", + "id": "5127d69f69d122acd6425561b0cb80ae", "firstName": "John", "lastName": "Smith", - "email": "assigned-9785358581196433@mailinator.com", + "email": "assigned-5257566311005618@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:35:00.6700000Z", + "statusDateTime": "2013-04-24T09:19:13.6730000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3623,16 +4009,16 @@ "embedUrl": "" }, { - "id": "c91d232810b1d658da954cdb1e8f39be", + "id": "bd0497d1c8487a8f92df14df1cba3ff3", "firstName": "John", "lastName": "Smith", - "email": "assigned-38581287128402@mailinator.com", + "email": "assigned-7376129919942375@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:35:12.8570000Z", + "statusDateTime": "2013-04-24T09:19:13.9230000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3641,16 +4027,16 @@ "embedUrl": "" }, { - "id": "a088e0650b3a2612d6ada0a3fe457e1e", + "id": "16563e8c8bbe4441cd1aab62a0f45df2", "firstName": "John", "lastName": "Smith", - "email": "assigned-9225085183066993@mailinator.com", + "email": "assigned-9331111875469363@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:35:24.2330000Z", + "statusDateTime": "2013-04-24T09:19:14.1430000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3659,16 +4045,16 @@ "embedUrl": "" }, { - "id": "9c4ef8c48d297249888d32a02c6cc6f2", + "id": "1a3f3d4ff955b81921dcaec35ecf3365", "firstName": "John", "lastName": "Smith", - "email": "assigned-9273017765756183@mailinator.com", + "email": "assigned-4117243099812128@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-10-31T18:35:35.6300000Z", + "statusDateTime": "2013-04-24T09:19:14.6900000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3677,16 +4063,16 @@ "embedUrl": "" }, { - "id": "c724a5b2d88c50995f2a0841e7bac7f4", + "id": "6d2ca62eee19b443610820843a13515b", "firstName": "John", "lastName": "Smith", - "email": "assigned-0216133424628151@mailinator.com", + "email": "assigned-19286397474490657@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-11-01T18:34:01.2330000Z", + "statusDateTime": "2013-04-24T09:19:16.9870000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3695,16 +4081,16 @@ "embedUrl": "" }, { - "id": "211b060d7cdeb61e20f3b3a43fb9c33b", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-6398346124789177@mailinator.com", + "id": "cd062e5fa8c6d6fbf53cfc9c2afb14b8", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-28300069158773955@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-11-01T18:34:20.1030000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3713,16 +4099,16 @@ "embedUrl": "" }, { - "id": "9d6fcf16e0fba657dee3c783e9be6e7d", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-159188289302982@mailinator.com", + "id": "0774cad7eec0c0f4af213aacc5f12264", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-41245485676684224@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-11-01T18:34:31.3700000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3731,16 +4117,16 @@ "embedUrl": "" }, { - "id": "eca4f75e126d0b92d1c5a052c0be57ed", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-3961263855633712@mailinator.com", + "id": "28fbd1202ec29cb0e59ce2fee1c6e025", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-14662335215027922@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-11-01T18:34:42.5730000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3749,16 +4135,16 @@ "embedUrl": "" }, { - "id": "4febec150887a2ebda0f5fba0dd0047c", - "firstName": "John", - "lastName": "Smith", - "email": "assigned-9883536331547327@mailinator.com", + "id": "8d7c6dcf6c3312a79a6d577a12a28093", + "firstName": "Delegated", + "lastName": "User", + "email": "delegated-30420044146652925@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-11-01T18:34:54.3630000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3767,16 +4153,16 @@ "embedUrl": "" }, { - "id": "c3b6bed02bcf5b0d4b2e50eae3c48629", + "id": "a57f8cb50a6ff3cd4fdf4d7047d40c05", "firstName": "John", "lastName": "Smith", - "email": "assigned-9854360858661776@mailinator.com", + "email": "assigned-01936796589919254@mailinator.com", "userGuid": "", "order": 0, "roleId": 2, - "status": 1, + "status": -2, "statusMessage": null, - "statusDateTime": "2013-11-01T18:35:05.6900000Z", + "statusDateTime": "2013-04-26T01:08:29.2330000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -3785,16 +4171,19042 @@ "embedUrl": "" }, { - "id": "9c487f215f85de80a9683d6c6ab6705d", + "id": "95a8220932be0c6fe2dfcae59ae613e0", "firstName": "John", "lastName": "Smith", - "email": "assigned-32903305112818915@mailinator.com", + "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-11-01T18:35:17.0770000Z", + "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, @@ -3804,31 +23216,89 @@ } ], "dates": [ - "2013-11-01T00:00:00.0000000", - "2013-10-31T00:00:00.0000000", - "2013-10-30T00:00:00.0000000", - "2013-10-29T00:00:00.0000000", - "2013-10-28T00:00:00.0000000", - "2013-10-27T00:00:00.0000000", - "2013-10-26T00:00:00.0000000", - "2013-10-25T00:00:00.0000000", - "2013-10-24T00:00:00.0000000", - "2013-10-23T00:00:00.0000000", - "2013-10-22T00:00:00.0000000", - "2013-10-21T00:00:00.0000000", - "2013-10-20T00:00:00.0000000", - "2013-10-19T00:00:00.0000000", - "2013-10-18T00:00:00.0000000", - "2013-10-17T00:00:00.0000000", - "2013-10-16T00:00:00.0000000", - "2013-10-15T00:00:00.0000000", - "2013-10-14T00:00:00.0000000", - "2013-10-11T00:00:00.0000000", - "2013-10-10T00:00:00.0000000", - "2013-10-08T00:00:00.0000000" + "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": 1383331818709 + "composedOn": 1375217221767 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureEnvelopes.json b/src/test/resources/responses/signature/GetSignatureEnvelopes.json index 78bb18a..d4d301d 100644 --- a/src/test/resources/responses/signature/GetSignatureEnvelopes.json +++ b/src/test/resources/responses/signature/GetSignatureEnvelopes.json @@ -1,13 +1,13 @@ { "result": { - "envelopesCount": 1756, + "envelopesCount": 6854, "envelopes": [ { - "id": "26a0c971b0b7226719f9a7bb7efa67cd", - "name": "Envelope 8600470510920635", - "creationDateTime": "2013-11-01T18:48:08.3870000Z", - "updatedDateTime": "2013-11-01T18:48:11.8530000Z", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "86d884a8b9f386591651a1eb2fd01908", + "name": "Envelope 75081708451482", + "creationDateTime": "2013-07-30T20:43:09.7530000Z", + "updatedDateTime": "2013-07-30T20:43:13.0170000Z", + "ownerGuid": "ea103bbe8cb8ce07", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, @@ -21,16 +21,16 @@ "documentsPages": 1, "recipients": [ { - "id": "149e0246825192c53ec205b93715e6a1", + "id": "580c7890573753f0fe4b789a32fe7d2c", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -45,16 +45,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" }, { - "id": "ec1d3b9ea849c6a74c30ec3f9b36c298", - "name": "Envelope 1233896619121313", - "creationDateTime": "2013-11-01T18:46:39.3530000Z", - "updatedDateTime": "2013-11-01T18:46:45.5030000Z", - "ownerGuid": "6d75a4d4db83f6fc", - "status": 1, - "statusDateTime": "2013-11-01T18:46:45.5030000Z", + "id": "33552336679d41e77e2f803a7e37a9ac", + "name": "Envelope 9874775858470601", + "creationDateTime": "2013-07-30T20:41:27.5330000Z", + "updatedDateTime": "2013-07-30T20:41:28.4070000Z", + "ownerGuid": "ea103bbe8cb8ce07", + "status": -1, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -66,22 +66,22 @@ "documentsPages": 0, "recipients": [ { - "id": "a4acc6c0e220d51a94ba6121e30f7617", + "id": "2145ecc0d095fd602af5e7df18848b03", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-11-01T18:46:45.4870000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/ec1d3b9ea849c6a74c30ec3f9b36c298/a4acc6c0e220d51a94ba6121e30f7617" + "embedUrl": "" } ], "waterMarkText": "", @@ -90,16 +90,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" }, { - "id": "96d4906f30898bc37a430dcb2725b0bf", - "name": "Envelope 015749699663053285", - "creationDateTime": "2013-11-01T18:46:31.2670000Z", - "updatedDateTime": "2013-11-01T18:46:37.3370000Z", - "ownerGuid": "6d75a4d4db83f6fc", - "status": 1, - "statusDateTime": "2013-11-01T18:46:37.3370000Z", + "id": "5af94d516581ebb2950387fd9b5ef73e", + "name": "Envelope 3805254671519176", + "creationDateTime": "2013-07-30T20:41:25.2370000Z", + "updatedDateTime": "2013-07-30T20:41:26.1430000Z", + "ownerGuid": "ea103bbe8cb8ce07", + "status": -1, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -111,22 +111,22 @@ "documentsPages": 0, "recipients": [ { - "id": "43b9a743f24b65a058b9f9681fcdbacb", + "id": "4b4b12c3551e0c3e46e815b698442943", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-11-01T18:46:37.3130000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/96d4906f30898bc37a430dcb2725b0bf/43b9a743f24b65a058b9f9681fcdbacb" + "embedUrl": "" } ], "waterMarkText": "", @@ -135,16 +135,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" }, { - "id": "fda1879239aff2a5ed3c81316e604dbd", - "name": "Envelope 766919943839699", - "creationDateTime": "2013-11-01T18:46:23.2100000Z", - "updatedDateTime": "2013-11-01T18:46:29.2100000Z", - "ownerGuid": "6d75a4d4db83f6fc", - "status": 1, - "statusDateTime": "2013-11-01T18:46:29.2100000Z", + "id": "132d7fe6c6d4badef4e3034fa7053da7", + "name": "Envelope 9155437748139598", + "creationDateTime": "2013-07-30T20:41:23.2370000Z", + "updatedDateTime": "2013-07-30T20:41:24.0030000Z", + "ownerGuid": "ea103bbe8cb8ce07", + "status": -1, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -156,22 +156,22 @@ "documentsPages": 0, "recipients": [ { - "id": "c98811fa144aeb5a4f05e7160d812862", + "id": "ffc1e9e8ed13ac2f59f8b3f31c6daf4a", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-11-01T18:46:29.1930000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/fda1879239aff2a5ed3c81316e604dbd/c98811fa144aeb5a4f05e7160d812862" + "embedUrl": "" } ], "waterMarkText": "", @@ -180,16 +180,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" }, { - "id": "d7f9abdda48d10fbb087cdd812c3956c", - "name": "Envelope 766853939078461", - "creationDateTime": "2013-11-01T18:46:14.9370000Z", - "updatedDateTime": "2013-11-01T18:46:21.1870000Z", - "ownerGuid": "6d75a4d4db83f6fc", - "status": 1, - "statusDateTime": "2013-11-01T18:46:21.1870000Z", + "id": "c8d63074586c663feea97a77b9a9cfd4", + "name": "Envelope 9383468358052186", + "creationDateTime": "2013-07-30T20:41:21.0630000Z", + "updatedDateTime": "2013-07-30T20:41:21.8770000Z", + "ownerGuid": "ea103bbe8cb8ce07", + "status": -1, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -201,22 +201,22 @@ "documentsPages": 0, "recipients": [ { - "id": "19c3101d4cfe1affe8aaf5b61bb1b97e", + "id": "1b3eee27406166932b38e3dc5006141a", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-11-01T18:46:21.1630000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/d7f9abdda48d10fbb087cdd812c3956c/19c3101d4cfe1affe8aaf5b61bb1b97e" + "embedUrl": "" } ], "waterMarkText": "", @@ -225,16 +225,16 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" }, { - "id": "aac89cb362a47de92cb163f138ddaf20", - "name": "Envelope 7784095745494438", - "creationDateTime": "2013-11-01T18:46:06.5970000Z", - "updatedDateTime": "2013-11-01T18:46:12.7970000Z", - "ownerGuid": "6d75a4d4db83f6fc", - "status": 1, - "statusDateTime": "2013-11-01T18:46:12.7970000Z", + "id": "3f1979dfa4b15b0e6438b5fe30aae976", + "name": "Envelope 3741900865536437", + "creationDateTime": "2013-07-30T20:41:18.8000000Z", + "updatedDateTime": "2013-07-30T20:41:19.5970000Z", + "ownerGuid": "ea103bbe8cb8ce07", + "status": -1, + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, "stepExpireTime": 3, "envelopeExpireTime": 6, @@ -246,22 +246,22 @@ "documentsPages": 0, "recipients": [ { - "id": "c37d6ebf96d9344818fef2d51ce5d24c", + "id": "3b7aabfedc7a389e5f421ae4aabc23e6", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, - "status": 1, + "status": 0, "statusMessage": null, - "statusDateTime": "2013-11-01T18:46:12.7830000Z", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/aac89cb362a47de92cb163f138ddaf20/c37d6ebf96d9344818fef2d51ce5d24c" + "embedUrl": "" } ], "waterMarkText": "", @@ -270,11 +270,11 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383331692374 + "composedOn": 1375216993298 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureForm.json b/src/test/resources/responses/signature/GetSignatureForm.json index 0ed2066..5d8ce38 100644 --- a/src/test/resources/responses/signature/GetSignatureForm.json +++ b/src/test/resources/responses/signature/GetSignatureForm.json @@ -1,11 +1,11 @@ { "result": { "form": { - "id": "2c2f3585fa543d68d2c537e42bbe9ba0", - "name": "Form (269)", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "7d4ce3bf73b205bc199fde496194028a", + "name": "Form 1164", + "ownerGuid": "ea103bbe8cb8ce07", "templateGuid": null, - "createdTimeStamp": "2013-11-01T18:51:49.9570000Z", + "createdTimeStamp": "2013-07-30T20:51:05.7670000Z", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "documentsCount": 0, @@ -15,7 +15,7 @@ ], "canParticipantDownloadForm": false, - "waterMarkText": null, + "waterMarkText": "", "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331910311 + "composedOn": 1375217466064 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureFormDocuments.json b/src/test/resources/responses/signature/GetSignatureFormDocuments.json index a1fecb4..afa9b57 100644 --- a/src/test/resources/responses/signature/GetSignatureFormDocuments.json +++ b/src/test/resources/responses/signature/GetSignatureFormDocuments.json @@ -1,20 +1,20 @@ { "result": { - "formId": "6e5116c8cb225e983a5d0c2c1f7973a4", + "formId": "f37d65e98da471bfd82f4a45259d56bc", "documents": [ { - "id": "63e10f33b3de1de0f6caf92b9d86586dc4c6bd15ea761d6505cbd662dfe7f2b2", - "name": "document_one_doc.pdf", - "formGuid": "6e5116c8cb225e983a5d0c2c1f7973a4", - "documentGuid": "63e10f33b3de1de0f6caf92b9d86586dc4c6bd15ea761d6505cbd662dfe7f2b2", - "originalDocumentGuid": "ffde0113ba4d5bd8444d26b27809b61f55bf02c9f466151a8813727550843cd5", + "id": "4c4dec0d77318bfe8582d835f315c8713350bed81ba25adca718cb482dafe4f6", + "name": "document_one.doc", + "formGuid": "f37d65e98da471bfd82f4a45259d56bc", + "documentGuid": "4c4dec0d77318bfe8582d835f315c8713350bed81ba25adca718cb482dafe4f6", + "originalDocumentGuid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", - "assignedDateTime": "2013-11-01T18:51:10.6100000Z", + "assignedDateTime": "2013-07-30T20:49:17.1730000Z", "order": 0 } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383331870914 + "composedOn": 1375217357486 } \ 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 e1f288e..40daafd 100644 --- a/src/test/resources/responses/signature/GetSignatureFormFields.json +++ b/src/test/resources/responses/signature/GetSignatureFormFields.json @@ -1,44 +1,47 @@ { - "result": { - "formId": "01ec1a91299645e432577a8b81effb88", - "fields": [ - { - "id": "1ae5053e4bf72abbb9c910964302648f", - "formGuid": "01ec1a91299645e432577a8b81effb88", - "participantGuid": "", - "name": "Signature_1", - "mandatory": true, - "regularExpression": null, - "data": "", - "fillTimeStamp": "1/1/1970 12:00:00 AM", - "locations": [ - { - "id": "1ddfdf675379be8bf2d28c4103726a54", - "documentGuid": "8b770ccf24c260e0d2e85cc21181b31eac07b8c43ff41fed5759fd9ba87f3cdb", - "fieldGuid": "1ae5053e4bf72abbb9c910964302648f", - "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": null, - "defaultValue": null, - "tooltip": "Signature_1", - "guidanceText": "" - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383331881395 + "result": { + "formId": "93d83c829ab4d8ffc5abf94d2f520c03", + "fields": [ + { + "id": "4d21052930e7fdd46a54a8cd548defa3", + "formGuid": "93d83c829ab4d8ffc5abf94d2f520c03", + "participantGuid": "", + "name": "Signature", + "mandatory": true, + "regularExpression": "", + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", + "groupName": null, + "settings": null, + "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, + "order": null + } + ], + "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/GetSignatureFormResources.json b/src/test/resources/responses/signature/GetSignatureFormResources.json index 536ae2e..05bdcb7 100644 --- a/src/test/resources/responses/signature/GetSignatureFormResources.json +++ b/src/test/resources/responses/signature/GetSignatureFormResources.json @@ -2,41 +2,87 @@ "result": { "documents": [ { - "id": "952524a8ba31efdf111a28b5c55a9c674dcaa2222c77798394a0b26166083568", - "name": "document_one_doc.pdf", - "formGuid": null, - "documentGuid": "952524a8ba31efdf111a28b5c55a9c674dcaa2222c77798394a0b26166083568", - "originalDocumentGuid": "1d8503cf37d1562ff67b8a5b8039e0da188262238a66f8ef9d983dbfb8ed657a", + "id": "99c411692d48d9f59bdda9bac7bd40d61b85e55dbd0a84408888ddc14f63162c", + "name": "document_one_with_fields_form.pdf", + "formGuid": "", + "documentGuid": "99c411692d48d9f59bdda9bac7bd40d61b85e55dbd0a84408888ddc14f63162c", + "originalDocumentGuid": "b9c4c22657f25d77b0e0409b3bdd79a578aedbb43f6ff2ff067d2f96b2f77b5e", + "originalDocumentMD5": "0afce13528a26851498e5e3082788e99", + "assignedDateTime": "2012-09-04T08:17:23.0670000Z", + "order": 1 + }, + { + "id": "540e642568dc2f42835dd35b3f7d73c29981b1adfa7c466080b9e6ffa4f98698", + "name": "document_one_form.pdf", + "formGuid": "", + "documentGuid": "540e642568dc2f42835dd35b3f7d73c29981b1adfa7c466080b9e6ffa4f98698", + "originalDocumentGuid": "7de189e4124866a6574b2faddc899c234bd81da02d0f033199f6c32531839c3a", + "originalDocumentMD5": "d997b6e0c8d49a72da0c0141d39f5d26", + "assignedDateTime": "2012-09-05T16:06:21.3970000Z", + "order": 1 + }, + { + "id": "677196701e7366e66ce424f6de7b1ba1a90c1d19464cdd974f25bc17bc05034f", + "name": "document_one_form.pdf", + "formGuid": "", + "documentGuid": "677196701e7366e66ce424f6de7b1ba1a90c1d19464cdd974f25bc17bc05034f", + "originalDocumentGuid": "0147693097fef0a0b8940589c2f19f5c5350bbe0cb27c7700b6964f059bf2440", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", - "assignedDateTime": "2013-11-01T18:51:37.7370000Z", + "assignedDateTime": "2013-03-14T18:28:25.7470000Z", "order": 0 } ], "dates": [ - "2013-11-01T00:00:00.0000000", - "2013-10-31T00:00:00.0000000", - "2013-10-29T00:00:00.0000000", - "2013-10-28T00:00:00.0000000", - "2013-10-27T00:00:00.0000000", - "2013-10-26T00:00:00.0000000", - "2013-10-25T00:00:00.0000000", - "2013-10-24T00:00:00.0000000", - "2013-10-23T00:00:00.0000000", - "2013-10-22T00:00:00.0000000", - "2013-10-21T00:00:00.0000000", - "2013-10-20T00:00:00.0000000", - "2013-10-19T00:00:00.0000000", - "2013-10-18T00:00:00.0000000", - "2013-10-16T00:00:00.0000000", - "2013-10-15T00:00:00.0000000", - "2013-10-14T00:00:00.0000000", - "2013-10-11T00:00:00.0000000", - "2013-10-10T00:00:00.0000000", - "2013-10-09T00:00:00.0000000", - "2013-10-08T00:00:00.0000000" + "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-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-15T00:00:00.0000000", + "2013-05-14T00:00:00.0000000", + "2013-03-15T00:00:00.0000000", + "2013-03-14T00:00:00.0000000", + "2012-09-05T00:00:00.0000000", + "2012-09-04T00:00:00.0000000" ] }, "status": "Ok", "error_message": null, - "composedOn": 1383331898048 + "composedOn": 1375217432486 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureForms.json b/src/test/resources/responses/signature/GetSignatureForms.json index abc8cb3..0eb3b15 100644 --- a/src/test/resources/responses/signature/GetSignatureForms.json +++ b/src/test/resources/responses/signature/GetSignatureForms.json @@ -1,13 +1,13 @@ { "result": { - "count": 271, + "count": 1367, "forms": [ { - "id": "f84d90a2c7574b602b553be5b7bc0c25", - "name": "Form (269)", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "d2b8ebe05212dd4475e4fe4ff7129724", + "name": "Form 1151", + "ownerGuid": "ea103bbe8cb8ce07", "templateGuid": null, - "createdTimeStamp": "2013-11-01T18:50:35.6370000Z", + "createdTimeStamp": "2013-07-30T20:48:16.3000000Z", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "documentsCount": 1, @@ -17,112 +17,112 @@ ], "canParticipantDownloadForm": false, - "waterMarkText": null, + "waterMarkText": "", "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, "attachSignedDocument": false }, { - "id": "b15a66f4d475aa9a6743235e6877a29c", - "name": "Form (268)", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "5645b8a56333577ffa53d03f6bc04049", + "name": "Form 1150", + "ownerGuid": "ea103bbe8cb8ce07", "templateGuid": null, - "createdTimeStamp": "2013-11-01T18:37:06.9200000Z", - "status": 2, + "createdTimeStamp": "2013-07-30T20:32:49.0770000Z", + "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", - "documentsCount": 0, - "documentsPages": 0, + "documentsCount": 1, + "documentsPages": 1, "participantsCount": 0, "fieldsInFinalFileName": [ ], "canParticipantDownloadForm": false, - "waterMarkText": null, + "waterMarkText": "", "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, "attachSignedDocument": false }, { - "id": "6c1a630ea605b64da0bf79b5b029ef80", - "name": "Form (267)", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "0480329f168497d61891304f2fc35c23", + "name": "Form 1149", + "ownerGuid": "ea103bbe8cb8ce07", "templateGuid": null, - "createdTimeStamp": "2013-11-01T18:37:02.2070000Z", - "status": 2, + "createdTimeStamp": "2013-07-30T20:32:43.9070000Z", + "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", - "documentsCount": 0, - "documentsPages": 0, + "documentsCount": 1, + "documentsPages": 1, "participantsCount": 0, "fieldsInFinalFileName": [ ], "canParticipantDownloadForm": false, - "waterMarkText": null, + "waterMarkText": "", "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, "attachSignedDocument": false }, { - "id": "7e84990894202f3ae0d3306fcb121552", - "name": "Form (266)", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "4c3ba7c9647abca7d23521a4017940da", + "name": "Form 1148", + "ownerGuid": "ea103bbe8cb8ce07", "templateGuid": null, - "createdTimeStamp": "2013-11-01T18:36:57.6370000Z", - "status": 2, + "createdTimeStamp": "2013-07-30T20:32:38.6700000Z", + "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", - "documentsCount": 0, - "documentsPages": 0, + "documentsCount": 1, + "documentsPages": 1, "participantsCount": 0, "fieldsInFinalFileName": [ ], "canParticipantDownloadForm": false, - "waterMarkText": null, + "waterMarkText": "", "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, "attachSignedDocument": false }, { - "id": "60abb5a1f16fb69ac5bcb13121fe4d1d", - "name": "Form (265)", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "644fd484730721a0564ad707147a31fb", + "name": "Form 1147", + "ownerGuid": "ea103bbe8cb8ce07", "templateGuid": null, - "createdTimeStamp": "2013-11-01T18:33:42.1600000Z", - "status": 3, + "createdTimeStamp": "2013-07-30T20:32:01.7500000Z", + "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", - "documentsCount": 0, - "documentsPages": 0, + "documentsCount": 1, + "documentsPages": 1, "participantsCount": 0, "fieldsInFinalFileName": [ ], "canParticipantDownloadForm": false, - "waterMarkText": null, + "waterMarkText": "", "waterMarkImage": "", - "fieldsCount": 0, + "fieldsCount": 1, "notifyOwnerOnSign": false, "attachSignedDocument": false }, { - "id": "ca0d4933fa7b19c567c4e0e1a134f71c", - "name": "Form (264)", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "7eb0ab9b757a54049df046655dd6fae6", + "name": "Form 1146", + "ownerGuid": "ea103bbe8cb8ce07", "templateGuid": null, - "createdTimeStamp": "2013-11-01T18:33:37.0470000Z", - "status": 3, + "createdTimeStamp": "2013-07-30T20:31:56.5000000Z", + "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", - "documentsCount": 0, - "documentsPages": 0, + "documentsCount": 1, + "documentsPages": 1, "participantsCount": 0, "fieldsInFinalFileName": [ ], "canParticipantDownloadForm": false, - "waterMarkText": null, + "waterMarkText": "", "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, @@ -132,5 +132,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331837867 + "composedOn": 1375217298798 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignaturePredefinedLists.json b/src/test/resources/responses/signature/GetSignaturePredefinedLists.json index c268b17..1b3e447 100644 --- a/src/test/resources/responses/signature/GetSignaturePredefinedLists.json +++ b/src/test/resources/responses/signature/GetSignaturePredefinedLists.json @@ -2,8 +2,476 @@ "result": { "lists": [ { - "id": "a79c0bd00e5bfd616fc9b271cd995472", - "name": "List 3936613389160002", + "id": "cca679ecfb383c567a54d856edfcaf4e", + "name": "List ", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "885d090ca18cfda0200bf081f1a6bab6", + "name": "List - 1114831698845602", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "5f89199da5c4e51fdab6fb79ef3128d8", + "name": "List - 127364741381069", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "1313fc31d0fb3ffce1ea177666934ede", + "name": "List - 08156545655459613", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "a2dea17c3f4659542a991838b2ff2be0", + "name": "List - 7564488563304332", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "146d4187d4873b5b8846e03b6c17d9ee", + "name": "List - 09301138231265305", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "c1fe03372d1db4131f8a35a3aadb425d", + "name": "List - 8434865226745041", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "6e38a8b20dd8c013570ff5ff5157c8e9", + "name": "List - 37786819201472743", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "925748c7e985d8f9517c246535bf3f2e", + "name": "List ", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "1f8a03c3b5da792804580e440fa5d7ec", + "name": "List - 3215418668102643", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "9d956ed0fc9df566955ed6774f2221ef", + "name": "List - 19271393725295194", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "0ef46336c47a7d17e55d71fd16617cfe", + "name": "List - 31335042265595237", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "ab744ffcddecb1b708f6c97164c036d3", + "name": "List - 8447808309235444", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "99369cd591146611c5d7a5fefc550150", + "name": "List - 5335391522901505", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "77ff1f677e4a9b947a82c203582efc22", + "name": "List - 24663588082096677", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "f09efb5eb48c90d3ed87bd98b797d579", + "name": "List - 974765389270537", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "258d8041a486bf72af6e704f88b3bb3a", + "name": "List - 18940914836210854", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "5a3784f95d290ba880100e497b394bf8", + "name": "List - 3721375422223583", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "2684dde86cf6024ce622b15ce07a7fa5", + "name": "List - 9316351651171787", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "4f84ead3f1216d4ab812d6de142d1ec9", + "name": "List - 10722988787723131", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "64187c77dfd341e536c7a76cc01b9b45", + "name": "List - 2312418224701659", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "9c9af09ee048119e302d3d1b84334694", + "name": "List - 6058359938760012", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "c2ef29224cca4de81faae6b628ace14c", + "name": "List - 7056594774286349", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "d199814d1a5ef70cbad8578c562b5872", + "name": "List ", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "213530a382d139987c71b849161d593c", + "name": "List ", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "ee63d00140b4610939c396b0ecc0206b", + "name": "List - 20036554137192175", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "5540e8ccd8f3ab742df3b122facbbeb0", + "name": "List - 8161590270026886", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "c39d3b40eb76f7a43c8467cb0d62eb04", + "name": "List - 514232980290349", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "2da626c6b572c80c03c77d5420270808", + "name": "List - 20028073088472176", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "15bd81396fc05f0861c46c8ff02d4bbd", + "name": "List - 9460210458474576", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "ba2f0ba6dcb5ce56e47dbc38f54807b6", + "name": "List - 9051852860691043", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "e30a522f1fd043217ee3f3c47404e441", + "name": "List - 5935091959058079", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "eec457c66fe83824a2b793da7b25357c", + "name": "List ", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "7d28496d13ae902cf4c7f7ad24610ae4", + "name": "List - 7254279491370486", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "53d9847e649fcb61cab30d6bf6ddcb41", + "name": "List - 8160985401396004", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "914d9e6f990b3351f75c3e74a70525ee", + "name": "List - 8818086942801433", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "626a852af87cf4092a08f78ff5627285", + "name": "List - 406474342157475", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "ad50293ff981dd53781663adf6f7e420", + "name": "List - 9296615078310934", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "f74d752884759f28315e8d8b2721b46a", + "name": "List - 7072445420925555", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "20e0018371fa072ddcbcfc19db4b5e84", + "name": "List - 30648462115649844", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "632e7566cbae803075aceedb1ddb2f95", + "name": "List ", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "0a25bb617ed35137fe3f8f07adde41a0", + "name": "List - 1920792526703694", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "dc3642d70725f4c4a6826635ca438a21", + "name": "List - 5282368963693368", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "8c49cba224c40a64ae50dc144e3d4f44", + "name": "List - 47382409374684586", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "46850ee2953ecfc2028b2999fd92933a", + "name": "List - 7978714151896775", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "3e4c1dac2c368f90ce5ff66efedf4d38", + "name": "List - 4794600020592662", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "e179ec105b3b7b09bfce97d484102781", + "name": "List - 8402732166710817", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "9650b848ca9a3b90745e7f549701ffa8", + "name": "List - 08205070137810233", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "196df80fb4760391111192b5518a9351", + "name": "List - 7493738424281171", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "c17e6fac4a32c0a1c67c5be941a43f4a", + "name": "List - 5197087778661912", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "94c08433a585ad6df76d35d73eba3ce0", + "name": "List - 394034124613175", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "146dccf37029e22b9f57b3088b959a19", + "name": "List - 7006207967841203", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "3ba5ea60ba01fe47ef8f30b896505418", + "name": "List - 13043082626826374", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "9562497fd397fed1982bca320bb1bb94", + "name": "List - 2844600794609654", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "e657e81ec0781b4f3f7939fb0ba5b0c1", + "name": "List - 18247840784933556", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "bfa4479bc3cd6aff2984b8bcadbaf75f", + "name": "List ", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "c389e5ad9f1fc5cd92f09956fdf651ca", + "name": "List - 7046282307065159", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "a94eea97719ba42eeef9a6403624c42a", + "name": "List - 7305899789203709", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "a42d09ea7192f4b693c8aedcd396b806", + "name": "List - 3922187248594169", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "2eadb3dcb347097b113d66849f2483ba", + "name": "List - 48054718528589846", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "914dec77a3ded5198f4d49e02ad9b75e", + "name": "List - 47182646701436093", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "93e450c1e696868e175601c2d81335ad", + "name": "List - 5392827875898669", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "43dd48cc569451c18301c8f1a020b3c7", + "name": "List - 100252480554051", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "02d860078c7a207d7ec42be9fd1cc415", + "name": "List ", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "5c07df4decf23e2fa243d4b18dca4a38", + "name": "List - 9103444472950049", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "d190efc97ccf05cdb9ccbb466a504853", + "name": "List - 8595095176929671", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "6003f7a46fa87ce0e51889282631784f", + "name": "List - 6947847220787422", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "ee919e87cafdafe7fae4a2e3f8d6609a", + "name": "List - 10923630793362615", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "668bf8874b38ef7dd90fdb0f098a9c99", + "name": "List - 5161488506961294", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "5b4bdd582de5c9befb27b8926e9adc98", + "name": "List - 4453258988440353", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "21475ba2013ed65b58e8e4b7b185b964", + "name": "List - 7506041603845736", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "6a718353899d3b16ff512eb88d687bca", + "name": "List ", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "e1297d385fa3c93deb4b8dd8faa6ba41", + "name": "List - 7391476009878303", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "5aa4abc8f5bf54832ada92b537969fee", + "name": "List - 21329698555862686", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "bf7ad590fe209eadda160f54b5bd3f0b", + "name": "List - 8807926159915258", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "b7bd4e0bf6e83a53acea43e184ecbdd1", + "name": "List - 27785845914007967", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "c89f38d6ba7ae45d6c41bf456f581b3b", + "name": "List - 9013749016985279", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "b1e6496de40312566c83e722fc3a654c", + "name": "List - 6561594392353925", + "values": "value1;value2", + "defaultValue": "value1" + }, + { + "id": "0793e0d48b791fc8da1f43a372d4dfd3", + "name": "List - 06910753217720167", "values": "value1;value2", "defaultValue": "value1" } @@ -11,5 +479,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331918918 + "composedOn": 1375217500642 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureTemplate.json b/src/test/resources/responses/signature/GetSignatureTemplate.json index cb933ab..ba35beb 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplate.json +++ b/src/test/resources/responses/signature/GetSignatureTemplate.json @@ -1,9 +1,9 @@ { "result": { "template": { - "id": "67d1cf7a1fef82796846077aeabe7412", - "name": "Template 33723108540352487", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "98fa2df94425d2344bcb3e6d15300bf2", + "name": "Template 1892367510115256", + "ownerGuid": "ea103bbe8cb8ce07", "reminderTime": 1, "stepExpireTime": 3, "templateExpireTime": 6, @@ -23,5 +23,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383332072969 + "composedOn": 1375217806892 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureTemplateDocuments.json b/src/test/resources/responses/signature/GetSignatureTemplateDocuments.json index 64c71e3..f01642f 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplateDocuments.json +++ b/src/test/resources/responses/signature/GetSignatureTemplateDocuments.json @@ -1,20 +1,20 @@ { "result": { - "templateId": "75652b2bedefa884826d5477a650df2e", + "templateId": "3086d40e0b9c7b5cfe7178ad85ea875c", "documents": [ { - "documentId": "60468c8d0d5f6cc8aab21d2c096555ce07336fa0d9c1a32b20237f2b5d4b1944", - "templateId": "75652b2bedefa884826d5477a650df2e", + "documentId": "1ed92cd9da7f312d12ad47a27330edf6df3685c44e4a05fa40a5d40b17074dde", + "templateId": "3086d40e0b9c7b5cfe7178ad85ea875c", "order": 0, - "name": "document_one_doc.pdf", + "name": "document_one.doc", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "originalDocumentPagesCount": 1, "fieldsCount": 0, - "originalDocumentId": "60468c8d0d5f6cc8aab21d2c096555ce07336fa0d9c1a32b20237f2b5d4b1944" + "originalDocumentId": "1ed92cd9da7f312d12ad47a27330edf6df3685c44e4a05fa40a5d40b17074dde" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383331967012 + "composedOn": 1375217602283 } \ 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 02d03be..5693a14 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplateFields.json +++ b/src/test/resources/responses/signature/GetSignatureTemplateFields.json @@ -1,44 +1,44 @@ { - "result": { - "templateId": "1817b4a89a43eda343ccb9b4c6f602bf", - "fields": [ - { - "id": "620b0683a546277c45b71bb69e8f7ef0", - "templateId": "1817b4a89a43eda343ccb9b4c6f602bf", - "recipientId": "6656bdf9ead6251f7c58b86effb1e81d", - "name": "Signature_1", - "mandatory": true, - "order": 0, - "regularExpression": "", - "signatureFieldId": 1, - "locations": [ - { - "id": "b85bfbc6e29519ceebafcff679bfc528", - "documentId": "e2a4f795d65bcd1e2d21d3491da7a284bc121e58b935e8115a7610a38ad3925f", - "fieldId": "620b0683a546277c45b71bb69e8f7ef0", - "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_1", - "guidanceText": "" - } - ] - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383332012291 + "result": { + "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 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureTemplateRecipients.json b/src/test/resources/responses/signature/GetSignatureTemplateRecipients.json index bea1cc5..030926e 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplateRecipients.json +++ b/src/test/resources/responses/signature/GetSignatureTemplateRecipients.json @@ -1,9 +1,9 @@ { "result": { - "templateId": "cf69731e1ef81541bddb7cb2df205479", + "templateId": "b9fd52a9023dbe1eb077c1bf3e0ee985", "recipients": [ { - "id": "e271674362ed3994eb14f0b7d1fe49e6", + "id": "eeb57ed729ef9ce3f5d54969f7168e8b", "nickname": "John Smith", "order": 0, "roleId": 2 @@ -12,5 +12,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383332053982 + "composedOn": 1375217736330 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureTemplateResources.json b/src/test/resources/responses/signature/GetSignatureTemplateResources.json index 5ca27ca..7475b9f 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplateResources.json +++ b/src/test/resources/responses/signature/GetSignatureTemplateResources.json @@ -2,26 +2,48 @@ "result": { "documents": [ { - "documentId": "a4bc8f374ee1ee66d91284cc6707be7309fc3e14078aafcda1bec28962d182f5", - "templateId": "cd239a5f1542d2807ea6a96e2bb2605a", + "documentId": "4a33733b74d8982d931a1fdcc45590735346a82fe973e8075e66ec6406665429", + "templateId": "", "order": 0, "name": "document_one_doc.pdf", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "originalDocumentPagesCount": 1, "fieldsCount": 0, - "originalDocumentId": "a4bc8f374ee1ee66d91284cc6707be7309fc3e14078aafcda1bec28962d182f5" + "originalDocumentId": "4a33733b74d8982d931a1fdcc45590735346a82fe973e8075e66ec6406665429" + }, + { + "documentId": "e8551f622bc86541033a3ca7b56435f5b353905674048364ad643309d46b6dd3", + "templateId": "", + "order": 1, + "name": "document_one_docx.pdf", + "originalDocumentMD5": "8cf89bdc1c58444a969f2a88d1623b4f", + "originalDocumentPagesCount": 1, + "fieldsCount": 0, + "originalDocumentId": "e8551f622bc86541033a3ca7b56435f5b353905674048364ad643309d46b6dd3" } ], "recipients": [ { - "id": "1969abeab827c912a53533b97ead422e", + "id": "01152ec8e06ae751dce48727bfda4d64", "nickname": "John Smith", "order": 0, "roleId": 2 + }, + { + "id": "8b797bf51be8ce22dcbc0951eb9d72f0", + "nickname": "John Smith 2", + "order": 0, + "roleId": 2 + }, + { + "id": "df91a9ff7fb4d110edd3f8f963a3b678", + "nickname": "Pavel", + "order": 32767, + "roleId": 1 } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383332064436 + "composedOn": 1375217774408 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatureTemplates.json b/src/test/resources/responses/signature/GetSignatureTemplates.json index 91ba400..df23d30 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplates.json +++ b/src/test/resources/responses/signature/GetSignatureTemplates.json @@ -1,11 +1,11 @@ { "result": { - "templatesCount": 1, + "templatesCount": 1054, "templates": [ { - "id": "1b4ab8325355b4c032efa3345335f71e", - "name": "Template 4728109317125784", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "043c5d84add3d66bc6bde913c4cb1e58", + "name": "Template 29890233107781017", + "ownerGuid": "ea103bbe8cb8ce07", "reminderTime": 1, "stepExpireTime": 3, "templateExpireTime": 6, @@ -17,7 +17,117 @@ "documentsPages": 1, "recipients": [ { - "id": "1969abeab827c912a53533b97ead422e", + "id": "536e83f01868992aedcf340146944fe6", + "nickname": "John Smith", + "order": 0, + "roleId": 2 + } + ], + "waterMarkText": "", + "waterMarkImage": "", + "fieldsCount": 0 + }, + { + "id": "6531ef116b0dfd21f1e6988d5ab1db3d", + "name": "Template 5628106895819844", + "ownerGuid": "ea103bbe8cb8ce07", + "reminderTime": 1, + "stepExpireTime": 3, + "templateExpireTime": 6, + "ownerShouldSign": false, + "orderedSignature": false, + "emailSubject": "Sign this!", + "emailBody": "", + "documentsCount": 0, + "documentsPages": 0, + "recipients": [ + + ], + "waterMarkText": "", + "waterMarkImage": "", + "fieldsCount": 0 + }, + { + "id": "24f515503d33b1b69702e4bb66c7ac1e", + "name": "Template 7685166967868785", + "ownerGuid": "ea103bbe8cb8ce07", + "reminderTime": 1, + "stepExpireTime": 3, + "templateExpireTime": 6, + "ownerShouldSign": false, + "orderedSignature": false, + "emailSubject": "Sign this!", + "emailBody": "", + "documentsCount": 0, + "documentsPages": 0, + "recipients": [ + + ], + "waterMarkText": "", + "waterMarkImage": "", + "fieldsCount": 0 + }, + { + "id": "4b7d8c2a3a2e273d0542fa36f6638a44", + "name": "Template 7789151215115653", + "ownerGuid": "ea103bbe8cb8ce07", + "reminderTime": 1, + "stepExpireTime": 3, + "templateExpireTime": 6, + "ownerShouldSign": false, + "orderedSignature": false, + "emailSubject": "Sign this!", + "emailBody": "", + "documentsCount": 0, + "documentsPages": 0, + "recipients": [ + + ], + "waterMarkText": "", + "waterMarkImage": "", + "fieldsCount": 0 + }, + { + "id": "e80c086b46070c21cc6db7946be3de9d", + "name": "Template 24743352230095994", + "ownerGuid": "ea103bbe8cb8ce07", + "reminderTime": 1, + "stepExpireTime": 3, + "templateExpireTime": 6, + "ownerShouldSign": false, + "orderedSignature": false, + "emailSubject": "Sign this!", + "emailBody": "", + "documentsCount": 1, + "documentsPages": 1, + "recipients": [ + { + "id": "aa930c2f842fa878d01d4ae965b44d03", + "nickname": "John Smith", + "order": 0, + "roleId": 2 + } + ], + "waterMarkText": "", + "waterMarkImage": "", + "fieldsCount": 0 + }, + { + "id": "e5f8efb715e9670d5d852f94b8808d40", + "name": "Template 7114800724232201", + "ownerGuid": "ea103bbe8cb8ce07", + "reminderTime": 1, + "stepExpireTime": 3, + "templateExpireTime": 6, + "ownerShouldSign": false, + "orderedSignature": false, + "emailSubject": "Sign this!", + "emailBody": "", + "documentsCount": 1, + "documentsPages": 1, + "recipients": [ + { + "id": "2e9ba1b0e2e94663cce113c9c02dcc3d", "nickname": "John Smith", "order": 0, "roleId": 2 @@ -31,5 +141,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383331926643 + "composedOn": 1375217535501 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/GetSignatures.json b/src/test/resources/responses/signature/GetSignatures.json index bdab9ff..43e44d3 100644 --- a/src/test/resources/responses/signature/GetSignatures.json +++ b/src/test/resources/responses/signature/GetSignatures.json @@ -1,13 +1,13 @@ { "result": { - "count": 1, + "count": 282, "signatures": [ { - "id": "959372d2fda0764422e8579d3d5f362e", - "userGuid": "6d75a4d4db83f6fc", + "id": "d471572adf063913245f8d626d11da6b", + "userGuid": "ea103bbe8cb8ce07", "recipientId": null, - "name": "John Smith's Signature - 8470227690245007", - "companyName": "", + "name": "John Smith's Signature - 9", + "companyName": " ", "position": "", "firstName": "John", "lastName": "Smith", @@ -15,13 +15,98 @@ "textInitials": "", "signatureImageFileId": null, "initialsImageFileId": null, - "signatureImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/959372d2fda0764422e8579d3d5f362e/signatureData", - "initialsImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/959372d2fda0764422e8579d3d5f362e/initialsData", - "createdTimeStamp": "2013-11-01T18:48:03.343" + "signatureImageUrl": null, + "initialsImageUrl": null, + "createdTimeStamp": "2013-07-30T20:42:37.377" + }, + { + "id": "f8f0560ce515746481160711b131859a", + "userGuid": "ea103bbe8cb8ce07", + "recipientId": null, + "name": "Signature 9761372130033052", + "companyName": "Aspose", + "position": "QA", + "firstName": "John", + "lastName": "Smith", + "fullName": "John Smith", + "textInitials": "JS", + "signatureImageFileId": null, + "initialsImageFileId": null, + "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f8f0560ce515746481160711b131859a/signatureData", + "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f8f0560ce515746481160711b131859a/initialsData", + "createdTimeStamp": "2013-07-30T20:22:14.373" + }, + { + "id": "c3b3bd0bd26dafb6381a37e3fde223cc", + "userGuid": "ea103bbe8cb8ce07", + "recipientId": null, + "name": "Signature 7954053527404478", + "companyName": "Aspose", + "position": "QA", + "firstName": "John", + "lastName": "Smith", + "fullName": "John Smith", + "textInitials": "JS", + "signatureImageFileId": null, + "initialsImageFileId": null, + "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c3b3bd0bd26dafb6381a37e3fde223cc/signatureData", + "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c3b3bd0bd26dafb6381a37e3fde223cc/initialsData", + "createdTimeStamp": "2013-07-30T20:22:13.907" + }, + { + "id": "d5307971f4f73f72650799f6057df202", + "userGuid": "ea103bbe8cb8ce07", + "recipientId": null, + "name": "Signature 9467996791353954", + "companyName": "Aspose", + "position": "QA", + "firstName": "John", + "lastName": "Smith", + "fullName": "John Smith", + "textInitials": "JS", + "signatureImageFileId": null, + "initialsImageFileId": null, + "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/d5307971f4f73f72650799f6057df202/signatureData", + "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/d5307971f4f73f72650799f6057df202/initialsData", + "createdTimeStamp": "2013-07-30T20:22:13.42" + }, + { + "id": "c79f6c8ad6c58fe211c0ed763bf94638", + "userGuid": "ea103bbe8cb8ce07", + "recipientId": null, + "name": "Signature 11341404079591388", + "companyName": "Aspose", + "position": "QA", + "firstName": "John", + "lastName": "Smith", + "fullName": "John Smith", + "textInitials": "JS", + "signatureImageFileId": null, + "initialsImageFileId": null, + "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c79f6c8ad6c58fe211c0ed763bf94638/signatureData", + "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/c79f6c8ad6c58fe211c0ed763bf94638/initialsData", + "createdTimeStamp": "2013-07-30T20:22:12.873" + }, + { + "id": "9110627eff750c5d100c92d16875c15a", + "userGuid": "ea103bbe8cb8ce07", + "recipientId": null, + "name": "Signature 03377624115890232", + "companyName": "Aspose", + "position": "QA", + "firstName": "John", + "lastName": "Smith", + "fullName": "John Smith", + "textInitials": "JS", + "signatureImageFileId": null, + "initialsImageFileId": null, + "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/9110627eff750c5d100c92d16875c15a/signatureData", + "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/9110627eff750c5d100c92d16875c15a/initialsData", + "createdTimeStamp": "2013-07-30T20:22:12.31" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383331683717 + "composedOn": 1375216957751 } \ 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/ImportContacts.json b/src/test/resources/responses/signature/ImportContacts.json index b6a08ed..ee0a07a 100644 --- a/src/test/resources/responses/signature/ImportContacts.json +++ b/src/test/resources/responses/signature/ImportContacts.json @@ -5,5 +5,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383332082229 + "composedOn": 1375217841626 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifyContact.json b/src/test/resources/responses/signature/ModifyContact.json index 1cdeb6e..7e4d90a 100644 --- a/src/test/resources/responses/signature/ModifyContact.json +++ b/src/test/resources/responses/signature/ModifyContact.json @@ -1,14 +1,14 @@ { "result": { "contact": { - "id": "7eb1bbd84bcbbcf27bb708abfa390c7d", + "id": "bc5c944c1d8228ef9690887efad91a3c", "firstName": "John", "lastName": "Smith", - "email": "user_one_431150232582761@mailinator.com", + "email": "user_one_5520834057821428@mailinator.com", "provider": "Groupdocs" } }, "status": "Ok", "error_message": null, - "composedOn": 1383332093384 + "composedOn": 1375217877017 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureEnvelope.json b/src/test/resources/responses/signature/ModifySignatureEnvelope.json index 33ebfd1..fd02ad3 100644 --- a/src/test/resources/responses/signature/ModifySignatureEnvelope.json +++ b/src/test/resources/responses/signature/ModifySignatureEnvelope.json @@ -1,11 +1,11 @@ { "result": { "envelope": { - "id": "9a6a3c33d417a4655c5ca36a435d5b13", - "name": "Envelope 010989810044765291", - "creationDateTime": "2013-11-01T18:59:02.8300000Z", - "updatedDateTime": "2013-11-01T18:59:03.8450625ZZ", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "534571cee9aeffe865560cb1d547b369", + "name": "Envelope 912092395241101", + "creationDateTime": "2013-07-30T21:03:20.8930000Z", + "updatedDateTime": "2013-07-30T21:03:21.6269063ZZ", + "ownerGuid": "ea103bbe8cb8ce07", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, @@ -19,16 +19,16 @@ "documentsPages": 0, "recipients": [ { - "id": "c08888d5a2547bc15f85abc80c7c89ac", - "firstName": "owner", - "lastName": "owner", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "id": "b7deadb82570c1eb259eed094370baff", + "firstName": "Pavel", + "lastName": "Strashniy", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 32767, "roleId": 1, "status": 0, "statusMessage": null, - "statusDateTime": "", + "statusDateTime": "1970-01-01T00:00:00.0000000ZZ", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -43,10 +43,10 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": " " + "ownerName": "Pavel Strashniy" } }, "status": "Ok", "error_message": null, - "composedOn": 1383332343506 + "composedOn": 1375218201470 } \ 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 6e405bb..3952e5a 100644 --- a/src/test/resources/responses/signature/ModifySignatureEnvelopeField.json +++ b/src/test/resources/responses/signature/ModifySignatureEnvelopeField.json @@ -1,30 +1,30 @@ { "result": { - "envelopeId": "09ec24f8c19518c5df63296078832077", - "documentId": "b9b78313f0ada0fa16a7cb2e5f82176e5c05e1a7aa1a9a73ba042834754c4825", - "recipientId": "d330f245da087ea5b5ecdfc83a058bff", + "envelopeId": "b761dad8a2dd4a6f24afcbe37b5f7f64", + "documentId": "1585f265bbe2d79041e70b1481146d2ed99c55ddddb72d16898e5f6288196cd9", + "recipientId": "83965e5f23fc33a8facec959c973ca75", "field": { - "id": "b090ea6cc41afe7645c7914cb3d595b7", - "envelopeId": "09ec24f8c19518c5df63296078832077", - "recipientId": "d330f245da087ea5b5ecdfc83a058bff", - "name": "Signature8982622757671102", + "id": "f0b371777ae3a20d33b097a295fbf6bc", + "envelopeId": "b761dad8a2dd4a6f24afcbe37b5f7f64", + "recipientId": "83965e5f23fc33a8facec959c973ca75", + "name": "Signature07921589405565932", "mandatory": true, "order": 0, "regularExpression": "^.+$", "getDataFrom": null, - "data": "", - "fillTimeStamp": "", + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", "signatureFieldId": 1, "locations": [ { - "id": "23c797276937950b03a01b8f4bd7cf33", - "documentId": "b9b78313f0ada0fa16a7cb2e5f82176e5c05e1a7aa1a9a73ba042834754c4825", - "fieldId": "b090ea6cc41afe7645c7914cb3d595b7", + "id": "59d3ca3e0b5a35b5d94b6d600c9b9c5d", + "documentId": "1585f265bbe2d79041e70b1481146d2ed99c55ddddb72d16898e5f6288196cd9", + "fieldId": "f0b371777ae3a20d33b097a295fbf6bc", "page": 1, "locationX": 0.1, "locationY": 0.1, - "locationWidth": 90.0, - "locationHeight": 30.0, + "locationWidth": 90, + "locationHeight": 30, "fontName": "Arial", "fontColor": "black", "fontSize": 10, @@ -35,13 +35,13 @@ } ], "fieldType": 1, - "acceptableValues": null, - "defaultValue": null, + "acceptableValues": "", + "defaultValue": "", "tooltip": null, "guidanceText": "" } }, "status": "Ok", "error_message": null, - "composedOn": 1383332280703 + "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 679ec69..5813a25 100644 --- a/src/test/resources/responses/signature/ModifySignatureEnvelopeFieldLocation.json +++ b/src/test/resources/responses/signature/ModifySignatureEnvelopeFieldLocation.json @@ -1,30 +1,30 @@ { "result": { - "envelopeId": "3289367689a425375d4519bf2a028cc5", - "documentId": "3cad6755580a8bc8efdc7315b0f8b114aea0defee1bface3f29d66dbb89191d8", - "recipientId": "6224f8dc15e02de402d3446e29ea946c", + "envelopeId": "c47202c7a5e3e1ca97ef31f3a59ffbcd", + "documentId": "db7da448305d67ce5acd011e8b1e79f5697dc928580b8b9c5b1a17d252aa1e1a", + "recipientId": "e203492fce86c386b591ec4d188767d2", "field": { - "id": "41b09370a1e43b05d62f7c3772c9a3ee", - "envelopeId": "3289367689a425375d4519bf2a028cc5", - "recipientId": "6224f8dc15e02de402d3446e29ea946c", - "name": "Signature_1", + "id": "e578ca9b65f2d9a1914222cd8d0a5f9f", + "envelopeId": "c47202c7a5e3e1ca97ef31f3a59ffbcd", + "recipientId": "e203492fce86c386b591ec4d188767d2", + "name": "Signature", "mandatory": true, "order": 0, "regularExpression": "", "getDataFrom": null, - "data": "", - "fillTimeStamp": "", + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", "signatureFieldId": 1, "locations": [ { - "id": "29c6c68b04a09e9cdcb7f5823147b80e", - "documentId": "3cad6755580a8bc8efdc7315b0f8b114aea0defee1bface3f29d66dbb89191d8", - "fieldId": "41b09370a1e43b05d62f7c3772c9a3ee", + "id": "0e65e5516154b7f56e33f520a98045d1", + "documentId": "db7da448305d67ce5acd011e8b1e79f5697dc928580b8b9c5b1a17d252aa1e1a", + "fieldId": "e578ca9b65f2d9a1914222cd8d0a5f9f", "page": 1, "locationX": 0.2, "locationY": 0.2, - "locationWidth": 90.0, - "locationHeight": 30.0, + "locationWidth": 90, + "locationHeight": 30, "fontName": "Helvetica", "fontColor": "red", "fontSize": 10, @@ -35,13 +35,13 @@ } ], "fieldType": 1, - "acceptableValues": null, - "defaultValue": null, - "tooltip": "Signature_1", + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Signature", "guidanceText": "" } }, "status": "Ok", "error_message": null, - "composedOn": 1383332123117 + "composedOn": 1375217929955 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureEnvelopeRecipient.json b/src/test/resources/responses/signature/ModifySignatureEnvelopeRecipient.json index 1359b32..3c6a5d4 100644 --- a/src/test/resources/responses/signature/ModifySignatureEnvelopeRecipient.json +++ b/src/test/resources/responses/signature/ModifySignatureEnvelopeRecipient.json @@ -1,17 +1,17 @@ { "result": { - "envelopeId": "4382e173ec84c1c8395d1cb7f1b6b2d5", + "envelopeId": "54cfb911fd2bf67a406410956edc40ee", "recipient": { - "id": "929fe05becb7a2a0b6c8339e4a4a8b4f", + "id": "ae0c81f2783ca9817def9a65eb023769", "firstName": "New John", "lastName": "New Smith", - "email": "new-recipient-5660726436554973@mailinator.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "new-recipient-9026574703507284@mailinator.com", + "userGuid": "ea103bbe8cb8ce07", "order": 1, "roleId": 3, "status": 0, "statusMessage": null, - "statusDateTime": "", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -22,5 +22,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383332327040 + "composedOn": 1375218163626 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureField.json b/src/test/resources/responses/signature/ModifySignatureField.json index 6dc9e35..c68953d 100644 --- a/src/test/resources/responses/signature/ModifySignatureField.json +++ b/src/test/resources/responses/signature/ModifySignatureField.json @@ -1,8 +1,8 @@ { "result": { "field": { - "id": "33a6373569f13ffd381bc91d229612d7", - "name": "TestSignField5478138672444844", + "id": "2eb8b5e69b2a30688b9e2927225e1bcc", + "name": "TestSignField5737660748021", "graphSizeW": 100, "graphSizeH": 100, "getDataFrom": "Test", @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383332375654 + "composedOn": 1375218252610 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureForm.json b/src/test/resources/responses/signature/ModifySignatureForm.json index fd2f776..9b7b645 100644 --- a/src/test/resources/responses/signature/ModifySignatureForm.json +++ b/src/test/resources/responses/signature/ModifySignatureForm.json @@ -1,11 +1,11 @@ { "result": { "form": { - "id": "ecf76e434d54e2b13dda70283460a753", - "name": "New Form (1)", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "d064ea6a9428eb356abbf6608a7e65e2", + "name": "New Form 233", + "ownerGuid": "ea103bbe8cb8ce07", "templateGuid": null, - "createdTimeStamp": "2013-11-01T19:02:56.8070000Z", + "createdTimeStamp": "2013-07-30T21:08:03.9530000Z", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "documentsCount": 0, @@ -25,5 +25,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383332577370 + "composedOn": 1375218484422 } \ 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 5b9b793..0000000 --- a/src/test/resources/responses/signature/ModifySignatureFormDocument.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "result": { - "formId": "7d1dbe1fada4a78645b6b9f61c4e08dc", - "document": { - "id": "4636330c6c94fa8c1573f309e25dae6811ef3854c45a1ae6f43ac004258bced9", - "name": "document_one_jpg.pdf", - "formGuid": "7d1dbe1fada4a78645b6b9f61c4e08dc", - "documentGuid": "4636330c6c94fa8c1573f309e25dae6811ef3854c45a1ae6f43ac004258bced9", - "originalDocumentGuid": "52b4a11f1381296bdb318905c735338f696ff2f555de1398a82e488f429f9e27", - "originalDocumentMD5": "eb91a98c5131dc120e1ba8846128cb4e", - "assignedDateTime": "2013-11-01T19:00:16.7435000ZZ", - "order": 2 - } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383332413333 -} \ 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 0559589..58cef83 100644 --- a/src/test/resources/responses/signature/ModifySignatureFormField.json +++ b/src/test/resources/responses/signature/ModifySignatureFormField.json @@ -1,27 +1,27 @@ { "result": { - "formId": "9ca35b9e41b52c5331b37771ef99b8f8", - "documentId": "9fb03317b09eba44889fed8c30f2cfea286c9e519170917bf3562fb2674ea2f7", + "formId": "9b3fea93327d7907d0e2d4ed51b9410a", + "documentId": "8b7ee12ea7373c249bf62d8e9dcb9d9b0c905dc87a07f02ab3872827d0d9428f", "participantId": null, "field": { - "id": "4b8bbb1db7bd4c4ea030590b60e9ae41", - "formGuid": "9ca35b9e41b52c5331b37771ef99b8f8", + "id": "1aac696a25c6c61e26c8c780fefc81b0", + "formGuid": "9b3fea93327d7907d0e2d4ed51b9410a", "participantGuid": "", - "name": "Signature32641435903285954", + "name": "Signature025986879487182257", "mandatory": true, "regularExpression": "^.+$", - "data": "", + "data": null, "fillTimeStamp": "1/1/1970 12:00:00 AM", "locations": [ { - "id": "c3944e054f1587a6a6c28986d7377c7d", - "documentGuid": "9fb03317b09eba44889fed8c30f2cfea286c9e519170917bf3562fb2674ea2f7", - "fieldGuid": "4b8bbb1db7bd4c4ea030590b60e9ae41", + "id": "9710b11d46d4534f453b85c63957daf8", + "documentGuid": "8b7ee12ea7373c249bf62d8e9dcb9d9b0c905dc87a07f02ab3872827d0d9428f", + "fieldGuid": "1aac696a25c6c61e26c8c780fefc81b0", "page": 1, "locationX": 0.1, "locationY": 0.1, - "locationWidth": 90.0, - "locationHeight": 30.0, + "locationWidth": 90, + "locationHeight": 30, "fontName": "Arial", "fontColor": "black", "fontSize": 10, @@ -40,5 +40,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383332549274 + "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 7eb6ea4..1deed0c 100644 --- a/src/test/resources/responses/signature/ModifySignatureFormFieldLocation.json +++ b/src/test/resources/responses/signature/ModifySignatureFormFieldLocation.json @@ -1,27 +1,27 @@ { "result": { - "formId": "d7fdb014d285ac6fa0e20241a918b021", - "documentId": "653854e9a216226c81e7e903c86f693551e5fc6543875d3fdc853efedf5f7c89", + "formId": "1c4c3a7c85ffe24fec68f351fdd69621", + "documentId": "1dc7ea9dd442e23c428261563523657c867a28bc0c68eeb12e3efb7cb845c4e1", "participantId": null, "field": { - "id": "0b68c8e86696d8057473540d1990c023", - "formGuid": "d7fdb014d285ac6fa0e20241a918b021", + "id": "7e88d75bc4af0f389ebf735764ff505a", + "formGuid": "1c4c3a7c85ffe24fec68f351fdd69621", "participantGuid": "", - "name": "Signature_1", + "name": "Signature", "mandatory": true, - "regularExpression": null, - "data": "", + "regularExpression": "", + "data": null, "fillTimeStamp": "1/1/1970 12:00:00 AM", "locations": [ { - "id": "49ffbec7d2e2901c6bc571dcf5f3a52e", - "documentGuid": "653854e9a216226c81e7e903c86f693551e5fc6543875d3fdc853efedf5f7c89", - "fieldGuid": "0b68c8e86696d8057473540d1990c023", + "id": "0405d43861545942949b41c95d820507", + "documentGuid": "1dc7ea9dd442e23c428261563523657c867a28bc0c68eeb12e3efb7cb845c4e1", + "fieldGuid": "7e88d75bc4af0f389ebf735764ff505a", "page": 1, "locationX": 0.2, "locationY": 0.2, - "locationWidth": 90.0, - "locationHeight": 30.0, + "locationWidth": 90, + "locationHeight": 30, "fontName": "Helvetica", "fontColor": "red", "fontSize": 10, @@ -34,11 +34,11 @@ "fieldType": 1, "acceptableValues": null, "defaultValue": null, - "tooltip": "Signature_1", + "tooltip": "Signature", "guidanceText": "" } }, "status": "Ok", "error_message": null, - "composedOn": 1383332453505 + "composedOn": 1375218311407 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/ModifySignatureTemplate.json b/src/test/resources/responses/signature/ModifySignatureTemplate.json index ff0bfbf..85d19e4 100644 --- a/src/test/resources/responses/signature/ModifySignatureTemplate.json +++ b/src/test/resources/responses/signature/ModifySignatureTemplate.json @@ -1,9 +1,9 @@ { "result": { "template": { - "id": "e49a154e7829e977b7cab656db4003cb", - "name": "Template 8482632966459701", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "e171c182366b36bffe326e28ecf90733", + "name": "Template 585310958010442", + "ownerGuid": "ea103bbe8cb8ce07", "reminderTime": 1, "stepExpireTime": 1, "templateExpireTime": 1, @@ -15,8 +15,8 @@ "documentsPages": 0, "recipients": [ { - "id": "495e5fe166df1b70cc495325e9d7c35c", - "nickname": "api@groupdocs.com", + "id": "25fb94322597b7ad347c458ed081aa69", + "nickname": "Pavel", "order": 32767, "roleId": 1 } @@ -28,5 +28,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383332775575 + "composedOn": 1375218774813 } \ 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 a72774f..a6a2b02 100644 --- a/src/test/resources/responses/signature/ModifySignatureTemplateField.json +++ b/src/test/resources/responses/signature/ModifySignatureTemplateField.json @@ -1,40 +1,44 @@ { - "result": { - "templateId": "1cf9378756f846ce568dd21f595532d2", - "documentId": "d5865256d6da6ce7d7f98c319fff5a3d8436d554437fa8887b2dd5f4e78cf4a2", - "recipientId": "a7f82d2677578dffdf6c03237c80a4ea", - "field": { - "id": "578c3eee5e84c827f026dc325b9549f9", - "templateId": "1cf9378756f846ce568dd21f595532d2", - "recipientId": "a7f82d2677578dffdf6c03237c80a4ea", - "name": "Signature39996187776526027", - "mandatory": true, - "order": 0, - "regularExpression": "^.+$", - "signatureFieldId": 1, - "locations": [ - { - "id": "a5dc88ae073af308b9fba43fb73109d4", - "documentId": "d5865256d6da6ce7d7f98c319fff5a3d8436d554437fa8887b2dd5f4e78cf4a2", - "fieldId": "578c3eee5e84c827f026dc325b9549f9", - "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, - "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", - "composedOn": 1383332725377 + ], + "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 7a2453c..ce54ef1 100644 --- a/src/test/resources/responses/signature/ModifySignatureTemplateFieldLocation.json +++ b/src/test/resources/responses/signature/ModifySignatureTemplateFieldLocation.json @@ -1,41 +1,44 @@ { - "result": { - "templateId": "32fad24daf743c81b163beedd8ac0cc9", - "documentId": "e9ba16b182324d41aa332ab0df60c21df335ba2059cada9af07899d4e689b3f7", - "recipientId": "6c0b199db3498282faaf706093782a8f", - "field": { - "id": "1e255f2c867d49bb75d89009f0f33907", - "templateId": "32fad24daf743c81b163beedd8ac0cc9", - "recipientId": "6c0b199db3498282faaf706093782a8f", - "name": "Signature_1", - "mandatory": true, - "order": 0, - "regularExpression": "", - "signatureFieldId": 1, - "locations": [ - { - "id": "784e8126672080dce08ab559b86686cb", - "documentId": "e9ba16b182324d41aa332ab0df60c21df335ba2059cada9af07899d4e689b3f7", - "fieldId": "1e255f2c867d49bb75d89009f0f33907", - "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, - "tooltip": "Signature_1", - "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", - "composedOn": 1383332606485 + ], + "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/ModifySignatureTemplateRecipient.json b/src/test/resources/responses/signature/ModifySignatureTemplateRecipient.json index 67c1852..3219e94 100644 --- a/src/test/resources/responses/signature/ModifySignatureTemplateRecipient.json +++ b/src/test/resources/responses/signature/ModifySignatureTemplateRecipient.json @@ -1,14 +1,14 @@ { "result": { - "templateId": "7703c3124c320d30c96292912d0441c2", + "templateId": "3fc440ab71773b046ceef7c0bfec8205", "recipient": { - "id": "15d02effc15a970fa13efb56289a8820", + "id": "c0b116e59a17e604f96f2a54f8ad8382", "nickname": "John Smith 2", - "order": 1, + "order": 0, "roleId": 2 } }, "status": "Ok", "error_message": null, - "composedOn": 1383332765268 + "composedOn": 1375218740469 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicCreateSignature.json b/src/test/resources/responses/signature/PublicCreateSignature.json index 16ccfc0..ed9adf2 100644 --- a/src/test/resources/responses/signature/PublicCreateSignature.json +++ b/src/test/resources/responses/signature/PublicCreateSignature.json @@ -1,10 +1,10 @@ { "result": { "signature": { - "id": "f05cdab9d65e6d4302c377ad3bac347a", - "userGuid": "6d75a4d4db83f6fc", + "id": "f8b7b5b2d9e923758e32d038c891f94a", + "userGuid": "ea103bbe8cb8ce07", "recipientId": null, - "name": "Signature 6579859354264942", + "name": "Signature 26654325684980473", "companyName": "Aspose", "position": "QA", "firstName": "John", @@ -13,12 +13,12 @@ "textInitials": "JS", "signatureImageFileId": null, "initialsImageFileId": null, - "signatureImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f05cdab9d65e6d4302c377ad3bac347a/signatureData", - "initialsImageUrl": "https://stage-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f05cdab9d65e6d4302c377ad3bac347a/initialsData", - "createdTimeStamp": "2013-11-01T19:11:21.463Z" + "signatureImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f8b7b5b2d9e923758e32d038c891f94a/signatureData", + "initialsImageUrl": "https://dev-api-groupdocs.dynabic.com/v2.0/signature/public/signatures/signature/f8b7b5b2d9e923758e32d038c891f94a/initialsData", + "createdTimeStamp": "2013-07-30T21:19:50.547" } }, "status": "Ok", "error_message": null, - "composedOn": 1383333081440 + "composedOn": 1375219190500 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicFillEnvelopeField.json b/src/test/resources/responses/signature/PublicFillEnvelopeField.json index d9fdded..2aa3aa9 100644 --- a/src/test/resources/responses/signature/PublicFillEnvelopeField.json +++ b/src/test/resources/responses/signature/PublicFillEnvelopeField.json @@ -1,30 +1,30 @@ { "result": { - "envelopeId": "92a9e26cb515bf2e462af8e2ffbc9ca3", - "documentId": "0d43e7f95001019f96bbf826bd3c572d84beadb268f00a9a2e25840c37350d7b", - "recipientId": "f5ca14fb896bce51f32ab5102daddb8d", + "envelopeId": "5aa86f661a36f7f7b9575fa826d4dcce", + "documentId": "fd858b5c6d9aa1b654414323a9cadcc6d704d26cac1fad8242aa8bdf3b10c63f", + "recipientId": "3e79365551df699128631cb23db36690", "field": { - "id": "821c4c4e20b80e613e2d8398f74512b3", - "envelopeId": "92a9e26cb515bf2e462af8e2ffbc9ca3", - "recipientId": "f5ca14fb896bce51f32ab5102daddb8d", - "name": "Checkbox_1", + "id": "5113fe30c59416c8f5bdc05be0d869fb", + "envelopeId": "5aa86f661a36f7f7b9575fa826d4dcce", + "recipientId": "3e79365551df699128631cb23db36690", + "name": "Checkbox", "mandatory": true, "order": 0, "regularExpression": "", "getDataFrom": null, "data": "b24=", - "fillTimeStamp": "11/1/2013 7:12:22 PM", + "fillTimeStamp": "7/30/2013 9:21:07 PM", "signatureFieldId": 10, "locations": [ { - "id": "aeddb9befd65d3d67b58a8fef1a1eced", - "documentId": "0d43e7f95001019f96bbf826bd3c572d84beadb268f00a9a2e25840c37350d7b", - "fieldId": "821c4c4e20b80e613e2d8398f74512b3", + "id": "f536a48d65c7a0b1baf1135467f1a87f", + "documentId": "fd858b5c6d9aa1b654414323a9cadcc6d704d26cac1fad8242aa8bdf3b10c63f", + "fieldId": "5113fe30c59416c8f5bdc05be0d869fb", "page": 1, "locationX": 0.1, "locationY": 0.1, - "locationWidth": 10.0, - "locationHeight": 10.0, + "locationWidth": 25.0, + "locationHeight": 25.0, "fontName": "Arial", "fontColor": "black", "fontSize": 10, @@ -35,13 +35,13 @@ } ], "fieldType": 6, - "acceptableValues": null, - "defaultValue": null, - "tooltip": "Checkbox_1", + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Checkbox", "guidanceText": "" } }, "status": "Ok", "error_message": null, - "composedOn": 1383333142463 + "composedOn": 1375219266891 } \ 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/PublicGetEnvelopeDocuments.json b/src/test/resources/responses/signature/PublicGetEnvelopeDocuments.json index 1ac917e..14bf7eb 100644 --- a/src/test/resources/responses/signature/PublicGetEnvelopeDocuments.json +++ b/src/test/resources/responses/signature/PublicGetEnvelopeDocuments.json @@ -1,12 +1,12 @@ { "result": { - "envelopeId": "11b54ee62853984b1f2cdf084af9076f", + "envelopeId": "f363c1878d4aaf7c0d75488c3e4860cf", "documents": [ { - "documentId": "8459cfffb109fb767397d97b2796a1c369a11c1564eb9944353e03b4ba1307f4", - "envelopeId": "11b54ee62853984b1f2cdf084af9076f", + "documentId": "4adab30a3ca4389ff4f3909479cbe52ba548270dc60b7232763e74e88bb7ea4f", + "envelopeId": "f363c1878d4aaf7c0d75488c3e4860cf", "order": 0, - "name": "document_one_doc.pdf", + "name": "document_one.doc", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", "finalDocumentMD5": "", "originalDocumentPagesCount": 1, @@ -14,11 +14,11 @@ "originalDocumentImportedFields": [ ], - "originalDocumentId": "8459cfffb109fb767397d97b2796a1c369a11c1564eb9944353e03b4ba1307f4" + "originalDocumentId": "4adab30a3ca4389ff4f3909479cbe52ba548270dc60b7232763e74e88bb7ea4f" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383333228115 + "composedOn": 1375219366922 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetEnvelopeRecipients.json b/src/test/resources/responses/signature/PublicGetEnvelopeRecipients.json index 07b7de8..b2824b0 100644 --- a/src/test/resources/responses/signature/PublicGetEnvelopeRecipients.json +++ b/src/test/resources/responses/signature/PublicGetEnvelopeRecipients.json @@ -1,18 +1,18 @@ { "result": { - "envelopeId": "0b775b8fd2d4de5ac415c16cd17e43ec", + "envelopeId": "648052dda05bc3c1a48357715727a712", "recipients": [ { - "id": "eb80356991f31402c7b2299ca94b9f61", + "id": "bfbabbcd535b5bf64cffdf9cd15336ad", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383333237228 + "composedOn": 1375219400235 } \ 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/PublicGetSignatureEnvelope.json b/src/test/resources/responses/signature/PublicGetSignatureEnvelope.json index 23e6914..bec47e8 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureEnvelope.json +++ b/src/test/resources/responses/signature/PublicGetSignatureEnvelope.json @@ -1,11 +1,11 @@ { "result": { "envelope": { - "id": "3ea9feb1dadfeb63a3675f69e93cd2d3", - "name": "Envelope 21243759726070355", - "creationDateTime": "2013-11-01T19:14:59.2800000Z", - "updatedDateTime": "2013-11-01T19:15:00.2330000Z", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "2757e229258b3a5d59626e1b93675a24", + "name": "Envelope 05565103249326131", + "creationDateTime": "2013-07-30T21:25:07.3130000Z", + "updatedDateTime": "2013-07-30T21:25:08.1730000Z", + "ownerGuid": "ea103bbe8cb8ce07", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "reminderTime": 1, @@ -19,16 +19,16 @@ "documentsPages": 0, "recipients": [ { - "id": "1dd6af8ebaee5c0cf5ccf3ab1ccae235", + "id": "5716a06e6274aaa16bdb26e5a0aa1a4c", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, "status": 0, "statusMessage": null, - "statusDateTime": "", + "statusDateTime": "1970-01-01T00:00:00.0000000Z", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, @@ -43,10 +43,10 @@ "includeViewLink": true, "canBeCommented": true, "inPersonSign": false, - "ownerName": null + "ownerName": "Pavel Strashniy" } }, "status": "Ok", "error_message": null, - "composedOn": 1383333300922 + "composedOn": 1375219508719 } \ 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 984b6fa..cf2f0ca 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json +++ b/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json @@ -1,29 +1,29 @@ { "result": { - "envelopeId": "0a1d28dbb03f67c74f33322102213a16", + "envelopeId": "132ae0acd89fb6608ffc92be05203d69", "fields": [ { - "id": "ace3f8521f0c6155d2635dff626a8957", - "envelopeId": "0a1d28dbb03f67c74f33322102213a16", - "recipientId": "85dd4e6fe4896e300fc2e911130cb8c9", - "name": "Signature_1", + "id": "9f38ffd6a8a84665541bd16571288807", + "envelopeId": "132ae0acd89fb6608ffc92be05203d69", + "recipientId": "968d2debac51b1f63543c5d3fa96eef0", + "name": "Signature", "mandatory": true, "order": 0, "regularExpression": "", "getDataFrom": null, - "data": "", - "fillTimeStamp": "", + "data": null, + "fillTimeStamp": "1/1/1970 12:00:00 AM", "signatureFieldId": 1, "locations": [ { - "id": "f394a9afa191d5b3349bc851ae5f8247", - "documentId": "e792992ac2b8ec710d7d1024d6204096a906758d8a9c9fccc4b75aa7f0f8bb62", - "fieldId": "ace3f8521f0c6155d2635dff626a8957", + "id": "b9567e19db2be8d32af7c78c12ec0332", + "documentId": "b22c5541f444233f181b5ba936ccdc1654bc21f19650de8efad032cdbf56a080", + "fieldId": "9f38ffd6a8a84665541bd16571288807", "page": 1, "locationX": 0.1, "locationY": 0.1, - "locationWidth": 90.0, - "locationHeight": 30.0, + "locationWidth": 90, + "locationHeight": 30, "fontName": "Arial", "fontColor": "black", "fontSize": 10, @@ -34,14 +34,14 @@ } ], "fieldType": 1, - "acceptableValues": null, - "defaultValue": null, - "tooltip": "Signature_1", + "acceptableValues": "", + "defaultValue": "", + "tooltip": "Signature", "guidanceText": "" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383333251301 + "composedOn": 1375219440063 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetSignatureForm.json b/src/test/resources/responses/signature/PublicGetSignatureForm.json index 455696a..c6e7420 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureForm.json +++ b/src/test/resources/responses/signature/PublicGetSignatureForm.json @@ -1,11 +1,11 @@ { "result": { "form": { - "id": "0f1730722dd48e6371f1a1c296f8b237", - "name": "Form (272)", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "1dd3f83f37c4b74214f39a71132b7a02", + "name": "Form 1199", + "ownerGuid": "ea103bbe8cb8ce07", "templateGuid": null, - "createdTimeStamp": "2013-11-01T19:15:43.1870000Z", + "createdTimeStamp": "2013-07-30T21:27:06.0000000Z", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "documentsCount": 0, @@ -15,7 +15,7 @@ ], "canParticipantDownloadForm": false, - "waterMarkText": null, + "waterMarkText": "", "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383333343331 + "composedOn": 1375219626157 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublicGetSignatureFormDocuments.json b/src/test/resources/responses/signature/PublicGetSignatureFormDocuments.json index 2245db5..3606e4b 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureFormDocuments.json +++ b/src/test/resources/responses/signature/PublicGetSignatureFormDocuments.json @@ -1,20 +1,20 @@ { "result": { - "formId": "52b2f9a193ee6a866a9016cd28e2c728", + "formId": "51f506831d78f59fdd4c33f17d5c90bf", "documents": [ { - "id": "d5e6ab55fc56f51feaeb4bc4eb46c69621c567963c47d33143f36c59599b6aab", - "name": "document_one_doc.pdf", - "formGuid": "52b2f9a193ee6a866a9016cd28e2c728", - "documentGuid": "d5e6ab55fc56f51feaeb4bc4eb46c69621c567963c47d33143f36c59599b6aab", - "originalDocumentGuid": "743209c198f9118993f9a1550c10c447dbf1c7408fb09134d342d1e4c76ed4dd", + "id": "0abecfefd62ff34effbd89b5ba65687368fa91797a5495fc8f6024a32393a9d5", + "name": "document_one.doc", + "formGuid": "51f506831d78f59fdd4c33f17d5c90bf", + "documentGuid": "0abecfefd62ff34effbd89b5ba65687368fa91797a5495fc8f6024a32393a9d5", + "originalDocumentGuid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", - "assignedDateTime": "2013-11-01T19:15:18.1100000Z", + "assignedDateTime": "2013-07-30T21:25:49.8770000Z", "order": 0 } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383333318271 + "composedOn": 1375219550047 } \ 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..9e300da 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureFormFields.json +++ b/src/test/resources/responses/signature/PublicGetSignatureFormFields.json @@ -1,44 +1,44 @@ { - "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": "", + "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 } \ 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/PublicSignDocument.json b/src/test/resources/responses/signature/PublicSignDocument.json index 001e4cb..166190b 100644 --- a/src/test/resources/responses/signature/PublicSignDocument.json +++ b/src/test/resources/responses/signature/PublicSignDocument.json @@ -1,8 +1,8 @@ { "result": { - "jobId": "1772d2377011693f3ca9ca334cbe2301879f1106d8b74086e485bd8788f3f160" + "jobId": "d3ea512cb552135fa169de7ce4cff60aaac8bfdf4fb871aac478bf21b0a30307" }, "status": "Ok", "error_message": null, - "composedOn": 1383333358909 + "composedOn": 1375219666579 } \ 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/PublicVerifyDocument.json b/src/test/resources/responses/signature/PublicVerifyDocument.json index 9478886..0c6666e 100644 --- a/src/test/resources/responses/signature/PublicVerifyDocument.json +++ b/src/test/resources/responses/signature/PublicVerifyDocument.json @@ -7,5 +7,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383333373303 + "composedOn": 1375219705094 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/PublishSignatureForm.json b/src/test/resources/responses/signature/PublishSignatureForm.json index 471425a..ff88f2d 100644 --- a/src/test/resources/responses/signature/PublishSignatureForm.json +++ b/src/test/resources/responses/signature/PublishSignatureForm.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383332802974 + "composedOn": 1375218824860 } \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureEnvelope.json b/src/test/resources/responses/signature/RenameSignatureEnvelope.json index b75f132..484b961 100644 --- a/src/test/resources/responses/signature/RenameSignatureEnvelope.json +++ b/src/test/resources/responses/signature/RenameSignatureEnvelope.json @@ -1,35 +1,8 @@ { "result": { - "envelope": { - "id": "77c9c3b1dfedfbbd77e7126b6a36f15e", - "name": "Envelope - 020434552002888573", - "creationDateTime": "2013-11-01T19:07:26.4130000Z", - "updatedDateTime": "2013-11-01T19:07:27.0110781ZZ", - "ownerGuid": "6d75a4d4db83f6fc", - "status": -1, - "statusDateTime": "1970-01-01T00:00:00.0000000Z", - "reminderTime": 1, - "stepExpireTime": 3, - "envelopeExpireTime": 6, - "ownerShouldSign": false, - "orderedSignature": false, - "emailSubject": "Sign this!", - "emailBody": "", - "documentsCount": 0, - "documentsPages": 0, - "recipients": [ - - ], - "waterMarkText": "", - "waterMarkImage": "", - "attachSignedDocument": false, - "includeViewLink": true, - "canBeCommented": true, - "inPersonSign": false, - "ownerName": " " - } + "envelope": null }, "status": "Ok", "error_message": null, - "composedOn": 1383332846858 + "composedOn": 1375218868594 } \ 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 f4ac0e1..0000000 --- a/src/test/resources/responses/signature/RenameSignatureEnvelopeDocument.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "result": { - "envelopeId": "433e5d764c2cee0b6813a782501ecc64", - "document": { - "documentId": "c084c1f56d76ac474429c6a580825024427eaf8b57213ceb7afcedea3bf033be", - "envelopeId": "433e5d764c2cee0b6813a782501ecc64", - "order": 0, - "name": "Document - 3852280852152479.pdf", - "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", - "finalDocumentMD5": "", - "originalDocumentPagesCount": 1, - "fieldsCount": 0, - "originalDocumentImportedFields": [ - - ], - "originalDocumentId": "c084c1f56d76ac474429c6a580825024427eaf8b57213ceb7afcedea3bf033be" - } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383332823049 -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureForm.json b/src/test/resources/responses/signature/RenameSignatureForm.json index a90edce..c10cbc3 100644 --- a/src/test/resources/responses/signature/RenameSignatureForm.json +++ b/src/test/resources/responses/signature/RenameSignatureForm.json @@ -1,11 +1,11 @@ { "result": { "form": { - "id": "7115a1d33c60a4c2f283be60a6786f91", - "name": "Form - 7272819885586904", - "ownerGuid": "6d75a4d4db83f6fc", + "id": "c732fbff4b1206843826338ea22e55df", + "name": "Form - 5404702098959463", + "ownerGuid": "ea103bbe8cb8ce07", "templateGuid": null, - "createdTimeStamp": "2013-11-01T19:07:52.4170000Z", + "createdTimeStamp": "2013-07-30T21:15:07.5800000Z", "status": -1, "statusDateTime": "1970-01-01T00:00:00.0000000Z", "documentsCount": 0, @@ -15,7 +15,7 @@ ], "canParticipantDownloadForm": false, - "waterMarkText": null, + "waterMarkText": "", "waterMarkImage": "", "fieldsCount": 0, "notifyOwnerOnSign": false, @@ -24,5 +24,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383332872714 + "composedOn": 1375218907860 } \ 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 e089895..0000000 --- a/src/test/resources/responses/signature/RenameSignatureFormDocument.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "result": { - "formId": "10ab52c1b0b33b6f17c08098e7a22d9a", - "document": { - "id": "45d9c78f2cc4880e02e7513177191341a994f59ba238977d58e1facbebdd70b1", - "name": "Form - 29144570224404587.pdf", - "formGuid": "10ab52c1b0b33b6f17c08098e7a22d9a", - "documentGuid": "45d9c78f2cc4880e02e7513177191341a994f59ba238977d58e1facbebdd70b1", - "originalDocumentGuid": "6716ea1850a4286e4745de06fb030dff96685a96a9a3777dd505bac4152193f4", - "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", - "assignedDateTime": "2013-11-01T19:07:37.2370000Z", - "order": 0 - } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383332857912 -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/RenameSignatureTemplate.json b/src/test/resources/responses/signature/RenameSignatureTemplate.json index 9285d1f..bbd8fe3 100644 --- a/src/test/resources/responses/signature/RenameSignatureTemplate.json +++ b/src/test/resources/responses/signature/RenameSignatureTemplate.json @@ -1,27 +1,8 @@ { "result": { - "template": { - "id": "3386a523d2804a43dcc08533246897ec", - "name": "Template - 5691259309148357", - "ownerGuid": "6d75a4d4db83f6fc", - "reminderTime": 1, - "stepExpireTime": 3, - "templateExpireTime": 6, - "ownerShouldSign": false, - "orderedSignature": false, - "emailSubject": "Sign this!", - "emailBody": "", - "documentsCount": 0, - "documentsPages": 0, - "recipients": [ - - ], - "waterMarkText": "", - "waterMarkImage": "", - "fieldsCount": 0 - } + "template": null }, "status": "Ok", "error_message": null, - "composedOn": 1383332901370 + "composedOn": 1375218945344 } \ 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 aa96470..0000000 --- a/src/test/resources/responses/signature/RenameSignatureTemplateDocument.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "result": { - "templateId": "e5060b38d918eecf3bc20cbe9dd83088", - "document": { - "documentId": "fbace24862bb268aa4b1de223a61a79d7d8b7aceec2df621381b58f3f090fd05", - "templateId": "e5060b38d918eecf3bc20cbe9dd83088", - "order": 0, - "name": "Document - 05985362426913665.pdf", - "originalDocumentMD5": "4102f70d43d8cd309866ae9b914961c0", - "originalDocumentPagesCount": 1, - "fieldsCount": 0, - "originalDocumentId": "fbace24862bb268aa4b1de223a61a79d7d8b7aceec2df621381b58f3f090fd05" - } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383332882417 -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/RestartExpiredSignatureEnvelope.json b/src/test/resources/responses/signature/RestartExpiredSignatureEnvelope.json index af4da68..93237cf 100644 --- a/src/test/resources/responses/signature/RestartExpiredSignatureEnvelope.json +++ b/src/test/resources/responses/signature/RestartExpiredSignatureEnvelope.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383332938425 + "composedOn": 1375219009813 } \ 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 4c22ad3..0000000 --- a/src/test/resources/responses/signature/RetrySignEnvelope.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "result": { - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383333020197 -} \ No newline at end of file diff --git a/src/test/resources/responses/signature/SignDocument.json b/src/test/resources/responses/signature/SignDocument.json index f7330f7..4464098 100644 --- a/src/test/resources/responses/signature/SignDocument.json +++ b/src/test/resources/responses/signature/SignDocument.json @@ -1,8 +1,8 @@ { "result": { - "jobId": "e6ee725b705c46812e180ea005c91c26a0bd60b5bdbf626b5e8872740fc04254" + "jobId": "45fc738bb1f841b21d97b699086c865ea747b2b6c48c3096506c52c2cbfe249b" }, "status": "Ok", "error_message": null, - "composedOn": 1383333073307 + "composedOn": 1375219152594 } \ 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/SignatureEnvelopeSend.json b/src/test/resources/responses/signature/SignatureEnvelopeSend.json index c4dc209..67e3489 100644 --- a/src/test/resources/responses/signature/SignatureEnvelopeSend.json +++ b/src/test/resources/responses/signature/SignatureEnvelopeSend.json @@ -2,26 +2,26 @@ "result": { "recipients": [ { - "id": "797796384b8278d988d0270ba374dee8", + "id": "b6a147bdc0b61f19fff882319d83af26", "firstName": "John", "lastName": "Smith", - "email": "api@groupdocs.com", - "userGuid": "6d75a4d4db83f6fc", + "email": "api-tests@groupdocs.com", + "userGuid": "ea103bbe8cb8ce07", "order": 0, "roleId": 2, "status": 1, "statusMessage": null, - "statusDateTime": "2013-11-01T19:10:59.8585079ZZ", + "statusDateTime": "2013-07-30T21:18:34.7509297ZZ", "delegatedRecipientId": null, "signatureFingerprint": null, "signatureHost": null, "signatureLocation": null, "signatureBrowser": null, - "embedUrl": "https://stage-apps-groupdocs.dynabic.com/signature/signembed/7b63fa70f2f83fe9efc6a007ae718f3b/797796384b8278d988d0270ba374dee8" + "embedUrl": "http://dev-apps-groupdocs.dynabic.com/signature/signembed/a485c49b83cdc82147a5caabcfa0656c/b6a147bdc0b61f19fff882319d83af26" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383333059328 + "composedOn": 1375219114438 } \ 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/Compress.json b/src/test/resources/responses/storage/Compress.json index 1a72601..8836c41 100644 --- a/src/test/resources/responses/storage/Compress.json +++ b/src/test/resources/responses/storage/Compress.json @@ -1,9 +1,9 @@ { "result": { - "id": 132428, - "guid": "a07a7a34b217c05b4f8915d5123796c0360d1b14d8aa12730bbc4f8fc6258a98" + "id": 318325, + "guid": "7b9b09ec1a4d6b261255b5d0c985e9a15516f0a0f474d25b8d982efe1aed8a44" }, "status": "Ok", "error_message": null, - "composedOn": 1383333378694 + "composedOn": 1375219737954 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/CopyFile.json b/src/test/resources/responses/storage/CopyFile.json index 3444a9a..d1e365f 100644 --- a/src/test/resources/responses/storage/CopyFile.json +++ b/src/test/resources/responses/storage/CopyFile.json @@ -2,34 +2,34 @@ "result": { "src_file": { "name": "document_one.doc", - "version": 1, + "version": 556, "size": 9216, "type": "Words", "type_str": "Words", "file_type_str": "Doc", "document_path": "document_one.doc", "access": "Private", - "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/2b39b3c7c936340afd90f366af14f71f0523fcffe7c4b38cfc7864f05ddf1ed1", + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca", "file_type": "Doc", - "id": 132429, - "guid": "2b39b3c7c936340afd90f366af14f71f0523fcffe7c4b38cfc7864f05ddf1ed1" + "id": 325150, + "guid": "6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca" }, "dst_file": { - "name": "document_two_6709735136595472.doc", + "name": "document_two_37692914293512625.doc", "version": 1, "size": 9216, "type": "Words", "type_str": "Words", "file_type_str": "Doc", - "document_path": "document_two_6709735136595472.doc", + "document_path": "document_two_37692914293512625.doc", "access": "Private", - "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/6fac52c2aab04219fbe5664865b690a846a6312a014c3420ba0a0b6ec29eebec", + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/706370a9cde57d541f503e4fb595e1d78a3d4dfb81fc64da322116228daa93e8", "file_type": "Doc", - "id": 132430, - "guid": "6fac52c2aab04219fbe5664865b690a846a6312a014c3420ba0a0b6ec29eebec" + "id": 325664, + "guid": "706370a9cde57d541f503e4fb595e1d78a3d4dfb81fc64da322116228daa93e8" } }, "status": "Ok", "error_message": null, - "composedOn": 1383333387849 + "composedOn": 1375219774594 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/CopyFolder.json b/src/test/resources/responses/storage/CopyFolder.json index ae3c17c..e2f5ba8 100644 --- a/src/test/resources/responses/storage/CopyFolder.json +++ b/src/test/resources/responses/storage/CopyFolder.json @@ -1,9 +1,9 @@ { "result": { - "from_path": "Folder-8336892236570631", - "to_path": "NewFolder-8336892236570631" + "from_path": "Folder-36542806556370655", + "to_path": "NewFolder-36542806556370655" }, "status": "Ok", "error_message": null, - "composedOn": 1383333416051 + "composedOn": 1375219825938 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/Create.json b/src/test/resources/responses/storage/Create.json index 09ae7f4..f4b91a0 100644 --- a/src/test/resources/responses/storage/Create.json +++ b/src/test/resources/responses/storage/Create.json @@ -1,9 +1,9 @@ { "result": { - "id": 62598, - "path": "Folder-5484273897830484" + "id": 168257, + "path": "Folder-4176872196184557" }, "status": "Ok", "error_message": null, - "composedOn": 1383333437207 + "composedOn": 1375219903469 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/CreatePackage.json b/src/test/resources/responses/storage/CreatePackage.json index 3f40ede..4c916a1 100644 --- a/src/test/resources/responses/storage/CreatePackage.json +++ b/src/test/resources/responses/storage/CreatePackage.json @@ -1,8 +1,8 @@ { "result": { - "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/packages/e41b179d2b830c0e6aa7f2804b31b215/package.zip" + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/packages/90e91d73e4f6cd8e07fd8d5d46212070/package.zip" }, "status": "Ok", "error_message": null, - "composedOn": 1383333429630 + "composedOn": 1375219865188 } \ 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/Delete.json b/src/test/resources/responses/storage/Delete.json index 91e1b0a..a7cd3dd 100644 --- a/src/test/resources/responses/storage/Delete.json +++ b/src/test/resources/responses/storage/Delete.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383333456003 + "composedOn": 1375220020742 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/DeleteFromFolder.json b/src/test/resources/responses/storage/DeleteFromFolder.json index 9ca04ac..93fce0d 100644 --- a/src/test/resources/responses/storage/DeleteFromFolder.json +++ b/src/test/resources/responses/storage/DeleteFromFolder.json @@ -3,5 +3,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383333447021 + "composedOn": 1375219938704 } \ 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/GetStorageInfo.json b/src/test/resources/responses/storage/GetStorageInfo.json index f27cb21..f90c7b7 100644 --- a/src/test/resources/responses/storage/GetStorageInfo.json +++ b/src/test/resources/responses/storage/GetStorageInfo.json @@ -1,7 +1,7 @@ { "result": { - "total_space": null, - "avail_space": null, + "total_space": 26843545600, + "avail_space": 23384940988, "doc_credits": null, "avail_credits": null, "total_documents": null, @@ -9,5 +9,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383333476450 + "composedOn": 1375220105585 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/ListEntities.json b/src/test/resources/responses/storage/ListEntities.json index dc57e2f..41904b3 100644 --- a/src/test/resources/responses/storage/ListEntities.json +++ b/src/test/resources/responses/storage/ListEntities.json @@ -1,170 +1,9371 @@ { "result": { "path": "", - "count": 2, + "count": 631, "folders": [ + { + "folder_count": 6352, + "file_count": 4984, + "id": 35121, + "guid": null, + "name": "Dropbox Shortcut", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210971417, + "created_on": 1347282637500 + }, + { + "folder_count": 5697, + "file_count": 4766, + "id": 50512, + "guid": null, + "name": "BoxNet Shortcut", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375209882777, + "created_on": 1350973909297 + }, { "folder_count": 0, - "file_count": 122, - "id": 45686, + "file_count": 22094, + "id": 155785, "guid": null, "name": "My Signed Documents", "access": "Private", - "owner": { - "nickname": null, - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": null, - "claimed_id": null, - "token": null, - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 0, - "signedinOn": 0, - "signin_count": null, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 1085, - "guid": null, - "primary_email": null - }, - "sharers": null, - "dir": true, - "modified_on": 1383333368013, - "created_on": 1381243298953 - }, - { - "folder_count": 0, - "file_count": 0, - "id": 62608, + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219673663, + "created_on": 1372229998210 + }, + { + "folder_count": 0, + "file_count": 1395, + "id": 163605, + "guid": null, + "name": "Questionnaires", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219890627, + "created_on": 1373693949720 + }, + { + "folder_count": 1, + "file_count": 0, + "id": 163632, + "guid": null, + "name": "Signature", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373695095210, + "created_on": 1373695097390 + }, + { + "folder_count": 81, + "file_count": 0, + "id": 163648, + "guid": null, + "name": "My Forms", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375218770907, + "created_on": 1373695168430 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163879, + "guid": null, + "name": "Folder-2545428832099089", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697218753, + "created_on": 1373697218753 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163880, + "guid": null, + "name": "NewFolder-2545428832099089", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697219213, + "created_on": 1373697219213 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163881, + "guid": null, + "name": "Folder-09325809622162695", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697219723, + "created_on": 1373697219723 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163882, + "guid": null, + "name": "NewFolder-09325809622162695", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697220197, + "created_on": 1373697220197 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163883, + "guid": null, + "name": "Folder-45330865718698565", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697220617, + "created_on": 1373697220617 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163884, + "guid": null, + "name": "NewFolder-45330865718698565", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697221100, + "created_on": 1373697221100 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163885, + "guid": null, + "name": "Folder-37500745479521613", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697223403, + "created_on": 1373697223403 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163886, + "guid": null, + "name": "NewFolder-37500745479521613", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697223853, + "created_on": 1373697223853 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163887, + "guid": null, + "name": "Folder-577147795089607", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697226663, + "created_on": 1373697226663 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163888, + "guid": null, + "name": "NewFolder-577147795089607", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697227157, + "created_on": 1373697227157 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163889, + "guid": null, + "name": "Folder-3863806229843477", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697239660, + "created_on": 1373697239660 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163890, + "guid": null, + "name": "Folder-24806769600095757", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697240090, + "created_on": 1373697240090 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163891, + "guid": null, + "name": "Folder-08238947025288712", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697240537, + "created_on": 1373697240537 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163892, + "guid": null, + "name": "Folder-9284359877941118", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697243280, + "created_on": 1373697243280 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163893, + "guid": null, + "name": "Folder-31169390844526823", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697243897, + "created_on": 1373697243897 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163897, "guid": null, "name": "CreatedFolder", "access": "Private", - "owner": { - "nickname": null, - "firstname": null, - "lastname": null, - "pkey": null, - "pswd_salt": null, - "claimed_id": null, - "token": null, - "storage": null, - "photo": null, - "active": null, - "trial": null, - "news_eanbled": null, - "alerts_eanbled": null, - "support_eanbled": null, - "support_email": null, - "annotation_branded": null, - "viewer_branded": null, - "is_real_time_broadcast_enabled": null, - "is_scroll_broadcast_enabled": null, - "is_zoom_broadcast_enabled": null, - "annotation_logo": null, - "pointer_tool_cursor": null, - "annotation_header_options": null, - "is_annotation_navigation_widget_enabled": null, - "is_annotation_zoom_widget_enabled": null, - "is_annotation_download_widget_enabled": null, - "is_annotation_print_widget_enabled": null, - "is_annotation_help_widget_enabled": null, - "is_right_panel_enabled": null, - "is_thumbnails_panel_enabled": null, - "is_standard_header_always_shown": null, - "is_toolbar_enabled": null, - "is_text_annotation_button_enabled": null, - "is_rectangle_annotation_button_enabled": null, - "is_point_annotation_button_enabled": null, - "is_strikeout_annotation_button_enabled": null, - "is_polyline_annotation_button_enabled": null, - "is_typewriter_annotation_button_enabled": null, - "is_watermark_annotation_button_enabled": null, - "is_annotation_document_name_shown": null, - "annotation_navigation_icons": null, - "annotation_tool_icons": null, - "annotation_background_color": null, - "viewer_logo": null, - "viewer_options": null, - "is_viewer_navigation_widget_enabled": null, - "is_viewer_zoom_widget_enabled": null, - "is_viewer_download_widget_enabled": null, - "is_viewer_print_widget_enabled": null, - "is_viewer_help_widget_enabled": null, - "is_viewer_document_name_shown": null, - "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 0, - "signedinOn": 0, - "signin_count": null, - "roles": null, - "signature_watermark_enabled": null, - "signature_desktop_notifications": null, - "webhook_notification_retries": null, - "webhook_notification_failed_recipients": null, - "signature_color": null, - "id": 1085, - "guid": null, - "primary_email": null - }, - "sharers": null, - "dir": true, - "modified_on": 1383333482400, - "created_on": 1383333482400 - } - ], - "files": [ - + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697306823, + "created_on": 1373697306823 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163898, + "guid": null, + "name": "SortingFolder1-6724128936784509", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697316657, + "created_on": 1373697316657 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163899, + "guid": null, + "name": "SortingFolder2-6724128936784509", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697317067, + "created_on": 1373697317067 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163900, + "guid": null, + "name": "SortingFolder1-1773441032272074", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697321603, + "created_on": 1373697321603 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163901, + "guid": null, + "name": "SortingFolder2-1773441032272074", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697321977, + "created_on": 1373697321977 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163903, + "guid": null, + "name": "NewFolder-24462588991698808", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697370227, + "created_on": 1373697370227 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163905, + "guid": null, + "name": "NewFolder-26843730621188433", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697371177, + "created_on": 1373697371177 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163907, + "guid": null, + "name": "NewFolder-02205790399544616", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697372103, + "created_on": 1373697372103 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163909, + "guid": null, + "name": "NewFolder-17392855796517348", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697375793, + "created_on": 1373697375793 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163911, + "guid": null, + "name": "Folder-9485084931048611", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697379720, + "created_on": 1373697379720 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163913, + "guid": null, + "name": "NewFolder-5517871492263725", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373697381013, + "created_on": 1373697381013 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163942, + "guid": null, + "name": "Folder-7111502962424808", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373740909173, + "created_on": 1373740909173 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163943, + "guid": null, + "name": "Folder-9743853103866961", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373740909927, + "created_on": 1373740909927 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163944, + "guid": null, + "name": "Folder-7397540394970904", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373740910600, + "created_on": 1373740910600 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163946, + "guid": null, + "name": "Folder-41222711421703095", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373740912160, + "created_on": 1373740912160 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163948, + "guid": null, + "name": "Folder-7574874437433017", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373740913440, + "created_on": 1373740913440 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163950, + "guid": null, + "name": "Folder-639244352935181", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373740914767, + "created_on": 1373740914767 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163952, + "guid": null, + "name": "Folder-33900831612315363", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373740915990, + "created_on": 1373740915990 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163954, + "guid": null, + "name": "Folder-5870798819723456", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373740917350, + "created_on": 1373740917350 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163956, + "guid": null, + "name": "Folder-5092020112418006", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373740995980, + "created_on": 1373740995980 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163959, + "guid": null, + "name": "Folder-36910674299922475", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373740997433, + "created_on": 1373740997433 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163962, + "guid": null, + "name": "Folder-47578185551856966", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373740998903, + "created_on": 1373740998903 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163965, + "guid": null, + "name": "Folder-5036002762577317", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373741000153, + "created_on": 1373741000153 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163968, + "guid": null, + "name": "Folder-2001199801357878", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373741001513, + "created_on": 1373741001513 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163971, + "guid": null, + "name": "Folder-1676187900295668", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373741002730, + "created_on": 1373741002730 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163974, + "guid": null, + "name": "Folder-02299404523120241", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373741003920, + "created_on": 1373741003920 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163977, + "guid": null, + "name": "Folder-8902717319961398", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373741005043, + "created_on": 1373741005043 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163980, + "guid": null, + "name": "Folder-5911856830115304", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373741022730, + "created_on": 1373741022730 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163982, + "guid": null, + "name": "Folder-54449736288941", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373741024217, + "created_on": 1373741024217 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 163984, + "guid": null, + "name": "Folder-27264756660581924", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373741025480, + "created_on": 1373741025480 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164281, + "guid": null, + "name": "Folder-8107647066795497", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744759120, + "created_on": 1373744759120 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164282, + "guid": null, + "name": "NewFolder-8107647066795497", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744759587, + "created_on": 1373744759587 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164283, + "guid": null, + "name": "Folder-00613625147685215", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744760027, + "created_on": 1373744760027 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164284, + "guid": null, + "name": "NewFolder-00613625147685215", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744760510, + "created_on": 1373744760510 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164285, + "guid": null, + "name": "Folder-6142440494178866", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744760920, + "created_on": 1373744760920 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164286, + "guid": null, + "name": "NewFolder-6142440494178866", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744761457, + "created_on": 1373744761457 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164287, + "guid": null, + "name": "Folder-48440961895335377", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744762477, + "created_on": 1373744762477 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164288, + "guid": null, + "name": "NewFolder-48440961895335377", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744762973, + "created_on": 1373744762973 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164289, + "guid": null, + "name": "Folder-7478935473931857", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744763993, + "created_on": 1373744763993 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164290, + "guid": null, + "name": "NewFolder-7478935473931857", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744764457, + "created_on": 1373744764457 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164291, + "guid": null, + "name": "Folder-4456669763835046", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744775517, + "created_on": 1373744775517 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164292, + "guid": null, + "name": "Folder-3105009490329491", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744775970, + "created_on": 1373744775970 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164293, + "guid": null, + "name": "Folder-4116943882802585", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744776410, + "created_on": 1373744776410 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164294, + "guid": null, + "name": "Folder-6076765575772578", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744777377, + "created_on": 1373744777377 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164295, + "guid": null, + "name": "Folder-3208865334227984", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744778037, + "created_on": 1373744778037 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164299, + "guid": null, + "name": "SortingFolder1-5029393760954008", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744850963, + "created_on": 1373744850963 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164300, + "guid": null, + "name": "SortingFolder2-5029393760954008", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744851380, + "created_on": 1373744851380 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164301, + "guid": null, + "name": "SortingFolder1-26741468223374065", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744854197, + "created_on": 1373744854197 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164302, + "guid": null, + "name": "SortingFolder2-26741468223374065", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744854600, + "created_on": 1373744854600 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164304, + "guid": null, + "name": "NewFolder-042936852563308814", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744891613, + "created_on": 1373744891613 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164306, + "guid": null, + "name": "NewFolder-06617359736293538", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744892503, + "created_on": 1373744892503 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164308, + "guid": null, + "name": "NewFolder-12255996003126213", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744893487, + "created_on": 1373744893487 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164310, + "guid": null, + "name": "NewFolder-18113473299207394", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744895023, + "created_on": 1373744895023 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164312, + "guid": null, + "name": "Folder-076040596548647481", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744896507, + "created_on": 1373744896507 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164314, + "guid": null, + "name": "NewFolder-7150009742002033", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373744897810, + "created_on": 1373744897810 + }, + { + "folder_count": 0, + "file_count": 143, + "id": 164315, + "guid": null, + "name": "My Assemblies", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375213694787, + "created_on": 1373773648837 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164344, + "guid": null, + "name": "Folder-2873744870590619", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373779939240, + "created_on": 1373779939240 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164345, + "guid": null, + "name": "Folder-07700264115500521", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373779939960, + "created_on": 1373779939960 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164346, + "guid": null, + "name": "Folder-351974188021124", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373779940880, + "created_on": 1373779940880 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164348, + "guid": null, + "name": "Folder-8411401520073359", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373779942427, + "created_on": 1373779942427 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164350, + "guid": null, + "name": "Folder-11575204986711052", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373779943757, + "created_on": 1373779943757 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164352, + "guid": null, + "name": "Folder-7669107819112728", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373779945007, + "created_on": 1373779945007 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164354, + "guid": null, + "name": "Folder-22636866411453238", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373779946350, + "created_on": 1373779946350 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164356, + "guid": null, + "name": "Folder-4900602181977193", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373779947647, + "created_on": 1373779947647 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164358, + "guid": null, + "name": "Folder-44068112911239654", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373780013493, + "created_on": 1373780013493 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164361, + "guid": null, + "name": "Folder-192278372867011", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373780014853, + "created_on": 1373780014853 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164364, + "guid": null, + "name": "Folder-2445154163254648", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373780016253, + "created_on": 1373780016253 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164367, + "guid": null, + "name": "Folder-8790049179169368", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373780017973, + "created_on": 1373780017973 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164370, + "guid": null, + "name": "Folder-517101779152632", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373780019667, + "created_on": 1373780019667 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164373, + "guid": null, + "name": "Folder-6849094878873859", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373780021320, + "created_on": 1373780021320 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164376, + "guid": null, + "name": "Folder-7825208081426122", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373780023317, + "created_on": 1373780023317 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164379, + "guid": null, + "name": "Folder-3974952559717875", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373780025207, + "created_on": 1373780025207 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164382, + "guid": null, + "name": "Folder-7041772586764131", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373780042097, + "created_on": 1373780042097 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164384, + "guid": null, + "name": "Folder-05517722462697083", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373780044230, + "created_on": 1373780044230 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164386, + "guid": null, + "name": "Folder-7054975585329616", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373780045977, + "created_on": 1373780045977 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164683, + "guid": null, + "name": "Folder-23052918214848717", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784760657, + "created_on": 1373784760657 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164684, + "guid": null, + "name": "NewFolder-23052918214848717", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784761180, + "created_on": 1373784761180 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164685, + "guid": null, + "name": "Folder-033031404187403024", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784761633, + "created_on": 1373784761633 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164686, + "guid": null, + "name": "NewFolder-033031404187403024", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784762123, + "created_on": 1373784762123 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164687, + "guid": null, + "name": "Folder-32291364772574827", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784762533, + "created_on": 1373784762533 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164688, + "guid": null, + "name": "NewFolder-32291364772574827", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784763033, + "created_on": 1373784763033 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164689, + "guid": null, + "name": "Folder-9406287953089046", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784764100, + "created_on": 1373784764100 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164690, + "guid": null, + "name": "NewFolder-9406287953089046", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784764670, + "created_on": 1373784764670 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164691, + "guid": null, + "name": "Folder-8056708133810556", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784765770, + "created_on": 1373784765770 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164692, + "guid": null, + "name": "NewFolder-8056708133810556", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784766247, + "created_on": 1373784766247 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164693, + "guid": null, + "name": "Folder-37896379273930003", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784779100, + "created_on": 1373784779100 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164694, + "guid": null, + "name": "Folder-3498934914068892", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784779550, + "created_on": 1373784779550 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164695, + "guid": null, + "name": "Folder-6556770881250554", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784780037, + "created_on": 1373784780037 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164696, + "guid": null, + "name": "Folder-7805683214383081", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784781170, + "created_on": 1373784781170 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164697, + "guid": null, + "name": "Folder-9175642019197707", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784781930, + "created_on": 1373784781930 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164701, + "guid": null, + "name": "SortingFolder1-9436094885987345", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784861410, + "created_on": 1373784861410 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164702, + "guid": null, + "name": "SortingFolder2-9436094885987345", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784861847, + "created_on": 1373784861847 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164703, + "guid": null, + "name": "SortingFolder1-6145727860323459", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784864630, + "created_on": 1373784864630 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164704, + "guid": null, + "name": "SortingFolder2-6145727860323459", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784865083, + "created_on": 1373784865083 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164706, + "guid": null, + "name": "NewFolder-8037505416436853", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784904690, + "created_on": 1373784904690 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164708, + "guid": null, + "name": "NewFolder-06668402977941579", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784905660, + "created_on": 1373784905660 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164710, + "guid": null, + "name": "NewFolder-8577306529627532", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784906583, + "created_on": 1373784906583 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164712, + "guid": null, + "name": "NewFolder-3210822757251047", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784908207, + "created_on": 1373784908207 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164714, + "guid": null, + "name": "Folder-372839214815797961", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784909833, + "created_on": 1373784909833 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164716, + "guid": null, + "name": "NewFolder-56443884549647", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373784911333, + "created_on": 1373784911333 + }, + { + "folder_count": 0, + "file_count": 54, + "id": 164717, + "guid": null, + "name": "My Conversions", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375208588570, + "created_on": 1373798919087 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164718, + "guid": null, + "name": "My Conversions", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373798919057, + "created_on": 1373798919057 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164747, + "guid": null, + "name": "Folder-7294113100980604", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866403717, + "created_on": 1373866403717 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164748, + "guid": null, + "name": "Folder-5805415827310066", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866404530, + "created_on": 1373866404530 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164749, + "guid": null, + "name": "Folder-5450331500340331", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866405153, + "created_on": 1373866405153 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164751, + "guid": null, + "name": "Folder-8030582199446679", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866406703, + "created_on": 1373866406703 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164753, + "guid": null, + "name": "Folder-20404898735152865", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866408047, + "created_on": 1373866408047 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164755, + "guid": null, + "name": "Folder-9244229964863786", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866409273, + "created_on": 1373866409273 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164757, + "guid": null, + "name": "Folder-5596793239609245", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866410520, + "created_on": 1373866410520 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164759, + "guid": null, + "name": "Folder-30264025799853034", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866411763, + "created_on": 1373866411763 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164761, + "guid": null, + "name": "Folder-6759917434827745", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866480527, + "created_on": 1373866480527 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164764, + "guid": null, + "name": "Folder-7177803323352101", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866481897, + "created_on": 1373866481897 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164767, + "guid": null, + "name": "Folder-5137729669395553", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866483313, + "created_on": 1373866483313 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164770, + "guid": null, + "name": "Folder-016647060695989757", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866484493, + "created_on": 1373866484493 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164773, + "guid": null, + "name": "Folder-6825831932825684", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866485760, + "created_on": 1373866485760 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164776, + "guid": null, + "name": "Folder-6552367702181036", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866487003, + "created_on": 1373866487003 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164779, + "guid": null, + "name": "Folder-9733325031473813", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866488237, + "created_on": 1373866488237 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164782, + "guid": null, + "name": "Folder-25154324297890385", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866489527, + "created_on": 1373866489527 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164785, + "guid": null, + "name": "Folder-01426097426597639", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866504480, + "created_on": 1373866504480 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164787, + "guid": null, + "name": "Folder-7347079575220883", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866506017, + "created_on": 1373866506017 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164789, + "guid": null, + "name": "Folder-12396894883504894", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373866507417, + "created_on": 1373866507417 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164953, + "guid": null, + "name": "Folder-03820701663470649", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952868190, + "created_on": 1373952868190 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164954, + "guid": null, + "name": "Folder-5225715569968753", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952868940, + "created_on": 1373952868940 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164955, + "guid": null, + "name": "Folder-011949572958759647", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952869753, + "created_on": 1373952869753 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164957, + "guid": null, + "name": "Folder-6051992878640334", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952870863, + "created_on": 1373952870863 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164959, + "guid": null, + "name": "Folder-7696553138066866", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952871863, + "created_on": 1373952871863 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164961, + "guid": null, + "name": "Folder-27733063448702966", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952872910, + "created_on": 1373952872910 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164963, + "guid": null, + "name": "Folder-7342175195401742", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952874050, + "created_on": 1373952874050 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164965, + "guid": null, + "name": "Folder-15445488874723612", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952875143, + "created_on": 1373952875143 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164967, + "guid": null, + "name": "Folder-7193624228645463", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952958467, + "created_on": 1373952958467 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164970, + "guid": null, + "name": "Folder-9527701208337189", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952959683, + "created_on": 1373952959683 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164973, + "guid": null, + "name": "Folder-24731416601969192", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952961013, + "created_on": 1373952961013 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164976, + "guid": null, + "name": "Folder-6201469748987176", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952962200, + "created_on": 1373952962200 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164979, + "guid": null, + "name": "Folder-9732338772229326", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952963807, + "created_on": 1373952963807 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164982, + "guid": null, + "name": "Folder-6068786513769855", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952965600, + "created_on": 1373952965600 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164985, + "guid": null, + "name": "Folder-4185272835040029", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952967613, + "created_on": 1373952967613 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164988, + "guid": null, + "name": "Folder-39450349487570346", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952969377, + "created_on": 1373952969377 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164991, + "guid": null, + "name": "Folder-27297353860314955", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952990167, + "created_on": 1373952990167 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164993, + "guid": null, + "name": "Folder-4435838000043575", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952991720, + "created_on": 1373952991720 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 164995, + "guid": null, + "name": "Folder-13553290486480218", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373952993450, + "created_on": 1373952993450 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165291, + "guid": null, + "name": "Folder-2795252655794731", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373957999273, + "created_on": 1373957999273 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165292, + "guid": null, + "name": "NewFolder-2795252655794731", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373957999870, + "created_on": 1373957999870 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165293, + "guid": null, + "name": "Folder-8395227858595781", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958000470, + "created_on": 1373958000470 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165294, + "guid": null, + "name": "NewFolder-8395227858595781", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958001213, + "created_on": 1373958001213 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165295, + "guid": null, + "name": "Folder-8470253548890843", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958001690, + "created_on": 1373958001690 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165296, + "guid": null, + "name": "NewFolder-8470253548890843", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958002313, + "created_on": 1373958002313 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165297, + "guid": null, + "name": "Folder-3499593186307387", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958003670, + "created_on": 1373958003670 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165298, + "guid": null, + "name": "NewFolder-3499593186307387", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958004273, + "created_on": 1373958004273 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165299, + "guid": null, + "name": "Folder-05808479646383713", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958005530, + "created_on": 1373958005530 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165300, + "guid": null, + "name": "NewFolder-05808479646383713", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958006233, + "created_on": 1373958006233 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165301, + "guid": null, + "name": "Folder-054769462778342826", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958022497, + "created_on": 1373958022497 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165302, + "guid": null, + "name": "Folder-013077687587648379", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958022937, + "created_on": 1373958022937 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165303, + "guid": null, + "name": "Folder-93993376510308", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958023483, + "created_on": 1373958023483 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165304, + "guid": null, + "name": "Folder-4409958457393923", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958024733, + "created_on": 1373958024733 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165305, + "guid": null, + "name": "Folder-6452739740169962", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958025513, + "created_on": 1373958025513 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165309, + "guid": null, + "name": "SortingFolder1-7644372853298134", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958120377, + "created_on": 1373958120377 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165310, + "guid": null, + "name": "SortingFolder2-7644372853298134", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958120910, + "created_on": 1373958120910 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165311, + "guid": null, + "name": "SortingFolder1-3127151098009173", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958124170, + "created_on": 1373958124170 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165312, + "guid": null, + "name": "SortingFolder2-3127151098009173", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958124713, + "created_on": 1373958124713 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165314, + "guid": null, + "name": "NewFolder-23753328008295527", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958173697, + "created_on": 1373958173697 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165316, + "guid": null, + "name": "NewFolder-5213981960663295", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958174830, + "created_on": 1373958174830 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165318, + "guid": null, + "name": "NewFolder-6957529278076685", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958175897, + "created_on": 1373958175897 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165320, + "guid": null, + "name": "NewFolder-9064897286950665", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958177910, + "created_on": 1373958177910 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165322, + "guid": null, + "name": "Folder-33100014054195981", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958179740, + "created_on": 1373958179740 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165324, + "guid": null, + "name": "NewFolder-09588953573517889", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1373958181250, + "created_on": 1373958181250 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165353, + "guid": null, + "name": "Folder-04684613378955582", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033443910, + "created_on": 1374033443910 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165354, + "guid": null, + "name": "Folder-11553517209912278", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033444677, + "created_on": 1374033444677 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165355, + "guid": null, + "name": "Folder-32242103110242704", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033445367, + "created_on": 1374033445367 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165357, + "guid": null, + "name": "Folder-10995604327114905", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033447057, + "created_on": 1374033447057 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165359, + "guid": null, + "name": "Folder-2853367404190199", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033448383, + "created_on": 1374033448383 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165361, + "guid": null, + "name": "Folder-7594598163454601", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033449683, + "created_on": 1374033449683 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165363, + "guid": null, + "name": "Folder-9253936399455165", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033451037, + "created_on": 1374033451037 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165365, + "guid": null, + "name": "Folder-9463799120985837", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033452337, + "created_on": 1374033452337 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165367, + "guid": null, + "name": "Folder-9407683574604887", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033528490, + "created_on": 1374033528490 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165370, + "guid": null, + "name": "Folder-21252648770621474", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033530553, + "created_on": 1374033530553 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165373, + "guid": null, + "name": "Folder-7564264018294019", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033532827, + "created_on": 1374033532827 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165376, + "guid": null, + "name": "Folder-16447189833190956", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033534127, + "created_on": 1374033534127 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165379, + "guid": null, + "name": "Folder-8472068596537317", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033535443, + "created_on": 1374033535443 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165382, + "guid": null, + "name": "Folder-3534753663262985", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033536713, + "created_on": 1374033536713 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165385, + "guid": null, + "name": "Folder-08416674003212199", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033538067, + "created_on": 1374033538067 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165388, + "guid": null, + "name": "Folder-6784918217753683", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033539373, + "created_on": 1374033539373 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165391, + "guid": null, + "name": "Folder-5280645358179531", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033556870, + "created_on": 1374033556870 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165393, + "guid": null, + "name": "Folder-40660824999021816", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033558550, + "created_on": 1374033558550 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165395, + "guid": null, + "name": "Folder-527661070213559", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374033559927, + "created_on": 1374033559927 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165692, + "guid": null, + "name": "Folder-8531811413460749", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038795450, + "created_on": 1374038795450 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165693, + "guid": null, + "name": "NewFolder-8531811413460749", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038795943, + "created_on": 1374038795943 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165694, + "guid": null, + "name": "Folder-8766098665004172", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038796350, + "created_on": 1374038796350 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165695, + "guid": null, + "name": "NewFolder-8766098665004172", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038796967, + "created_on": 1374038796967 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165696, + "guid": null, + "name": "Folder-7466936632326998", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038797420, + "created_on": 1374038797420 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165697, + "guid": null, + "name": "NewFolder-7466936632326998", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038797893, + "created_on": 1374038797893 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165698, + "guid": null, + "name": "Folder-8224857103254077", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038799073, + "created_on": 1374038799073 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165699, + "guid": null, + "name": "NewFolder-8224857103254077", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038799563, + "created_on": 1374038799563 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165700, + "guid": null, + "name": "Folder-24435971871445028", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038800707, + "created_on": 1374038800707 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165701, + "guid": null, + "name": "NewFolder-24435971871445028", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038801183, + "created_on": 1374038801183 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165702, + "guid": null, + "name": "Folder-08586526029524999", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038816497, + "created_on": 1374038816497 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165703, + "guid": null, + "name": "Folder-524253365470242", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038816917, + "created_on": 1374038816917 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165704, + "guid": null, + "name": "Folder-6952844925105438", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038817323, + "created_on": 1374038817323 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165705, + "guid": null, + "name": "Folder-11246722575720258", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038818433, + "created_on": 1374038818433 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165706, + "guid": null, + "name": "Folder-04688014877055369", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038819120, + "created_on": 1374038819120 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165710, + "guid": null, + "name": "SortingFolder1-19173386153717098", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038917407, + "created_on": 1374038917407 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165711, + "guid": null, + "name": "SortingFolder2-19173386153717098", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038917920, + "created_on": 1374038917920 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165712, + "guid": null, + "name": "SortingFolder1-8707241305411014", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038920977, + "created_on": 1374038920977 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165713, + "guid": null, + "name": "SortingFolder2-8707241305411014", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038921540, + "created_on": 1374038921540 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165715, + "guid": null, + "name": "NewFolder-13768597845006347", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038967137, + "created_on": 1374038967137 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165717, + "guid": null, + "name": "NewFolder-5207735893394819", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038968170, + "created_on": 1374038968170 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165719, + "guid": null, + "name": "NewFolder-5054912316659839", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038969150, + "created_on": 1374038969150 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165721, + "guid": null, + "name": "NewFolder-21084465985597034", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038970920, + "created_on": 1374038970920 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165723, + "guid": null, + "name": "Folder-36204758638576741", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038972463, + "created_on": 1374038972463 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 165725, + "guid": null, + "name": "NewFolder-03366554311528902", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374038973907, + "created_on": 1374038973907 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166830, + "guid": null, + "name": "Folder-05197611378395639", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063667023, + "created_on": 1374063667023 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166831, + "guid": null, + "name": "Folder-32980758915965025", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063668270, + "created_on": 1374063668270 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166832, + "guid": null, + "name": "Folder-314474281787154", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063669463, + "created_on": 1374063669463 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166834, + "guid": null, + "name": "Folder-3151515813317364", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063671657, + "created_on": 1374063671657 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166836, + "guid": null, + "name": "Folder-4663970951377794", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063673610, + "created_on": 1374063673610 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166838, + "guid": null, + "name": "Folder-7355014027453847", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063675633, + "created_on": 1374063675633 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166840, + "guid": null, + "name": "Folder-7589416806478246", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063677547, + "created_on": 1374063677547 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166842, + "guid": null, + "name": "Folder-9327186850022521", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063679593, + "created_on": 1374063679593 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166844, + "guid": null, + "name": "Folder-6958979683426537", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063768043, + "created_on": 1374063768043 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166847, + "guid": null, + "name": "Folder-4666994724222524", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063769950, + "created_on": 1374063769950 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166850, + "guid": null, + "name": "Folder-46066403399980316", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063771960, + "created_on": 1374063771960 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166853, + "guid": null, + "name": "Folder-35174903740298624", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063773747, + "created_on": 1374063773747 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166856, + "guid": null, + "name": "Folder-5556253483656729", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063775550, + "created_on": 1374063775550 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166859, + "guid": null, + "name": "Folder-5690691267239093", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063777427, + "created_on": 1374063777427 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166862, + "guid": null, + "name": "Folder-761740304373147", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063779167, + "created_on": 1374063779167 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166865, + "guid": null, + "name": "Folder-5382123870908894", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063780907, + "created_on": 1374063780907 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166868, + "guid": null, + "name": "Folder-7566195787433482", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063802270, + "created_on": 1374063802270 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166870, + "guid": null, + "name": "Folder-5702409499419856", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063804453, + "created_on": 1374063804453 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 166872, + "guid": null, + "name": "Folder-5087499146308968", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374063806163, + "created_on": 1374063806163 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167169, + "guid": null, + "name": "Folder-44613572397690093", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069592200, + "created_on": 1374069592200 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167170, + "guid": null, + "name": "NewFolder-44613572397690093", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069592730, + "created_on": 1374069592730 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167171, + "guid": null, + "name": "Folder-4453290961571572", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069593177, + "created_on": 1374069593177 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167172, + "guid": null, + "name": "NewFolder-4453290961571572", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069593730, + "created_on": 1374069593730 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167173, + "guid": null, + "name": "Folder-2690047360009157", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069594217, + "created_on": 1374069594217 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167174, + "guid": null, + "name": "NewFolder-2690047360009157", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069594780, + "created_on": 1374069594780 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167175, + "guid": null, + "name": "Folder-7322069591042785", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069595997, + "created_on": 1374069595997 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167176, + "guid": null, + "name": "NewFolder-7322069591042785", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069596603, + "created_on": 1374069596603 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167177, + "guid": null, + "name": "Folder-917100231815435", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069597840, + "created_on": 1374069597840 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167178, + "guid": null, + "name": "NewFolder-917100231815435", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069598383, + "created_on": 1374069598383 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167179, + "guid": null, + "name": "Folder-3401994437116105", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069617140, + "created_on": 1374069617140 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167180, + "guid": null, + "name": "Folder-49008493930616737", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069617570, + "created_on": 1374069617570 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167181, + "guid": null, + "name": "Folder-3428442289628322", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069617983, + "created_on": 1374069617983 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167182, + "guid": null, + "name": "Folder-623928340914147", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069619123, + "created_on": 1374069619123 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167183, + "guid": null, + "name": "Folder-0204531672964271", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069619820, + "created_on": 1374069619820 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167187, + "guid": null, + "name": "SortingFolder1-5684833023981787", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069728857, + "created_on": 1374069728857 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167188, + "guid": null, + "name": "SortingFolder2-5684833023981787", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069729297, + "created_on": 1374069729297 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167189, + "guid": null, + "name": "SortingFolder1-12668292835191686", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069732690, + "created_on": 1374069732690 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167190, + "guid": null, + "name": "SortingFolder2-12668292835191686", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069733167, + "created_on": 1374069733167 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167192, + "guid": null, + "name": "NewFolder-19212871756704009", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069782773, + "created_on": 1374069782773 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167194, + "guid": null, + "name": "NewFolder-2991162301911271", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069783867, + "created_on": 1374069783867 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167196, + "guid": null, + "name": "NewFolder-9417834675567289", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069784810, + "created_on": 1374069784810 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167198, + "guid": null, + "name": "NewFolder-9852915575974405", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069786590, + "created_on": 1374069786590 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167200, + "guid": null, + "name": "Folder-31317856760678331", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069788607, + "created_on": 1374069788607 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167202, + "guid": null, + "name": "NewFolder-519100324476041", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374069790090, + "created_on": 1374069790090 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167210, + "guid": null, + "name": "SortingFolder1-06273029914538841", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561636350, + "created_on": 1374561636350 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167211, + "guid": null, + "name": "SortingFolder2-06273029914538841", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561637480, + "created_on": 1374561637480 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167212, + "guid": null, + "name": "SortingFolder1-9808138089619155", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561642753, + "created_on": 1374561642753 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167213, + "guid": null, + "name": "SortingFolder2-9808138089619155", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561643910, + "created_on": 1374561643910 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167214, + "guid": null, + "name": "FilterFolder1-03654549789183659", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561649287, + "created_on": 1374561649287 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167215, + "guid": null, + "name": "FilterFolder2-03654549789183659", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561650390, + "created_on": 1374561650390 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167217, + "guid": null, + "name": "NewFolder-948478908488855", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561750180, + "created_on": 1374561750180 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167219, + "guid": null, + "name": "NewFolder-7535846590537976", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561752690, + "created_on": 1374561752690 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167221, + "guid": null, + "name": "NewFolder-995872250156286", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561755127, + "created_on": 1374561755127 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167223, + "guid": null, + "name": "NewFolder-3691532508149844", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561759483, + "created_on": 1374561759483 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167225, + "guid": null, + "name": "Folder-97917157964210641", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561763797, + "created_on": 1374561763797 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167227, + "guid": null, + "name": "NewFolder-10635342389326996", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374561767350, + "created_on": 1374561767350 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167231, + "guid": null, + "name": "Folder-7641953267177052", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562133350, + "created_on": 1374562133350 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167232, + "guid": null, + "name": "Folder-8770041283277888", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562134450, + "created_on": 1374562134450 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167233, + "guid": null, + "name": "Folder-08978548248402773", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562135593, + "created_on": 1374562135593 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167234, + "guid": null, + "name": "Folder-4353795835915004", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562138680, + "created_on": 1374562138680 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167235, + "guid": null, + "name": "Folder-39162628409118394", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562140743, + "created_on": 1374562140743 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167236, + "guid": null, + "name": "Folder-11027064156036814", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562219210, + "created_on": 1374562219210 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167237, + "guid": null, + "name": "NewFolder-11027064156036814", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562220287, + "created_on": 1374562220287 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167238, + "guid": null, + "name": "Folder-3026987898990532", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562221427, + "created_on": 1374562221427 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167239, + "guid": null, + "name": "NewFolder-3026987898990532", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562222740, + "created_on": 1374562222740 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167240, + "guid": null, + "name": "Folder-25020999423620915", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562223913, + "created_on": 1374562223913 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167241, + "guid": null, + "name": "NewFolder-25020999423620915", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562225177, + "created_on": 1374562225177 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167242, + "guid": null, + "name": "Folder-2664976576070963", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562228037, + "created_on": 1374562228037 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167243, + "guid": null, + "name": "NewFolder-2664976576070963", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562229210, + "created_on": 1374562229210 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167244, + "guid": null, + "name": "Folder-9139684082547042", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562232240, + "created_on": 1374562232240 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167245, + "guid": null, + "name": "NewFolder-9139684082547042", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562233427, + "created_on": 1374562233427 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167246, + "guid": null, + "name": "Folder-13094428659699575", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562726747, + "created_on": 1374562726747 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167249, + "guid": null, + "name": "Folder-4108712620404933", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562730763, + "created_on": 1374562730763 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167252, + "guid": null, + "name": "Folder-7741001633005189", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562734587, + "created_on": 1374562734587 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167255, + "guid": null, + "name": "Folder-2505236203304667", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562737517, + "created_on": 1374562737517 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167258, + "guid": null, + "name": "Folder-691694573342669", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562740247, + "created_on": 1374562740247 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167261, + "guid": null, + "name": "Folder-9887201269311674", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562743547, + "created_on": 1374562743547 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167264, + "guid": null, + "name": "Folder-908415893364794", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562746360, + "created_on": 1374562746360 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167267, + "guid": null, + "name": "Folder-5335171621976424", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562749163, + "created_on": 1374562749163 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167270, + "guid": null, + "name": "Folder-8283097806932224", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562850893, + "created_on": 1374562850893 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167272, + "guid": null, + "name": "Folder-5537364830269653", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562855387, + "created_on": 1374562855387 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167274, + "guid": null, + "name": "Folder-40158085012582145", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374562859137, + "created_on": 1374562859137 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167276, + "guid": null, + "name": "Folder-04654465201782465", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374563466523, + "created_on": 1374563466523 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167277, + "guid": null, + "name": "Folder-12006648655675467", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374563468557, + "created_on": 1374563468557 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167278, + "guid": null, + "name": "Folder-1972082172229056", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374563470523, + "created_on": 1374563470523 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167280, + "guid": null, + "name": "Folder-5958143271748397", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374563475040, + "created_on": 1374563475040 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167282, + "guid": null, + "name": "Folder-9849782439028734", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374563478743, + "created_on": 1374563478743 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167284, + "guid": null, + "name": "Folder-26746229602689686", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374563482383, + "created_on": 1374563482383 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167286, + "guid": null, + "name": "Folder-8578611611182598", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374563487337, + "created_on": 1374563487337 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167288, + "guid": null, + "name": "Folder-9106189376915893", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1374563490977, + "created_on": 1374563490977 + }, + { + "folder_count": 0, + "file_count": 19, + "id": 167435, + "guid": null, + "name": "My Web Documents", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375208368663, + "created_on": 1375075193733 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167502, + "guid": null, + "name": "Folder-8595519028944231", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375123963843, + "created_on": 1375123963843 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167503, + "guid": null, + "name": "Folder-40352352464848873", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375123964640, + "created_on": 1375123964640 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167504, + "guid": null, + "name": "Folder-2951738964426276", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375123965530, + "created_on": 1375123965530 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167506, + "guid": null, + "name": "Folder-893926237834435", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375123967250, + "created_on": 1375123967250 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167508, + "guid": null, + "name": "Folder-0510734791886861", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375123968703, + "created_on": 1375123968703 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167510, + "guid": null, + "name": "Folder-14074079948323603", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375123970250, + "created_on": 1375123970250 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167512, + "guid": null, + "name": "Folder-9642452284825476", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375123971720, + "created_on": 1375123971720 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167514, + "guid": null, + "name": "Folder-32069919322731544", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375123973203, + "created_on": 1375123973203 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167516, + "guid": null, + "name": "Folder-9874244530205393", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124166187, + "created_on": 1375124166187 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167519, + "guid": null, + "name": "Folder-49061407626457654", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124167843, + "created_on": 1375124167843 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167522, + "guid": null, + "name": "Folder-5872202545227178", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124169470, + "created_on": 1375124169470 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167525, + "guid": null, + "name": "Folder-601690484604541", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124170703, + "created_on": 1375124170703 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167528, + "guid": null, + "name": "Folder-24910699735372022", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124172047, + "created_on": 1375124172047 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167531, + "guid": null, + "name": "Folder-48068079366734673", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124173343, + "created_on": 1375124173343 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167534, + "guid": null, + "name": "Folder-781930468181487", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124174703, + "created_on": 1375124174703 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167537, + "guid": null, + "name": "Folder-8211328645731515", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124175983, + "created_on": 1375124175983 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167540, + "guid": null, + "name": "Folder-5507298198815975", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124246610, + "created_on": 1375124246610 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167542, + "guid": null, + "name": "Folder-5072138909380142", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124248313, + "created_on": 1375124248313 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167544, + "guid": null, + "name": "Folder-40176578748443337", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124249687, + "created_on": 1375124249687 + }, + { + "folder_count": 0, + "file_count": 1, + "id": 167572, + "guid": null, + "name": "Templates", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375124817100, + "created_on": 1375124856753 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167843, + "guid": null, + "name": "Folder-271109275352838", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133332600, + "created_on": 1375133332600 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167844, + "guid": null, + "name": "NewFolder-271109275352838", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133333100, + "created_on": 1375133333100 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167845, + "guid": null, + "name": "Folder-4321399452611445", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133333600, + "created_on": 1375133333600 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167846, + "guid": null, + "name": "NewFolder-4321399452611445", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133334253, + "created_on": 1375133334253 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167847, + "guid": null, + "name": "Folder-1388645058288669", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133334660, + "created_on": 1375133334660 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167848, + "guid": null, + "name": "NewFolder-1388645058288669", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133335223, + "created_on": 1375133335223 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167849, + "guid": null, + "name": "Folder-8310337859786328", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133336457, + "created_on": 1375133336457 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167850, + "guid": null, + "name": "NewFolder-8310337859786328", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133336910, + "created_on": 1375133336910 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167851, + "guid": null, + "name": "Folder-2735993438657708", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133338113, + "created_on": 1375133338113 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167852, + "guid": null, + "name": "NewFolder-2735993438657708", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133338660, + "created_on": 1375133338660 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167853, + "guid": null, + "name": "Folder-9788952388111583", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133409303, + "created_on": 1375133409303 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167854, + "guid": null, + "name": "Folder-051443172975678464", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133409723, + "created_on": 1375133409723 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167855, + "guid": null, + "name": "Folder-726528487240562", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133410240, + "created_on": 1375133410240 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167856, + "guid": null, + "name": "Folder-18383439743396202", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133411350, + "created_on": 1375133411350 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167857, + "guid": null, + "name": "Folder-1488225965304295", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133412067, + "created_on": 1375133412067 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167861, + "guid": null, + "name": "SortingFolder1-2988283035431818", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133646287, + "created_on": 1375133646287 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167862, + "guid": null, + "name": "SortingFolder2-2988283035431818", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133646787, + "created_on": 1375133646787 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167863, + "guid": null, + "name": "SortingFolder1-7451333735748665", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133649443, + "created_on": 1375133649443 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167864, + "guid": null, + "name": "SortingFolder2-7451333735748665", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133649817, + "created_on": 1375133649817 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167866, + "guid": null, + "name": "NewFolder-27496077448350287", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133746303, + "created_on": 1375133746303 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167868, + "guid": null, + "name": "NewFolder-0694490277279245", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133747257, + "created_on": 1375133747257 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167870, + "guid": null, + "name": "NewFolder-8750966577382472", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133748100, + "created_on": 1375133748100 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167872, + "guid": null, + "name": "NewFolder-6986387726746563", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133749757, + "created_on": 1375133749757 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167874, + "guid": null, + "name": "Folder-223412940909415881", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133751270, + "created_on": 1375133751270 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167876, + "guid": null, + "name": "NewFolder-9782029533393997", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375133752630, + "created_on": 1375133752630 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167907, + "guid": null, + "name": "Folder-0636152214095087", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210235027, + "created_on": 1375210235027 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167908, + "guid": null, + "name": "Folder-34317832104003454", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210235777, + "created_on": 1375210235777 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167909, + "guid": null, + "name": "Folder-28644352704253484", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210236510, + "created_on": 1375210236510 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167911, + "guid": null, + "name": "Folder-05926322781063453", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210238230, + "created_on": 1375210238230 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167913, + "guid": null, + "name": "Folder-7991617972872218", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210239587, + "created_on": 1375210239587 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167915, + "guid": null, + "name": "Folder-009763880738641317", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210241103, + "created_on": 1375210241103 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167917, + "guid": null, + "name": "Folder-21476883733730534", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210242447, + "created_on": 1375210242447 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167919, + "guid": null, + "name": "Folder-4145734874816748", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210243930, + "created_on": 1375210243930 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167921, + "guid": null, + "name": "Folder-857560470613406", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210428417, + "created_on": 1375210428417 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167924, + "guid": null, + "name": "Folder-45979708560045185", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210430103, + "created_on": 1375210430103 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167927, + "guid": null, + "name": "Folder-01796623473450465", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210431620, + "created_on": 1375210431620 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167930, + "guid": null, + "name": "Folder-7848374571640969", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210432900, + "created_on": 1375210432900 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167933, + "guid": null, + "name": "Folder-04972035224365845", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210434167, + "created_on": 1375210434167 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167936, + "guid": null, + "name": "Folder-5155352017144238", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210435417, + "created_on": 1375210435417 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167939, + "guid": null, + "name": "Folder-7668616913069881", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210436633, + "created_on": 1375210436633 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167942, + "guid": null, + "name": "Folder-23968470264403663", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210437823, + "created_on": 1375210437823 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167945, + "guid": null, + "name": "Folder-12532690061878127", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210507400, + "created_on": 1375210507400 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167947, + "guid": null, + "name": "Folder-7567397802708619", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210509120, + "created_on": 1375210509120 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 167949, + "guid": null, + "name": "Folder-6941398789812531", + "access": "Restricted", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375210510620, + "created_on": 1375210510620 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168247, + "guid": null, + "name": "Folder-36542806556370655", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219825593, + "created_on": 1375219825593 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168248, + "guid": null, + "name": "NewFolder-36542806556370655", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219826093, + "created_on": 1375219826093 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168249, + "guid": null, + "name": "Folder-008862221780201907", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219826517, + "created_on": 1375219826517 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168250, + "guid": null, + "name": "NewFolder-008862221780201907", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219827063, + "created_on": 1375219827063 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168251, + "guid": null, + "name": "Folder-2825271165852091", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219827487, + "created_on": 1375219827487 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168252, + "guid": null, + "name": "NewFolder-2825271165852091", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219827940, + "created_on": 1375219827940 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168253, + "guid": null, + "name": "Folder-45582978144200614", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219829080, + "created_on": 1375219829080 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168254, + "guid": null, + "name": "NewFolder-45582978144200614", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219829563, + "created_on": 1375219829563 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168255, + "guid": null, + "name": "Folder-5106980869555368", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219830720, + "created_on": 1375219830720 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168256, + "guid": null, + "name": "NewFolder-5106980869555368", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219831250, + "created_on": 1375219831250 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168257, + "guid": null, + "name": "Folder-4176872196184557", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219903580, + "created_on": 1375219903580 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168258, + "guid": null, + "name": "Folder-2533623385053513", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219904080, + "created_on": 1375219904080 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168259, + "guid": null, + "name": "Folder-936070451336167", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219904500, + "created_on": 1375219904500 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168260, + "guid": null, + "name": "Folder-20094742190610604", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219905610, + "created_on": 1375219905610 + }, + { + "folder_count": 0, + "file_count": 0, + "id": 168261, + "guid": null, + "name": "Folder-0712150450421678", + "access": "Private", + "owner": null, + "sharers": null, + "dir": true, + "modified_on": 1375219906343, + "created_on": 1375219906343 + } + ], + "files": [ + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/427efeaa4124079ad7219952f263d677d17a364c10b27abcffe7965e6a9d773a", + "version": 576, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 317841, + "guid": "427efeaa4124079ad7219952f263d677d17a364c10b27abcffe7965e6a9d773a", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373691712393, + "created_on": 1373691712393 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5dde23894e4c7826a4d03bd7bfe6fc5cd8724544b5e54c993c083fbc15ae112f", + "version": 197, + "type": "Cells", + "file_type": "Xls", + "size": 6656, + "thumbnail": null, + "supported_types": null, + "id": 317847, + "guid": "5dde23894e4c7826a4d03bd7bfe6fc5cd8724544b5e54c993c083fbc15ae112f", + "name": "document_one.xls", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373692449703, + "created_on": 1373692449703 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4d6b8d3d4611de01bdeab73a76a474ae443e601ef32361eb25c906c1495af2a8", + "version": 154, + "type": "Image", + "file_type": "Png", + "size": 4659, + "thumbnail": null, + "supported_types": null, + "id": 317848, + "guid": "4d6b8d3d4611de01bdeab73a76a474ae443e601ef32361eb25c906c1495af2a8", + "name": "document_one.png", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373692567847, + "created_on": 1373692567847 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc", + "version": 1444, + "type": "Pdf", + "file_type": "Pdf", + "size": 109410, + "thumbnail": null, + "supported_types": null, + "id": 317869, + "guid": "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc", + "name": "document_one_with_fields.pdf", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373693505750, + "created_on": 1373693505750 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e05993ce732558e9d4ccb0157ec4c6ab262135cbd22eb1d113af5ce4368a1fff", + "version": 143, + "type": "Words", + "file_type": "Docx", + "size": 3418, + "thumbnail": null, + "supported_types": null, + "id": 318159, + "guid": "e05993ce732558e9d4ccb0157ec4c6ab262135cbd22eb1d113af5ce4368a1fff", + "name": "document_one.docx", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373695883333, + "created_on": 1373695883333 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7b9b09ec1a4d6b261255b5d0c985e9a15516f0a0f474d25b8d982efe1aed8a44", + "version": 27, + "type": "Undefined", + "file_type": "Zip", + "size": 1469, + "thumbnail": null, + "supported_types": null, + "id": 318325, + "guid": "7b9b09ec1a4d6b261255b5d0c985e9a15516f0a0f474d25b8d982efe1aed8a44", + "name": "document_one.zip", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697186960, + "created_on": 1373697186960 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/613864359825f790eacbdd160b26284a23192b45f6d2d697a9574d82d57848e5", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318326, + "guid": "613864359825f790eacbdd160b26284a23192b45f6d2d697a9574d82d57848e5", + "name": "document_two_14917076209276459.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697194287, + "created_on": 1373697194287 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/611872f2b060cb6a8ef2e39967ce200ee26336c9f2de403f389c2632eaec28a9", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318327, + "guid": "611872f2b060cb6a8ef2e39967ce200ee26336c9f2de403f389c2632eaec28a9", + "name": "document_two_07633855500615394.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697195753, + "created_on": 1373697195753 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/8b915bf879671e888ec3bfe957a72173379c97459d7615fd1540b3fd5069fc5f", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318328, + "guid": "8b915bf879671e888ec3bfe957a72173379c97459d7615fd1540b3fd5069fc5f", + "name": "document_two_38540375764810886.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697197250, + "created_on": 1373697197250 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1edb0999a8ba37c027030f330e9ed8e5556eb4a7044125c14423b53e4fab66a7", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318329, + "guid": "1edb0999a8ba37c027030f330e9ed8e5556eb4a7044125c14423b53e4fab66a7", + "name": "document_two_8135565324117646.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697199180, + "created_on": 1373697199180 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2c383a14968f2c48b02d053fb13fa9c0aa31e95cb4ecd397f60b12729e5cb033", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318330, + "guid": "2c383a14968f2c48b02d053fb13fa9c0aa31e95cb4ecd397f60b12729e5cb033", + "name": "document_two_331759376343859.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697200647, + "created_on": 1373697200647 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6c39dfda4a14c351c709e40a7b6b4623d1810fe1fbc9bd49b0a4085e9b6f49b9", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318331, + "guid": "6c39dfda4a14c351c709e40a7b6b4623d1810fe1fbc9bd49b0a4085e9b6f49b9", + "name": "document_two_5539043372782825.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697202057, + "created_on": 1373697202057 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f924dfc022343b6f20652ad5d4c58dc04a787252de2faebeed1cd31cbfe38674", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318332, + "guid": "f924dfc022343b6f20652ad5d4c58dc04a787252de2faebeed1cd31cbfe38674", + "name": "document_two_516803914243529.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697203563, + "created_on": 1373697203563 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/147465f9c54471b74ee515b24a717748051d6a1b77f1d8863f30d7db53a7e786", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318333, + "guid": "147465f9c54471b74ee515b24a717748051d6a1b77f1d8863f30d7db53a7e786", + "name": "document_two_45141463120053715.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697205090, + "created_on": 1373697205090 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/28464ac6800d65c330036cd3d9879ec1cd44bca1656f948b991fc9c2a5c630d3", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318334, + "guid": "28464ac6800d65c330036cd3d9879ec1cd44bca1656f948b991fc9c2a5c630d3", + "name": "document_two_2647735430734468.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697206483, + "created_on": 1373697206483 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4dc71f382ee8df79a93a93ec245d492a7c7c9c4bbb4dc4a9ebdab3f44b34297e", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318335, + "guid": "4dc71f382ee8df79a93a93ec245d492a7c7c9c4bbb4dc4a9ebdab3f44b34297e", + "name": "document_two_3934542516901104.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697207983, + "created_on": 1373697207983 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0cf190b7aee2c5c9f92e248224e15e7ce516f3eac936b3c7f37d1d0d95f9ebb6", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318336, + "guid": "0cf190b7aee2c5c9f92e248224e15e7ce516f3eac936b3c7f37d1d0d95f9ebb6", + "name": "document_two_3871036264520912.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697209417, + "created_on": 1373697209417 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/50f8e58359bde786bb3a763092096ebb8f8bad849b13dafc693f0bcb3683949b", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318337, + "guid": "50f8e58359bde786bb3a763092096ebb8f8bad849b13dafc693f0bcb3683949b", + "name": "document_two_241310192460225.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697212583, + "created_on": 1373697212583 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/09b417b07bf9702af31793a690ae858c4ada99951365c31238e87c33c342040e", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318338, + "guid": "09b417b07bf9702af31793a690ae858c4ada99951365c31238e87c33c342040e", + "name": "document_two_29622579044853026.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697215940, + "created_on": 1373697215940 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/18c9ef8c5fc38ef1e5c53636505740183006489526bc98f588f81a52884b6622", + "version": 16, + "type": "Html", + "file_type": "Html", + "size": 2345, + "thumbnail": null, + "supported_types": null, + "id": 318341, + "guid": "18c9ef8c5fc38ef1e5c53636505740183006489526bc98f588f81a52884b6622", + "name": "document_one.html", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697328597, + "created_on": 1373697328597 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/03059eb8d3d74b22a79739c7b570d0760d6d319345ef65305d348ce8ffc33376", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318342, + "guid": "03059eb8d3d74b22a79739c7b570d0760d6d319345ef65305d348ce8ffc33376", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697344077, + "created_on": 1373697344077 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c9a9cb6581c5b643c752616b86bad8c13070966bb753227f912dd8784c5ec430", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318343, + "guid": "c9a9cb6581c5b643c752616b86bad8c13070966bb753227f912dd8784c5ec430", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697345533, + "created_on": 1373697345533 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b04f6c37141a68eb04ec5134d83593cf709bc2318a34512b5cc612f93f1f07e6", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318344, + "guid": "b04f6c37141a68eb04ec5134d83593cf709bc2318a34512b5cc612f93f1f07e6", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697347047, + "created_on": 1373697347047 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7098e0f205b0a48ea1d34eb23010ae34f6055bc49701fb1f11e2207d2b9ec11c", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318345, + "guid": "7098e0f205b0a48ea1d34eb23010ae34f6055bc49701fb1f11e2207d2b9ec11c", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697348553, + "created_on": 1373697348553 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1378b25122ae3bfc416f1e364744243eab95bb08f1c0332c769b7d06e546d787", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318346, + "guid": "1378b25122ae3bfc416f1e364744243eab95bb08f1c0332c769b7d06e546d787", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697350010, + "created_on": 1373697350010 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9b7a982401b9faf623f784d8b30867d3c6ef7d1a1b747f7d25d010b55d732d01", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318347, + "guid": "9b7a982401b9faf623f784d8b30867d3c6ef7d1a1b747f7d25d010b55d732d01", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697351420, + "created_on": 1373697351420 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2ea45a09c8eb9f6c6c363d6fb0013fbab47f672e4a7b807ad93780c5f5e8a19f", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318348, + "guid": "2ea45a09c8eb9f6c6c363d6fb0013fbab47f672e4a7b807ad93780c5f5e8a19f", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697353147, + "created_on": 1373697353147 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/018fa8d7201efd272d3eebc9a4b2c47010a24be8ff725a08d7e6c8dbae0d0bec", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318349, + "guid": "018fa8d7201efd272d3eebc9a4b2c47010a24be8ff725a08d7e6c8dbae0d0bec", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697354487, + "created_on": 1373697354487 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e2886dd5c1bcc2f4b8d15d5a2ad8afeaf10da71734ed4b9b7044aadf15c1d978", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318350, + "guid": "e2886dd5c1bcc2f4b8d15d5a2ad8afeaf10da71734ed4b9b7044aadf15c1d978", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697355790, + "created_on": 1373697355790 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f451b5bef4e0e901945223b615b99c68e608ec38466e600eef2dda8ccc7bc15c", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318351, + "guid": "f451b5bef4e0e901945223b615b99c68e608ec38466e600eef2dda8ccc7bc15c", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697357730, + "created_on": 1373697357730 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1e8a620650cc9e910f4636e6a8a386f0cab03adf48a5f806bc69cae2044c9cc2", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318352, + "guid": "1e8a620650cc9e910f4636e6a8a386f0cab03adf48a5f806bc69cae2044c9cc2", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697361203, + "created_on": 1373697361203 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7d702fb117f8022fd4d7427fe17107af380e778c5599ab4442e586f2a002f055", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318353, + "guid": "7d702fb117f8022fd4d7427fe17107af380e778c5599ab4442e586f2a002f055", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697365153, + "created_on": 1373697365153 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/acbb9ff16f648abbc54af79dfa21e9ced5f9c8c664d34fdc9780d407c354c28d", + "version": 588, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318354, + "guid": "acbb9ff16f648abbc54af79dfa21e9ced5f9c8c664d34fdc9780d407c354c28d", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697384580, + "created_on": 1373697384580 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b355e5f227cf479b83a64f4cc0f097e44dd0f5aacd7b8a31581234364ab5619b", + "version": 8, + "type": "Words", + "file_type": "Docx", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318355, + "guid": "b355e5f227cf479b83a64f4cc0f097e44dd0f5aacd7b8a31581234364ab5619b", + "name": "document_one.doc.docx", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697390747, + "created_on": 1373697390747 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d4ed9eaedea3bec2483ebb5913ed6db3f338521a50e79633826fc1e9fa2362a0", + "version": 8, + "type": "Cells", + "file_type": "Xlsx", + "size": 6369, + "thumbnail": null, + "supported_types": null, + "id": 318356, + "guid": "d4ed9eaedea3bec2483ebb5913ed6db3f338521a50e79633826fc1e9fa2362a0", + "name": "document_one.xlsx", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697403973, + "created_on": 1373697403973 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d791d8bfe715f606a44029f542a6e95c2bccc410cf01d431479e9324d8fd5f08", + "version": 8, + "type": "Slides", + "file_type": "Ppt", + "size": 71680, + "thumbnail": null, + "supported_types": null, + "id": 318357, + "guid": "d791d8bfe715f606a44029f542a6e95c2bccc410cf01d431479e9324d8fd5f08", + "name": "document_one.ppt", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697407530, + "created_on": 1373697407530 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e6d96182cdabd2c884a8cbb91b0f20225e01fc3f39400c2de15a98631423b255", + "version": 8, + "type": "Image", + "file_type": "Jpg", + "size": 6648, + "thumbnail": null, + "supported_types": null, + "id": 318358, + "guid": "e6d96182cdabd2c884a8cbb91b0f20225e01fc3f39400c2de15a98631423b255", + "name": "document_one.jpg", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373697416207, + "created_on": 1373697416207 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/637cb4760e16d65bfa0d4d42bf603c43b10231650a3bbef9fa7522d0655d5907", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318828, + "guid": "637cb4760e16d65bfa0d4d42bf603c43b10231650a3bbef9fa7522d0655d5907", + "name": "document_two_4510667661207578.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744737860, + "created_on": 1373744737860 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/68d713d09db61b0ed2c1f1bbf04b03d9b40bf9aa99f00ae05e0b438fc2b83bb0", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318829, + "guid": "68d713d09db61b0ed2c1f1bbf04b03d9b40bf9aa99f00ae05e0b438fc2b83bb0", + "name": "document_two_18861854462643202.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744739123, + "created_on": 1373744739123 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/28f3c5c5f063a0dce4cf1b4ea6603ec097016d73ca4ec706729c9c99949586d6", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318830, + "guid": "28f3c5c5f063a0dce4cf1b4ea6603ec097016d73ca4ec706729c9c99949586d6", + "name": "document_two_5878348978353348.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744740433, + "created_on": 1373744740433 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/045b093a8cc97e664b95fe3acd484d97a42f7638f1145428d8fd466e1ead1a29", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318831, + "guid": "045b093a8cc97e664b95fe3acd484d97a42f7638f1145428d8fd466e1ead1a29", + "name": "document_two_4162886225639224.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744741960, + "created_on": 1373744741960 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2e1c96f21e988f32cdb3fccbb954c7d60cc88c2c3808d7231aeb0ed09d6da5a5", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318832, + "guid": "2e1c96f21e988f32cdb3fccbb954c7d60cc88c2c3808d7231aeb0ed09d6da5a5", + "name": "document_two_6285242736562301.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744743350, + "created_on": 1373744743350 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/303e8bb715d20a9751c12621d5daffde0ab77806ab6f4729b1833b4372c53781", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318833, + "guid": "303e8bb715d20a9751c12621d5daffde0ab77806ab6f4729b1833b4372c53781", + "name": "document_two_33661330878841667.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744744980, + "created_on": 1373744744980 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4cb70ef615387a3b72302d36928b752b462179a72b93db237237afbc5d937fce", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318834, + "guid": "4cb70ef615387a3b72302d36928b752b462179a72b93db237237afbc5d937fce", + "name": "document_two_6669058963221162.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744746287, + "created_on": 1373744746287 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/02d9faf196108cbf737d79e68fde812dcf4f0da0863d22703b822ab10f82bf12", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318835, + "guid": "02d9faf196108cbf737d79e68fde812dcf4f0da0863d22703b822ab10f82bf12", + "name": "document_two_8038886715108213.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744747653, + "created_on": 1373744747653 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5e40a1d69c1dc2c2c5fda85c92f4ee02996c24bc589280efbb495605cc77ffa6", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318836, + "guid": "5e40a1d69c1dc2c2c5fda85c92f4ee02996c24bc589280efbb495605cc77ffa6", + "name": "document_two_2827446678218579.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744749403, + "created_on": 1373744749403 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0c20d28d9fb9becc264f3bb0fb917a2fad027e2f8f0ca65e86b3540c66f73309", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318837, + "guid": "0c20d28d9fb9becc264f3bb0fb917a2fad027e2f8f0ca65e86b3540c66f73309", + "name": "document_two_5388022309544765.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744750907, + "created_on": 1373744750907 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/99b7a04d2e0d2412f8d14757bed99c5291b41c01323d80e4bae69cff4216ac23", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318838, + "guid": "99b7a04d2e0d2412f8d14757bed99c5291b41c01323d80e4bae69cff4216ac23", + "name": "document_two_3955262553333476.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744752440, + "created_on": 1373744752440 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/601d8635835d73a45369dc7fd3b7a342dc32f6d0b52fac31c0d80ff3c4a7492d", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318839, + "guid": "601d8635835d73a45369dc7fd3b7a342dc32f6d0b52fac31c0d80ff3c4a7492d", + "name": "document_two_12251805009112726.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744754537, + "created_on": 1373744754537 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/862788382a3b37f7703a133958e3e4d179e887a76cab7d80034ef6c531bdcbe6", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318840, + "guid": "862788382a3b37f7703a133958e3e4d179e887a76cab7d80034ef6c531bdcbe6", + "name": "document_two_01651939188194529.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744756770, + "created_on": 1373744756770 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/af53edbf2b415b98692d0badeba75785ce9f54c0d703ffce88b7e7eb570557fe", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318843, + "guid": "af53edbf2b415b98692d0badeba75785ce9f54c0d703ffce88b7e7eb570557fe", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744870113, + "created_on": 1373744870113 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/729945638aa4bed58d8bbc8ed13acbb37606206433086e0b61f1fae7c1c859c1", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318844, + "guid": "729945638aa4bed58d8bbc8ed13acbb37606206433086e0b61f1fae7c1c859c1", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744871653, + "created_on": 1373744871653 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4d80812a839fa6d4a7752533988bcacb7c7162cd1f6b4b7482774ca54de09323", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318845, + "guid": "4d80812a839fa6d4a7752533988bcacb7c7162cd1f6b4b7482774ca54de09323", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744873117, + "created_on": 1373744873117 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/8df948016b923b9ac606f06b7662ec17c7c844bf2cc6dc57a59e996fe94a431c", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318846, + "guid": "8df948016b923b9ac606f06b7662ec17c7c844bf2cc6dc57a59e996fe94a431c", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744874690, + "created_on": 1373744874690 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0cc3b0bdb811cb7e938d75ce1152dc2e42e76428206865fb95873bd1872b04cc", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318847, + "guid": "0cc3b0bdb811cb7e938d75ce1152dc2e42e76428206865fb95873bd1872b04cc", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744876113, + "created_on": 1373744876113 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5f4055f4076e439ebc121173c1c8eb3b9e08f0841c1f5a9d769cef598ae28813", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318848, + "guid": "5f4055f4076e439ebc121173c1c8eb3b9e08f0841c1f5a9d769cef598ae28813", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744877630, + "created_on": 1373744877630 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4ec5f1fc9d88a8f9d265d1f78678aeb74ff0981b2a27dce95944ab3ceb24c53d", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318849, + "guid": "4ec5f1fc9d88a8f9d265d1f78678aeb74ff0981b2a27dce95944ab3ceb24c53d", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744879053, + "created_on": 1373744879053 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/76ce629d2aee8189eaaa1f72ab22342c2dcdab589016c6f8cb5e0c1b96a9e709", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318850, + "guid": "76ce629d2aee8189eaaa1f72ab22342c2dcdab589016c6f8cb5e0c1b96a9e709", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744880523, + "created_on": 1373744880523 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d9f2db58d0b5f9eb4ff5c4e0e9cd13ae878e6961edfe73a911c5172020ca3444", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318851, + "guid": "d9f2db58d0b5f9eb4ff5c4e0e9cd13ae878e6961edfe73a911c5172020ca3444", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744881983, + "created_on": 1373744881983 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b23740d94db10cfb2ae046b3740d7633bd80e589fbd36af51477083a5e6725cc", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318852, + "guid": "b23740d94db10cfb2ae046b3740d7633bd80e589fbd36af51477083a5e6725cc", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744883493, + "created_on": 1373744883493 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a4ded01fee0eb30f1955afa3d053e23efff36b883367d299adee56accdb11ab9", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318853, + "guid": "a4ded01fee0eb30f1955afa3d053e23efff36b883367d299adee56accdb11ab9", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744885613, + "created_on": 1373744885613 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1a85b2dda70c93318d806ff94abede2cd5376d2dc4a3e5f6e020f1b4771bca57", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318854, + "guid": "1a85b2dda70c93318d806ff94abede2cd5376d2dc4a3e5f6e020f1b4771bca57", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744887773, + "created_on": 1373744887773 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/346f24d9ff20519ee11e1025ed7a04701d23b8554f8487424f36ba9d9569b7fc", + "version": 588, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 318855, + "guid": "346f24d9ff20519ee11e1025ed7a04701d23b8554f8487424f36ba9d9569b7fc", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373744907403, + "created_on": 1373744907403 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e0cc9c667cfbc6ac611052368451fcb82e4f8b82b2e34175edb2f817ab3a103f", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319354, + "guid": "e0cc9c667cfbc6ac611052368451fcb82e4f8b82b2e34175edb2f817ab3a103f", + "name": "document_two_8094120649118168.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784736483, + "created_on": 1373784736483 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/fef85d35751c06635fff101c82bd297b13be6d5c674fcc48f4e62023bea11887", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319355, + "guid": "fef85d35751c06635fff101c82bd297b13be6d5c674fcc48f4e62023bea11887", + "name": "document_two_7071721891295742.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784738020, + "created_on": 1373784738020 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/134d4585c7dbd20da7c8adb7ffebd5b01aca179344012b7d9ea26d18c2428493", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319356, + "guid": "134d4585c7dbd20da7c8adb7ffebd5b01aca179344012b7d9ea26d18c2428493", + "name": "document_two_16832645815847513.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784739570, + "created_on": 1373784739570 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/98563e53a2b8307de6511dd4ebc74b11a294e9d18b03c5886436c2fb60e5f0fd", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319357, + "guid": "98563e53a2b8307de6511dd4ebc74b11a294e9d18b03c5886436c2fb60e5f0fd", + "name": "document_two_41642710881156364.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784741110, + "created_on": 1373784741110 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f35d6c830e60586cd1283bf0c38a7d06b372aaadec1673dc97fb695e230546ff", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319358, + "guid": "f35d6c830e60586cd1283bf0c38a7d06b372aaadec1673dc97fb695e230546ff", + "name": "document_two_2633100124120564.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784742863, + "created_on": 1373784742863 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0325c89a54d7af4144d6bc77da63c8da39bd712c260bc02e2180422f56e3e0a4", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319359, + "guid": "0325c89a54d7af4144d6bc77da63c8da39bd712c260bc02e2180422f56e3e0a4", + "name": "document_two_905176742966635.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784744383, + "created_on": 1373784744383 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f339d39a43ea1c95a348962ac056099f41acdad413571f97887a4dea5f165bd4", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319360, + "guid": "f339d39a43ea1c95a348962ac056099f41acdad413571f97887a4dea5f165bd4", + "name": "document_two_7245007148712493.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784746100, + "created_on": 1373784746100 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/47cde51bbdff577655a2296aa4c87a3301110591c2b03019cf1f0186810aa4a6", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319361, + "guid": "47cde51bbdff577655a2296aa4c87a3301110591c2b03019cf1f0186810aa4a6", + "name": "document_two_8369773863724247.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784747750, + "created_on": 1373784747750 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a1ceffb8f5bd6b143c0bde402717bc202b610e05dac7b5c81d76688ab92cd158", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319362, + "guid": "a1ceffb8f5bd6b143c0bde402717bc202b610e05dac7b5c81d76688ab92cd158", + "name": "document_two_019952220702027623.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784749420, + "created_on": 1373784749420 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/38b617e0f5b5dc5dd42e39f423ac400a5c10bf1c60024f2352aeb11c38adf6d8", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319363, + "guid": "38b617e0f5b5dc5dd42e39f423ac400a5c10bf1c60024f2352aeb11c38adf6d8", + "name": "document_two_32596010075016446.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784751387, + "created_on": 1373784751387 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d09a569b0427f723fd99cf848ed840743779d7d9cc61617eabc17cbfd4534771", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319364, + "guid": "d09a569b0427f723fd99cf848ed840743779d7d9cc61617eabc17cbfd4534771", + "name": "document_two_22589979763153611.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784753477, + "created_on": 1373784753477 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/45c5370bc0a77e46ef9fbf68ad69e2bdd407587a253124f6997669dbf687af7b", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319365, + "guid": "45c5370bc0a77e46ef9fbf68ad69e2bdd407587a253124f6997669dbf687af7b", + "name": "document_two_603996453185336.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784755500, + "created_on": 1373784755500 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4591929e0aa0962091e5f0106a79bd09451057ea060f167da8c61fd85dec8020", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319366, + "guid": "4591929e0aa0962091e5f0106a79bd09451057ea060f167da8c61fd85dec8020", + "name": "document_two_026514624394248676.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784757643, + "created_on": 1373784757643 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/60cfd30ca8e0f77e2d0a06fcd5a63e05e3f2f7e8b3a1a0ad1da216b325071990", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319369, + "guid": "60cfd30ca8e0f77e2d0a06fcd5a63e05e3f2f7e8b3a1a0ad1da216b325071990", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784880787, + "created_on": 1373784880787 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/ef6296b4a39b99c39f6f854c5337a15d2133d8698ac63488684e27294bba5778", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319370, + "guid": "ef6296b4a39b99c39f6f854c5337a15d2133d8698ac63488684e27294bba5778", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784882207, + "created_on": 1373784882207 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/25e08074d22448a464a9ae59c9bc79c4913de9158a370b299096023bdbc3f5de", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319371, + "guid": "25e08074d22448a464a9ae59c9bc79c4913de9158a370b299096023bdbc3f5de", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784883910, + "created_on": 1373784883910 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/31c764fe0ef20a05a63c5996e04cc5355d44c3ed7689425957aa36670818115f", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319372, + "guid": "31c764fe0ef20a05a63c5996e04cc5355d44c3ed7689425957aa36670818115f", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784885427, + "created_on": 1373784885427 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c1d08bf69f3b8ffe26e45adb8b8d89051a39b01cf82a43cd2d8fb6caebeae3ed", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319373, + "guid": "c1d08bf69f3b8ffe26e45adb8b8d89051a39b01cf82a43cd2d8fb6caebeae3ed", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784887020, + "created_on": 1373784887020 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d440963f92f9f1fa42d1df7d27c3ca5fd02c3c6c276c092a3cfc7fc0e02d3c83", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319374, + "guid": "d440963f92f9f1fa42d1df7d27c3ca5fd02c3c6c276c092a3cfc7fc0e02d3c83", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784888440, + "created_on": 1373784888440 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c495973c69397a2b54ded103360ccf3021639d06f6242838c609779d78217d0e", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319375, + "guid": "c495973c69397a2b54ded103360ccf3021639d06f6242838c609779d78217d0e", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784890003, + "created_on": 1373784890003 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/767de037d4d5f086864d94807ead1c564d01c9d31e0ec0ea3ba0d2bba9ccd4d4", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319376, + "guid": "767de037d4d5f086864d94807ead1c564d01c9d31e0ec0ea3ba0d2bba9ccd4d4", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784891457, + "created_on": 1373784891457 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/10495d89fbb82b165383e1245af6cedbd08045d672e84f2a242b9d0741804468", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319377, + "guid": "10495d89fbb82b165383e1245af6cedbd08045d672e84f2a242b9d0741804468", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784893347, + "created_on": 1373784893347 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/895657075d5902d6c7077a39f20759b2cdaf5d7b7a2b0ed6c5a48851b7876294", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319378, + "guid": "895657075d5902d6c7077a39f20759b2cdaf5d7b7a2b0ed6c5a48851b7876294", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784895253, + "created_on": 1373784895253 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9de1a5fefe28c3c69911088b913ba17b520634d9363784b536f85c0ba173222e", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319379, + "guid": "9de1a5fefe28c3c69911088b913ba17b520634d9363784b536f85c0ba173222e", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784897440, + "created_on": 1373784897440 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/fa0fa40229191c3e5aae250bb051bc9f8715889aecb8c794927b4e4301fccd53", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319380, + "guid": "fa0fa40229191c3e5aae250bb051bc9f8715889aecb8c794927b4e4301fccd53", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784899753, + "created_on": 1373784899753 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e154bd8dfebe7d76e75195c039fa56b886b5d7e70f35d1c40573591a3d195ad2", + "version": 972, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 319381, + "guid": "e154bd8dfebe7d76e75195c039fa56b886b5d7e70f35d1c40573591a3d195ad2", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373784915237, + "created_on": 1373784915237 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/894f4195017b1f355289c6922f728c2c3d75089d83724b520cc9844ba207a1bc", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320232, + "guid": "894f4195017b1f355289c6922f728c2c3d75089d83724b520cc9844ba207a1bc", + "name": "document_two_6287996521802866.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957970877, + "created_on": 1373957970877 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c0b8892ccf1faea16a1e5dec6330c4b99c1bdd456ad3223e571a04ed48ba193b", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320233, + "guid": "c0b8892ccf1faea16a1e5dec6330c4b99c1bdd456ad3223e571a04ed48ba193b", + "name": "document_two_7387778335434088.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957972957, + "created_on": 1373957972957 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/309cedadeecefbd15e75107faf2a50f46ddd7e4ad4118216777d4960013f2c96", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320234, + "guid": "309cedadeecefbd15e75107faf2a50f46ddd7e4ad4118216777d4960013f2c96", + "name": "document_two_33208753639099364.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957974870, + "created_on": 1373957974870 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/ea552d89d0bffebfc9b00f0655451123eff18838ff8d46f3bc68c05403026042", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320235, + "guid": "ea552d89d0bffebfc9b00f0655451123eff18838ff8d46f3bc68c05403026042", + "name": "document_two_5202270849933028.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957976893, + "created_on": 1373957976893 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0625d296a4485edcaa37967ea5ffe3535f4577a0aeeac91f6cf443bd3b47a6a9", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320236, + "guid": "0625d296a4485edcaa37967ea5ffe3535f4577a0aeeac91f6cf443bd3b47a6a9", + "name": "document_two_5464459672702546.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957978593, + "created_on": 1373957978593 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b61d53c29ac4980c1df69fabc3a9c87e8192a87238f4387bc6c10de5ddf849b4", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320237, + "guid": "b61d53c29ac4980c1df69fabc3a9c87e8192a87238f4387bc6c10de5ddf849b4", + "name": "document_two_9410707270407438.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957980483, + "created_on": 1373957980483 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/92f4af425fbc05dc38f75677b958dd49aa46d156c7038ca0bbbff44d5e4bd8e1", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320238, + "guid": "92f4af425fbc05dc38f75677b958dd49aa46d156c7038ca0bbbff44d5e4bd8e1", + "name": "document_two_7004820458686819.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957982330, + "created_on": 1373957982330 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/90e25a3d011d9f32d7b55cadde73f149151bcea05e5f9c9def6b5102113cb973", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320239, + "guid": "90e25a3d011d9f32d7b55cadde73f149151bcea05e5f9c9def6b5102113cb973", + "name": "document_two_8076668848491484.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957984153, + "created_on": 1373957984153 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7d3e76677529c6805696804873203a346ce8abae2207a70d54f901ee57b48cb1", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320240, + "guid": "7d3e76677529c6805696804873203a346ce8abae2207a70d54f901ee57b48cb1", + "name": "document_two_7464083741120656.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957986040, + "created_on": 1373957986040 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/24c898202e15997f1613ce2f1e67e42f228e32640f15a09131cc4b7af0a93953", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320241, + "guid": "24c898202e15997f1613ce2f1e67e42f228e32640f15a09131cc4b7af0a93953", + "name": "document_two_8990071797086692.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957987727, + "created_on": 1373957987727 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/72cd6fa1267cee7831cd27cc30aa644c2243138be5f3608b5142099529d76207", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320242, + "guid": "72cd6fa1267cee7831cd27cc30aa644c2243138be5f3608b5142099529d76207", + "name": "document_two_5133761621010619.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957989563, + "created_on": 1373957989563 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5542f77f9dacc821d8b54a9c8fd7076db2e816b73fb561770772c6ab3ee48e1f", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320243, + "guid": "5542f77f9dacc821d8b54a9c8fd7076db2e816b73fb561770772c6ab3ee48e1f", + "name": "document_two_3785647717555889.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957992113, + "created_on": 1373957992113 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/ec83e58454bbcc40d3fdfdb8d73c12a62d0660d40686f873d2b166028a44f065", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320244, + "guid": "ec83e58454bbcc40d3fdfdb8d73c12a62d0660d40686f873d2b166028a44f065", + "name": "document_two_48974519799060845.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373957995237, + "created_on": 1373957995237 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e7b92fab492e16108b5c1a31e19b041f74b393a6c017b5d3365103d18dd204e7", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320247, + "guid": "e7b92fab492e16108b5c1a31e19b041f74b393a6c017b5d3365103d18dd204e7", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958145047, + "created_on": 1373958145047 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4c45f0824e088a3c0885271e739136f04a50353a22665f87f9b62d5f8598ea92", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320248, + "guid": "4c45f0824e088a3c0885271e739136f04a50353a22665f87f9b62d5f8598ea92", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958146697, + "created_on": 1373958146697 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/268e0f07c0a749bdec04104796d7a4caec43b334f50b7e572f13de4eeb36f12c", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320249, + "guid": "268e0f07c0a749bdec04104796d7a4caec43b334f50b7e572f13de4eeb36f12c", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958148663, + "created_on": 1373958148663 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/486a2d0480c42938d34fa646c60701ea1f499db54f94ab147aeace0ea4e843c0", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320250, + "guid": "486a2d0480c42938d34fa646c60701ea1f499db54f94ab147aeace0ea4e843c0", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958150547, + "created_on": 1373958150547 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/88bcf4631845b8434527fb4d05bc2984dfbf81187aecb3fe2289bbc672651dee", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320251, + "guid": "88bcf4631845b8434527fb4d05bc2984dfbf81187aecb3fe2289bbc672651dee", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958152477, + "created_on": 1373958152477 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1ee3d028d96ac023b7fceb219309466fa691b81b2c50c2c296a2a311cf21ff91", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320252, + "guid": "1ee3d028d96ac023b7fceb219309466fa691b81b2c50c2c296a2a311cf21ff91", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958154230, + "created_on": 1373958154230 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6c99c1b2680c7aafca2a6ec67a101f2d0215c1dd24680969f6aa5c510b62fd18", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320253, + "guid": "6c99c1b2680c7aafca2a6ec67a101f2d0215c1dd24680969f6aa5c510b62fd18", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958156253, + "created_on": 1373958156253 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1ca6e34bb4b6ddef44e0104834fa304d1d1d2e42490761fbfa86b4908ba7d993", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320254, + "guid": "1ca6e34bb4b6ddef44e0104834fa304d1d1d2e42490761fbfa86b4908ba7d993", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958157993, + "created_on": 1373958157993 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2101eadc17732d575aab46070cf1f8f4579e8d72de17bab90af732b057453255", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320255, + "guid": "2101eadc17732d575aab46070cf1f8f4579e8d72de17bab90af732b057453255", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958159687, + "created_on": 1373958159687 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/951dfee06b1627127a4748a3e5f2c01fe8c7a88593186ed4fea3790c4da6b6bc", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320256, + "guid": "951dfee06b1627127a4748a3e5f2c01fe8c7a88593186ed4fea3790c4da6b6bc", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958161510, + "created_on": 1373958161510 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9a1e9489a59bebfbe12535863461c32a9c2d19fb4c120884bc33d22952e15a25", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320257, + "guid": "9a1e9489a59bebfbe12535863461c32a9c2d19fb4c120884bc33d22952e15a25", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958163907, + "created_on": 1373958163907 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b03a62c222d644363373e11fb9ec52aed2ba518434cb683eb925380666398727", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320258, + "guid": "b03a62c222d644363373e11fb9ec52aed2ba518434cb683eb925380666398727", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958166537, + "created_on": 1373958166537 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9c77841f4219871687f9a76001025df8d0e05a0fa5827eab821fdd35b583547c", + "version": 588, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320259, + "guid": "9c77841f4219871687f9a76001025df8d0e05a0fa5827eab821fdd35b583547c", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1373958186557, + "created_on": 1373958186557 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f81c269553ea70f4d9b94f1cc5b71d5a06b2e06f1aa380502f9ce4db62613845", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320729, + "guid": "f81c269553ea70f4d9b94f1cc5b71d5a06b2e06f1aa380502f9ce4db62613845", + "name": "document_two_3987293095386174.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038771000, + "created_on": 1374038771000 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/15be6b7c8ff3fddeb404db56390aa2fd1ab1617a2eebe7e306e8e1a3e02e020a", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320730, + "guid": "15be6b7c8ff3fddeb404db56390aa2fd1ab1617a2eebe7e306e8e1a3e02e020a", + "name": "document_two_5300449007252142.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038772633, + "created_on": 1374038772633 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d2dc9402d660a5de3c0212a728348ef2459a760d17abbc04d9a450245c030262", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320731, + "guid": "d2dc9402d660a5de3c0212a728348ef2459a760d17abbc04d9a450245c030262", + "name": "document_two_8117938095364376.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038774090, + "created_on": 1374038774090 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f6eadc9a33979491312666aef8e0ce6310472ce545f69fde2df55d9d5c9f24d1", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320732, + "guid": "f6eadc9a33979491312666aef8e0ce6310472ce545f69fde2df55d9d5c9f24d1", + "name": "document_two_8764094951006062.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038775557, + "created_on": 1374038775557 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/914b0bdc9337c846907daf7ea54a425ae1a14be94a6c16131c27672096913008", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320733, + "guid": "914b0bdc9337c846907daf7ea54a425ae1a14be94a6c16131c27672096913008", + "name": "document_two_013842925165870379.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038776863, + "created_on": 1374038776863 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7789e0ccad42b9ccb45f20594a7dbcf312ebc675c2df1f0460c1a983504f5a0b", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320734, + "guid": "7789e0ccad42b9ccb45f20594a7dbcf312ebc675c2df1f0460c1a983504f5a0b", + "name": "document_two_6512904172817816.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038778270, + "created_on": 1374038778270 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c17a8fa93fbe49c5a3506bd6e294a3d619ef627c6cb3a31e80de5d31b41bb7ed", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320735, + "guid": "c17a8fa93fbe49c5a3506bd6e294a3d619ef627c6cb3a31e80de5d31b41bb7ed", + "name": "document_two_7693233438618946.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038779793, + "created_on": 1374038779793 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/3a9dbe5a37068a1245b1558dd2f040907f2a2eb6d90f4c3c17cd066d65d489d8", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320736, + "guid": "3a9dbe5a37068a1245b1558dd2f040907f2a2eb6d90f4c3c17cd066d65d489d8", + "name": "document_two_26714194832755034.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038781447, + "created_on": 1374038781447 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5e0469ee98a238ce4b01b85216e024b48b6561d4bead9df309bad3dba84384cb", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320737, + "guid": "5e0469ee98a238ce4b01b85216e024b48b6561d4bead9df309bad3dba84384cb", + "name": "document_two_04681540638799808.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038782827, + "created_on": 1374038782827 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f8c4dee7af9261232759f33cc878719e5f5e992da97ad1471d7409613aa61196", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320738, + "guid": "f8c4dee7af9261232759f33cc878719e5f5e992da97ad1471d7409613aa61196", + "name": "document_two_47617690371044175.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038784300, + "created_on": 1374038784300 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7b9d60a971fec19e07a7ccb0861366dc577a229644d257ddc1c122d3968508f7", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320739, + "guid": "7b9d60a971fec19e07a7ccb0861366dc577a229644d257ddc1c122d3968508f7", + "name": "document_two_2886343422264893.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038785797, + "created_on": 1374038785797 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/87dee0d1c0ae3fea9dc5b76534a35cab67b94f08b23fde526c0ca3af91bceda0", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320740, + "guid": "87dee0d1c0ae3fea9dc5b76534a35cab67b94f08b23fde526c0ca3af91bceda0", + "name": "document_two_12276284877619814.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038788017, + "created_on": 1374038788017 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/71d9a47b8dbc287a4b89f805d5b254f525331499e1f79f43820252fb0ca7f1ed", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320741, + "guid": "71d9a47b8dbc287a4b89f805d5b254f525331499e1f79f43820252fb0ca7f1ed", + "name": "document_two_46606121020446056.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038790287, + "created_on": 1374038790287 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5fe682d4d3b5870d357d036f73101331ddfc90c69314643fd4811285eae5439b", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320744, + "guid": "5fe682d4d3b5870d357d036f73101331ddfc90c69314643fd4811285eae5439b", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038940560, + "created_on": 1374038940560 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/25a4a04585b16d632db24276bbf2a733c40fd8696513fe5b8a90eb31e3d499f4", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320745, + "guid": "25a4a04585b16d632db24276bbf2a733c40fd8696513fe5b8a90eb31e3d499f4", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038942190, + "created_on": 1374038942190 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/02672a6b9f6d92adee5cebc2612c252b93e4c5cea924e8459b022a2ca50cb066", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320746, + "guid": "02672a6b9f6d92adee5cebc2612c252b93e4c5cea924e8459b022a2ca50cb066", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038943737, + "created_on": 1374038943737 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d43ecd64bae373e96abb9b0ebbc863eb5f28f61ab3f152677e434b7938a64d75", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320747, + "guid": "d43ecd64bae373e96abb9b0ebbc863eb5f28f61ab3f152677e434b7938a64d75", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038945283, + "created_on": 1374038945283 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b89e4f563a5b5d26d3ba10526b7541628b6be767a4820770dc594e52803ae2f1", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320748, + "guid": "b89e4f563a5b5d26d3ba10526b7541628b6be767a4820770dc594e52803ae2f1", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038947010, + "created_on": 1374038947010 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/70b9941a4d86a3134a8c749d387ec3a510d71d6874cad809f72a2b95989f3dd2", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320749, + "guid": "70b9941a4d86a3134a8c749d387ec3a510d71d6874cad809f72a2b95989f3dd2", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038948787, + "created_on": 1374038948787 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/40d921b1548c01cc15a94601d42cf1ac17dc5c3ac0e2b35b66a1c11e484ec270", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320750, + "guid": "40d921b1548c01cc15a94601d42cf1ac17dc5c3ac0e2b35b66a1c11e484ec270", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038950477, + "created_on": 1374038950477 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/74dc6050767df88fb5d4133c3189553cb86b7f4f16ed36230e94a2f4c00de9ff", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320751, + "guid": "74dc6050767df88fb5d4133c3189553cb86b7f4f16ed36230e94a2f4c00de9ff", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038952053, + "created_on": 1374038952053 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c74f27dac84c48586d5ba35a0dff632a3b65bb0b0ab917edb52702ffccc1678e", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320752, + "guid": "c74f27dac84c48586d5ba35a0dff632a3b65bb0b0ab917edb52702ffccc1678e", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038953820, + "created_on": 1374038953820 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/aaa0458e9f9fff2fe7dc6bdd2c2d48f54bb4841c66ccf54b7e3c501f8751150c", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320753, + "guid": "aaa0458e9f9fff2fe7dc6bdd2c2d48f54bb4841c66ccf54b7e3c501f8751150c", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038955563, + "created_on": 1374038955563 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5dfbb545c1e0f0ddba27746b976ad824c6e98e9e0f461718250a7dd519205068", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320754, + "guid": "5dfbb545c1e0f0ddba27746b976ad824c6e98e9e0f461718250a7dd519205068", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038957787, + "created_on": 1374038957787 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2896690be68815f83ebadce8dc2e129f3a7583d5ddd4f19a8a78815dda667448", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320755, + "guid": "2896690be68815f83ebadce8dc2e129f3a7583d5ddd4f19a8a78815dda667448", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038960090, + "created_on": 1374038960090 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/92734f6e6d3f1f46bbd922a876306857a99d3d81f22b31639cf89ed6cfe50df3", + "version": 588, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 320756, + "guid": "92734f6e6d3f1f46bbd922a876306857a99d3d81f22b31639cf89ed6cfe50df3", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374038979640, + "created_on": 1374038979640 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5b57eb136a99720cf91dead0d23f60c91ebe1d465126df3cbd2abe300c7d55e4", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324126, + "guid": "5b57eb136a99720cf91dead0d23f60c91ebe1d465126df3cbd2abe300c7d55e4", + "name": "document_two_546183531110386.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069563353, + "created_on": 1374069563353 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/69c375b9242c89cfba2e52368f3bb4f86d569be699abf66bb5974d2efc870113", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324127, + "guid": "69c375b9242c89cfba2e52368f3bb4f86d569be699abf66bb5974d2efc870113", + "name": "document_two_71851667843199.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069564933, + "created_on": 1374069564933 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/75b404c21680cbb2646ac7fdad63be57f596e920808dcf872f69fa4acc987c0b", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324128, + "guid": "75b404c21680cbb2646ac7fdad63be57f596e920808dcf872f69fa4acc987c0b", + "name": "document_two_036077105669900855.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069566577, + "created_on": 1374069566577 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a47fce2a5d89a426352bf6e0e87b6d4e09b1b3b10c29b95d6269d8bc20e4a6b8", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324129, + "guid": "a47fce2a5d89a426352bf6e0e87b6d4e09b1b3b10c29b95d6269d8bc20e4a6b8", + "name": "document_two_8385481283119234.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069568063, + "created_on": 1374069568063 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a6414eeeeb1b736b2e8ca7d1a98db9dc539306f593c1ff09f7718deebc489626", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324130, + "guid": "a6414eeeeb1b736b2e8ca7d1a98db9dc539306f593c1ff09f7718deebc489626", + "name": "document_two_8725186204647235.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069569733, + "created_on": 1374069569733 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b58706f42753f3b91b294af5267b1226829b632104d43055b3a4e2fdde07c247", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324131, + "guid": "b58706f42753f3b91b294af5267b1226829b632104d43055b3a4e2fdde07c247", + "name": "document_two_1191528801361964.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069571343, + "created_on": 1374069571343 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/be0e31a1f7a809fc0fcf3cf35fea93dd4b6a3279969d03fb1e8961131c6a72ff", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324132, + "guid": "be0e31a1f7a809fc0fcf3cf35fea93dd4b6a3279969d03fb1e8961131c6a72ff", + "name": "document_two_7172084068638404.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069572917, + "created_on": 1374069572917 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b086993584a6f97b29cde39a242464061df759b1e652f51f535fc2362c2d131d", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324133, + "guid": "b086993584a6f97b29cde39a242464061df759b1e652f51f535fc2362c2d131d", + "name": "document_two_7979114276017735.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069574757, + "created_on": 1374069574757 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e2da19749de123ee572f79c1ed0cadf74b0ec6acf9dad87fd0cbaf2458bd3145", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324134, + "guid": "e2da19749de123ee572f79c1ed0cadf74b0ec6acf9dad87fd0cbaf2458bd3145", + "name": "document_two_8536778446732003.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069576433, + "created_on": 1374069576433 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/78f987566582382a3f5e9afac6311b58e5d7d78af038edc2b9c053bfb362b0fd", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324135, + "guid": "78f987566582382a3f5e9afac6311b58e5d7d78af038edc2b9c053bfb362b0fd", + "name": "document_two_7630269548475452.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069578170, + "created_on": 1374069578170 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/38090f719d2dfbe81faf8779c811caa02b9c0c0ad9eedc9aea5b81252edecf97", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324136, + "guid": "38090f719d2dfbe81faf8779c811caa02b9c0c0ad9eedc9aea5b81252edecf97", + "name": "document_two_31134224690358736.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069579783, + "created_on": 1374069579783 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/60d70d6594f98479c248408463bd1b4cb7c3283c31f3043e0c72d90e98ae0cfe", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324137, + "guid": "60d70d6594f98479c248408463bd1b4cb7c3283c31f3043e0c72d90e98ae0cfe", + "name": "document_two_6241359224738737.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069582420, + "created_on": 1374069582420 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e058c5d1f143bef2314628cc8353dfe0611989a4705e31966b8746e0d01e4b65", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324138, + "guid": "e058c5d1f143bef2314628cc8353dfe0611989a4705e31966b8746e0d01e4b65", + "name": "document_two_39066011341341.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069584817, + "created_on": 1374069584817 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/8e34feeafecfada36ae3e2845f2649ef4ccbe928dafea0378a6d8ee5bf256fbb", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324141, + "guid": "8e34feeafecfada36ae3e2845f2649ef4ccbe928dafea0378a6d8ee5bf256fbb", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069754347, + "created_on": 1374069754347 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/ca7b8111fe7ee8e59338dae89b05e776165da8499521fcb3a0e69ec406ffbcd4", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324142, + "guid": "ca7b8111fe7ee8e59338dae89b05e776165da8499521fcb3a0e69ec406ffbcd4", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069756133, + "created_on": 1374069756133 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6e1eefb5a434e43a02e548f85e507a29b0cab372a921b9c040114c6d27e368d6", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324143, + "guid": "6e1eefb5a434e43a02e548f85e507a29b0cab372a921b9c040114c6d27e368d6", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069757813, + "created_on": 1374069757813 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d4ad552956725055393ba0be5461fa5cab610c5ded1f396454b656baafaa8904", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324144, + "guid": "d4ad552956725055393ba0be5461fa5cab610c5ded1f396454b656baafaa8904", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069759477, + "created_on": 1374069759477 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/56652a1ea4836df234788cf3f3cd30a1c2313cd4363e5837e4272cadf22acd9f", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324145, + "guid": "56652a1ea4836df234788cf3f3cd30a1c2313cd4363e5837e4272cadf22acd9f", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069761120, + "created_on": 1374069761120 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/75cffd7c10d36a163ceebae542aa8eb89b3e959c63bc28296ba1b108c9991abf", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324146, + "guid": "75cffd7c10d36a163ceebae542aa8eb89b3e959c63bc28296ba1b108c9991abf", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069762660, + "created_on": 1374069762660 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a1c179c3e6e576356a397e6af572f9510c72bc3edd7f1b8a0f67cad77a025d53", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324147, + "guid": "a1c179c3e6e576356a397e6af572f9510c72bc3edd7f1b8a0f67cad77a025d53", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069764243, + "created_on": 1374069764243 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4c631e870d7c617039cd271d637845bcff737b4751f21742a199e6fa16eb88bc", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324148, + "guid": "4c631e870d7c617039cd271d637845bcff737b4751f21742a199e6fa16eb88bc", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069765877, + "created_on": 1374069765877 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9777720ad88650bd58f0b5931f9761ae231825b4b785ef77bb110b70d4ff2460", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324149, + "guid": "9777720ad88650bd58f0b5931f9761ae231825b4b785ef77bb110b70d4ff2460", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069767417, + "created_on": 1374069767417 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/bb67edb4a45407e4f937c7ae3afc7883c5e6e7a805180823644e278142b39b3e", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324150, + "guid": "bb67edb4a45407e4f937c7ae3afc7883c5e6e7a805180823644e278142b39b3e", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069769100, + "created_on": 1374069769100 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/10b58382cf192a12e8f4b23ed19bb9f01fd58c477a62cd729b56432221fcb4b5", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324151, + "guid": "10b58382cf192a12e8f4b23ed19bb9f01fd58c477a62cd729b56432221fcb4b5", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069771487, + "created_on": 1374069771487 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/ad4f2b1bfc31aea35ea51aeb109a825258a21b7a23bb45d757eeab4042fc0b6a", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324152, + "guid": "ad4f2b1bfc31aea35ea51aeb109a825258a21b7a23bb45d757eeab4042fc0b6a", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069774063, + "created_on": 1374069774063 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/477aae535e84f303fe48ddf0bac7e88ba512b3c23e6080b9f7ff3de7abb0c848", + "version": 215, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324153, + "guid": "477aae535e84f303fe48ddf0bac7e88ba512b3c23e6080b9f7ff3de7abb0c848", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374069797717, + "created_on": 1374069797717 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4f6992852a6f023978e2b923bf028533f9f638eeaef107638bedf4e04d2f0c82", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324363, + "guid": "4f6992852a6f023978e2b923bf028533f9f638eeaef107638bedf4e04d2f0c82", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561393777, + "created_on": 1374561393777 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/89baa5804a14294ce859685b2933a745648a4bdbfbd381dd400bc50bb73b4760", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324364, + "guid": "89baa5804a14294ce859685b2933a745648a4bdbfbd381dd400bc50bb73b4760", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561397010, + "created_on": 1374561397010 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/4cd8d7ae5af8610d7f0122482756a458326718bea4689cfe36ee78e79408a7c8", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324365, + "guid": "4cd8d7ae5af8610d7f0122482756a458326718bea4689cfe36ee78e79408a7c8", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561400183, + "created_on": 1374561400183 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/232b8838c0e10b51b6cb2b7d4e25e69e5c2dc4e1c93f3da4839423a9dc0cc395", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324366, + "guid": "232b8838c0e10b51b6cb2b7d4e25e69e5c2dc4e1c93f3da4839423a9dc0cc395", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561403450, + "created_on": 1374561403450 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/805cc53804f83f85052e7fbc9e967ae186280508b4b82a630658c693b6ccc98e", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324367, + "guid": "805cc53804f83f85052e7fbc9e967ae186280508b4b82a630658c693b6ccc98e", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561406653, + "created_on": 1374561406653 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/18e4666bffefc233b9d654b777d65d2265811e767912518ead4bb2d7bba17d26", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324368, + "guid": "18e4666bffefc233b9d654b777d65d2265811e767912518ead4bb2d7bba17d26", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561409840, + "created_on": 1374561409840 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/413809d606f6d125daa324def5d011a7ea1bb3e4420117e0c8b4b952a0407465", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324369, + "guid": "413809d606f6d125daa324def5d011a7ea1bb3e4420117e0c8b4b952a0407465", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561413230, + "created_on": 1374561413230 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5a7459b4da8075cd74ecb08b8363852d2ea27a52c796ca100537c270785096ba", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324370, + "guid": "5a7459b4da8075cd74ecb08b8363852d2ea27a52c796ca100537c270785096ba", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561416370, + "created_on": 1374561416370 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/215bcea80b3a2cad3b440bd82f99bc6dce9b32dd59c3e40c60c60d3e93bb241c", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324371, + "guid": "215bcea80b3a2cad3b440bd82f99bc6dce9b32dd59c3e40c60c60d3e93bb241c", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561419730, + "created_on": 1374561419730 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b3da9275ff84d4f165d43daa7369936084bb5af7c1bc883abbac760fd8b8f4ed", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324372, + "guid": "b3da9275ff84d4f165d43daa7369936084bb5af7c1bc883abbac760fd8b8f4ed", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561422983, + "created_on": 1374561422983 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1dd15cce74f798d932974e72b4b653194a199d7d01334d4b62a4ee6d0f5c5323", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324373, + "guid": "1dd15cce74f798d932974e72b4b653194a199d7d01334d4b62a4ee6d0f5c5323", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561428123, + "created_on": 1374561428123 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/81449ff69c34e109309e87f095724926d1c4c9fc25879e56bb976082146ac60d", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324374, + "guid": "81449ff69c34e109309e87f095724926d1c4c9fc25879e56bb976082146ac60d", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561433217, + "created_on": 1374561433217 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a901aa69ec0bb39bde85018e5612f4333396f63202445e16c0f2e0ac7e22794d", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324382, + "guid": "a901aa69ec0bb39bde85018e5612f4333396f63202445e16c0f2e0ac7e22794d", + "name": "document_two_9105821141350019.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561842647, + "created_on": 1374561842647 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/3b92148cdd0d0fa8ed10ec58dfa5a4e13e37c3c11c226ae03cbed21ef4a8c233", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324383, + "guid": "3b92148cdd0d0fa8ed10ec58dfa5a4e13e37c3c11c226ae03cbed21ef4a8c233", + "name": "document_two_48217977946848267.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561845920, + "created_on": 1374561845920 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/30bc267a60376b5ed285b2913d50aa4e47ffa4c3b8e8859132e6371379ab9b24", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324384, + "guid": "30bc267a60376b5ed285b2913d50aa4e47ffa4c3b8e8859132e6371379ab9b24", + "name": "document_two_2280036680269043.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561849087, + "created_on": 1374561849087 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/98b544d0045e26d8dae517766a3794857a1357998cb56b1923b834af98f45504", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324385, + "guid": "98b544d0045e26d8dae517766a3794857a1357998cb56b1923b834af98f45504", + "name": "document_two_9255314716494248.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561852257, + "created_on": 1374561852257 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1a56cd89382d5769aece38110be7fcf5ccc6b3f764b3bde2ffb7a8daf0e67f74", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324386, + "guid": "1a56cd89382d5769aece38110be7fcf5ccc6b3f764b3bde2ffb7a8daf0e67f74", + "name": "document_two_6992242116168995.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561855860, + "created_on": 1374561855860 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/02858e5e87c5a1ae34875b229125fca25f05ffa064462364c8a7e494767a4c61", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324387, + "guid": "02858e5e87c5a1ae34875b229125fca25f05ffa064462364c8a7e494767a4c61", + "name": "document_two_4457139568099686.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561859100, + "created_on": 1374561859100 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/016771484567c69a67030e732922e9fd4ce87136e8e0288985f33fdfc7382768", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324388, + "guid": "016771484567c69a67030e732922e9fd4ce87136e8e0288985f33fdfc7382768", + "name": "document_two_36734156508560534.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561862437, + "created_on": 1374561862437 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/958316dbcb5a04183f915f7bc1f62e9b41ccde1714396c1defefec95392766df", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324389, + "guid": "958316dbcb5a04183f915f7bc1f62e9b41ccde1714396c1defefec95392766df", + "name": "document_two_7268641469729273.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561867033, + "created_on": 1374561867033 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e1ff9fd5326ff8bc417152effa9314cb955cc4c79f84977fec3f2a938aadee16", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324390, + "guid": "e1ff9fd5326ff8bc417152effa9314cb955cc4c79f84977fec3f2a938aadee16", + "name": "document_two_7106981492039196.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561870113, + "created_on": 1374561870113 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/3208115f8d41bee97da5f93f2c1257ba0f1f6e5d9fb421e8d498e20c1260250c", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324391, + "guid": "3208115f8d41bee97da5f93f2c1257ba0f1f6e5d9fb421e8d498e20c1260250c", + "name": "document_two_746390059479473.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561873190, + "created_on": 1374561873190 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/5efed72dd08c455fda0154c27be6d1e837a233bf1576e3f539df0ae7228a7201", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324392, + "guid": "5efed72dd08c455fda0154c27be6d1e837a233bf1576e3f539df0ae7228a7201", + "name": "document_two_24516472337404238.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561878120, + "created_on": 1374561878120 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/46ea4a922be2b5851450dfd8a467b709eb58c65ba7cffe7d7bb533f27177fe53", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 324393, + "guid": "46ea4a922be2b5851450dfd8a467b709eb58c65ba7cffe7d7bb533f27177fe53", + "name": "document_two_8629258141811105.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1374561883423, + "created_on": 1374561883423 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/78cec20167c99b0c8d176c334d2d6d9dfeb12ee3bb0fb47223e520aaa14d748a", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325115, + "guid": "78cec20167c99b0c8d176c334d2d6d9dfeb12ee3bb0fb47223e520aaa14d748a", + "name": "document_two_7580135438632268.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133281253, + "created_on": 1375133281253 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/64ad90ba2e18e87970e94ebed8bfda6a654ffb6f0a3a3c482b85673ec0551fc5", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325116, + "guid": "64ad90ba2e18e87970e94ebed8bfda6a654ffb6f0a3a3c482b85673ec0551fc5", + "name": "document_two_46070568832167147.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133282753, + "created_on": 1375133282753 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f69425976dfa1c3a9d50ff71cbdbc354f73564944f0912713517073594361005", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325117, + "guid": "f69425976dfa1c3a9d50ff71cbdbc354f73564944f0912713517073594361005", + "name": "document_two_40098624782501335.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133284317, + "created_on": 1375133284317 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f8572411876f955b45a966d9ffea0322557fa941e37263b562d1e2fd543b9be6", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325118, + "guid": "f8572411876f955b45a966d9ffea0322557fa941e37263b562d1e2fd543b9be6", + "name": "document_two_12644010704136976.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133285863, + "created_on": 1375133285863 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/75511753a092e69e44218453248ded84339423171734efb45e4d7075548f3de8", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325119, + "guid": "75511753a092e69e44218453248ded84339423171734efb45e4d7075548f3de8", + "name": "document_two_2883225570964185.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133287350, + "created_on": 1375133287350 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a53910a79eb768c49f8ff8eaa4fc5d9d1d99f2eb7a1e075d7bc934102e414092", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325120, + "guid": "a53910a79eb768c49f8ff8eaa4fc5d9d1d99f2eb7a1e075d7bc934102e414092", + "name": "document_two_41470115317551026.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133288817, + "created_on": 1375133288817 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0b9dbf8e71716c374cf768e774be7970a6a1c689234b1945649f96fb9c16caa5", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325121, + "guid": "0b9dbf8e71716c374cf768e774be7970a6a1c689234b1945649f96fb9c16caa5", + "name": "document_two_5631024333931623.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133290380, + "created_on": 1375133290380 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a95fc8759637c9b60a4d88c6638afc2b61650c272e7c284c25291035f58074b4", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325122, + "guid": "a95fc8759637c9b60a4d88c6638afc2b61650c272e7c284c25291035f58074b4", + "name": "document_two_1677329682659503.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133291897, + "created_on": 1375133291897 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/91379cb0624de579239a308363da189be69ad6b646cc07abfa6dd6c1ecdf31ee", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325123, + "guid": "91379cb0624de579239a308363da189be69ad6b646cc07abfa6dd6c1ecdf31ee", + "name": "document_two_30462141966376877.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133293427, + "created_on": 1375133293427 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/65a2287a3de268201560e625482d673c6dafddf060ad30aa13a6255e388ec9ae", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325124, + "guid": "65a2287a3de268201560e625482d673c6dafddf060ad30aa13a6255e388ec9ae", + "name": "document_two_1207457156411108.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133294910, + "created_on": 1375133294910 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/98bc81dbe914f0eb7269ff3e2694fd79fc50ebc234d2f3546e9b30f1b7a43011", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325125, + "guid": "98bc81dbe914f0eb7269ff3e2694fd79fc50ebc234d2f3546e9b30f1b7a43011", + "name": "document_two_671479730845118.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133296427, + "created_on": 1375133296427 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c2ad301bca5d79336ca761ac59c6433d59a07cb4ec057d60035e010c59e1b078", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325126, + "guid": "c2ad301bca5d79336ca761ac59c6433d59a07cb4ec057d60035e010c59e1b078", + "name": "document_two_9663399147147953.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133298707, + "created_on": 1375133298707 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7f288ce154a99a262ab559c4fcbfb05969a837c52051a41b29d8a3095d8a49bb", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325127, + "guid": "7f288ce154a99a262ab559c4fcbfb05969a837c52051a41b29d8a3095d8a49bb", + "name": "document_two_9476119967455388.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133300880, + "created_on": 1375133300880 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d53c3812a164796ee6e3497803e333655a466056d5b7d74e06e77709773cbd59", + "version": 6, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325135, + "guid": "d53c3812a164796ee6e3497803e333655a466056d5b7d74e06e77709773cbd59", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133573910, + "created_on": 1375133573910 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/7aa480ad9becc320a42ad3d7862adc33accf6daf38e2b62d8732bf08c6e0b223", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325136, + "guid": "7aa480ad9becc320a42ad3d7862adc33accf6daf38e2b62d8732bf08c6e0b223", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133693973, + "created_on": 1375133693973 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f8b473efb0b286ee777921250c3682cd5cc91dd7f9eff2ee4d56329c3c232f06", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325137, + "guid": "f8b473efb0b286ee777921250c3682cd5cc91dd7f9eff2ee4d56329c3c232f06", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133695427, + "created_on": 1375133695427 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/fd1d2c3ac3fe01195da83aff46f48258efa977d79633bd73883dd6edb354109e", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325138, + "guid": "fd1d2c3ac3fe01195da83aff46f48258efa977d79633bd73883dd6edb354109e", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133696927, + "created_on": 1375133696927 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/8220b32ff7c227ff87c84c4e1223721c6be69c0bb6c7dbbb41b2093795f23f92", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325139, + "guid": "8220b32ff7c227ff87c84c4e1223721c6be69c0bb6c7dbbb41b2093795f23f92", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133698443, + "created_on": 1375133698443 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/75e05f4dcffb922ce1524ee163f28f7216a86e5bcbc0591735ba587ac07b4bd6", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325140, + "guid": "75e05f4dcffb922ce1524ee163f28f7216a86e5bcbc0591735ba587ac07b4bd6", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133699880, + "created_on": 1375133699880 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/fddd7d42275cd2cedf475b3864bebb49d8f480a4f10af5036b234c1d0f3eedb9", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325141, + "guid": "fddd7d42275cd2cedf475b3864bebb49d8f480a4f10af5036b234c1d0f3eedb9", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133701363, + "created_on": 1375133701363 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/e930641b34f88369152fb74b804a6578ca048955f7d614429efbe7a6f1cde855", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325142, + "guid": "e930641b34f88369152fb74b804a6578ca048955f7d614429efbe7a6f1cde855", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133702940, + "created_on": 1375133702940 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/9b2d43d9cdb503c6c4686a89e72aefe0aa91f0f6a834cf83c961448da614aea9", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325143, + "guid": "9b2d43d9cdb503c6c4686a89e72aefe0aa91f0f6a834cf83c961448da614aea9", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133704393, + "created_on": 1375133704393 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/249e9418757f6a7c1a34f49b61dd1bf92f4b57da662272751dff325fb102e2be", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325144, + "guid": "249e9418757f6a7c1a34f49b61dd1bf92f4b57da662272751dff325fb102e2be", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133705987, + "created_on": 1375133705987 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c8bb3f7248f6664f299988430834531a020bddc105277bec483190a149597507", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325145, + "guid": "c8bb3f7248f6664f299988430834531a020bddc105277bec483190a149597507", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133708113, + "created_on": 1375133708113 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6fc3fc4b0cd92c11574509577470a66b49d63026726d8456231e8362ae096307", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325146, + "guid": "6fc3fc4b0cd92c11574509577470a66b49d63026726d8456231e8362ae096307", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133710410, + "created_on": 1375133710410 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/782ac0f36f2cc5804757cd7ae0ca3ab9a5f3ddb877f304859b5e63fce8f5ed28", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325147, + "guid": "782ac0f36f2cc5804757cd7ae0ca3ab9a5f3ddb877f304859b5e63fce8f5ed28", + "name": "document_two.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375133712520, + "created_on": 1375133712520 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/706370a9cde57d541f503e4fb595e1d78a3d4dfb81fc64da322116228daa93e8", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325664, + "guid": "706370a9cde57d541f503e4fb595e1d78a3d4dfb81fc64da322116228daa93e8", + "name": "document_two_37692914293512625.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219774877, + "created_on": 1375219774877 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/94f4cc031210e0fe8e78072ea05c4986458c2d079a4473d630981864203e0469", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325665, + "guid": "94f4cc031210e0fe8e78072ea05c4986458c2d079a4473d630981864203e0469", + "name": "document_two_2808004014197102.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219776533, + "created_on": 1375219776533 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/1abf1e62370ca3f739598e7097367750ff4040ce9201f42dfba062af42ca4b8c", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325666, + "guid": "1abf1e62370ca3f739598e7097367750ff4040ce9201f42dfba062af42ca4b8c", + "name": "document_two_010003126477858393.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219778343, + "created_on": 1375219778343 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/c4226237e7e404bca3f509d2e9385f6558aeda075190ea509e4a8f9bcfc01531", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325667, + "guid": "c4226237e7e404bca3f509d2e9385f6558aeda075190ea509e4a8f9bcfc01531", + "name": "document_two_26036347608521926.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219780127, + "created_on": 1375219780127 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/08de48518abeeec649b325b6fb0f5bc77ab511351307fb4a56bd584c2d645ef7", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325668, + "guid": "08de48518abeeec649b325b6fb0f5bc77ab511351307fb4a56bd584c2d645ef7", + "name": "document_two_31568933950539424.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219781627, + "created_on": 1375219781627 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/0d8faeff9211e5d5d23e2c1b3d4ccc0214b4937d62582c94fa5a888612504a55", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325669, + "guid": "0d8faeff9211e5d5d23e2c1b3d4ccc0214b4937d62582c94fa5a888612504a55", + "name": "document_two_5968490447821355.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219783203, + "created_on": 1375219783203 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/d10c9b93e1f02c262939a8b7810722f6f8f990a1064ee9503b7e4cbdbd3e20dc", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325670, + "guid": "d10c9b93e1f02c262939a8b7810722f6f8f990a1064ee9503b7e4cbdbd3e20dc", + "name": "document_two_03083327677670511.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219784737, + "created_on": 1375219784737 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/6199ea6d9f0e8da80515af497596b6b9b263ab72704a9c33aa6f74841a13f891", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325671, + "guid": "6199ea6d9f0e8da80515af497596b6b9b263ab72704a9c33aa6f74841a13f891", + "name": "document_two_03534836811724751.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219786283, + "created_on": 1375219786283 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2fbf80f9a110bfa9ccf8a46492710add295edbff047027be50e231dedbfc6e42", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325672, + "guid": "2fbf80f9a110bfa9ccf8a46492710add295edbff047027be50e231dedbfc6e42", + "name": "document_two_040631023498702734.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219787830, + "created_on": 1375219787830 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/f689a67623e6124c441fa9ac4dd24c83affcb4240bbadc93c3a4181666cbda2b", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325673, + "guid": "f689a67623e6124c441fa9ac4dd24c83affcb4240bbadc93c3a4181666cbda2b", + "name": "document_two_9685160771882539.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219789377, + "created_on": 1375219789377 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/223034eb4a1145d0ee29b7bcbebd8d1b6d5019e56b28e09fa6aa5d1f903f8fd7", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325674, + "guid": "223034eb4a1145d0ee29b7bcbebd8d1b6d5019e56b28e09fa6aa5d1f903f8fd7", + "name": "document_two_6175798864778747.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219790953, + "created_on": 1375219790953 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/53f2c44c3ff922d1423d7edde004fc65ea353727018fd30166d5f8b756136937", + "version": 1, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325675, + "guid": "53f2c44c3ff922d1423d7edde004fc65ea353727018fd30166d5f8b756136937", + "name": "document_two_3186832933123024.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219793797, + "created_on": 1375219793797 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/99dda2a0a1cbb75423a7c2e1c3267c11ac498f6690f56a57ce9fcdfa7f8949eb", + "version": 2, + "type": "Pdf", + "file_type": "Pdf", + "size": 6724, + "thumbnail": null, + "supported_types": null, + "id": 325676, + "guid": "99dda2a0a1cbb75423a7c2e1c3267c11ac498f6690f56a57ce9fcdfa7f8949eb", + "name": "document_one.pdf", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375219863907, + "created_on": 1375219863907 + }, + { + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355", + "version": 4, + "type": "Words", + "file_type": "Doc", + "size": 9216, + "thumbnail": null, + "supported_types": null, + "id": 325683, + "guid": "2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355", + "name": "document_one.doc", + "access": "Private", + "owner": null, + "sharers": null, + "dir": false, + "modified_on": 1375220069600, + "created_on": 1375220069600 + } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383333482683 + "composedOn": 1375220138804 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/MoveFile.json b/src/test/resources/responses/storage/MoveFile.json index 8121a2d..b015a06 100644 --- a/src/test/resources/responses/storage/MoveFile.json +++ b/src/test/resources/responses/storage/MoveFile.json @@ -2,34 +2,34 @@ "result": { "src_file": { "name": "document_one.doc", - "version": 1, + "version": 6, "size": 9216, "type": "Words", "type_str": "Words", "file_type_str": "Doc", "document_path": "document_one.doc", "access": "Private", - "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/f13866c25e153954a333bab1e32d16a71ae39872638c0ac66ef871cb65587271", + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355", "file_type": "Doc", - "id": 132457, - "guid": "f13866c25e153954a333bab1e32d16a71ae39872638c0ac66ef871cb65587271" + "id": 325683, + "guid": "2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355" }, "dst_file": { "name": "document_two.doc", - "version": 1, + "version": 6, "size": 9216, "type": "Words", "type_str": "Words", "file_type_str": "Doc", "document_path": "document_two.doc", "access": "Private", - "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/f13866c25e153954a333bab1e32d16a71ae39872638c0ac66ef871cb65587271", + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355", "file_type": "Doc", - "id": 132457, - "guid": "f13866c25e153954a333bab1e32d16a71ae39872638c0ac66ef871cb65587271" + "id": 325683, + "guid": "2293d1911db1d145b2159356eba40474a9cddd4a265b077e21130c919024d355" } }, "status": "Ok", "error_message": null, - "composedOn": 1383333501557 + "composedOn": 1375220188945 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/MoveFolder.json b/src/test/resources/responses/storage/MoveFolder.json index 72c22bb..95c0ecc 100644 --- a/src/test/resources/responses/storage/MoveFolder.json +++ b/src/test/resources/responses/storage/MoveFolder.json @@ -1,9 +1,9 @@ { "result": { - "from_path": "Folder-437802616248015", - "to_path": "NewFolder-437802616248015" + "from_path": "Folder-37321294257731785", + "to_path": "NewFolder-37321294257731785" }, "status": "Ok", "error_message": null, - "composedOn": 1383333530032 + "composedOn": 1375220243726 } \ No newline at end of file diff --git a/src/test/resources/responses/storage/MoveToTrash.json b/src/test/resources/responses/storage/MoveToTrash.json index 34af66c..b5217be 100644 --- a/src/test/resources/responses/storage/MoveToTrash.json +++ b/src/test/resources/responses/storage/MoveToTrash.json @@ -5,5 +5,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383333544266 + "composedOn": 1375220285023 } \ 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/Upload.json b/src/test/resources/responses/storage/Upload.json index f0ca34a..fe743eb 100644 --- a/src/test/resources/responses/storage/Upload.json +++ b/src/test/resources/responses/storage/Upload.json @@ -1,18 +1,17 @@ { "result": { "adj_name": "document_one.doc.docx", - "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/894492ba27cd6922e3a9beaed0543932a89998ed995e2e94634b2fd549e3f9d4", + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/b355e5f227cf479b83a64f4cc0f097e44dd0f5aacd7b8a31581234364ab5619b", "type": "Words", "file_type": "Docx", "size": 9216, - "version": 1, - "view_job_id": 128734, - "thumbnail": null, - "upload_time": 1383333548617, - "id": 132472, - "guid": "894492ba27cd6922e3a9beaed0543932a89998ed995e2e94634b2fd549e3f9d4" + "version": 9, + "view_job_id": 802659, + "thumbnail": "/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAQCAwMDAgQDAwMEBAQEBQkGBQUFBQsICAYJDQsNDQ0LDAwOEBQRDg8TDwwMEhgSExUWFxcXDhEZGxkWGhQWFxb/2wBDAQQEBAUFBQoGBgoWDwwPFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhb/wAARCAC+AIIDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD7+ooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqlremW+qQRxXDzoIpBIphmaNgR05HNXaKAMGLwnZJLJJ/aOrs8mfma/kLKP7oOc49qu6do1vZalJfR3N7JJIpUpNdO8YzjJCk4B+UdPf1rRooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP//Z", + "id": 318355, + "guid": "b355e5f227cf479b83a64f4cc0f097e44dd0f5aacd7b8a31581234364ab5619b" }, "status": "Ok", "error_message": null, - "composedOn": 1383333548484 + "composedOn": 1375220317023 } \ 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/storage/UploadWeb.json b/src/test/resources/responses/storage/UploadWeb.json index ab87c5f..4ff975a 100644 --- a/src/test/resources/responses/storage/UploadWeb.json +++ b/src/test/resources/responses/storage/UploadWeb.json @@ -1,18 +1,17 @@ { "result": { "adj_name": null, - "url": "https://stage-api-groupdocs.dynabic.com/v2.0/shared/files/f2dfb1b9e12578b3e20ee6139c378cede6584f8702ddeb3a427b32d757830553", + "url": "https://dev-api-groupdocs.dynabic.com/v2.0/shared/files/a9f39896803b5ce6aa520545d5fc0b664a3e1c067ecdc28e1e26c2339773e2d7", "type": "Html", "file_type": "Html", "size": 0, "version": 1, "view_job_id": null, "thumbnail": null, - "upload_time": -62135596800000, - "id": 132482, - "guid": "f2dfb1b9e12578b3e20ee6139c378cede6584f8702ddeb3a427b32d757830553" + "id": 325699, + "guid": "a9f39896803b5ce6aa520545d5fc0b664a3e1c067ecdc28e1e26c2339773e2d7" }, "status": "Ok", "error_message": null, - "composedOn": 1383333578591 + "composedOn": 1375220376632 } \ No newline at end of file diff --git a/src/test/resources/responses/system/GetCountries.json b/src/test/resources/responses/system/GetCountries.json index ba730b4..2d3f851 100644 --- a/src/test/resources/responses/system/GetCountries.json +++ b/src/test/resources/responses/system/GetCountries.json @@ -188,7 +188,7 @@ "Name": "Cuba" }, { - "Name": "Curaçao" + "Name": "Curaçao" }, { "Name": "Cyprus" @@ -569,7 +569,7 @@ "Name": "Rwanda" }, { - "Name": "Saint Barthélemy" + "Name": "Saint Barthélemy" }, { "Name": "Saint Helena" @@ -755,5 +755,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383333587136 + "composedOn": 1375220411945 } \ No newline at end of file diff --git a/src/test/resources/responses/system/GetStates.json b/src/test/resources/responses/system/GetStates.json index 707dbb2..494655b 100644 --- a/src/test/resources/responses/system/GetStates.json +++ b/src/test/resources/responses/system/GetStates.json @@ -44,7 +44,7 @@ "Name": "Tsjeljabinsk" }, { - "Name": "Zabaïkalski" + "Name": "Zabaïkalski" }, { "Name": "Chukotskiy Avtonomnyy Okrug" @@ -80,7 +80,7 @@ "Name": "Kaluga" }, { - "Name": "Kamchatskaya Oblast�" + "Name": "Kamchatskaya Oblast�" }, { "Name": "Karachayevo-Cherkesiya" @@ -176,7 +176,7 @@ "Name": "Penza" }, { - "Name": "Permskaya Oblast�" + "Name": "Permskaya Oblast�" }, { "Name": "Primorskiy" @@ -248,7 +248,7 @@ "Name": "Uljanovsk" }, { - "Name": "Ust�-Ordynskiy Buryatskiy Avtonomnyy Okrug" + "Name": "Ust�-Ordynskiy Buryatskiy Avtonomnyy Okrug" }, { "Name": "Vladimir" @@ -281,7 +281,7 @@ "Name": "Kamtsjatka" }, { - "Name": "Zabaykal’skiy Kray" + "Name": "Zabaykal’skiy Kray" }, { "Name": "Chechnya and Ingushetiya" @@ -293,5 +293,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383333621737 + "composedOn": 1375220474242 } \ 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 3e43637..334e616 100644 --- a/src/test/resources/responses/system/GetSubscriptionPlans.json +++ b/src/test/resources/responses/system/GetSubscriptionPlans.json @@ -1,39 +1,26 @@ { - "result": { - "metrics": [ + "result": { + "metrics": [ - ], - "subscription": { - "productId": 81295, - "name": "Gold", - "userCount": null, - "firstNameOnCard": "test", - "lastNameOnCard": "test", - "number": "XXXX-XXXX-XXXX-1111", - "expirationDate": "2015-10-31T23:59:00", - "cvv": null, - "address": { - "address1": "address", - "address2": null, - "city": null, - "company": null, - "country": "United States", - "email": null, - "fax": null, - "firstName": "test", - "lastName": "test", - "phone": null, - "state": null, - "zip": null - }, - "price": null, - "currencyCode": "USD", - "billingPeriod": 1, - "promoCode": null, - "nextAssesmentDate": "2014-10-08T07:18:06.0000000Z" - } - }, - "status": "Ok", - "error_message": null, - "composedOn": 1383333627108 + ], + "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/responses/system/GetUserPlan.json b/src/test/resources/responses/system/GetUserPlan.json index 7d79ef0..b833922 100644 --- a/src/test/resources/responses/system/GetUserPlan.json +++ b/src/test/resources/responses/system/GetUserPlan.json @@ -1,9 +1,9 @@ { "result": { - "ref_id": "81295", - "name": "Gold" + "ref_id": "460", + "name": "Enterprise" }, "status": "Ok", "error_message": null, - "composedOn": 1383333636464 + "composedOn": 1375220541804 } \ No newline at end of file diff --git a/src/test/resources/responses/system/GetUserSubscriptionPlan.json b/src/test/resources/responses/system/GetUserSubscriptionPlan.json index 195ff68..a11ffcc 100644 --- a/src/test/resources/responses/system/GetUserSubscriptionPlan.json +++ b/src/test/resources/responses/system/GetUserSubscriptionPlan.json @@ -1,10 +1,10 @@ { "result": { - "id": 81295, - "name": "Gold", + "id": 460, + "name": "Enterprise", "billing_address": null }, "status": "Ok", "error_message": null, - "composedOn": 1383333641230 + "composedOn": 1375220573976 } \ No newline at end of file diff --git a/src/test/resources/responses/user/GetAccountUsers.json b/src/test/resources/responses/user/GetAccountUsers.json index 797fd11..1185634 100644 --- a/src/test/resources/responses/user/GetAccountUsers.json +++ b/src/test/resources/responses/user/GetAccountUsers.json @@ -1,18 +1,18 @@ { "result": { - "max_users": null, + "max_users": 1, "users": [ { - "nickname": "api@groupdocs.com", - "firstname": null, - "lastname": null, + "nickname": "api-tests@groupdocs.com", + "firstname": "Pavel", + "lastname": "Strashniy", "pkey": null, - "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", + "pswd_salt": "uCXoBZH7pY1Sy8JOK+/BGw==", "claimed_id": null, - "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", + "token": null, "storage": null, "photo": null, - "active": false, + "active": null, "trial": null, "news_eanbled": null, "alerts_eanbled": null, @@ -55,9 +55,9 @@ "is_viewer_help_widget_enabled": null, "is_viewer_document_name_shown": null, "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1381234750823, - "signedinOn": 1382132641813, - "signin_count": 5, + "signedupOn": 1341805769540, + "signedinOn": 1374561348667, + "signin_count": null, "roles": [ { "id": 2, @@ -69,13 +69,1291 @@ "webhook_notification_retries": null, "webhook_notification_failed_recipients": null, "signature_color": null, - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" + "id": 167, + "guid": "ea103bbe8cb8ce07", + "primary_email": "api-tests@groupdocs.com" + }, + { + "nickname": "jqqqohn@smith.com", + "firstname": "Jqqohn", + "lastname": "Sqqmith", + "pkey": null, + "pswd_salt": "He3nBiASMNT0ftO7LlHu8Q==", + "claimed_id": null, + "token": "c4cfc796f62a941f90d6cc422c96c06eab26c64374460564f046d5dc39509af7", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360592448993, + "signedinOn": 1360592268993, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 507, + "guid": "5112b3d04417c35e", + "primary_email": "jqqqohn@smith.com" + }, + { + "nickname": "jqohn@smith.com", + "firstname": "Jqohn", + "lastname": "Sqmith", + "pkey": null, + "pswd_salt": "EoCHc2uwR9Io1aSkZkgbjg==", + "claimed_id": null, + "token": "ade55c7811a555254946b6aa65155a061b9009f6f2f13a55ecc773e388de1099", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360592569867, + "signedinOn": 1360592389867, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 510, + "guid": "2d58a57067966405", + "primary_email": "jqohn@smith.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "Cprc1fabRNGDe5poVc+2OA==", + "claimed_id": null, + "token": "4e6498a6f1efb63207b02cbf3ddf4b525ceafca0b48604f04e83d75b51b79003", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360601893713, + "signedinOn": 1360601713713, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 527, + "guid": "fc960ac1a7a5450f", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "ZvnPC2OL8WP2RUgETchYjg==", + "claimed_id": null, + "token": "216cb18b9cc8306245d6cb8bf87ecb192db8e0cab933409ea327aa1498d0d701", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360602124900, + "signedinOn": 1360601944900, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 528, + "guid": "60bb51a6baeb19a5", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "YIN/1Q1+qhtO+SU/0CIcyg==", + "claimed_id": null, + "token": "f12e93b29102f15affcb4a93f312e42bb6b0f49454d758fe5c1ec157b172eb41", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360602311023, + "signedinOn": 1360602131023, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 529, + "guid": "0e2ff44d5ec44477", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "b+h//g/k2CWKCnIC1iSU5w==", + "claimed_id": null, + "token": "90e0c5c5aa89d2d941917bb9e7519d2de8f66124cd82966d4dd324f7ef4c8d27", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360602389117, + "signedinOn": 1360602209117, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 530, + "guid": "05507877925e14e8", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "1fSk1vtRVdiW+bOK/RzMUg==", + "claimed_id": null, + "token": "7553e05d45db872c9ed5f87d256037e59ff14254820aff544d98af4223309780", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360602442243, + "signedinOn": 1360602262243, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 531, + "guid": "73be2c5ebabc3ceb", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "eZvhn0OIZkFmizf36iur0w==", + "claimed_id": null, + "token": "66a9776784c311ea94fcd1cfa5c940043cafc5dc95382ae227d465726f43d8ad", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360602553197, + "signedinOn": 1360602373197, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 532, + "guid": "23446b3c1c3aaf2e", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "gvgDae1thv5mC/g1kGyKIg==", + "claimed_id": null, + "token": "392c3a441d2f982a38d7d0098f72c04015e5e855a2dea95aac812492f503ec8b", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360602668290, + "signedinOn": 1360602488290, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 533, + "guid": "018f352ebd36b608", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "OQs7rAlxN74kIOXeMaKNiw==", + "claimed_id": null, + "token": "246803abd98951249ddc83c075f23cd15bfcd3015f9947f758a632410e99c520", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360602697070, + "signedinOn": 1360602517070, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 534, + "guid": "eb5fc95bd5fce212", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "FvqI+XfNfdykt+ZgxqPBsg==", + "claimed_id": null, + "token": "bad529303518ca2c9b5a0a8f81099a1cf42ef408517dabc36cb8571d36ebc716", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360602943070, + "signedinOn": 1360602763070, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 535, + "guid": "6bb455c0179544dc", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "9wB4rrguXqmoT59JlDgmAA==", + "claimed_id": null, + "token": "03906ab3f7fe1ec7f6b32c46ddb282fa36a66edce2b31ae6c9f7ba5915a49088", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360603000447, + "signedinOn": 1360602820447, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 536, + "guid": "8fbba9715b0e1e03", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "dzcbSCkfs9OGLurKCZLMgw==", + "claimed_id": null, + "token": "5cf83cfc614c1de11be58898159120b4aa95de14675ea11f9c1bf4047ee3dfb9", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360603207523, + "signedinOn": 1360603027523, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 537, + "guid": "138e4562b5c95ffe", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "fK+8A6Z+TYsrZhZLBNxjxw==", + "claimed_id": null, + "token": "db6c52cf779aacbb86eb45acc0c8ccc90174b5dfe49a65dc022b489cffc2e68f", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360603220633, + "signedinOn": 1360603040633, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 538, + "guid": "f0a7edd0eed71464", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "FuvAZ0nzu83T0UrSZ2l/eg==", + "claimed_id": null, + "token": "6f1db48751af05c7caa6f74dc0227664947e9ed54490c0e060f0bf06d2d7abf2", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360603494273, + "signedinOn": 1360603314273, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 539, + "guid": "73741a2ad02d1fe3", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "Np/yYpShDTkWugIQqnByRA==", + "claimed_id": null, + "token": "e03a9c57ccb543b7c813cfbb5f90ead697bac22839284a98dd3859f6ad04e33e", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360603607667, + "signedinOn": 1360603427667, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 540, + "guid": "8f6b800fadf67de2", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "l4dXTy74CAmuzNwQ4EmrgQ==", + "claimed_id": null, + "token": "0daf634bb5e9e806068e8554454b1c42a49b78f08aca9632cd78ccbf6e56bbbc", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360603698743, + "signedinOn": 1360603518743, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 541, + "guid": "f929a0f2722c74a6", + "primary_email": "test_email@email.com" + }, + { + "nickname": "test_email@email.com", + "firstname": "First name", + "lastname": "Last name", + "pkey": null, + "pswd_salt": "4Xe7uThfa2ZPdGHxb02RQg==", + "claimed_id": null, + "token": "206e82ff3824621a677f0f48f6daa1852640e9a8cf50d829d3a4f5f9e583b939", + "storage": null, + "photo": null, + "active": null, + "trial": null, + "news_eanbled": null, + "alerts_eanbled": null, + "support_eanbled": null, + "support_email": null, + "annotation_branded": null, + "viewer_branded": null, + "is_real_time_broadcast_enabled": null, + "is_scroll_broadcast_enabled": null, + "is_zoom_broadcast_enabled": null, + "annotation_logo": null, + "pointer_tool_cursor": null, + "annotation_header_options": null, + "is_annotation_navigation_widget_enabled": null, + "is_annotation_zoom_widget_enabled": null, + "is_annotation_download_widget_enabled": null, + "is_annotation_print_widget_enabled": null, + "is_annotation_help_widget_enabled": null, + "is_right_panel_enabled": null, + "is_thumbnails_panel_enabled": null, + "is_standard_header_always_shown": null, + "is_toolbar_enabled": null, + "is_text_annotation_button_enabled": null, + "is_rectangle_annotation_button_enabled": null, + "is_point_annotation_button_enabled": null, + "is_strikeout_annotation_button_enabled": null, + "is_polyline_annotation_button_enabled": null, + "is_typewriter_annotation_button_enabled": null, + "is_watermark_annotation_button_enabled": null, + "is_annotation_document_name_shown": null, + "annotation_navigation_icons": null, + "annotation_tool_icons": null, + "annotation_background_color": null, + "viewer_logo": null, + "viewer_options": null, + "is_viewer_navigation_widget_enabled": null, + "is_viewer_zoom_widget_enabled": null, + "is_viewer_download_widget_enabled": null, + "is_viewer_print_widget_enabled": null, + "is_viewer_help_widget_enabled": null, + "is_viewer_document_name_shown": null, + "isviewer_right_mouse_button_menu_enabled": null, + "signedupOn": 1360603745040, + "signedinOn": 1360603565040, + "signin_count": 1, + "roles": [ + { + "id": 2, + "name": "Admin" + } + ], + "signature_watermark_enabled": null, + "signature_desktop_notifications": null, + "webhook_notification_retries": null, + "webhook_notification_failed_recipients": null, + "signature_color": null, + "id": 542, + "guid": "59a446701dc9c9e6", + "primary_email": "test_email@email.com" } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383333646338 + "composedOn": 1375220606164 } \ No newline at end of file diff --git a/src/test/resources/responses/user/GetRoles.json b/src/test/resources/responses/user/GetRoles.json index db0c0f3..b6576cf 100644 --- a/src/test/resources/responses/user/GetRoles.json +++ b/src/test/resources/responses/user/GetRoles.json @@ -21,5 +21,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383333653529 + "composedOn": 1375220645210 } \ No newline at end of file diff --git a/src/test/resources/responses/user/GetStorageProviders.json b/src/test/resources/responses/user/GetStorageProviders.json index a577778..4ec8d3d 100644 --- a/src/test/resources/responses/user/GetStorageProviders.json +++ b/src/test/resources/responses/user/GetStorageProviders.json @@ -1,10 +1,33 @@ { "result": { "providers": [ - + { + "id": 38, + "provider": "Dropbox", + "type": "Shared", + "token": "PEFycmF5T2ZLZXlWYWx1ZU9mc3RyaW5nc3RyaW5nIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tLzIwMDMvMTAvU2VyaWFsaXphdGlvbi9BcnJheXMiIHhtbG5zOmk9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIj48S2V5VmFsdWVPZnN0cmluZ3N0cmluZz48S2V5PlRva2VuUHJvdkNvbmZpZ1R5cGU8L0tleT48VmFsdWU+QXBwTGltaXQuQ2xvdWRDb21wdXRpbmcuU2hhcnBCb3guU3RvcmFnZVByb3ZpZGVyLkRyb3BCb3guRHJvcEJveENvbmZpZ3VyYXRpb248L1ZhbHVlPjwvS2V5VmFsdWVPZnN0cmluZ3N0cmluZz48S2V5VmFsdWVPZnN0cmluZ3N0cmluZz48S2V5PlRva2VuQ3JlZFR5cGU8L0tleT48VmFsdWU+QXBwTGltaXQuQ2xvdWRDb21wdXRpbmcuU2hhcnBCb3guU3RvcmFnZVByb3ZpZGVyLkRyb3BCb3guRHJvcEJveFRva2VuPC9WYWx1ZT48L0tleVZhbHVlT2ZzdHJpbmdzdHJpbmc+PEtleVZhbHVlT2ZzdHJpbmdzdHJpbmc+PEtleT5Ub2tlbkRyb3BCb3hQYXNzd29yZDwvS2V5PjxWYWx1ZT4wN3lvbmNuZDllMXZ5YXg8L1ZhbHVlPjwvS2V5VmFsdWVPZnN0cmluZ3N0cmluZz48S2V5VmFsdWVPZnN0cmluZ3N0cmluZz48S2V5PlRva2VuRHJvcEJveFVzZXJuYW1lPC9LZXk+PFZhbHVlPnlnZzN6b2xsd2tiMG82OTwvVmFsdWU+PC9LZXlWYWx1ZU9mc3RyaW5nc3RyaW5nPjxLZXlWYWx1ZU9mc3RyaW5nc3RyaW5nPjxLZXk+VG9rZW5Ecm9wQm94QXBwS2V5PC9LZXk+PFZhbHVlPmtmbXdlaHZmdXNvdGNnazwvVmFsdWU+PC9LZXlWYWx1ZU9mc3RyaW5nc3RyaW5nPjxLZXlWYWx1ZU9mc3RyaW5nc3RyaW5nPjxLZXk+VG9rZW5Ecm9wQm94QXBwU2VjcmV0PC9LZXk+PFZhbHVlPnN3YXVybjVnbmZyYmgxczwvVmFsdWU+PC9LZXlWYWx1ZU9mc3RyaW5nc3RyaW5nPjwvQXJyYXlPZktleVZhbHVlT2ZzdHJpbmdzdHJpbmc+", + "publicKey": "kfmwehvfusotcgk", + "privateKey": "swaurn5gnfrbh1s", + "rootFolder": null, + "isPrimary": false, + "serviceHost": null, + "syncOptions": "None" + }, + { + "id": 54, + "provider": "BoxNet", + "type": "Shared", + "token": "Nnc2MDB3NzFncXBnMjk1YXVidXk2aGd1bnRnemlibWI=", + "publicKey": null, + "privateKey": "fyypebzyu9tpe4753utoe1fcru1bxdnz", + "rootFolder": null, + "isPrimary": false, + "serviceHost": null, + "syncOptions": "None" + } ] }, "status": "Ok", "error_message": null, - "composedOn": 1383333659048 + "composedOn": 1375220677851 } \ No newline at end of file diff --git a/src/test/resources/responses/user/GetUserProfile.json b/src/test/resources/responses/user/GetUserProfile.json index 02450fb..6dd32d6 100644 --- a/src/test/resources/responses/user/GetUserProfile.json +++ b/src/test/resources/responses/user/GetUserProfile.json @@ -1,16 +1,16 @@ { "result": { "user": { - "nickname": "api@groupdocs.com", - "firstname": null, - "lastname": null, - "pkey": "7a7573ecaebf57169ddffa51e0a31a64", - "pswd_salt": "TEm3NL1EC3vRO5PDCRRMUw==", + "nickname": "api-tests@groupdocs.com", + "firstname": "Pavel", + "lastname": "Strashniy", + "pkey": "808ee048519831cd47f2ae067b7f99b2", + "pswd_salt": "uCXoBZH7pY1Sy8JOK+/BGw==", "claimed_id": null, - "token": "0cf33f280861642eefbba16eac57a940cf4dc8505d152a645c63992a2add3388", + "token": null, "storage": null, "photo": null, - "active": false, + "active": null, "trial": null, "news_eanbled": null, "alerts_eanbled": null, @@ -53,21 +53,21 @@ "is_viewer_help_widget_enabled": null, "is_viewer_document_name_shown": null, "isviewer_right_mouse_button_menu_enabled": null, - "signedupOn": 1381234750823, - "signedinOn": 1382132641813, - "signin_count": 5, + "signedupOn": 1341805769540, + "signedinOn": 1374561348667, + "signin_count": null, "roles": null, "signature_watermark_enabled": null, "signature_desktop_notifications": null, - "webhook_notification_retries": 3, + "webhook_notification_retries": null, "webhook_notification_failed_recipients": null, "signature_color": null, - "id": 1085, - "guid": "6d75a4d4db83f6fc", - "primary_email": "api@groupdocs.com" + "id": 167, + "guid": "ea103bbe8cb8ce07", + "primary_email": "api-tests@groupdocs.com" } }, "status": "Ok", "error_message": null, - "composedOn": 1383333663561 + "composedOn": 1375220709851 } \ No newline at end of file diff --git a/src/test/resources/responses/user/GetUserRoles.json b/src/test/resources/responses/user/GetUserRoles.json index 84dcafc..cc293fa 100644 --- a/src/test/resources/responses/user/GetUserRoles.json +++ b/src/test/resources/responses/user/GetUserRoles.json @@ -9,5 +9,5 @@ }, "status": "Ok", "error_message": null, - "composedOn": 1383333671295 + "composedOn": 1375220747117 } \ No newline at end of file From 14b2b15e95fdb2ba54beea09cbd7e96e54d60d9e Mon Sep 17 00:00:00 2001 From: LinuxUbuntu Date: Wed, 12 Mar 2014 15:31:14 -0700 Subject: [PATCH 11/34] [maven-release-plugin] prepare release groupdocs-java-client-1.8.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 548fba6..daf8289 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.8.0-SNAPSHOT + 1.8.0 GroupDocsJava GroupDocs API library for Java From 1dab92f09832cd4efa4d8fa4f04a0a5974f667bb Mon Sep 17 00:00:00 2001 From: LinuxUbuntu Date: Wed, 12 Mar 2014 15:31:48 -0700 Subject: [PATCH 12/34] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index daf8289..f3d7a60 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.8.0 + 1.8.1-SNAPSHOT GroupDocsJava GroupDocs API library for Java From a9037650f0a9e39004fbebc1aba03ba9ef77e659 Mon Sep 17 00:00:00 2001 From: "aleksey.permyakov" Date: Wed, 26 Mar 2014 20:50:57 +0200 Subject: [PATCH 13/34] prepare release v1.8.1 --- src/main/java/com/groupdocs/sdk/api/ComparisonApi.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java b/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java index 79d1782..a069600 100644 --- a/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java +++ b/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java @@ -151,7 +151,7 @@ public ChangesResponse GetChanges (String resultFileId) throws ApiException { if(resultFileId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/comparison/{resultFileId}/changes".replace("*", ""); + String resourcePath = "/comparison/public/{resultFileId}/changes".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); From 01bc658b3bfdb1abe9e9415999c40ae029e3e315 Mon Sep 17 00:00:00 2001 From: LinuxUbuntu Date: Tue, 6 May 2014 01:49:09 -0700 Subject: [PATCH 14/34] [maven-release-plugin] prepare release groupdocs-java-client-1.8.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f3d7a60..cbfb58f 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.8.1-SNAPSHOT + 1.8.1 GroupDocsJava GroupDocs API library for Java From dde9e2a898ce4b67e1a559c0908d279521e32cd6 Mon Sep 17 00:00:00 2001 From: LinuxUbuntu Date: Tue, 6 May 2014 01:49:40 -0700 Subject: [PATCH 15/34] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cbfb58f..c437256 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.8.1 + 1.8.2-SNAPSHOT GroupDocsJava GroupDocs API library for Java From 54844090f4026395b2ba9d4465ecf32ce8641dda Mon Sep 17 00:00:00 2001 From: liosha Date: Tue, 6 May 2014 11:56:20 +0300 Subject: [PATCH 16/34] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1d5115b..11ee169 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.8.0. +Latest SDK version 1.8.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.8.0 + 1.8.1 ### Usage Example From bc2ed551c6bbbc1054d38057ceec3f697a685af5 Mon Sep 17 00:00:00 2001 From: Pavel-Teplitsky Date: Tue, 20 May 2014 15:33:11 +0300 Subject: [PATCH 17/34] updated SDK version 1.9.0 --- pom.xml | 2 +- .../java/com/groupdocs/sdk/api/AntApi.java | 37 +- .../java/com/groupdocs/sdk/api/AsyncApi.java | 8 +- .../com/groupdocs/sdk/api/ComparisonApi.java | 4 +- .../java/com/groupdocs/sdk/api/MergeApi.java | 32 + .../com/groupdocs/sdk/api/SignatureApi.java | 1582 +++---- .../groupdocs/sdk/model/AnnotationInfo.java | 45 + .../sdk/model/AnnotationReplyInfo.java | 9 + .../GetDocumentQuestionnairesResult.java | 9 + .../sdk/model/GetQuestionnairesResult.java | 9 + .../sdk/model/SignatureFormInfo.java | 9 + .../sdk/model/SignatureFormSettingsInfo.java | 9 + .../com/groupdocs/sdk/model/TemplateInfo.java | 9 + .../com/groupdocs/sdk/model/UserInfo.java | 108 + .../com/groupdocs/sdk/api/AntApiTest.java | 50 +- .../com/groupdocs/sdk/api/AsyncApiTest.java | 6 +- .../groupdocs/sdk/api/ComparisonApiTest.java | 6 +- .../groupdocs/sdk/api/JsonSerializerTest.java | 39 +- .../com/groupdocs/sdk/api/MergeApiTest.java | 35 +- .../groupdocs/sdk/api/SignatureApiTest.java | 507 ++- .../com/groupdocs/sdk/api/SystemApiTest.java | 56 +- .../ant/info/SetSharedLinkAccessRights | 2 +- .../payload/SetSharedLinkAccessRights.json | 9 +- .../ant/AddAnnotationCollaborator.json | 6 +- .../responses/ant/CreateAnnotationReply.json | 2 +- .../ant/GetAnnotationCollaborators.json | 3 +- .../responses/ant/ListAnnotations.json | 628 +-- .../ant/SetAnnotationCollaborators.json | 6 +- .../responses/ant/SetReviewerRights.json | 1 + .../merge/GetDocumentQuestionnaires.json | 3870 +++++++++-------- .../responses/merge/GetQuestionnaire.json | 13 +- .../merge/GetQuestionnaireExecution.json | 8 +- .../merge/GetQuestionnaireFields.json | 8 +- .../signature/GetSignatureFormFields.json | 87 +- .../signature/GetSignatureTemplateFields.json | 2 + .../PublicGetSignatureEnvelopeFields.json | 5 +- .../PublicGetSignatureFormFields.json | 3 + .../system/GetSubscriptionPlans.json | 46 +- 38 files changed, 3957 insertions(+), 3313 deletions(-) diff --git a/pom.xml b/pom.xml index c437256..d2460e6 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.8.2-SNAPSHOT + 1.9.0-SNAPSHOT GroupDocsJava GroupDocs API library for Java diff --git a/src/main/java/com/groupdocs/sdk/api/AntApi.java b/src/main/java/com/groupdocs/sdk/api/AntApi.java index 3bf2797..60ea99c 100644 --- a/src/main/java/com/groupdocs/sdk/api/AntApi.java +++ b/src/main/java/com/groupdocs/sdk/api/AntApi.java @@ -18,6 +18,7 @@ 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; @@ -153,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 ) { @@ -609,9 +640,9 @@ public SetReviewerRightsResponse SetReviewerRights (String userId, String fileId } } } - public GetSharedLinkAccessRightsResponse GetSharedLinkAccessRights (String userId, String fileId, AnnotationReviewerRights body) throws ApiException { + public GetSharedLinkAccessRightsResponse GetSharedLinkAccessRights (String userId, String fileId) throws ApiException { // verify required params are set - if(userId == null || fileId == null || body == null ) { + if(userId == null || fileId == null ) { throw new ApiException(400, "missing required params"); } String resourcePath = "/ant/{userId}/files/{fileId}/sharedLinkAccessRights".replace("*", ""); @@ -623,7 +654,7 @@ public GetSharedLinkAccessRightsResponse GetSharedLinkAccessRights (String userI Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ return (GetSharedLinkAccessRightsResponse) ApiInvoker.deserialize(response, "", GetSharedLinkAccessRightsResponse.class); } diff --git a/src/main/java/com/groupdocs/sdk/api/AsyncApi.java b/src/main/java/com/groupdocs/sdk/api/AsyncApi.java index ef7c25a..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, String jobName) 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}&jobName={jobName}".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); @@ -380,6 +380,10 @@ public GetJobsResponse GetJobs (String userId, String pageIndex, String pageSize 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 a069600..a1699cf 100644 --- a/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java +++ b/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java @@ -121,7 +121,7 @@ public FileStream DownloadResult (String resultFileId, String format) throws Api if(resultFileId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/comparison/{resultFileId}/download?format={format}".replace("*", ""); + String resourcePath = "/comparison/public/{resultFileId}/download?format={format}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -187,7 +187,7 @@ public ChangesResponse UpdateChanges (String resultFileId, List body if(resultFileId == null || body == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/comparison/{resultFileId}/changes".replace("*", ""); + String resourcePath = "/comparison/public/{resultFileId}/changes".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); diff --git a/src/main/java/com/groupdocs/sdk/api/MergeApi.java b/src/main/java/com/groupdocs/sdk/api/MergeApi.java index 2946ac7..42e6f02 100644 --- a/src/main/java/com/groupdocs/sdk/api/MergeApi.java +++ b/src/main/java/com/groupdocs/sdk/api/MergeApi.java @@ -25,6 +25,7 @@ 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; @@ -35,6 +36,7 @@ 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; @@ -1525,5 +1527,35 @@ public GetQuestionnaireDocumentResponse GetDocumentByQuestionnaire (String userI } } } + 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 5e6c0df..7980c4a 100644 --- a/src/main/java/com/groupdocs/sdk/api/SignatureApi.java +++ b/src/main/java/com/groupdocs/sdk/api/SignatureApi.java @@ -20,9 +20,9 @@ import com.groupdocs.sdk.common.FileStream; import com.groupdocs.sdk.model.SignatureTemplateRecipientsResponse; import com.groupdocs.sdk.model.SignatureStatusResponse; -import com.groupdocs.sdk.model.SignatureFormFieldLocationSettingsInfo; -import com.groupdocs.sdk.model.SignatureFormSettingsInfo; import com.groupdocs.sdk.model.SignatureContactResponse; +import com.groupdocs.sdk.model.SignatureFormSettingsInfo; +import com.groupdocs.sdk.model.SignatureFormFieldLocationSettingsInfo; import com.groupdocs.sdk.model.SignatureRolesResponse; import com.groupdocs.sdk.model.SignatureEnvelopeFieldsResponse; import com.groupdocs.sdk.model.PublicSignatureSignDocumentSignerSettingsInfo; @@ -35,8 +35,8 @@ import com.groupdocs.sdk.model.SignatureFieldSettingsInfo; import com.groupdocs.sdk.model.SignatureFormDocumentSettingsInfo; import com.groupdocs.sdk.model.SignatureEnvelopeResourcesResponse; -import com.groupdocs.sdk.model.SignatureTemplatesResponse; import com.groupdocs.sdk.model.SignatureEnvelopeDocumentsResponse; +import com.groupdocs.sdk.model.SignatureTemplatesResponse; import com.groupdocs.sdk.model.SignaturePredefinedListSettingsInfo; import com.groupdocs.sdk.model.SignatureFieldsResponse; import com.groupdocs.sdk.model.SignatureTemplateFieldsResponse; @@ -99,120 +99,6 @@ public String getBasePath() { return basePath; } - public SignatureTemplatesResponse GetSignatureTemplates (String userId, Integer page, Integer records, String documentGuid, String recipientName, String name) throws ApiException { - // verify required params are set - if(userId == null ) { - throw new ApiException(400, "missing required params"); - } - String resourcePath = "/signature/{userId}/templates?records={records}&page={page}&documentGuid={documentGuid}&recipientName={recipientName}&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)); - - // query params - Map queryParams = new HashMap(); - Map headerParams = new HashMap(); - - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); - if(!"null".equals(String.valueOf(documentGuid))) - queryParams.put("documentGuid", String.valueOf(documentGuid)); - if(!"null".equals(String.valueOf(recipientName))) - queryParams.put("recipientName", String.valueOf(recipientName)); - if(!"null".equals(String.valueOf(name))) - queryParams.put("name", String.valueOf(name)); - try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); - if(response != null){ - return (SignatureTemplatesResponse) ApiInvoker.deserialize(response, "", SignatureTemplatesResponse.class); - } - else { - return null; - } - } catch (ApiException ex) { - if(ex.getCode() == 404) { - return null; - } - else { - throw ex; - } - } - } - public SignatureTemplateResponse GetSignatureTemplate (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, "GET", 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 SignatureTemplateResponse CreateSignatureTemplate (String userId, String name, String templateGuid, String envelopeGuid, SignatureTemplateSettingsInfo body) throws ApiException { - // verify required params are set - if(userId == null || name == null ) { - throw new ApiException(400, "missing required params"); - } - String resourcePath = "/signature/{userId}/template?name={name}&templateId={templateGuid}&envelopeId={envelopeGuid}".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(name))) - queryParams.put("name", String.valueOf(name)); - if(!"null".equals(String.valueOf(templateGuid))) - queryParams.put("templateId", String.valueOf(templateGuid)); - if(!"null".equals(String.valueOf(envelopeGuid))) - queryParams.put("envelopeId", String.valueOf(envelopeGuid)); - 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 ModifySignatureTemplate (String userId, String templateGuid, SignatureTemplateSettingsInfo body) throws ApiException { // verify required params are set if(userId == null || templateGuid == null ) { @@ -607,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(); @@ -833,12 +719,16 @@ public SignatureTemplateDocumentResponse RenameSignatureTemplateDocument (String } } } - public SignatureSignDocumentResponse SignDocument (String userId, SignatureSignDocumentSettingsInfo body) 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}/sign".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); + } // create path and map variables resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); @@ -846,10 +736,22 @@ public SignatureSignDocumentResponse SignDocument (String userId, SignatureSignD Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); + if(!"null".equals(String.valueOf(firstName))) + queryParams.put("firstName", String.valueOf(firstName)); + if(!"null".equals(String.valueOf(lastName))) + 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, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureSignDocumentResponse) ApiInvoker.deserialize(response, "", SignatureSignDocumentResponse.class); + return (SignatureContactsResponse) ApiInvoker.deserialize(response, "", SignatureContactsResponse.class); } else { return null; @@ -863,23 +765,23 @@ public SignatureSignDocumentResponse SignDocument (String userId, SignatureSignD } } } - public SignatureSignDocumentStatusResponse GetSignDocumentStatus (String userId, String jobGuid) throws ApiException { + public SignatureContactResponse AddContact (String userId, SignatureContactSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || jobGuid == null ) { + if(userId == null || body == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/documents/{jobGuid}/status".replace("*", ""); + String resourcePath = "/signature/{userId}/contact".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "jobGuid" + "}", String.valueOf(jobGuid)); + 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, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureSignDocumentStatusResponse) ApiInvoker.deserialize(response, "", SignatureSignDocumentStatusResponse.class); + return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); } else { return null; @@ -893,23 +795,23 @@ public SignatureSignDocumentStatusResponse GetSignDocumentStatus (String userId, } } } - public SignatureStatusResponse ArchiveSignatureForm (String userId, String formGuid) throws ApiException { + public SignatureContactResponse ModifyContact (String userId, String contactGuid, SignatureContactSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || contactGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/archive".replace("*", ""); + String resourcePath = "/signature/{userId}/contacts/{contactGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "contactGuid" + "}", String.valueOf(contactGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); } else { return null; @@ -923,23 +825,23 @@ public SignatureStatusResponse ArchiveSignatureForm (String userId, String formG } } } - public SignatureStatusResponse CompleteSignatureForm (String userId, String formGuid) throws ApiException { + public SignatureContactResponse DeleteContact (String userId, String contactGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || contactGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/complete".replace("*", ""); + String resourcePath = "/signature/{userId}/contacts/{contactGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "contactGuid" + "}", String.valueOf(contactGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); } else { return null; @@ -953,16 +855,12 @@ public SignatureStatusResponse CompleteSignatureForm (String userId, String form } } } - public SignatureFormResponse CreateSignatureForm (String userId, String name, String templateGuid, String assemblyGuid, String formGuid, SignatureFormSettingsInfo body) throws ApiException { + public SignatureContactsImportResponse ImportContacts (String userId, List body) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/form?name={name}&templateId={templateGuid}&assemblyId={assemblyGuid}&formId={formGuid}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/contacts".replace("*", ""); // create path and map variables resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); @@ -970,18 +868,10 @@ public SignatureFormResponse CreateSignatureForm (String userId, String name, St 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(templateGuid))) - queryParams.put("templateId", String.valueOf(templateGuid)); - if(!"null".equals(String.valueOf(assemblyGuid))) - queryParams.put("assemblyId", String.valueOf(assemblyGuid)); - if(!"null".equals(String.valueOf(formGuid))) - queryParams.put("formId", String.valueOf(formGuid)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); + return (SignatureContactsImportResponse) ApiInvoker.deserialize(response, "", SignatureContactsImportResponse.class); } else { return null; @@ -995,21 +885,21 @@ public SignatureFormResponse CreateSignatureForm (String userId, String name, St } } } - public SignatureStatusResponse DeleteSignatureForm (String userId, String formGuid) throws ApiException { + public SignatureStatusResponse AddContactIntegration (String userId, SignatureContactIntegrationSettings body) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/integration".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + 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, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } @@ -1025,31 +915,23 @@ public SignatureStatusResponse DeleteSignatureForm (String userId, String formGu } } } - public SignatureFormDocumentResponse AddSignatureFormDocument (String userId, String formGuid, String documentGuid, Integer order, Boolean parseFields) throws ApiException { + public SignatureSignDocumentResponse SignDocument (String userId, SignatureSignDocumentSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}?parseFields={parseFields}&order={order}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/sign".replace("*", ""); // 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)); + 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(order))) - queryParams.put("order", String.valueOf(order)); - if(!"null".equals(String.valueOf(parseFields))) - queryParams.put("parseFields", String.valueOf(parseFields)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); + return (SignatureSignDocumentResponse) ApiInvoker.deserialize(response, "", SignatureSignDocumentResponse.class); } else { return null; @@ -1063,23 +945,23 @@ public SignatureFormDocumentResponse AddSignatureFormDocument (String userId, St } } } - public SignatureStatusResponse DeleteSignatureFormDocument (String userId, String formGuid, String documentGuid) throws ApiException { + public SignatureSignDocumentStatusResponse GetSignDocumentStatus (String userId, String jobGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null ) { + if(userId == null || jobGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/documents/{jobGuid}/status".replace("*", ""); // 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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "jobGuid" + "}", String.valueOf(jobGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureSignDocumentStatusResponse) ApiInvoker.deserialize(response, "", SignatureSignDocumentStatusResponse.class); } else { return null; @@ -1093,23 +975,23 @@ public SignatureStatusResponse DeleteSignatureFormDocument (String userId, Strin } } } - public SignatureFormDocumentsResponse GetSignatureFormDocuments (String userId, String formGuid) throws ApiException { + public SignatureStatusResponse ArchiveSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/archive".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + 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, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormDocumentsResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentsResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -1123,23 +1005,23 @@ public SignatureFormDocumentsResponse GetSignatureFormDocuments (String userId, } } } - public SignatureFormFieldResponse AddSignatureFormField (String userId, String formGuid, String documentGuid, String fieldGuid, SignatureFormFieldSettingsInfo body) throws ApiException { + public SignatureEnvelopeAuditLogsResponse GetEnvelopeAuditLogs (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null || fieldGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/logs".replace("*", ""); // 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)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + 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, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); + return (SignatureEnvelopeAuditLogsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeAuditLogsResponse.class); } else { return null; @@ -1153,23 +1035,37 @@ public SignatureFormFieldResponse AddSignatureFormField (String userId, String f } } } - public SignatureFormFieldResponse ModifySignatureFormFieldLocation (String userId, String formGuid, String documentGuid, String fieldGuid, String locationGuid, SignatureFormFieldLocationSettingsInfo body) throws ApiException { + public SignatureEnvelopeResponse CreateSignatureEnvelope (String userId, String name, String templateGuid, String envelopeGuid, String documentGuid, Boolean parseFields, SignatureEnvelopeSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null || fieldGuid == null || locationGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelope?name={name}&templateId={templateGuid}&envelopeId={envelopeGuid}&documentId={documentGuid}&parseFields={parseFields}".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)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); + 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(name))) + queryParams.put("name", String.valueOf(name)); + if(!"null".equals(String.valueOf(templateGuid))) + queryParams.put("templateId", String.valueOf(templateGuid)); + if(!"null".equals(String.valueOf(envelopeGuid))) + queryParams.put("envelopeId", String.valueOf(envelopeGuid)); + if(!"null".equals(String.valueOf(documentGuid))) + queryParams.put("documentId", String.valueOf(documentGuid)); + if(!"null".equals(String.valueOf(parseFields))) + queryParams.put("parseFields", String.valueOf(parseFields)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); + return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); } else { return null; @@ -1183,21 +1079,21 @@ public SignatureFormFieldResponse ModifySignatureFormFieldLocation (String userI } } } - public SignatureStatusResponse DeleteSignatureFormFieldLocation (String userId, String formGuid, String fieldGuid, String locationGuid) throws ApiException { + public SignatureStatusResponse DeclineEnvelope (String userId, String envelopeGuid, String recipientGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || fieldGuid == null || locationGuid == null ) { + if(userId == null || envelopeGuid == null || recipientGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/decline".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } @@ -1213,23 +1109,33 @@ public SignatureStatusResponse DeleteSignatureFormFieldLocation (String userId, } } } - public SignatureFormFieldResponse ModifySignatureFormField (String userId, String formGuid, String documentGuid, String fieldGuid, SignatureFormFieldSettingsInfo body) throws ApiException { + public SignatureStatusResponse DelegateEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid, String recipientEmail, String recipientFirstName, String recipientLastName) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null || fieldGuid == null ) { + if(userId == null || envelopeGuid == null || recipientGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/delegate?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}".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)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(recipientEmail))) + queryParams.put("email", String.valueOf(recipientEmail)); + if(!"null".equals(String.valueOf(recipientFirstName))) + queryParams.put("firstname", String.valueOf(recipientFirstName)); + if(!"null".equals(String.valueOf(recipientLastName))) + queryParams.put("lastname", String.valueOf(recipientLastName)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -1243,14 +1149,14 @@ public SignatureFormFieldResponse ModifySignatureFormField (String userId, Strin } } } - public SignatureStatusResponse DeleteSignatureFormField (String userId, String formGuid, String fieldGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || fieldGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/fields/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); // query params Map queryParams = new HashMap(); @@ -1273,29 +1179,31 @@ public SignatureStatusResponse DeleteSignatureFormField (String userId, String f } } } - public SignatureFormFieldsResponse GetSignatureFormFields (String userId, String formGuid, String documentGuid, String fieldGuid) throws ApiException { + public SignatureEnvelopeDocumentResponse AddSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid, Integer order, Boolean parseFields) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/fields?field={fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}?parseFields={parseFields}&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("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(fieldGuid))) - queryParams.put("field", String.valueOf(fieldGuid)); + if(!"null".equals(String.valueOf(order))) + queryParams.put("order", String.valueOf(order)); + if(!"null".equals(String.valueOf(parseFields))) + queryParams.put("parseFields", String.valueOf(parseFields)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormFieldsResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldsResponse.class); + return (SignatureEnvelopeDocumentResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentResponse.class); } else { return null; @@ -1309,27 +1217,21 @@ public SignatureFormFieldsResponse GetSignatureFormFields (String userId, String } } } - public SignatureFormResponse GetSignatureForm (String userId, String formGuid) throws ApiException { + public FileStream GetSignedEnvelopeDocument (String userId, String envelopeGuid, String documentGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).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 (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); - } - else { - return null; - } + return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -1339,23 +1241,23 @@ public SignatureFormResponse GetSignatureForm (String userId, String formGuid) t } } } - public SignatureFormResponse ModifySignatureForm (String userId, String formGuid, SignatureFormSettingsInfo body) throws ApiException { + public SignatureStatusResponse DeleteSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -1369,23 +1271,23 @@ public SignatureFormResponse ModifySignatureForm (String userId, String formGuid } } } - public SignatureStatusResponse PublishSignatureForm (String userId, String formGuid, WebhookInfo body) throws ApiException { + public SignatureEnvelopeDocumentsResponse GetSignatureEnvelopeDocuments (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/publish".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + 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, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureEnvelopeDocumentsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentsResponse.class); } else { return null; @@ -1399,33 +1301,21 @@ public SignatureStatusResponse PublishSignatureForm (String userId, String formG } } } - public SignatureFormResponse RenameSignatureForm (String userId, String formGuid, String name) throws ApiException { + public FileStream GetSignedEnvelopeDocuments (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || name == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}?new_name={name}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/get".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + 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(); - if(!"null".equals(String.valueOf(name))) - queryParams.put("new_name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); - if(response != null){ - return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); - } - else { - return null; - } + return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -1435,23 +1325,23 @@ public SignatureFormResponse RenameSignatureForm (String userId, String formGuid } } } - public SignatureFormResponse UpdateSignatureFormFromTemplate (String userId, String formGuid, String templateGuid) throws ApiException { + public SignatureEnvelopeFieldsResponse AddSignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, SignatureEnvelopeFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || templateGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/templates/{templateGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/field/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "templateGuid" + "}", String.valueOf(templateGuid)); + 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(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); + return (SignatureEnvelopeFieldsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldsResponse.class); } else { return null; @@ -1465,39 +1355,23 @@ public SignatureFormResponse UpdateSignatureFormFromTemplate (String userId, Str } } } - public SignatureFormsResponse GetSignatureForms (String userId, Integer statusId, Integer page, Integer records, String originalDocumentMD5, String date, String name) throws ApiException { + public SignatureEnvelopeFieldResponse AssignSignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String fieldGuid, SignatureEnvelopeAssignFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms?statusId={statusId}&records={records}&page={page}&document={originalDocumentMD5}&date={date}&name={name}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + 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)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(statusId))) - queryParams.put("statusId", String.valueOf(statusId)); - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); - if(!"null".equals(String.valueOf(originalDocumentMD5))) - queryParams.put("document", String.valueOf(originalDocumentMD5)); - if(!"null".equals(String.valueOf(date))) - queryParams.put("date", String.valueOf(date)); - if(!"null".equals(String.valueOf(name))) - queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormsResponse) ApiInvoker.deserialize(response, "", SignatureFormsResponse.class); + return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); } else { return null; @@ -1511,29 +1385,29 @@ public SignatureFormsResponse GetSignatureForms (String userId, Integer statusId } } } - public SignatureFormResourcesResponse GetSignatureFormResources (String userId, String statusIds) throws ApiException { + public SignatureEnvelopeFieldResponse FillEnvelopeField (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, String signatureGuid, FileStream body) throws ApiException { // verify required params are set - if(userId == null || statusIds == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/resources?statusIds={statusIds}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/field/{fieldGuid}?signatureId={signatureGuid}".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("{" + "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(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(statusIds))) - queryParams.put("statusIds", String.valueOf(statusIds)); + if(!"null".equals(String.valueOf(signatureGuid))) + queryParams.put("signatureId", String.valueOf(signatureGuid)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormResourcesResponse) ApiInvoker.deserialize(response, "", SignatureFormResourcesResponse.class); + return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); } else { return null; @@ -1547,21 +1421,27 @@ public SignatureFormResourcesResponse GetSignatureFormResources (String userId, } } } - public FileStream GetSignedFormDocuments (String userId, String formGuid) throws ApiException { + public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeFieldLocation (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, String locationGuid, SignatureEnvelopeFieldLocationSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || formGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null || locationGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/get".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); + 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(); 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 (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); + } + else { + return null; + } } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -1571,29 +1451,23 @@ public FileStream GetSignedFormDocuments (String userId, String formGuid) throws } } } - public SignatureFormDocumentResponse RenameSignatureFormDocument (String userId, String formGuid, String documentGuid, String newName) throws ApiException { + public SignatureStatusResponse DeleteSignatureEnvelopeFieldLocation (String userId, String envelopeGuid, String fieldGuid, String locationGuid) throws ApiException { // verify required params are set - if(userId == null || formGuid == null || documentGuid == null ) { + if(userId == null || envelopeGuid == null || fieldGuid == null || locationGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}?newName={newName}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); // 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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).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(newName))) - queryParams.put("newName", String.valueOf(newName)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -1607,14 +1481,14 @@ public SignatureFormDocumentResponse RenameSignatureFormDocument (String userId, } } } - public SignatureFormDocumentResponse ModifySignatureFormDocument (String userId, String formGuid, String documentGuid, SignatureFormDocumentSettingsInfo 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 || formGuid == null || documentGuid == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}".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("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); + 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(); @@ -1623,7 +1497,7 @@ public SignatureFormDocumentResponse ModifySignatureFormDocument (String userId, try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); + return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); } else { return null; @@ -1637,29 +1511,63 @@ public SignatureFormDocumentResponse ModifySignatureFormDocument (String userId, } } } - public SignatureFieldsResponse GetFieldsList (String userId, String fieldGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureEnvelopeField (String userId, String envelopeGuid, String fieldGuid) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/fields?id={fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields/{fieldGuid}".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + + // 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 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}&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)); + 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(); + if(!"null".equals(String.valueOf(documentGuid))) + 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("id", 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){ - return (SignatureFieldsResponse) ApiInvoker.deserialize(response, "", SignatureFieldsResponse.class); + return (SignatureEnvelopeFieldsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldsResponse.class); } else { return null; @@ -1673,23 +1581,23 @@ public SignatureFieldsResponse GetFieldsList (String userId, String fieldGuid) t } } } - public SignatureFieldResponse CreateSignatureField (String userId, SignatureFieldSettingsInfo body) throws ApiException { + public SignatureEnvelopeResponse GetSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/field".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + 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, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureFieldResponse) ApiInvoker.deserialize(response, "", SignatureFieldResponse.class); + return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); } else { return null; @@ -1703,14 +1611,14 @@ public SignatureFieldResponse CreateSignatureField (String userId, SignatureFiel } } } - public SignatureFieldResponse ModifySignatureField (String userId, String fieldGuid, SignatureFieldSettingsInfo body) throws ApiException { + public SignatureEnvelopeResponse ModifySignatureEnvelope (String userId, String envelopeGuid, SignatureEnvelopeSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || fieldGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/fields/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); // query params Map queryParams = new HashMap(); @@ -1719,7 +1627,7 @@ public SignatureFieldResponse ModifySignatureField (String userId, String fieldG try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureFieldResponse) ApiInvoker.deserialize(response, "", SignatureFieldResponse.class); + return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); } else { return null; @@ -1733,14 +1641,102 @@ public SignatureFieldResponse ModifySignatureField (String userId, String fieldG } } } - public SignatureStatusResponse DeleteSignatureField (String userId, String fieldGuid) throws ApiException { + public SignatureEnvelopeRecipientResponse AddSignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientEmail, String recipientFirstName, String recipientLastName, String roleGuid, Integer order) throws ApiException { // verify required params are set - if(userId == null || fieldGuid == null ) { + if(userId == null || envelopeGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null || roleGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/fields/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}&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("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + 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(); + + if(!"null".equals(String.valueOf(recipientEmail))) + queryParams.put("email", String.valueOf(recipientEmail)); + if(!"null".equals(String.valueOf(recipientFirstName))) + queryParams.put("firstname", String.valueOf(recipientFirstName)); + if(!"null".equals(String.valueOf(recipientLastName))) + queryParams.put("lastname", String.valueOf(recipientLastName)); + 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 (SignatureEnvelopeRecipientResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public SignatureEnvelopeRecipientResponse ModifySignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid, String recipientEmail, String recipientFirstName, String recipientLastName, String roleGuid, Integer order) throws ApiException { + // verify required params are set + if(userId == null || envelopeGuid == null || recipientGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null || roleGuid == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}&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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + + // query params + Map queryParams = new HashMap(); + Map headerParams = new HashMap(); + + if(!"null".equals(String.valueOf(recipientEmail))) + queryParams.put("email", String.valueOf(recipientEmail)); + if(!"null".equals(String.valueOf(recipientFirstName))) + queryParams.put("firstname", String.valueOf(recipientFirstName)); + if(!"null".equals(String.valueOf(recipientLastName))) + queryParams.put("lastname", String.valueOf(recipientLastName)); + 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, "PUT", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureEnvelopeRecipientResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public SignatureStatusResponse DeleteSignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid) throws ApiException { + // verify required params are set + if(userId == null || envelopeGuid == null || recipientGuid == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipients/{recipientGuid}".replace("*", ""); + // create path and map variables + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); // query params Map queryParams = new HashMap(); @@ -1763,39 +1759,59 @@ public SignatureStatusResponse DeleteSignatureField (String userId, String field } } } - public SignatureContactsResponse GetContacts (String userId, Integer page, Integer records, String firstName, String lastName, String email, Boolean useAnd) throws ApiException { + public SignatureEnvelopeRecipientsResponse GetSignatureEnvelopeRecipients (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/contacts?firstName={firstName}&lastName={lastName}&email={email}&records={records}&page={page}&useAnd={useAnd}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipients".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, "GET", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureEnvelopeRecipientsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientsResponse.class); + } + else { + return null; + } + } catch (ApiException ex) { + if(ex.getCode() == 404) { + return null; + } + else { + throw ex; + } + } + } + public SignatureEnvelopeResponse RenameSignatureEnvelope (String userId, String envelopeGuid, String name) throws ApiException { + // verify required params are set + if(userId == null || envelopeGuid == null || name == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}?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)); + 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(); - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); - if(!"null".equals(String.valueOf(firstName))) - queryParams.put("firstName", String.valueOf(firstName)); - if(!"null".equals(String.valueOf(lastName))) - 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)); + if(!"null".equals(String.valueOf(name))) + queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureContactsResponse) ApiInvoker.deserialize(response, "", SignatureContactsResponse.class); + return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); } else { return null; @@ -1809,23 +1825,23 @@ public SignatureContactsResponse GetContacts (String userId, Integer page, Integ } } } - public SignatureContactResponse AddContact (String userId, SignatureContactSettingsInfo body) throws ApiException { + public SignatureStatusResponse RestartExpiredSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || body == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/contact".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/restart".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + 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, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -1839,23 +1855,23 @@ public SignatureContactResponse AddContact (String userId, SignatureContactSetti } } } - public SignatureContactResponse ModifyContact (String userId, String contactGuid, SignatureContactSettingsInfo body) throws ApiException { + public SignatureEnvelopeSendResponse SignatureEnvelopeSend (String userId, String envelopeGuid, WebhookInfo body) throws ApiException { // verify required params are set - if(userId == null || contactGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/contacts/{contactGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/send".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "contactGuid" + "}", String.valueOf(contactGuid)); + 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, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); + return (SignatureEnvelopeSendResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeSendResponse.class); } else { return null; @@ -1869,23 +1885,71 @@ public SignatureContactResponse ModifyContact (String userId, String contactGuid } } } - public SignatureContactResponse DeleteContact (String userId, String contactGuid) throws ApiException { + public SignatureStatusResponse SignEnvelope (String userId, String envelopeGuid, String recipientGuid) throws ApiException { // verify required params are set - if(userId == null || contactGuid == null ) { + if(userId == null || envelopeGuid == null || recipientGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/contacts/{contactGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/sign".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "contactGuid" + "}", String.valueOf(contactGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + + // 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 SignatureEnvelopesResponse GetSignatureEnvelopes (String userId, Integer statusId, Integer page, Integer records, String originalDocumentMD5, String recipientEmail, String date, String name) throws ApiException { + // verify required params are set + if(userId == null ) { + throw new ApiException(400, "missing required params"); + } + String resourcePath = "/signature/{userId}/envelopes?statusId={statusId}&records={records}&page={page}&document={originalDocumentMD5}&recipient={recipientEmail}&date={date}&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)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(statusId))) + queryParams.put("statusId", String.valueOf(statusId)); + if(!"null".equals(String.valueOf(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); + if(!"null".equals(String.valueOf(originalDocumentMD5))) + queryParams.put("document", String.valueOf(originalDocumentMD5)); + if(!"null".equals(String.valueOf(recipientEmail))) + queryParams.put("recipient", String.valueOf(recipientEmail)); + if(!"null".equals(String.valueOf(date))) + queryParams.put("date", String.valueOf(date)); + if(!"null".equals(String.valueOf(name))) + queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureContactResponse) ApiInvoker.deserialize(response, "", SignatureContactResponse.class); + return (SignatureEnvelopesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopesResponse.class); } else { return null; @@ -1899,12 +1963,16 @@ public SignatureContactResponse DeleteContact (String userId, String contactGuid } } } - public SignatureContactsImportResponse ImportContacts (String userId, List body) throws ApiException { + public SignatureEnvelopeResourcesResponse GetSignatureEnvelopeResources (String userId, String statusIds) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/contacts".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/resources?statusIds={statusIds}".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)); @@ -1912,10 +1980,12 @@ public SignatureContactsImportResponse ImportContacts (String userId, List queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(statusIds))) + queryParams.put("statusIds", String.valueOf(statusIds)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureContactsImportResponse) ApiInvoker.deserialize(response, "", SignatureContactsImportResponse.class); + return (SignatureEnvelopeResourcesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResourcesResponse.class); } else { return null; @@ -1929,12 +1999,12 @@ public SignatureContactsImportResponse ImportContacts (String userId, List -1){ resourcePath = resourcePath.substring(0, pos); @@ -1946,12 +2016,16 @@ public SignatureRolesResponse GetRolesList (String userId, String roleGuid) thro Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(roleGuid))) - queryParams.put("id", String.valueOf(roleGuid)); + if(!"null".equals(String.valueOf(statusId))) + queryParams.put("statusId", String.valueOf(statusId)); + if(!"null".equals(String.valueOf(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureRolesResponse) ApiInvoker.deserialize(response, "", SignatureRolesResponse.class); + return (SignatureEnvelopesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopesResponse.class); } else { return null; @@ -1965,23 +2039,29 @@ public SignatureRolesResponse GetRolesList (String userId, String roleGuid) thro } } } - public SignatureStatusResponse AddContactIntegration (String userId, SignatureContactIntegrationSettings body) throws ApiException { + public SignatureEnvelopeDocumentResponse RenameSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid, String newName) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/integration".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}?newName={newName}".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("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(newName))) + queryParams.put("newName", String.valueOf(newName)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureEnvelopeDocumentResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentResponse.class); } else { return null; @@ -1995,29 +2075,23 @@ public SignatureStatusResponse AddContactIntegration (String userId, SignatureCo } } } - public SignatureSignatureResponse CreateSignature (String userId, String name, SignatureSignatureSettingsInfo body) throws ApiException { + public SignatureStatusResponse CancelSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || name == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/signature?name={name}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/cancel".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + 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(); - if(!"null".equals(String.valueOf(name))) - queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureSignatureResponse) ApiInvoker.deserialize(response, "", SignatureSignatureResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2031,21 +2105,21 @@ public SignatureSignatureResponse CreateSignature (String userId, String name, S } } } - public SignatureStatusResponse DeleteSignature (String userId, String signatureGuid) throws ApiException { + public SignatureStatusResponse RetrySignEnvelope (String userId, String envelopeGuid) throws ApiException { // verify required params are set - if(userId == null || signatureGuid == null ) { + if(userId == null || envelopeGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/signatures/{signatureGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/retry".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "signatureGuid" + "}", String.valueOf(signatureGuid)); + 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, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } @@ -2061,33 +2135,23 @@ public SignatureStatusResponse DeleteSignature (String userId, String signatureG } } } - public SignatureSignaturesResponse GetSignatures (String userId, Integer page, Integer records, String name) throws ApiException { + public SignatureEnvelopeResponse UpdateEnvelopeFromTemplate (String userId, String envelopeGuid, String templateGuid) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || envelopeGuid == null || templateGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/signatures?records={records}&page={page}&name={name}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/templates/{templateGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + 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(); - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); - if(!"null".equals(String.valueOf(name))) - queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureSignaturesResponse) ApiInvoker.deserialize(response, "", SignatureSignaturesResponse.class); + return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); } else { return null; @@ -2101,23 +2165,29 @@ public SignatureSignaturesResponse GetSignatures (String userId, Integer page, I } } } - public SignatureStatusResponse ArchiveSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { + 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 ) { + 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}/archive".replace("*", ""); + 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)); + 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 (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); } else { return null; @@ -2131,12 +2201,12 @@ public SignatureStatusResponse ArchiveSignatureEnvelope (String userId, String e } } } - public SignatureEnvelopeAuditLogsResponse GetEnvelopeAuditLogs (String userId, String envelopeGuid) throws ApiException { + 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}/logs".replace("*", ""); + 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)); @@ -2145,9 +2215,9 @@ public SignatureEnvelopeAuditLogsResponse GetEnvelopeAuditLogs (String userId, S Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeAuditLogsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeAuditLogsResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2161,12 +2231,12 @@ public SignatureEnvelopeAuditLogsResponse GetEnvelopeAuditLogs (String userId, S } } } - public SignatureEnvelopeResponse CreateSignatureEnvelope (String userId, String name, String templateGuid, String envelopeGuid, String documentGuid, Boolean parseFields, SignatureEnvelopeSettingsInfo body) throws ApiException { + public SignatureFieldsResponse GetFieldsList (String userId, String fieldGuid) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelope?name={name}&templateId={templateGuid}&envelopeId={envelopeGuid}&documentId={documentGuid}&parseFields={parseFields}".replace("*", ""); + String resourcePath = "/signature/{userId}/fields?id={fieldGuid}".replace("*", ""); int pos = resourcePath.indexOf("?"); if(pos > -1){ resourcePath = resourcePath.substring(0, pos); @@ -2178,20 +2248,12 @@ public SignatureEnvelopeResponse CreateSignatureEnvelope (String userId, String 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(templateGuid))) - queryParams.put("templateId", String.valueOf(templateGuid)); - if(!"null".equals(String.valueOf(envelopeGuid))) - queryParams.put("envelopeId", String.valueOf(envelopeGuid)); - if(!"null".equals(String.valueOf(documentGuid))) - queryParams.put("documentId", String.valueOf(documentGuid)); - if(!"null".equals(String.valueOf(parseFields))) - queryParams.put("parseFields", String.valueOf(parseFields)); + if(!"null".equals(String.valueOf(fieldGuid))) + queryParams.put("id", String.valueOf(fieldGuid)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); + return (SignatureFieldsResponse) ApiInvoker.deserialize(response, "", SignatureFieldsResponse.class); } else { return null; @@ -2205,23 +2267,23 @@ public SignatureEnvelopeResponse CreateSignatureEnvelope (String userId, String } } } - public SignatureStatusResponse DeclineEnvelope (String userId, String envelopeGuid, String recipientGuid) throws ApiException { + public SignatureFieldResponse CreateSignatureField (String userId, SignatureFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || recipientGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/decline".replace("*", ""); + String resourcePath = "/signature/{userId}/field".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + 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, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureFieldResponse) ApiInvoker.deserialize(response, "", SignatureFieldResponse.class); } else { return null; @@ -2235,33 +2297,23 @@ public SignatureStatusResponse DeclineEnvelope (String userId, String envelopeGu } } } - public SignatureStatusResponse DelegateEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid, String recipientEmail, String recipientFirstName, String recipientLastName) throws ApiException { + public SignatureFieldResponse ModifySignatureField (String userId, String fieldGuid, SignatureFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || recipientGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null ) { + if(userId == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/delegate?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/fields/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(recipientEmail))) - queryParams.put("email", String.valueOf(recipientEmail)); - if(!"null".equals(String.valueOf(recipientFirstName))) - queryParams.put("firstname", String.valueOf(recipientFirstName)); - if(!"null".equals(String.valueOf(recipientLastName))) - queryParams.put("lastname", String.valueOf(recipientLastName)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureFieldResponse) ApiInvoker.deserialize(response, "", SignatureFieldResponse.class); } else { return null; @@ -2275,14 +2327,14 @@ public SignatureStatusResponse DelegateEnvelopeRecipient (String userId, String } } } - public SignatureStatusResponse DeleteSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureField (String userId, String fieldGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/fields/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); @@ -2305,31 +2357,23 @@ public SignatureStatusResponse DeleteSignatureEnvelope (String userId, String en } } } - public SignatureEnvelopeDocumentResponse AddSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid, Integer order, Boolean parseFields) throws ApiException { + public SignatureStatusResponse ArchiveSignatureForm (String userId, String formGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}?parseFields={parseFields}&order={order}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/forms/{formGuid}/archive".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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(order))) - queryParams.put("order", String.valueOf(order)); - if(!"null".equals(String.valueOf(parseFields))) - queryParams.put("parseFields", String.valueOf(parseFields)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeDocumentResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2343,21 +2387,27 @@ public SignatureEnvelopeDocumentResponse AddSignatureEnvelopeDocument (String us } } } - public FileStream GetSignedEnvelopeDocument (String userId, String envelopeGuid, String documentGuid) throws ApiException { + public SignatureStatusResponse CompleteSignatureForm (String userId, String formGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/complete".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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); + 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; @@ -2367,23 +2417,35 @@ public FileStream GetSignedEnvelopeDocument (String userId, String envelopeGuid, } } } - public SignatureStatusResponse DeleteSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid) throws ApiException { + public SignatureFormResponse CreateSignatureForm (String userId, String name, String templateGuid, String assemblyGuid, String formGuid, SignatureFormSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/form?name={name}&templateId={templateGuid}&assemblyId={assemblyGuid}&formId={formGuid}".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)); + 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(name))) + queryParams.put("name", String.valueOf(name)); + if(!"null".equals(String.valueOf(templateGuid))) + queryParams.put("templateId", String.valueOf(templateGuid)); + if(!"null".equals(String.valueOf(assemblyGuid))) + queryParams.put("assemblyId", String.valueOf(assemblyGuid)); + if(!"null".equals(String.valueOf(formGuid))) + queryParams.put("formId", String.valueOf(formGuid)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); } else { return null; @@ -2397,23 +2459,23 @@ public SignatureStatusResponse DeleteSignatureEnvelopeDocument (String userId, S } } } - public SignatureEnvelopeDocumentsResponse GetSignatureEnvelopeDocuments (String userId, String envelopeGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureForm (String userId, String formGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeDocumentsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentsResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2427,21 +2489,35 @@ public SignatureEnvelopeDocumentsResponse GetSignatureEnvelopeDocuments (String } } } - public FileStream GetSignedEnvelopeDocuments (String userId, String envelopeGuid) throws ApiException { + public SignatureFormDocumentResponse AddSignatureFormDocument (String userId, String formGuid, String documentGuid, Integer order, Boolean parseFields) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/get".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}?parseFields={parseFields}&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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(order))) + queryParams.put("order", String.valueOf(order)); + if(!"null".equals(String.valueOf(parseFields))) + queryParams.put("parseFields", String.valueOf(parseFields)); try { - return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + if(response != null){ + return (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); + } + else { + return null; + } } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -2451,23 +2527,23 @@ public FileStream GetSignedEnvelopeDocuments (String userId, String envelopeGuid } } } - public SignatureEnvelopeFieldsResponse AddSignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, SignatureEnvelopeFieldSettingsInfo body) throws ApiException { + public SignatureStatusResponse DeleteSignatureFormDocument (String userId, String formGuid, String documentGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { + if(userId == null || formGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/field/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}".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("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeFieldsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldsResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2481,23 +2557,23 @@ public SignatureEnvelopeFieldsResponse AddSignatureEnvelopeField (String userId, } } } - public SignatureEnvelopeFieldResponse AssignSignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String fieldGuid, SignatureEnvelopeAssignFieldSettingsInfo body) throws ApiException { + public SignatureFormDocumentsResponse GetSignatureFormDocuments (String userId, String formGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || fieldGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/field/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents".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("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); + return (SignatureFormDocumentsResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentsResponse.class); } else { return null; @@ -2511,29 +2587,23 @@ public SignatureEnvelopeFieldResponse AssignSignatureEnvelopeField (String userI } } } - public SignatureEnvelopeFieldResponse FillEnvelopeField (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, String signatureGuid, FileStream body) throws ApiException { + public SignatureFormFieldResponse AddSignatureFormField (String userId, String formGuid, String documentGuid, String fieldGuid, SignatureFormFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null ) { + if(userId == null || formGuid == null || documentGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/documents/{documentGuid}/recipient/{recipientGuid}/field/{fieldGuid}?signatureId={signatureGuid}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/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("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(signatureGuid))) - queryParams.put("signatureId", String.valueOf(signatureGuid)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); + return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); } else { return null; @@ -2547,14 +2617,14 @@ public SignatureEnvelopeFieldResponse FillEnvelopeField (String userId, String e } } } - public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeFieldLocation (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, String locationGuid, SignatureEnvelopeFieldLocationSettingsInfo body) throws ApiException { + public SignatureFormFieldResponse ModifySignatureFormFieldLocation (String userId, String formGuid, String documentGuid, String fieldGuid, String locationGuid, SignatureFormFieldLocationSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null || locationGuid == null ) { + if(userId == null || formGuid == null || documentGuid == 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}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/{documentGuid}/fields/{fieldGuid}/locations/{locationGuid}".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("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); // query params Map queryParams = new HashMap(); @@ -2563,7 +2633,7 @@ public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeFieldLocation (Stri try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); + return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); } else { return null; @@ -2577,14 +2647,14 @@ public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeFieldLocation (Stri } } } - public SignatureStatusResponse DeleteSignatureEnvelopeFieldLocation (String userId, String envelopeGuid, String fieldGuid, String locationGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureFormFieldLocation (String userId, String formGuid, String fieldGuid, String locationGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || fieldGuid == null || locationGuid == null ) { + if(userId == null || formGuid == null || fieldGuid == null || locationGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/fields/{fieldGuid}/locations/{locationGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); // query params Map queryParams = new HashMap(); @@ -2607,14 +2677,14 @@ public SignatureStatusResponse DeleteSignatureEnvelopeFieldLocation (String user } } } - public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeField (String userId, String envelopeGuid, String documentGuid, String fieldGuid, SignatureEnvelopeFieldSettingsInfo body) throws ApiException { + public SignatureFormFieldResponse ModifySignatureFormField (String userId, String formGuid, String documentGuid, String fieldGuid, SignatureFormFieldSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || fieldGuid == null ) { + if(userId == null || formGuid == null || documentGuid == 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}/forms/{formGuid}/documents/{documentGuid}/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("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); @@ -2623,7 +2693,7 @@ public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeField (String userI try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); + return (SignatureFormFieldResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldResponse.class); } else { return null; @@ -2637,14 +2707,14 @@ public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeField (String userI } } } - public SignatureStatusResponse DeleteSignatureEnvelopeField (String userId, String envelopeGuid, String fieldGuid) throws ApiException { + public SignatureStatusResponse DeleteSignatureFormField (String userId, String formGuid, String fieldGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || fieldGuid == null ) { + if(userId == null || formGuid == null || fieldGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields/{fieldGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/fields/{fieldGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)); // query params Map queryParams = new HashMap(); @@ -2667,33 +2737,29 @@ public SignatureStatusResponse DeleteSignatureEnvelopeField (String userId, Stri } } } - public SignatureEnvelopeFieldsResponse GetSignatureEnvelopeFields (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid) throws ApiException { + public SignatureFormFieldsResponse GetSignatureFormFields (String userId, String formGuid, String documentGuid, String fieldGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/fields?document={documentGuid}&recipient={recipientGuid}&field={fieldGuid}".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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(documentGuid))) - 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){ - return (SignatureEnvelopeFieldsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldsResponse.class); + return (SignatureFormFieldsResponse) ApiInvoker.deserialize(response, "", SignatureFormFieldsResponse.class); } else { return null; @@ -2707,14 +2773,14 @@ public SignatureEnvelopeFieldsResponse GetSignatureEnvelopeFields (String userId } } } - public SignatureEnvelopeResponse GetSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { + public SignatureFormResponse GetSignatureForm (String userId, String formGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); @@ -2723,7 +2789,7 @@ public SignatureEnvelopeResponse GetSignatureEnvelope (String userId, String env try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); + return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); } else { return null; @@ -2737,14 +2803,14 @@ public SignatureEnvelopeResponse GetSignatureEnvelope (String userId, String env } } } - public SignatureEnvelopeResponse ModifySignatureEnvelope (String userId, String envelopeGuid, SignatureEnvelopeSettingsInfo body) throws ApiException { + public SignatureFormResponse ModifySignatureForm (String userId, String formGuid, SignatureFormSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); @@ -2753,7 +2819,7 @@ public SignatureEnvelopeResponse ModifySignatureEnvelope (String userId, String try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); + return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); } else { return null; @@ -2767,37 +2833,23 @@ public SignatureEnvelopeResponse ModifySignatureEnvelope (String userId, String } } } - public SignatureEnvelopeRecipientResponse AddSignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientEmail, String recipientFirstName, String recipientLastName, String roleGuid, Integer order) throws ApiException { + public SignatureStatusResponse PublishSignatureForm (String userId, String formGuid, WebhookInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null || roleGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}&role={roleGuid}&order={order}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/forms/{formGuid}/publish".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(recipientEmail))) - queryParams.put("email", String.valueOf(recipientEmail)); - if(!"null".equals(String.valueOf(recipientFirstName))) - queryParams.put("firstname", String.valueOf(recipientFirstName)); - if(!"null".equals(String.valueOf(recipientLastName))) - queryParams.put("lastname", String.valueOf(recipientLastName)); - 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); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeRecipientResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -2811,37 +2863,29 @@ public SignatureEnvelopeRecipientResponse AddSignatureEnvelopeRecipient (String } } } - public SignatureEnvelopeRecipientResponse ModifySignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid, String recipientEmail, String recipientFirstName, String recipientLastName, String roleGuid, Integer order) throws ApiException { + public SignatureFormResponse RenameSignatureForm (String userId, String formGuid, String name) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || recipientGuid == null || recipientEmail == null || recipientFirstName == null || recipientLastName == null || roleGuid == null ) { + if(userId == null || formGuid == null || name == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}?email={recipientEmail}&firstname={recipientFirstName}&lastname={recipientLastName}&role={roleGuid}&order={order}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}?new_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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(recipientEmail))) - queryParams.put("email", String.valueOf(recipientEmail)); - if(!"null".equals(String.valueOf(recipientFirstName))) - queryParams.put("firstname", String.valueOf(recipientFirstName)); - if(!"null".equals(String.valueOf(recipientLastName))) - queryParams.put("lastname", String.valueOf(recipientLastName)); - if(!"null".equals(String.valueOf(roleGuid))) - queryParams.put("role", String.valueOf(roleGuid)); - if(!"null".equals(String.valueOf(order))) - queryParams.put("order", String.valueOf(order)); + if(!"null".equals(String.valueOf(name))) + queryParams.put("new_name", String.valueOf(name)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeRecipientResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientResponse.class); + return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); } else { return null; @@ -2855,23 +2899,23 @@ public SignatureEnvelopeRecipientResponse ModifySignatureEnvelopeRecipient (Stri } } } - public SignatureStatusResponse DeleteSignatureEnvelopeRecipient (String userId, String envelopeGuid, String recipientGuid) throws ApiException { + public SignatureFormResponse UpdateSignatureFormFromTemplate (String userId, String formGuid, String templateGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || recipientGuid == null ) { + if(userId == null || formGuid == null || templateGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipients/{recipientGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/templates/{templateGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).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); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureFormResponse) ApiInvoker.deserialize(response, "", SignatureFormResponse.class); } else { return null; @@ -2885,23 +2929,39 @@ public SignatureStatusResponse DeleteSignatureEnvelopeRecipient (String userId, } } } - public SignatureEnvelopeRecipientsResponse GetSignatureEnvelopeRecipients (String userId, String envelopeGuid) throws ApiException { + public SignatureFormsResponse GetSignatureForms (String userId, Integer statusId, Integer page, Integer records, String originalDocumentMD5, String date, String name) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipients".replace("*", ""); + String resourcePath = "/signature/{userId}/forms?statusId={statusId}&records={records}&page={page}&document={originalDocumentMD5}&date={date}&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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + 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(statusId))) + queryParams.put("statusId", String.valueOf(statusId)); + if(!"null".equals(String.valueOf(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); + if(!"null".equals(String.valueOf(originalDocumentMD5))) + queryParams.put("document", String.valueOf(originalDocumentMD5)); + if(!"null".equals(String.valueOf(date))) + queryParams.put("date", String.valueOf(date)); + if(!"null".equals(String.valueOf(name))) + queryParams.put("name", String.valueOf(name)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeRecipientsResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeRecipientsResponse.class); + return (SignatureFormsResponse) ApiInvoker.deserialize(response, "", SignatureFormsResponse.class); } else { return null; @@ -2915,29 +2975,29 @@ public SignatureEnvelopeRecipientsResponse GetSignatureEnvelopeRecipients (Strin } } } - public SignatureEnvelopeResponse RenameSignatureEnvelope (String userId, String envelopeGuid, String name) throws ApiException { + public SignatureFormResourcesResponse GetSignatureFormResources (String userId, String statusIds) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || name == null ) { + if(userId == null || statusIds == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}?name={name}".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/resources?statusIds={statusIds}".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)); + 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(name))) - queryParams.put("name", String.valueOf(name)); + if(!"null".equals(String.valueOf(statusIds))) + queryParams.put("statusIds", String.valueOf(statusIds)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); + return (SignatureFormResourcesResponse) ApiInvoker.deserialize(response, "", SignatureFormResourcesResponse.class); } else { return null; @@ -2951,27 +3011,21 @@ public SignatureEnvelopeResponse RenameSignatureEnvelope (String userId, String } } } - public SignatureStatusResponse RestartExpiredSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { + public FileStream GetSignedFormDocuments (String userId, String formGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/restart".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/documents/get".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); // 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; - } + return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -2981,23 +3035,29 @@ public SignatureStatusResponse RestartExpiredSignatureEnvelope (String userId, S } } } - public SignatureEnvelopeSendResponse SignatureEnvelopeSend (String userId, String envelopeGuid, WebhookInfo body) throws ApiException { + public SignatureFormDocumentResponse RenameSignatureFormDocument (String userId, String formGuid, String documentGuid, String newName) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || formGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/send".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}?newName={newName}".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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(newName))) + queryParams.put("newName", String.valueOf(newName)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeSendResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeSendResponse.class); + return (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); } else { return null; @@ -3011,23 +3071,23 @@ public SignatureEnvelopeSendResponse SignatureEnvelopeSend (String userId, Strin } } } - public SignatureStatusResponse SignEnvelope (String userId, String envelopeGuid, String recipientGuid) throws ApiException { + public SignatureFormDocumentResponse ModifySignatureFormDocument (String userId, String formGuid, String documentGuid, SignatureFormDocumentSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || recipientGuid == null ) { + if(userId == null || formGuid == null || documentGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/recipient/{recipientGuid}/sign".replace("*", ""); + String resourcePath = "/signature/{userId}/forms/{formGuid}/document/{documentGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureFormDocumentResponse) ApiInvoker.deserialize(response, "", SignatureFormDocumentResponse.class); } else { return null; @@ -3041,16 +3101,12 @@ public SignatureStatusResponse SignEnvelope (String userId, String envelopeGuid, } } } - public SignatureEnvelopesResponse GetSignatureEnvelopes (String userId, Integer statusId, Integer page, Integer records, String originalDocumentMD5, String recipientEmail, String date, String name) throws ApiException { + public SignaturePredefinedListsResponse GetSignaturePredefinedLists (String userId) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes?statusId={statusId}&records={records}&page={page}&document={originalDocumentMD5}&recipient={recipientEmail}&date={date}&name={name}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/lists".replace("*", ""); // create path and map variables resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); @@ -3058,24 +3114,10 @@ public SignatureEnvelopesResponse GetSignatureEnvelopes (String userId, Integer Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(statusId))) - queryParams.put("statusId", String.valueOf(statusId)); - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); - if(!"null".equals(String.valueOf(originalDocumentMD5))) - queryParams.put("document", String.valueOf(originalDocumentMD5)); - if(!"null".equals(String.valueOf(recipientEmail))) - queryParams.put("recipient", String.valueOf(recipientEmail)); - if(!"null".equals(String.valueOf(date))) - queryParams.put("date", String.valueOf(date)); - if(!"null".equals(String.valueOf(name))) - queryParams.put("name", String.valueOf(name)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopesResponse.class); + return (SignaturePredefinedListsResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListsResponse.class); } else { return null; @@ -3089,16 +3131,12 @@ public SignatureEnvelopesResponse GetSignatureEnvelopes (String userId, Integer } } } - public SignatureEnvelopeResourcesResponse GetSignatureEnvelopeResources (String userId, String statusIds) throws ApiException { + public SignaturePredefinedListResponse AddPredefinedList (String userId, SignaturePredefinedListSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || body == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/resources?statusIds={statusIds}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/list".replace("*", ""); // create path and map variables resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); @@ -3106,12 +3144,10 @@ public SignatureEnvelopeResourcesResponse GetSignatureEnvelopeResources (String Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(statusIds))) - queryParams.put("statusIds", String.valueOf(statusIds)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeResourcesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResourcesResponse.class); + return (SignaturePredefinedListResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListResponse.class); } else { return null; @@ -3125,33 +3161,23 @@ public SignatureEnvelopeResourcesResponse GetSignatureEnvelopeResources (String } } } - public SignatureEnvelopesResponse GetRecipientSignatureEnvelopes (String userId, String statusId, Integer page, Integer records) throws ApiException { + public SignaturePredefinedListsResponse DeletePredefinedList (String userId, String listGuid) throws ApiException { // verify required params are set - if(userId == null ) { + if(userId == null || listGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/recipient?statusId={statusId}&records={records}&page={page}".replace("*", ""); - int pos = resourcePath.indexOf("?"); - if(pos > -1){ - resourcePath = resourcePath.substring(0, pos); - } + String resourcePath = "/signature/{userId}/lists/{listGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "listGuid" + "}", String.valueOf(listGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); - if(!"null".equals(String.valueOf(statusId))) - queryParams.put("statusId", String.valueOf(statusId)); - if(!"null".equals(String.valueOf(page))) - queryParams.put("page", String.valueOf(page)); - if(!"null".equals(String.valueOf(records))) - queryParams.put("records", String.valueOf(records)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopesResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopesResponse.class); + return (SignaturePredefinedListsResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListsResponse.class); } else { return null; @@ -3165,29 +3191,29 @@ public SignatureEnvelopesResponse GetRecipientSignatureEnvelopes (String userId, } } } - public SignatureEnvelopeDocumentResponse RenameSignatureEnvelopeDocument (String userId, String envelopeGuid, String documentGuid, String newName) throws ApiException { + public SignatureRolesResponse GetRolesList (String userId, String roleGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null ) { + if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/document/{documentGuid}?newName={newName}".replace("*", ""); + String resourcePath = "/signature/{userId}/roles?id={roleGuid}".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)); + 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(newName))) - queryParams.put("newName", String.valueOf(newName)); + if(!"null".equals(String.valueOf(roleGuid))) + queryParams.put("id", String.valueOf(roleGuid)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeDocumentResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeDocumentResponse.class); + return (SignatureRolesResponse) ApiInvoker.deserialize(response, "", SignatureRolesResponse.class); } else { return null; @@ -3201,27 +3227,21 @@ public SignatureEnvelopeDocumentResponse RenameSignatureEnvelopeDocument (String } } } - public SignatureStatusResponse CancelSignatureEnvelope (String userId, String envelopeGuid) throws ApiException { + public FileStream GetUserEmailTemplate (String userId, Integer templateType) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || templateType == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/cancel".replace("*", ""); + String resourcePath = "/signature/{userId}/email-template/{templateType}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + 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 { - 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; - } + return apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, FileStream.class); } catch (ApiException ex) { if(ex.getCode() == 404) { return null; @@ -3231,23 +3251,29 @@ public SignatureStatusResponse CancelSignatureEnvelope (String userId, String en } } } - public SignatureStatusResponse RetrySignEnvelope (String userId, String envelopeGuid) throws ApiException { + public SignatureSignatureResponse CreateSignature (String userId, String name, SignatureSignatureSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null ) { + if(userId == null || name == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/retry".replace("*", ""); + String resourcePath = "/signature/{userId}/signature?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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)); + 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(name))) + queryParams.put("name", String.valueOf(name)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); + return (SignatureSignatureResponse) ApiInvoker.deserialize(response, "", SignatureSignatureResponse.class); } else { return null; @@ -3261,23 +3287,23 @@ public SignatureStatusResponse RetrySignEnvelope (String userId, String envelope } } } - public SignatureEnvelopeResponse UpdateEnvelopeFromTemplate (String userId, String envelopeGuid, String templateGuid) throws ApiException { + public SignatureStatusResponse DeleteSignature (String userId, String signatureGuid) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || templateGuid == null ) { + if(userId == null || signatureGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/envelopes/{envelopeGuid}/templates/{templateGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/signatures/{signatureGuid}".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)); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "signatureGuid" + "}", String.valueOf(signatureGuid)); // query params Map queryParams = new HashMap(); Map headerParams = new HashMap(); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeResponse.class); + return (SignatureStatusResponse) ApiInvoker.deserialize(response, "", SignatureStatusResponse.class); } else { return null; @@ -3291,29 +3317,33 @@ public SignatureEnvelopeResponse UpdateEnvelopeFromTemplate (String userId, Stri } } } - public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeFieldLocationOrder (String userId, String envelopeGuid, String documentGuid, String recipientGuid, String fieldGuid, String locationGuid, Integer order) throws ApiException { + public SignatureSignaturesResponse GetSignatures (String userId, Integer page, Integer records, String name) throws ApiException { // verify required params are set - if(userId == null || envelopeGuid == null || documentGuid == null || recipientGuid == null || fieldGuid == null || locationGuid == null ) { + if(userId == 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("*", ""); + String resourcePath = "/signature/{userId}/signatures?records={records}&page={page}&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("{" + "envelopeGuid" + "}", String.valueOf(envelopeGuid)).replace("{" + "documentGuid" + "}", String.valueOf(documentGuid)).replace("{" + "recipientGuid" + "}", String.valueOf(recipientGuid)).replace("{" + "fieldGuid" + "}", String.valueOf(fieldGuid)).replace("{" + "locationGuid" + "}", String.valueOf(locationGuid)); + 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(order))) - queryParams.put("order", String.valueOf(order)); + if(!"null".equals(String.valueOf(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); + 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); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignatureEnvelopeFieldResponse) ApiInvoker.deserialize(response, "", SignatureEnvelopeFieldResponse.class); + return (SignatureSignaturesResponse) ApiInvoker.deserialize(response, "", SignatureSignaturesResponse.class); } else { return null; @@ -3327,12 +3357,16 @@ public SignatureEnvelopeFieldResponse ModifySignatureEnvelopeFieldLocationOrder } } } - public SignaturePredefinedListsResponse GetSignaturePredefinedLists (String userId) throws ApiException { + public SignatureTemplatesResponse GetSignatureTemplates (String userId, Integer page, Integer records, String documentGuid, String recipientName, String name) throws ApiException { // verify required params are set if(userId == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/lists".replace("*", ""); + String resourcePath = "/signature/{userId}/templates?records={records}&page={page}&documentGuid={documentGuid}&recipientName={recipientName}&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)); @@ -3340,10 +3374,20 @@ public SignaturePredefinedListsResponse GetSignaturePredefinedLists (String user Map queryParams = new HashMap(); Map headerParams = new HashMap(); + if(!"null".equals(String.valueOf(page))) + queryParams.put("page", String.valueOf(page)); + if(!"null".equals(String.valueOf(records))) + queryParams.put("records", String.valueOf(records)); + if(!"null".equals(String.valueOf(documentGuid))) + queryParams.put("documentGuid", String.valueOf(documentGuid)); + if(!"null".equals(String.valueOf(recipientName))) + queryParams.put("recipientName", String.valueOf(recipientName)); + if(!"null".equals(String.valueOf(name))) + queryParams.put("name", String.valueOf(name)); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignaturePredefinedListsResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListsResponse.class); + return (SignatureTemplatesResponse) ApiInvoker.deserialize(response, "", SignatureTemplatesResponse.class); } else { return null; @@ -3357,23 +3401,23 @@ public SignaturePredefinedListsResponse GetSignaturePredefinedLists (String user } } } - public SignaturePredefinedListResponse AddPredefinedList (String userId, SignaturePredefinedListSettingsInfo body) throws ApiException { + public SignatureTemplateResponse GetSignatureTemplate (String userId, String templateGuid) throws ApiException { // verify required params are set - if(userId == null || body == null ) { + if(userId == null || templateGuid == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/list".replace("*", ""); + String resourcePath = "/signature/{userId}/templates/{templateGuid}".replace("*", ""); // create path and map variables - resourcePath = resourcePath.replace("{format}","json").replace("{" + "userId" + "}", String.valueOf(userId)); + 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); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "GET", queryParams, null, headerParams, String.class); if(response != null){ - return (SignaturePredefinedListResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListResponse.class); + return (SignatureTemplateResponse) ApiInvoker.deserialize(response, "", SignatureTemplateResponse.class); } else { return null; @@ -3387,23 +3431,33 @@ public SignaturePredefinedListResponse AddPredefinedList (String userId, Signatu } } } - public SignaturePredefinedListsResponse DeletePredefinedList (String userId, String listGuid) throws ApiException { + public SignatureTemplateResponse CreateSignatureTemplate (String userId, String name, String templateGuid, String envelopeGuid, SignatureTemplateSettingsInfo body) throws ApiException { // verify required params are set - if(userId == null || listGuid == null ) { + if(userId == null || name == null ) { throw new ApiException(400, "missing required params"); } - String resourcePath = "/signature/{userId}/lists/{listGuid}".replace("*", ""); + String resourcePath = "/signature/{userId}/template?name={name}&templateId={templateGuid}&envelopeId={envelopeGuid}".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("{" + "listGuid" + "}", String.valueOf(listGuid)); + 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(name))) + queryParams.put("name", String.valueOf(name)); + if(!"null".equals(String.valueOf(templateGuid))) + queryParams.put("templateId", String.valueOf(templateGuid)); + if(!"null".equals(String.valueOf(envelopeGuid))) + queryParams.put("envelopeId", String.valueOf(envelopeGuid)); try { - String response = apiInvoker.invokeAPI(basePath, resourcePath, "DELETE", queryParams, null, headerParams, String.class); + String response = apiInvoker.invokeAPI(basePath, resourcePath, "POST", queryParams, body, headerParams, String.class); if(response != null){ - return (SignaturePredefinedListsResponse) ApiInvoker.deserialize(response, "", SignaturePredefinedListsResponse.class); + return (SignatureTemplateResponse) ApiInvoker.deserialize(response, "", SignatureTemplateResponse.class); } else { return null; @@ -4029,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/model/AnnotationInfo.java b/src/main/java/com/groupdocs/sdk/model/AnnotationInfo.java index 26d7059..d7c8a39 100644 --- a/src/main/java/com/groupdocs/sdk/model/AnnotationInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/AnnotationInfo.java @@ -31,6 +31,8 @@ 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; @@ -41,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; @@ -72,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; } @@ -142,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; } @@ -171,6 +211,8 @@ 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"); @@ -181,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 cf06c79..5632760 100644 --- a/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java @@ -25,6 +25,7 @@ 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; @@ -50,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; } @@ -85,6 +93,7 @@ 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"); 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/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/SignatureFormInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java index c22ae54..d513cd5 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java @@ -41,6 +41,7 @@ public class SignatureFormInfo { private Boolean notifyOwnerOnSign = null; private Boolean attachSignedDocument = null; private String notifyOtherOnSign = null; + private Boolean canParticipantPrintForm = null; public String getId() { return id; } @@ -167,6 +168,13 @@ 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(); @@ -189,6 +197,7 @@ public String toString() { 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 3ccaf92..9c1fbb6 100644 --- a/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java @@ -30,6 +30,7 @@ public class SignatureFormSettingsInfo { private Boolean notifyOwnerOnSign = null; private Boolean attachSignedDocument = null; private String notifyOtherOnSign = null; + private Boolean canParticipantPrintForm = null; public String getName() { return name; } @@ -86,6 +87,13 @@ 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(); @@ -98,6 +106,7 @@ public String toString() { 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/TemplateInfo.java b/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java index 22753fc..f1e3919 100644 --- a/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java @@ -26,6 +26,7 @@ public class TemplateInfo { 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; @@ -57,6 +58,13 @@ 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; } @@ -86,6 +94,7 @@ public String toString() { 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"); diff --git a/src/main/java/com/groupdocs/sdk/model/UserInfo.java b/src/main/java/com/groupdocs/sdk/model/UserInfo.java index d8cb766..46d5225 100644 --- a/src/main/java/com/groupdocs/sdk/model/UserInfo.java +++ b/src/main/java/com/groupdocs/sdk/model/UserInfo.java @@ -87,6 +87,18 @@ public class UserInfo { private String webhook_notification_failed_recipients = null; private String signature_color = 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; @@ -531,6 +543,90 @@ public void setSignature_save_field_changes_automatically(Boolean signature_save 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; } @@ -619,6 +715,18 @@ public String toString() { 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/test/java/com/groupdocs/sdk/api/AntApiTest.java b/src/test/java/com/groupdocs/sdk/api/AntApiTest.java index 7d023d6..7fa66e9 100644 --- a/src/test/java/com/groupdocs/sdk/api/AntApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/AntApiTest.java @@ -37,6 +37,7 @@ 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; @@ -164,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 @@ -177,16 +206,7 @@ public void testCreateAnnotationReply() throws Exception { // add query parameters to expectation mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); // read response json from file - String responseBody = "{\n" + - " \"result\": {\n" + - " \"replyGuid\": \"688a648b\",\n" + - " \"annotationGuid\": \"8257702b138f2b55\",\n" + - " \"replyDateTime\": \"Tue Jul 30 18:06:04 EEST 2013\"\n" + - " },\n" + - " \"status\": \"Ok\",\n" + - " \"error_message\": null,\n" + - " \"composedOn\": 1375207486195\n" + - "}"; + String responseBody = getSampleResponse("ant/CreateAnnotationReply.json"); ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); driver.addExpectation(mockRequest, mockResponse); @@ -613,7 +633,7 @@ public void testGetSharedLinkAccessRights() throws Exception { String resourcePath = "/ant/{userId}/files/{fileId}/sharedLinkAccessRights".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId)); - ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).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("signature", Pattern.compile(".*")); // read response json from file @@ -623,9 +643,7 @@ public void testGetSharedLinkAccessRights() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - AnnotationReviewerRights rights = new AnnotationReviewerRights(); - rights.setCanView(1); - GetSharedLinkAccessRightsResponse response = api.GetSharedLinkAccessRights(userId, fileId, rights); + GetSharedLinkAccessRightsResponse response = api.GetSharedLinkAccessRights(userId, fileId); // this ensures that json was successfully deserialized into corresponding model object assertSameJson(responseBody, response); @@ -640,8 +658,8 @@ public void testSetSharedLinkAccessRights() throws Exception { // sample parameters String userId = "userId"; String fileId = "fileId"; - AnnotationReviewerRights body = new AnnotationReviewerRights(); - body.setAll(31); + 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)); ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.APPLICATION_JSON); diff --git a/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java b/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java index 5a96183..dc6c0b9 100644 --- a/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java @@ -344,6 +344,8 @@ public void testGetJobs() throws Exception { 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)); @@ -356,6 +358,8 @@ public void testGetJobs() throws Exception { 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"); @@ -364,7 +368,7 @@ public void testGetJobs() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - GetJobsResponse response = api.GetJobs(userId, pageIndex, pageSize, date, statusIds, actions, excludedActions, jobName); + 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 e897649..1afa89e 100644 --- a/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java @@ -124,7 +124,7 @@ public void testDownloadResult() throws Exception { String resultFileId = "resultFileId"; String format = "format"; - String resourcePath = "/comparison/{resultFileId}/download".replace("{" + "resultFileId" + "}", String.valueOf(resultFileId)); + String resourcePath = "/comparison/public/{resultFileId}/download".replace("{" + "resultFileId" + "}", String.valueOf(resultFileId)); ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); // add query parameters to expectation @@ -151,7 +151,7 @@ public void testGetChanges() throws Exception { // sample parameters String resultFileId = "resultFileId"; - String resourcePath = "/comparison/{resultFileId}/changes"; + String resourcePath = "/comparison/public/{resultFileId}/changes"; ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML); // add query parameters to expectation @@ -180,7 +180,7 @@ public void testUpdateChanges() throws Exception { String resultFileId = "resultFileId"; List body = getSampleRequest("comparison/payload/UpdateChanges.json", new TypeReference>(){}); - String resourcePath = "/comparison/{resultFileId}/changes"; + String resourcePath = "/comparison/public/{resultFileId}/changes"; ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.PUT).withHeader("Content-Type", MediaType.APPLICATION_JSON); // add query parameters to expectation diff --git a/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java b/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java index addc810..c0c224f 100644 --- a/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java +++ b/src/test/java/com/groupdocs/sdk/api/JsonSerializerTest.java @@ -15,25 +15,35 @@ */ package com.groupdocs.sdk.api; -import com.github.restdriver.clientdriver.ClientDriverRequest.Method; -import com.github.restdriver.clientdriver.ClientDriverRule; -import com.groupdocs.sdk.common.ApiInvoker; -import com.groupdocs.sdk.model.*; +import static com.github.restdriver.clientdriver.RestClientDriver.giveResponse; +import static com.github.restdriver.clientdriver.RestClientDriver.onRequestTo; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.equalTo; +import static org.junit.Assert.fail; + +import java.util.Arrays; +import java.util.List; + +import javax.ws.rs.core.MediaType; + import org.apache.commons.io.IOUtils; import org.junit.Before; import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; -import javax.ws.rs.core.MediaType; -import java.util.Arrays; -import java.util.List; - -import static com.github.restdriver.clientdriver.RestClientDriver.giveResponse; -import static com.github.restdriver.clientdriver.RestClientDriver.onRequestTo; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.equalTo; -import static org.junit.Assert.fail; +import com.github.restdriver.clientdriver.ClientDriverRequest.Method; +import com.github.restdriver.clientdriver.ClientDriverRule; +import com.groupdocs.sdk.common.ApiInvoker; +import com.groupdocs.sdk.model.AddReplyResponse; +import com.groupdocs.sdk.model.AnnotationInfo; +import com.groupdocs.sdk.model.AnnotationReplyInfo; +import com.groupdocs.sdk.model.CreateAnnotationResponse; +import com.groupdocs.sdk.model.EditReplyResponse; +import com.groupdocs.sdk.model.Rectangle; +import com.groupdocs.sdk.model.ReviewerInfo; +import com.groupdocs.sdk.model.SetCollaboratorsResponse; +import com.groupdocs.sdk.model.SetReviewerRightsResponse; /** * Test cases to ensure correctness of Object to JSON serialization and Object from JSON deserialization @@ -161,11 +171,10 @@ public void testListOfObjectsSerilization() throws Exception { rev2.setAccess_rights("0"); rev2.setId(1233d); List collaborators = Arrays.asList(rev1, rev2); - String userId = "userId"; String fileId = "SomeFileGuid"; String resourcePath = "/ant/{userId}/files/{fileId}/reviewerRights".replace("{userId}", userId).replace("{fileId}", fileId); - String body = "[{\"id\":1232,\"access_rights\":\"1\",\"avatar\":[]},{\"id\":1233,\"access_rights\":\"0\",\"avatar\":[]}]"; + 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 fe66268..913b3a0 100644 --- a/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/MergeApiTest.java @@ -44,6 +44,7 @@ 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; @@ -54,6 +55,7 @@ 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; @@ -1370,8 +1372,8 @@ public void testCopyFileToTemplates() 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 = "/merge/{userId}/files/{path}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "path" + "}", String.valueOf(path)); @@ -1386,7 +1388,7 @@ public void testCopyFileToTemplates() throws Exception { driver.addExpectation(mockRequest, mockResponse); try { - GetTemplatesResponse response = api.CopyFileToTemplates(userId, path, mode, Groupdocs_Copy, Groupdocs_Move); + 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); @@ -1424,6 +1426,35 @@ public void testGetDocumentByQuestionnaire() throws Exception { } + @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 2e72a82..ba3ebff 100644 --- a/src/test/java/com/groupdocs/sdk/api/SignatureApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/SignatureApiTest.java @@ -15,27 +15,91 @@ */ package com.groupdocs.sdk.api; +import static com.github.restdriver.clientdriver.RestClientDriver.giveResponse; +import static com.github.restdriver.clientdriver.RestClientDriver.onRequestTo; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.*; + +import java.util.List; +import java.util.regex.Pattern; + +import javax.ws.rs.core.MediaType; + +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; + import com.fasterxml.jackson.core.type.TypeReference; import com.github.restdriver.clientdriver.ClientDriverRequest; import com.github.restdriver.clientdriver.ClientDriverRequest.Method; import com.github.restdriver.clientdriver.ClientDriverResponse; import com.github.restdriver.clientdriver.ClientDriverRule; + import com.groupdocs.sdk.common.ApiException; import com.groupdocs.sdk.common.FileStream; -import com.groupdocs.sdk.model.*; -import org.junit.Before; -import org.junit.Rule; -import org.junit.Test; - -import javax.ws.rs.core.MediaType; -import java.util.List; -import java.util.regex.Pattern; - -import static com.github.restdriver.clientdriver.RestClientDriver.giveResponse; -import static com.github.restdriver.clientdriver.RestClientDriver.onRequestTo; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.not; -import static org.hamcrest.Matchers.nullValue; +import com.groupdocs.sdk.model.SignatureTemplateRecipientsResponse; +import com.groupdocs.sdk.model.SignatureStatusResponse; +import com.groupdocs.sdk.model.SignatureContactResponse; +import com.groupdocs.sdk.model.SignatureFormSettingsInfo; +import com.groupdocs.sdk.model.SignatureFormFieldLocationSettingsInfo; +import com.groupdocs.sdk.model.SignatureRolesResponse; +import com.groupdocs.sdk.model.SignatureEnvelopeFieldsResponse; +import com.groupdocs.sdk.model.PublicSignatureSignDocumentSignerSettingsInfo; +import com.groupdocs.sdk.model.SignatureFormDocumentsResponse; +import com.groupdocs.sdk.model.WebhookInfo; +import com.groupdocs.sdk.model.SignatureEnvelopeRecipientResponse; +import com.groupdocs.sdk.model.SignatureSignatureSettingsInfo; +import com.groupdocs.sdk.model.SignatureFormResponse; +import com.groupdocs.sdk.model.SignatureTemplateFieldLocationSettingsInfo; +import com.groupdocs.sdk.model.SignatureFieldSettingsInfo; +import com.groupdocs.sdk.model.SignatureFormDocumentSettingsInfo; +import com.groupdocs.sdk.model.SignatureEnvelopeResourcesResponse; +import com.groupdocs.sdk.model.SignatureEnvelopeDocumentsResponse; +import com.groupdocs.sdk.model.SignatureTemplatesResponse; +import com.groupdocs.sdk.model.SignaturePredefinedListSettingsInfo; +import com.groupdocs.sdk.model.SignatureFieldsResponse; +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; +import com.groupdocs.sdk.model.SignatureFormDocumentResponse; +import com.groupdocs.sdk.model.SignatureEnvelopeSettingsInfo; +import com.groupdocs.sdk.model.SignatureSignDocumentResponse; +import com.groupdocs.sdk.model.SignatureFormResourcesResponse; +import com.groupdocs.sdk.model.SignatureContactsImportResponse; +import com.groupdocs.sdk.model.SignatureFormFieldResponse; +import com.groupdocs.sdk.model.SignatureFormParticipantResponse; +import com.groupdocs.sdk.model.SignatureFormFieldSettingsInfo; +import com.groupdocs.sdk.model.SignatureTemplateResourcesResponse; +import com.groupdocs.sdk.model.SignatureTemplateDocumentsResponse; +import com.groupdocs.sdk.model.SignatureEnvelopeRecipientsResponse; +import com.groupdocs.sdk.model.SignatureSignatureResponse; +import com.groupdocs.sdk.model.SignatureFieldResponse; +import com.groupdocs.sdk.model.SignatureTemplateFieldResponse; +import com.groupdocs.sdk.model.SignatureTemplateRecipientResponse; +import com.groupdocs.sdk.model.SignatureSignDocumentSettingsInfo; +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; +import com.groupdocs.sdk.model.SignaturePredefinedListResponse; +import com.groupdocs.sdk.model.SignatureContactSettingsInfo; +import com.groupdocs.sdk.model.SignatureSignaturesResponse; +import com.groupdocs.sdk.model.SignatureTemplateAssignFieldSettingsInfo; +import com.groupdocs.sdk.model.SignatureTemplateFieldSettingsInfo; +import com.groupdocs.sdk.model.SignatureVerifyDocumentResponse; +import com.groupdocs.sdk.model.SignaturePredefinedListsResponse; +import com.groupdocs.sdk.model.SignatureEnvelopeAssignFieldSettingsInfo; +import com.groupdocs.sdk.model.SignatureEnvelopeAuditLogsResponse; +import com.groupdocs.sdk.model.SignatureContactIntegrationSettings; +import com.groupdocs.sdk.model.SignatureEnvelopeSendResponse; +import com.groupdocs.sdk.model.SignatureTemplateResponse; +import com.groupdocs.sdk.model.SignatureSignDocumentStatusResponse; +import com.groupdocs.sdk.model.SignatureEnvelopeResponse; public class SignatureApiTest extends AbstractUnitTest { @@ -51,6 +115,93 @@ 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 @@ -336,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 @@ -351,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); @@ -1278,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 @@ -1293,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); @@ -1892,6 +2045,68 @@ public void testUpdateEnvelopeFromTemplate() throws Exception { } + @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 @@ -2368,75 +2583,75 @@ public void testDeleteSignatureFormField() throws Exception { } } - - @Test - public void testGetSignatureFormFields() throws Exception { - // sample parameters - 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"); - - ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); - driver.addExpectation(mockRequest, mockResponse); - - try { - SignatureFormFieldsResponse response = api.GetSignatureFormFields(userId, formGuid, documentGuid, fieldGuid); - // 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 testGetSignatureFormFields() throws Exception { + // sample parameters + 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"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + SignatureFormFieldsResponse response = api.GetSignatureFormFields(userId, formGuid, documentGuid, fieldGuid); + // 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 testGetSignatureForm() throws Exception { // sample parameters String userId = "userId"; String formGuid = "formGuid"; - + String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); - + 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/GetSignatureForm.json"); - + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); driver.addExpectation(mockRequest, mockResponse); - + try { SignatureFormResponse response = api.GetSignatureForm(userId, formGuid); // 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 testModifySignatureForm() throws Exception { // sample parameters String userId = "userId"; String formGuid = "formGuid"; SignatureFormSettingsInfo body = getSampleRequest("signature/payload/ModifySignatureForm.json", new TypeReference(){}); - + String resourcePath = "/signature/{userId}/forms/{formGuid}".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "formGuid" + "}", String.valueOf(formGuid)); - + ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.POST).withHeader("Content-Type", MediaType.APPLICATION_JSON); // add query parameters to expectation mockRequest = mockRequest.withParam("signature", Pattern.compile(".*")); @@ -2813,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 @@ -3003,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 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 testPublicFillEnvelopeField() throws Exception { // sample parameters @@ -3693,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/SystemApiTest.java b/src/test/java/com/groupdocs/sdk/api/SystemApiTest.java index f2cf0af..ed15592 100644 --- a/src/test/java/com/groupdocs/sdk/api/SystemApiTest.java +++ b/src/test/java/com/groupdocs/sdk/api/SystemApiTest.java @@ -147,34 +147,34 @@ public void testGetUserSubscriptionPlan() throws Exception { } } - - @Test - public void testGetSubscriptionPlans() throws Exception { - // sample parameters - String callerId = "callerId"; - String family = "family"; - - String resourcePath = "/system/{callerId}/plans/{family}".replace("{" + "callerId" + "}", String.valueOf(callerId)).replace("{" + "family" + "}", String.valueOf(family)); - - 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("system/GetSubscriptionPlans.json"); - - ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); - driver.addExpectation(mockRequest, mockResponse); - - try { - GetSubscriptionPlansResponse response = api.GetSubscriptionPlans(callerId, family); - // 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 testGetSubscriptionPlans() throws Exception { + // sample parameters + String callerId = "callerId"; + String family = "family"; + + String resourcePath = "/system/{callerId}/plans/{family}".replace("{" + "callerId" + "}", String.valueOf(callerId)).replace("{" + "family" + "}", String.valueOf(family)); + + 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("system/GetSubscriptionPlans.json"); + + ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200); + driver.addExpectation(mockRequest, mockResponse); + + try { + GetSubscriptionPlansResponse response = api.GetSubscriptionPlans(callerId, family); + // 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 testSetSubscriptionPlan() throws Exception { diff --git a/src/test/resources/requests/ant/info/SetSharedLinkAccessRights b/src/test/resources/requests/ant/info/SetSharedLinkAccessRights index 860a7ee..9432b67 100644 --- a/src/test/resources/requests/ant/info/SetSharedLinkAccessRights +++ b/src/test/resources/requests/ant/info/SetSharedLinkAccessRights @@ -1,6 +1,6 @@ PUT /v2.0/ant/ea103bbe8cb8ce07/files/6ba8051b9c7b18b15391b86340514bd87c82c90a9c69786b691193a6391f2cca/sharedLinkAccessRights?signature=fqMIkTc3GIR%2ByqIG%2Bn6IXMuvJt4 -Host: stage-api-groupdocs.dynabic.com +Host: dev-api-groupdocs.dynabic.com Accept: application/json Content-Length: 2 Groupdocs-Referrer: ruby/1.4.2 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 5d8c2eb..568e3a7 100644 --- a/src/test/resources/responses/ant/AddAnnotationCollaborator.json +++ b/src/test/resources/responses/ant/AddAnnotationCollaborator.json @@ -20,10 +20,10 @@ "primary_email": "user_one@mailinator.com", "firstName": "John", "lastName": "Smith", - + "access_rights": "15", + "avatar": null, "color": 13828740, - "customEmailMessage": null, - "avatar": null + "customEmailMessage": null } ] }, diff --git a/src/test/resources/responses/ant/CreateAnnotationReply.json b/src/test/resources/responses/ant/CreateAnnotationReply.json index b73ac27..b8c04e8 100644 --- a/src/test/resources/responses/ant/CreateAnnotationReply.json +++ b/src/test/resources/responses/ant/CreateAnnotationReply.json @@ -2,7 +2,7 @@ "result": { "replyGuid": "688a648b", "annotationGuid": "8257702b138f2b55", - "replyDateTime": "2013-07-30T18:04:47.0077657Z" + "replyDateTime": "2013-07-30T18:06:04.657Z" }, "status": "Ok", "error_message": null, diff --git a/src/test/resources/responses/ant/GetAnnotationCollaborators.json b/src/test/resources/responses/ant/GetAnnotationCollaborators.json index 94f7b60..ed93603 100644 --- a/src/test/resources/responses/ant/GetAnnotationCollaborators.json +++ b/src/test/resources/responses/ant/GetAnnotationCollaborators.json @@ -11,9 +11,10 @@ "access_rights": null, "color": null, "customEmailMessage": null, - "avatar": null + "avatar": [] }, "collaborators": [ + ], "shared_link_access_rights": null }, diff --git a/src/test/resources/responses/ant/ListAnnotations.json b/src/test/resources/responses/ant/ListAnnotations.json index f1c5619..d8954d6 100644 --- a/src/test/resources/responses/ant/ListAnnotations.json +++ b/src/test/resources/responses/ant/ListAnnotations.json @@ -7,14 +7,14 @@ "guid": "d71705c6b7ed8498", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -22,11 +22,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ - + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} + ], "createdOn": 1375207363133, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -35,14 +35,14 @@ "guid": "9247c81ff0887880", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -50,11 +50,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207366367, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -63,14 +63,14 @@ "guid": "f4b5ee8e543ce8b2", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -78,11 +78,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207370133, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -91,14 +91,14 @@ "guid": "fc45947141e01afa", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -106,11 +106,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207372900, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -119,14 +119,14 @@ "guid": "a550752dc8f4b4d0", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -134,11 +134,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207375633, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -147,14 +147,14 @@ "guid": "69a155e1d0c967a5", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -162,11 +162,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207378447, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -175,14 +175,14 @@ "guid": "2ae4733289936065", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -190,11 +190,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207381163, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -203,14 +203,14 @@ "guid": "2ad27688411aa2f0", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -218,11 +218,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207383710, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -231,14 +231,14 @@ "guid": "75df5549211de191", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -246,11 +246,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207386133, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -259,14 +259,14 @@ "guid": "29e9f2ab761774db", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -274,11 +274,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207389163, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -287,14 +287,14 @@ "guid": "69ba536d3eaef4f5", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -302,11 +302,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207392040, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -315,14 +315,14 @@ "guid": "40faf4596a39b3e4", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -330,11 +330,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207394743, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -343,14 +343,14 @@ "guid": "0ad17fd53c7c2fb6", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -358,11 +358,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207397477, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -371,14 +371,14 @@ "guid": "535f709709677c87", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -386,11 +386,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207400337, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -399,14 +399,14 @@ "guid": "f3f4fb3aac62b673", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -414,11 +414,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207403163, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -427,14 +427,14 @@ "guid": "56668faee8f72f4b", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -442,11 +442,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207406007, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -455,14 +455,14 @@ "guid": "6bb2b09ab7583883", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -470,11 +470,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207408947, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -483,14 +483,14 @@ "guid": "778adcc2494988e2", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -498,11 +498,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207411790, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -511,14 +511,14 @@ "guid": "957c51837232688f", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -526,11 +526,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207414743, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -539,14 +539,14 @@ "guid": "24466493beeb5f63", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -554,11 +554,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207417507, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -567,14 +567,14 @@ "guid": "d8d199abc8f4808d", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -582,11 +582,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207420273, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -595,14 +595,14 @@ "guid": "6c136fb84e8b6f28", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -610,11 +610,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207423100, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -623,14 +623,14 @@ "guid": "4079f1fd936f8eaa", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -638,11 +638,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207425867, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -651,14 +651,14 @@ "guid": "ca2f60e73d31bfa8", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -666,11 +666,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207428757, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -679,14 +679,14 @@ "guid": "832d5c19389752e0", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -694,11 +694,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207431773, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -707,14 +707,14 @@ "guid": "7f0a33afffd770a7", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -722,11 +722,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207434773, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -735,14 +735,14 @@ "guid": "d16f645d2d6abf2e", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -750,11 +750,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207437210, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -763,14 +763,14 @@ "guid": "c716a81724716932", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -778,11 +778,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207439727, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -791,14 +791,14 @@ "guid": "e5776763a0aa97cc", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -806,11 +806,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207442303, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -819,14 +819,14 @@ "guid": "3f89084b03c3a0a8", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -834,11 +834,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207444743, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -847,14 +847,14 @@ "guid": "9637e7d6e7838681", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -862,11 +862,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207447023, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -875,14 +875,14 @@ "guid": "8b6b89d551e128c1", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -890,11 +890,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207449507, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -903,14 +903,14 @@ "guid": "6d9badae2cc1ab02", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -918,11 +918,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207451913, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -931,14 +931,14 @@ "guid": "7543a176c2d98310", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -946,7 +946,7 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} { "guid": "688a648b", "userGuid": "ea103bbe8cb8ce07", @@ -957,7 +957,7 @@ } ], "createdOn": 1375207485710, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -966,14 +966,14 @@ "guid": "ee800f33a38147f3", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -981,7 +981,7 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} { "guid": "951bf0e0", "userGuid": "ea103bbe8cb8ce07", @@ -992,7 +992,7 @@ } ], "createdOn": 1375207488430, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1001,14 +1001,14 @@ "guid": "4426b519c57526e4", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1016,7 +1016,7 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} { "guid": "b8af7c3b", "userGuid": "ea103bbe8cb8ce07", @@ -1027,7 +1027,7 @@ } ], "createdOn": 1375207490947, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1036,14 +1036,14 @@ "guid": "a0e1857d01912394", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1051,7 +1051,7 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} { "guid": "90e42484", "userGuid": "ea103bbe8cb8ce07", @@ -1062,7 +1062,7 @@ } ], "createdOn": 1375207493507, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1071,23 +1071,23 @@ "guid": "586ca3c1c11c510f", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Text", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207527383, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1096,23 +1096,23 @@ "guid": "423149f77099ea1e", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Text", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207529087, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1121,23 +1121,23 @@ "guid": "5a38daec40578f54", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Text", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207530710, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1146,23 +1146,23 @@ "guid": "b0fc4a0e83f7cbb6", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Text", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207532320, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1171,23 +1171,23 @@ "guid": "abf1a98b06fe295a", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Text", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207533883, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1196,23 +1196,23 @@ "guid": "f436d8160955fd52", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Text", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207536900, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1221,23 +1221,23 @@ "guid": "d77b333c72f4688f", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Area", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207539820, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1246,23 +1246,23 @@ "guid": "558f56f2a02a6d92", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207542850, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1271,23 +1271,23 @@ "guid": "f04df3f20831df5e", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "TextStrikeout", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207545803, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1296,23 +1296,23 @@ "guid": "4bcf6e75b0f90e67", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Polyline", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207548710, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1321,23 +1321,23 @@ "guid": "207030cf199a5463", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Text", "access": "Private", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207551587, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1346,23 +1346,23 @@ "guid": "5a19450e75ef5b12", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Text", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207554617, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1371,23 +1371,23 @@ "guid": "ec61f052de419cbb", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, - "width": 0, - "height": 0 + "width": 0.0, + "height": 0.0 }, "annotationPosition": null, "range": null, "svgPath": null, "type": "Text", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207558023, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1396,14 +1396,14 @@ "guid": "06431efe20fa9830", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1411,11 +1411,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207591383, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1424,14 +1424,14 @@ "guid": "4745772570c406b8", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1439,11 +1439,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207594007, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1452,14 +1452,14 @@ "guid": "96e1aed704b83aeb", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1467,11 +1467,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207596493, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1480,14 +1480,14 @@ "guid": "54ccfaf157d11fca", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1495,7 +1495,7 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} { "guid": "8b4f6992", "userGuid": "ea103bbe8cb8ce07", @@ -1506,7 +1506,7 @@ } ], "createdOn": 1375207673100, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1515,14 +1515,14 @@ "guid": "f5b9ac3ccc7a779b", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1530,7 +1530,7 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} { "guid": "dec9ccaf", "userGuid": "ea103bbe8cb8ce07", @@ -1541,7 +1541,7 @@ } ], "createdOn": 1375207675913, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1550,14 +1550,14 @@ "guid": "bda6bbe6b8d5539e", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1565,7 +1565,7 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} { "guid": "6a6c0df9", "userGuid": "ea103bbe8cb8ce07", @@ -1576,7 +1576,7 @@ } ], "createdOn": 1375207678977, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1585,14 +1585,14 @@ "guid": "537c17444befb32f", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1600,11 +1600,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207713210, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1613,14 +1613,14 @@ "guid": "cd9a50f54ec2e8a1", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1628,11 +1628,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207714850, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1641,14 +1641,14 @@ "guid": "f0b16b938b2f4c95", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1656,11 +1656,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207716553, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1669,14 +1669,14 @@ "guid": "b13afab668e33286", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1684,11 +1684,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207718413, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1697,14 +1697,14 @@ "guid": "d66f16fd9711b222", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1712,11 +1712,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207720070, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1725,14 +1725,14 @@ "guid": "831f4c41fcb6c574", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1740,11 +1740,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207722040, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1753,14 +1753,14 @@ "guid": "a9d0f644517f6161", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1768,11 +1768,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207724007, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1781,14 +1781,14 @@ "guid": "0b52d566532dcf4f", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1796,11 +1796,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207725710, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1809,14 +1809,14 @@ "guid": "2f727722cab52fbf", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1824,11 +1824,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207727413, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1837,14 +1837,14 @@ "guid": "b9fa704c39c25de9", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1852,11 +1852,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207729180, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1865,14 +1865,14 @@ "guid": "0e9dd58f2b67ed65", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1880,11 +1880,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207730900, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1893,14 +1893,14 @@ "guid": "bffc45e596549bc2", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1908,11 +1908,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207733493, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1921,14 +1921,14 @@ "guid": "72af2cbb317893e1", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1936,11 +1936,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207736087, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1949,14 +1949,14 @@ "guid": "c298d213de6d2445", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1964,11 +1964,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207738617, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -1977,14 +1977,14 @@ "guid": "35a6bd72b1178c37", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -1992,11 +1992,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207741023, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -2005,14 +2005,14 @@ "guid": "2648b083081b1e37", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -2020,11 +2020,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207744150, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -2033,14 +2033,14 @@ "guid": "3ca98834903ea726", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -2048,11 +2048,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207747273, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -2061,14 +2061,14 @@ "guid": "d35ba3fe053079ad", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -2076,11 +2076,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207749960, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null @@ -2089,14 +2089,14 @@ "guid": "e5c7755f1b25d0dc", "documentGuid": null, "sessionGuid": null, - "creatorGuid": "ea103bbe8cb8ce07", + "creatorGuid": "ea103bbe8cb8ce07", "creatorEmail": null, "creatorName": null, "box": { "x": 10, "y": 10, "width": 10, "height": 10 }, - "annotationPosition": { + "pageNumber": null, "annotationPosition": { "x": 10, "y": 10 }, @@ -2104,11 +2104,11 @@ "svgPath": null, "type": "Point", "access": "Public", - "replies": [ + "replies": [ {"guid": "6a6c0df9", "isAvatarExist": null} ], "createdOn": 1375207752743, - "fontColor": 0, + "fontColor": 0, "penColor": null, "penWidth": null, "penStyle": null, "fieldText": null, "fontFamily": null, "fontSize": null diff --git a/src/test/resources/responses/ant/SetAnnotationCollaborators.json b/src/test/resources/responses/ant/SetAnnotationCollaborators.json index fbb28d6..1c09369 100644 --- a/src/test/resources/responses/ant/SetAnnotationCollaborators.json +++ b/src/test/resources/responses/ant/SetAnnotationCollaborators.json @@ -11,7 +11,7 @@ "access_rights": null, "color": null, "customEmailMessage": null, - "avatar": null + "avatar": [] }, "collaborators": [ { @@ -23,7 +23,7 @@ "access_rights": "15", "color": 7220678, "customEmailMessage": null, - "avatar": null + "avatar": [] }, { "id": 22103, @@ -34,7 +34,7 @@ "access_rights": "15", "color": 16515083, "customEmailMessage": null, - "avatar": 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/merge/GetDocumentQuestionnaires.json b/src/test/resources/responses/merge/GetDocumentQuestionnaires.json index de42019..521f86a 100644 --- a/src/test/resources/responses/merge/GetDocumentQuestionnaires.json +++ b/src/test/resources/responses/merge/GetDocumentQuestionnaires.json @@ -1,1902 +1,1970 @@ -class GetDocumentQuestionnairesResponse { -result: class GetDocumentQuestionnairesResult { -document_id: 317869.0 -questionnaires: [class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65037.0 -guid: cc30ac78109970d85d4893108682949c -name: Test Questionnaire (3) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373693966920 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65038.0 -guid: cecca4bd695d763e6af45451b5083b2e -name: Test Questionnaire (4) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373693970797 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65039.0 -guid: d127df78f77092d746df244e84e85543 -name: Test Questionnaire (5) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373693974693 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65040.0 -guid: 85ccde3aaf5cb88c710e78ea126f5c68 -name: Test Questionnaire (6) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373693979233 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] -formats: [] -id: 65090.0 -guid: efcaf18442371fda5e19f2a0969af631 -name: Test Questionnaire (46) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373694230697 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65192.0 -guid: 2130b24aa8782a06d207a8ee1e530c79 -name: Test Questionnaire (131) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373741420243 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65193.0 -guid: 0fb4e4f7788755f234e9e1b8caafa457 -name: Test Questionnaire (132) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373741425603 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65194.0 -guid: b36af52afeba73af930266f7912bc522 -name: Test Questionnaire (133) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373741430557 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65195.0 -guid: e5a2efe41e70fa0fc875522d1c22121d -name: Test Questionnaire (134) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373741437540 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] -formats: [] -id: 65245.0 -guid: f1165a8cdfb4dd5c5264b9dad419e9d6 -name: Test Questionnaire (174) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373741739300 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65347.0 -guid: 9d6914f676bafbc8ab25a4431fad65af -name: Test Questionnaire (259) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373780434070 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65348.0 -guid: cb0c8f0562272a4b6113a95ef629fc32 -name: Test Questionnaire (260) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373780441230 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65349.0 -guid: 85823d049fb7df3697ee061d0536262a -name: Test Questionnaire (261) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373780449803 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65350.0 -guid: 7b49db528f83fed96287fb0ca8dc0558 -name: Test Questionnaire (262) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373780461357 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] -formats: [] -id: 65400.0 -guid: 7abc6fb66aa7724480ba85e5fd531d55 -name: Test Questionnaire (302) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373780878867 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65502.0 -guid: 1ef22d9702131e427693061d8b46c8fb -name: Test Questionnaire (387) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373866901253 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65503.0 -guid: 830a19305553b76a815918477de4ca4f -name: Test Questionnaire (388) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373866909307 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65504.0 -guid: 616cd33ee7d1e1ae5ba28829550b19a7 -name: Test Questionnaire (389) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373866917493 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65505.0 -guid: dc2dca6ae9915b1d66db28d7120243ca -name: Test Questionnaire (390) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373866928150 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] -formats: [] -id: 65555.0 -guid: 75e3db1c8da3204ebbeee280d1c58aeb -name: Test Questionnaire (430) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373867372953 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65656.0 -guid: 71c0b64380c41b8fafa0cf31a662d1ba -name: Test Questionnaire (514) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373953445447 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65657.0 -guid: 99e92571e31f0ca9c599926cd304597c -name: Test Questionnaire (515) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373953456370 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65658.0 -guid: da259d98fcd0b9c84dd797d5bd240d97 -name: Test Questionnaire (516) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373953466963 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65659.0 -guid: 597569ca2251366d659b7dfaee0edd9d -name: Test Questionnaire (517) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373953485387 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] -formats: [] -id: 65709.0 -guid: dee637993b7523810a35bd61f3f46398 -name: Test Questionnaire (557) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1373954073697 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65811.0 -guid: 409bb38dcc3ce947d62957d9f98ccd7b -name: Test Questionnaire (642) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1374034019980 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65812.0 -guid: ab2fd7e8f73c84fd31a20dbb3aec66ef -name: Test Questionnaire (643) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1374034032647 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65813.0 -guid: 550f9fe05d5843474a0199f7db142bf0 -name: Test Questionnaire (644) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1374034044757 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 65814.0 -guid: f2b703e89d4b7443378014acb82bd6b5 -name: Test Questionnaire (645) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1374034060990 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] -formats: [] -id: 65864.0 -guid: 32fcc9538b022e70372ee589fe37c84c -name: Test Questionnaire (685) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1374034687263 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 66431.0 -guid: 66480838c64bbe75cd83bf03df896489 -name: Test Questionnaire (770) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1374064278627 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 66432.0 -guid: 19792a12d4eebd7c4719933fe7ca787a -name: Test Questionnaire (771) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1374064294313 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 66433.0 -guid: 48732590d19ad556a62ace2b5a0215ac -name: Test Questionnaire (772) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1374064308300 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 66434.0 -guid: d676966ab0f2271a0dea336b133404b6 -name: Test Questionnaire (773) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1374064332173 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] -formats: [] -id: 66484.0 -guid: 13332812056b42adc7a1f3f3d972abc7 -name: Test Questionnaire (813) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1374065085247 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 66589.0 -guid: 350e31bc77a3a626dc1e86bdb8dbfe01 -name: Test Questionnaire (899) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1375124949303 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: [] -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 66590.0 -guid: 74542e490e9a267c808c1f4717c97e72 -name: Test Questionnaire (900) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1375124963613 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 66591.0 -guid: 7593923a3210023d9d5bab56f2402159 -name: Test Questionnaire (901) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1375124977457 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: [] -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 66592.0 -guid: c7a1260aa8b1b5272286e16c97b1c727 -name: Test Questionnaire (902) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1375124997317 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: [d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc] -formats: [] -id: 66642.0 -guid: 2b19f7b7738e574e2a6ae54086e2d3b4 -name: Test Questionnaire (942) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1375125954350 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 66744.0 -guid: 5e87ca755487aa2743a2c3755be0f9d1 -name: Test Questionnaire (1027) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1375211187027 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 66745.0 -guid: b3a65377ce2b032aff82025b60aa3835 -name: Test Questionnaire (1028) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1375211203527 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [] -id: 66746.0 -guid: b8602b2e5b1fec3d35273ee6d21792c3 -name: Test Questionnaire (1029) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1375211219777 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -, class QuestionnaireInfo { -resolved_executions: 0 -pages: [class QuestionnairePageInfo { -number: 1 -title: Page -questions: [class QuestionInfo { -field: topmostSubform[0].Page1[0].f1_01_0_[0] -text: Text -def_answer: Answer -required: true -disabled: false -type: GenericText -answers: [class AnswerInfo { -text: Text -value: Value -ordinal: null -} -] -conditions: null -acceptableValues: null -max_length: null -rect: null -} -] -} -] -document_ids: null -formats: [Pdf, Xps, Tiff, Jpeg, Jpg, Txt] -id: 66747.0 -guid: 7ece1ddcf52490b6ea84fcd6dfaff479 -name: Test Questionnaire (1030) -descr: Test Questionnaire Description -status: Ready -assigned_questions: 1 -total_questions: 1 -modified: 1375211242103 -expires: 0 -folder: null -emails: null -output_format: null -open_on_completion: false -allowed_operations: null -} -] -} +{ + "result": { + "document_id": 317869, + "questionnaires": [ + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null, "max_length": null, + + + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ -status: Ok -error_message: null -composedOn: 1375212226053 -} + ], + "id": 65037, + "guid": "cc30ac78109970d85d4893108682949c", + "name": "Test Questionnaire (3)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373693966920, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65038, + "guid": "cecca4bd695d763e6af45451b5083b2e", + "name": "Test Questionnaire (4)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373693970797, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65039, + "guid": "d127df78f77092d746df244e84e85543", + "name": "Test Questionnaire (5)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373693974693, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65040, + "guid": "85ccde3aaf5cb88c710e78ea126f5c68", + "name": "Test Questionnaire (6)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373693979233, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": [ + "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" + ], + "formats": [ + + ], + "id": 65090, + "guid": "efcaf18442371fda5e19f2a0969af631", + "name": "Test Questionnaire (46)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373694230697, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65192, + "guid": "2130b24aa8782a06d207a8ee1e530c79", + "name": "Test Questionnaire (131)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373741420243, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65193, + "guid": "0fb4e4f7788755f234e9e1b8caafa457", + "name": "Test Questionnaire (132)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373741425603, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65194, + "guid": "b36af52afeba73af930266f7912bc522", + "name": "Test Questionnaire (133)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373741430557, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65195, + "guid": "e5a2efe41e70fa0fc875522d1c22121d", + "name": "Test Questionnaire (134)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373741437540, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": [ + "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" + ], + "formats": [ + + ], + "id": 65245, + "guid": "f1165a8cdfb4dd5c5264b9dad419e9d6", + "name": "Test Questionnaire (174)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373741739300, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65347, + "guid": "9d6914f676bafbc8ab25a4431fad65af", + "name": "Test Questionnaire (259)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373780434070, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65348, + "guid": "cb0c8f0562272a4b6113a95ef629fc32", + "name": "Test Questionnaire (260)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373780441230, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65349, + "guid": "85823d049fb7df3697ee061d0536262a", + "name": "Test Questionnaire (261)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373780449803, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65350, + "guid": "7b49db528f83fed96287fb0ca8dc0558", + "name": "Test Questionnaire (262)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373780461357, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": [ + "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" + ], + "formats": [ + + ], + "id": 65400, + "guid": "7abc6fb66aa7724480ba85e5fd531d55", + "name": "Test Questionnaire (302)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373780878867, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65502, + "guid": "1ef22d9702131e427693061d8b46c8fb", + "name": "Test Questionnaire (387)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373866901253, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65503, + "guid": "830a19305553b76a815918477de4ca4f", + "name": "Test Questionnaire (388)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373866909307, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65504, + "guid": "616cd33ee7d1e1ae5ba28829550b19a7", + "name": "Test Questionnaire (389)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373866917493, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65505, + "guid": "dc2dca6ae9915b1d66db28d7120243ca", + "name": "Test Questionnaire (390)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373866928150, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": [ + "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" + ], + "formats": [ + + ], + "id": 65555, + "guid": "75e3db1c8da3204ebbeee280d1c58aeb", + "name": "Test Questionnaire (430)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373867372953, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65656, + "guid": "71c0b64380c41b8fafa0cf31a662d1ba", + "name": "Test Questionnaire (514)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373953445447, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65657, + "guid": "99e92571e31f0ca9c599926cd304597c", + "name": "Test Questionnaire (515)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373953456370, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65658, + "guid": "da259d98fcd0b9c84dd797d5bd240d97", + "name": "Test Questionnaire (516)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373953466963, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65659, + "guid": "597569ca2251366d659b7dfaee0edd9d", + "name": "Test Questionnaire (517)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373953485387, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": [ + "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" + ], + "formats": [ + + ], + "id": 65709, + "guid": "dee637993b7523810a35bd61f3f46398", + "name": "Test Questionnaire (557)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1373954073697, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65811, + "guid": "409bb38dcc3ce947d62957d9f98ccd7b", + "name": "Test Questionnaire (642)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1374034019980, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65812, + "guid": "ab2fd7e8f73c84fd31a20dbb3aec66ef", + "name": "Test Questionnaire (643)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1374034032647, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65813, + "guid": "550f9fe05d5843474a0199f7db142bf0", + "name": "Test Questionnaire (644)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1374034044757, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 65814, + "guid": "f2b703e89d4b7443378014acb82bd6b5", + "name": "Test Questionnaire (645)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1374034060990, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": [ + "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" + ], + "formats": [ + + ], + "id": 65864, + "guid": "32fcc9538b022e70372ee589fe37c84c", + "name": "Test Questionnaire (685)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1374034687263, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 66431, + "guid": "66480838c64bbe75cd83bf03df896489", + "name": "Test Questionnaire (770)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1374064278627, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 66432, + "guid": "19792a12d4eebd7c4719933fe7ca787a", + "name": "Test Questionnaire (771)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1374064294313, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 66433, + "guid": "48732590d19ad556a62ace2b5a0215ac", + "name": "Test Questionnaire (772)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1374064308300, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 66434, + "guid": "d676966ab0f2271a0dea336b133404b6", + "name": "Test Questionnaire (773)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1374064332173, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": [ + "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" + ], + "formats": [ + + ], + "id": 66484, + "guid": "13332812056b42adc7a1f3f3d972abc7", + "name": "Test Questionnaire (813)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1374065085247, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 66589, + "guid": "350e31bc77a3a626dc1e86bdb8dbfe01", + "name": "Test Questionnaire (899)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1375124949303, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 66590, + "guid": "74542e490e9a267c808c1f4717c97e72", + "name": "Test Questionnaire (900)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1375124963613, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 66591, + "guid": "7593923a3210023d9d5bab56f2402159", + "name": "Test Questionnaire (901)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1375124977457, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 66592, + "guid": "c7a1260aa8b1b5272286e16c97b1c727", + "name": "Test Questionnaire (902)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1375124997317, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": [ + "d95e53681cbc31a7c001524f64c8aeaf4f71a89f1dffe1c0bd6a6b0e109c91cc" + ], + "formats": [ + + ], + "id": 66642, + "guid": "2b19f7b7738e574e2a6ae54086e2d3b4", + "name": "Test Questionnaire (942)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1375125954350, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 66744, + "guid": "5e87ca755487aa2743a2c3755be0f9d1", + "name": "Test Questionnaire (1027)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1375211187027, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 66745, + "guid": "b3a65377ce2b032aff82025b60aa3835", + "name": "Test Questionnaire (1028)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1375211203527, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + + ], + "id": 66746, + "guid": "b8602b2e5b1fec3d35273ee6d21792c3", + "name": "Test Questionnaire (1029)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1375211219777, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + }, + { + "resolved_executions": 0, + "pages": [ + { + "number": 1, + "title": "Page", + "questions": [ + { + "field": "topmostSubform[0].Page1[0].f1_01_0_[0]", + "text": "Text", + "def_answer": "Answer", + "required": true, + "disabled": false, + "type": "GenericText", "acceptableValues": null, + "answers": [ + { + "text": "Text", + "value": "Value", "ordinal": null + } + ], + "conditions": null + } + ] + } + ], + "document_ids": null, + "formats": [ + "Pdf", + "Xps", + "Tiff", + "Jpeg", + "Jpg", + "Txt" + ], + "id": 66747, + "guid": "7ece1ddcf52490b6ea84fcd6dfaff479", + "name": "Test Questionnaire (1030)", + "descr": "Test Questionnaire Description", + "status": "Ready", + "assigned_questions": 1, + "total_questions": 1, + "modified": 1375211242103, + "expires": 0, + "folder": null, + "emails": null, + "output_format": null, + "open_on_completion": false, + "allowed_operations": null + } + ] + }, + "status": "Ok", + "error_message": null, + "composedOn": 1375212226053 +} \ No newline at end of file diff --git a/src/test/resources/responses/merge/GetQuestionnaire.json b/src/test/resources/responses/merge/GetQuestionnaire.json index 0aafa71..5d373e8 100644 --- a/src/test/resources/responses/merge/GetQuestionnaire.json +++ b/src/test/resources/responses/merge/GetQuestionnaire.json @@ -14,17 +14,18 @@ "required": true, "disabled": false, "type": "GenericText", + "max_length": null, + "rect": null, + "acceptableValues": null, "answers": [ { "text": "Text", - "value": "Value", - "ordinal": null + "ordinal": null, + + "value": "Value" } ], - "conditions": null, - "acceptableValues": null, - "max_length": null, - "rect": null + "conditions": null } ] } diff --git a/src/test/resources/responses/merge/GetQuestionnaireExecution.json b/src/test/resources/responses/merge/GetQuestionnaireExecution.json index 468c1db..8cf36a2 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireExecution.json +++ b/src/test/resources/responses/merge/GetQuestionnaireExecution.json @@ -14,6 +14,9 @@ "required": true, "disabled": false, "type": "GenericText", + "acceptableValues": null, + "max_length": null, + "rect": null, "answers": [ { "text": "Text", @@ -21,10 +24,7 @@ "ordinal": null } ], - "conditions": null, - "acceptableValues": null, - "max_length": null, - "rect": null + "conditions": null } ] } diff --git a/src/test/resources/responses/merge/GetQuestionnaireFields.json b/src/test/resources/responses/merge/GetQuestionnaireFields.json index 0040f0e..78c53db 100644 --- a/src/test/resources/responses/merge/GetQuestionnaireFields.json +++ b/src/test/resources/responses/merge/GetQuestionnaireFields.json @@ -4,12 +4,12 @@ { "page": 0, "name": "topmostSubform[0].Page1[0].f1_01_0_[0]", - "type": null, - "rect": null, - "fieldtype": null, "acceptableValues": null, + "fieldtype": null, "mandatory": null, - "maxlength":null + "maxlength": null, + "type": null, + "rect": null } ] }, diff --git a/src/test/resources/responses/signature/GetSignatureFormFields.json b/src/test/resources/responses/signature/GetSignatureFormFields.json index 40daafd..c617e1e 100644 --- a/src/test/resources/responses/signature/GetSignatureFormFields.json +++ b/src/test/resources/responses/signature/GetSignatureFormFields.json @@ -1,47 +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", - "groupName": null, - "settings": null, - "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, - "order": null - } - ], - "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/GetSignatureTemplateFields.json b/src/test/resources/responses/signature/GetSignatureTemplateFields.json index 5693a14..e407560 100644 --- a/src/test/resources/responses/signature/GetSignatureTemplateFields.json +++ b/src/test/resources/responses/signature/GetSignatureTemplateFields.json @@ -33,6 +33,8 @@ "fieldType": 1, "acceptableValues": "", "defaultValue": "", + "groupName": null, + "settings": null, "tooltip": "Signature", "guidanceText": "" } diff --git a/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json b/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json index cf2f0ca..362c0bd 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json +++ b/src/test/resources/responses/signature/PublicGetSignatureEnvelopeFields.json @@ -30,11 +30,14 @@ "fontBold": false, "fontItalic": false, "fontUnderline": false, - "align": 0 + "align": 0, + "order": null } ], "fieldType": 1, "acceptableValues": "", + "settings": null, + "groupName": null, "defaultValue": "", "tooltip": "Signature", "guidanceText": "" diff --git a/src/test/resources/responses/signature/PublicGetSignatureFormFields.json b/src/test/resources/responses/signature/PublicGetSignatureFormFields.json index 9e300da..ac33f1e 100644 --- a/src/test/resources/responses/signature/PublicGetSignatureFormFields.json +++ b/src/test/resources/responses/signature/PublicGetSignatureFormFields.json @@ -9,6 +9,7 @@ "name": "Signature", "mandatory": true, "regularExpression": "", + "settings": null, "data": null, "fillTimeStamp": "1/1/1970 12:00:00 AM", "locations": [ @@ -25,6 +26,7 @@ "fontColor": "black", "fontSize": 10, "fontBold": false, + "order": null, "fontItalic": false, "fontUnderline": false, "align": 0 @@ -32,6 +34,7 @@ ], "fieldType": 1, "acceptableValues": null, + "groupName": null, "defaultValue": null, "tooltip": "Signature", "guidanceText": "" 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 From 55e45e15165ff806110575f7b2de8958a49cef3b Mon Sep 17 00:00:00 2001 From: Pavel-Teplitsky Date: Tue, 20 May 2014 15:35:08 +0300 Subject: [PATCH 18/34] added new models --- .../CreateQuestionnaireTemplateResponse.java | 71 +++++++++++++++++++ .../DeleteDocumentAnnotationsReponse.java | 70 ++++++++++++++++++ .../DeleteDocumentAnnotationsResult.java | 51 +++++++++++++ 3 files changed, 192 insertions(+) create mode 100644 src/main/java/com/groupdocs/sdk/model/CreateQuestionnaireTemplateResponse.java create mode 100644 src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsReponse.java create mode 100644 src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsResult.java 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/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(); + } +} + From 2d89596eb4ea5b768324ce08489b00529ec4a87b Mon Sep 17 00:00:00 2001 From: Pavel-Teplitsky Date: Tue, 20 May 2014 15:41:38 +0300 Subject: [PATCH 19/34] updated readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 11ee169..692cd31 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.8.1. +Latest SDK version 1.9.0. ## Requirements From 735670fb0b2bc778ddb1de67c5b6d65a23ecf7ea Mon Sep 17 00:00:00 2001 From: Evgeniy <3skif9@mail.ru> Date: Thu, 22 May 2014 15:41:18 +0300 Subject: [PATCH 20/34] updated file MimeUtils.java --- src/main/java/com/groupdocs/sdk/common/MimeUtils.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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()); From 3786b3e0e31466a895c4a2cb567a43ffbecf0f71 Mon Sep 17 00:00:00 2001 From: Evgeniy <3skif9@mail.ru> Date: Thu, 22 May 2014 16:17:15 +0300 Subject: [PATCH 21/34] [maven-release-plugin] prepare release groupdocs-java-client-1.9.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d2460e6..2c0d997 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.9.0-SNAPSHOT + 1.9.0 GroupDocsJava GroupDocs API library for Java From 2dec71cd05cc35dbdad5de6a4ba91abb170a9640 Mon Sep 17 00:00:00 2001 From: Evgeniy <3skif9@mail.ru> Date: Thu, 22 May 2014 16:18:13 +0300 Subject: [PATCH 22/34] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2c0d997..faef10f 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.9.0 + 1.9.1-SNAPSHOT GroupDocsJava GroupDocs API library for Java From 88a41be1269edbd5cadfdc703d35af19835163fb Mon Sep 17 00:00:00 2001 From: 3skif9 <3skif9@mail.ru> Date: Tue, 27 May 2014 10:59:35 +0300 Subject: [PATCH 23/34] Update README.md --- examples/annotations/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/annotations/README.md b/examples/annotations/README.md index dc57889..44a6fee 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/). From 456b21a48b8207c31b872bb556908a6a870dbb99 Mon Sep 17 00:00:00 2001 From: 3skif9 <3skif9@mail.ru> Date: Tue, 27 May 2014 11:02:21 +0300 Subject: [PATCH 24/34] Update README.md --- examples/viewer/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/viewer/README.md b/examples/viewer/README.md index 6ffe6ed..7199c28 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/). From 9691797cb34fa708c082a98fa8f9c969a76f3c42 Mon Sep 17 00:00:00 2001 From: 3skif9 <3skif9@mail.ru> Date: Tue, 27 May 2014 11:33:43 +0300 Subject: [PATCH 25/34] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 692cd31..d22b164 100644 --- a/README.md +++ b/README.md @@ -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) From 356a8447fa6ab51b737a805430c0d61e9d20a3b2 Mon Sep 17 00:00:00 2001 From: 3skif9 <3skif9@mail.ru> Date: Tue, 27 May 2014 13:10:46 +0300 Subject: [PATCH 26/34] Update README.md --- examples/viewer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/viewer/README.md b/examples/viewer/README.md index 7199c28..aabf06f 100644 --- a/examples/viewer/README.md +++ b/examples/viewer/README.md @@ -20,4 +20,4 @@ Now open `http://localhost:8080` and try it! * [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). From 06494a19bb605dce364a3cac1fd62b2eb89b95e3 Mon Sep 17 00:00:00 2001 From: Pavel-Teplitsky Date: Tue, 27 May 2014 16:07:37 +0300 Subject: [PATCH 27/34] Update README.md --- examples/annotations/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/annotations/README.md b/examples/annotations/README.md index 44a6fee..c30dc8c 100644 --- a/examples/annotations/README.md +++ b/examples/annotations/README.md @@ -21,4 +21,4 @@ Now open `http://localhost:8080` and try it! * [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). From d238d320844c589076ce36bd05c41b7005d0a967 Mon Sep 17 00:00:00 2001 From: 3skif9 <3skif9@mail.ru> Date: Tue, 17 Jun 2014 15:25:11 +0300 Subject: [PATCH 28/34] Update StorageApi.java --- src/main/java/com/groupdocs/sdk/api/StorageApi.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/groupdocs/sdk/api/StorageApi.java b/src/main/java/com/groupdocs/sdk/api/StorageApi.java index 4deee7e..5df154c 100644 --- a/src/main/java/com/groupdocs/sdk/api/StorageApi.java +++ b/src/main/java/com/groupdocs/sdk/api/StorageApi.java @@ -410,7 +410,7 @@ public DeleteResponse DeleteFromFolder (String userId, String path) throws ApiEx } } } - public FileMoveResponse MoveFile (String userId, String path, String mode, String Groupdocs_Move, String Groupdocs_Copy) throws ApiException { + public FileMoveResponse MoveFile (String userId, String path, String mode, String Groupdocs_Copy, String Groupdocs_Move) throws ApiException { // verify required params are set if(userId == null || path == null ) { throw new ApiException(400, "missing required params"); @@ -429,8 +429,8 @@ public FileMoveResponse MoveFile (String userId, String path, String mode, Strin if(!"null".equals(String.valueOf(mode))) queryParams.put("mode", String.valueOf(mode)); - headerParams.put("Groupdocs-Move", Groupdocs_Move); headerParams.put("Groupdocs-Copy", Groupdocs_Copy); + headerParams.put("Groupdocs-Move", Groupdocs_Move); try { String response = apiInvoker.invokeAPI(basePath, resourcePath, "PUT", queryParams, null, headerParams, String.class); if(response != null){ From 61ab69e0eb24da584b6d8629aab73ca033733daa Mon Sep 17 00:00:00 2001 From: Evgeniy <3skif9@mail.ru> Date: Tue, 17 Jun 2014 16:55:35 +0300 Subject: [PATCH 29/34] [maven-release-plugin] prepare release groupdocs-java-client-1.9.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index faef10f..750b512 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.9.1-SNAPSHOT + 1.9.1 GroupDocsJava GroupDocs API library for Java From 8d3cccf66b053fae55a860e49d008e5e015a605a Mon Sep 17 00:00:00 2001 From: Evgeniy <3skif9@mail.ru> Date: Tue, 17 Jun 2014 16:56:42 +0300 Subject: [PATCH 30/34] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 750b512..0aa3fc0 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.9.1 + 1.9.2-SNAPSHOT GroupDocsJava GroupDocs API library for Java From d54797551740f0c80fecfce5d50a6601f8093667 Mon Sep 17 00:00:00 2001 From: 3skif9 <3skif9@mail.ru> Date: Tue, 24 Jun 2014 17:34:01 +0300 Subject: [PATCH 31/34] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d22b164..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.9.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.8.1 + 1.9.1 ### Usage Example From 83fae65c232eea64279132f10669da5533e957d7 Mon Sep 17 00:00:00 2001 From: 3skif9 <3skif9@mail.ru> Date: Thu, 26 Jun 2014 13:46:37 +0300 Subject: [PATCH 32/34] Fixed bug in ComparisonApi in method GetChanges --- src/main/java/com/groupdocs/sdk/api/ComparisonApi.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java b/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java index a1699cf..120d51b 100644 --- a/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java +++ b/src/main/java/com/groupdocs/sdk/api/ComparisonApi.java @@ -157,7 +157,7 @@ public ChangesResponse GetChanges (String resultFileId) throws ApiException { resourcePath = resourcePath.substring(0, pos); } // create path and map variables - resourcePath = resourcePath.replace("{format}","json"); + resourcePath = resourcePath.replace("{format}","json").replace("{" + "resultFileId" + "}", String.valueOf(resultFileId)); // query params Map queryParams = new HashMap(); From 28fe11eac4f5e977a0662f2a2fcbebc65089b8a4 Mon Sep 17 00:00:00 2001 From: Evgeniy <3skif9@mail.ru> Date: Thu, 26 Jun 2014 15:32:26 +0300 Subject: [PATCH 33/34] [maven-release-plugin] prepare release groupdocs-java-client-1.9.2 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0aa3fc0..2da65bf 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.9.2-SNAPSHOT + 1.9.2 GroupDocsJava GroupDocs API library for Java From 31c197a1456feb72279f5f96b8a760c2774bee6c Mon Sep 17 00:00:00 2001 From: Evgeniy <3skif9@mail.ru> Date: Thu, 26 Jun 2014 15:33:04 +0300 Subject: [PATCH 34/34] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2da65bf..b5d7cd3 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.groupdocs groupdocs-java-client jar - 1.9.2 + 1.9.3-SNAPSHOT GroupDocsJava GroupDocs API library for Java