boldsign 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (233) hide show
  1. package/.openapi-generator/FILES +2 -0
  2. package/README.md +2 -0
  3. package/api/apis.ts +1 -1
  4. package/dist/api/apis.d.ts +1 -1
  5. package/dist/api/apis.js +1 -1
  6. package/dist/model/accessCodeDetail.d.ts +2 -0
  7. package/dist/model/accessCodeDetail.js +5 -0
  8. package/dist/model/accessCodeDetail.js.map +1 -1
  9. package/dist/model/authenticationSettings.d.ts +22 -0
  10. package/dist/model/authenticationSettings.js +27 -0
  11. package/dist/model/authenticationSettings.js.map +1 -0
  12. package/dist/model/documentSigner.d.ts +2 -0
  13. package/dist/model/documentSigner.js +5 -0
  14. package/dist/model/documentSigner.js.map +1 -1
  15. package/dist/model/documentSignerDetails.d.ts +2 -0
  16. package/dist/model/documentSignerDetails.js +5 -0
  17. package/dist/model/documentSignerDetails.js.map +1 -1
  18. package/dist/model/index.d.ts +3 -1
  19. package/dist/model/index.js +10 -3
  20. package/dist/model/index.js.map +1 -1
  21. package/dist/model/role.d.ts +2 -0
  22. package/dist/model/role.js +5 -0
  23. package/dist/model/role.js.map +1 -1
  24. package/dist/model/signerAuthenticationSettings.d.ts +15 -0
  25. package/dist/model/signerAuthenticationSettings.js +23 -0
  26. package/dist/model/signerAuthenticationSettings.js.map +1 -0
  27. package/dist/tests/config.d.ts +5 -0
  28. package/dist/tests/config.js +43 -0
  29. package/dist/tests/config.js.map +1 -0
  30. package/dist/tests/integration/BrandingApiTest.spec.d.ts +1 -0
  31. package/dist/tests/integration/BrandingApiTest.spec.js +310 -0
  32. package/dist/tests/integration/BrandingApiTest.spec.js.map +1 -0
  33. package/dist/tests/integration/ContactsApiTest.spec.d.ts +1 -0
  34. package/dist/tests/integration/ContactsApiTest.spec.js +249 -0
  35. package/dist/tests/integration/ContactsApiTest.spec.js.map +1 -0
  36. package/dist/tests/integration/CustomFieldApiTest.spec.d.ts +1 -0
  37. package/dist/tests/integration/CustomFieldApiTest.spec.js +289 -0
  38. package/dist/tests/integration/CustomFieldApiTest.spec.js.map +1 -0
  39. package/dist/tests/integration/DocumentApiTest.spec.d.ts +1 -0
  40. package/dist/tests/integration/DocumentApiTest.spec.js +1691 -0
  41. package/dist/tests/integration/DocumentApiTest.spec.js.map +1 -0
  42. package/dist/tests/integration/TemplateApiTest.spec.d.ts +1 -0
  43. package/dist/tests/integration/TemplateApiTest.spec.js +1440 -0
  44. package/dist/tests/integration/TemplateApiTest.spec.js.map +1 -0
  45. package/dist/tests/integration/planApiTest.spec.d.ts +1 -0
  46. package/dist/tests/integration/planApiTest.spec.js +41 -0
  47. package/dist/tests/integration/planApiTest.spec.js.map +1 -0
  48. package/dist/tests/integration/senderIdentity.spec.d.ts +1 -0
  49. package/dist/tests/integration/senderIdentity.spec.js +481 -0
  50. package/dist/tests/integration/senderIdentity.spec.js.map +1 -0
  51. package/dist/tests/integration/teamsApiTest.spec.d.ts +1 -0
  52. package/dist/tests/integration/teamsApiTest.spec.js +230 -0
  53. package/dist/tests/integration/teamsApiTest.spec.js.map +1 -0
  54. package/dist/tests/integration/usersApiTest.spec.d.ts +1 -0
  55. package/dist/tests/integration/usersApiTest.spec.js +290 -0
  56. package/dist/tests/integration/usersApiTest.spec.js.map +1 -0
  57. package/dist/tests/unit/brandingApi.spec.d.ts +1 -0
  58. package/dist/tests/unit/brandingApi.spec.js +174 -0
  59. package/dist/tests/unit/brandingApi.spec.js.map +1 -0
  60. package/dist/tests/unit/contactsApi.spec.d.ts +1 -0
  61. package/dist/tests/unit/contactsApi.spec.js +154 -0
  62. package/dist/tests/unit/contactsApi.spec.js.map +1 -0
  63. package/dist/tests/unit/customFieldApi.spec.d.ts +1 -0
  64. package/dist/tests/unit/customFieldApi.spec.js +140 -0
  65. package/dist/tests/unit/customFieldApi.spec.js.map +1 -0
  66. package/dist/tests/unit/documentApi.spec.d.ts +1 -0
  67. package/dist/tests/unit/documentApi.spec.js +476 -0
  68. package/dist/tests/unit/documentApi.spec.js.map +1 -0
  69. package/dist/tests/unit/planApi.spec.d.ts +1 -0
  70. package/dist/tests/unit/planApi.spec.js +69 -0
  71. package/dist/tests/unit/planApi.spec.js.map +1 -0
  72. package/dist/tests/unit/senderIdentitiesApi.spec.d.ts +1 -0
  73. package/dist/tests/unit/senderIdentitiesApi.spec.js +148 -0
  74. package/dist/tests/unit/senderIdentitiesApi.spec.js.map +1 -0
  75. package/dist/tests/unit/teamApi.spec.d.ts +1 -0
  76. package/dist/tests/unit/teamApi.spec.js +116 -0
  77. package/dist/tests/unit/teamApi.spec.js.map +1 -0
  78. package/dist/tests/unit/templateApi.spec.d.ts +1 -0
  79. package/dist/tests/unit/templateApi.spec.js +285 -0
  80. package/dist/tests/unit/templateApi.spec.js.map +1 -0
  81. package/dist/tests/unit/userApi.spec.d.ts +1 -0
  82. package/dist/tests/unit/userApi.spec.js +163 -0
  83. package/dist/tests/unit/userApi.spec.js.map +1 -0
  84. package/docs/AccessCodeDetail.md +19 -0
  85. package/docs/AccessCodeDetails.md +13 -0
  86. package/docs/Address.md +16 -0
  87. package/docs/AttachmentInfo.md +14 -0
  88. package/docs/AuditTrail.md +18 -0
  89. package/docs/AuthenticationSettings.md +11 -0
  90. package/docs/Base64File.md +12 -0
  91. package/docs/BehalfDocument.md +27 -0
  92. package/docs/BehalfDocumentRecords.md +12 -0
  93. package/docs/BehalfOf.md +12 -0
  94. package/docs/BillingViewModel.md +11 -0
  95. package/docs/BrandCreated.md +11 -0
  96. package/docs/BrandCustomFieldDetails.md +16 -0
  97. package/docs/BrandingApi.md +258 -0
  98. package/docs/BrandingMessage.md +11 -0
  99. package/docs/BrandingRecords.md +11 -0
  100. package/docs/ChangeRecipient.md +18 -0
  101. package/docs/ConditionalRule.md +13 -0
  102. package/docs/ContactCreated.md +12 -0
  103. package/docs/ContactDetails.md +15 -0
  104. package/docs/ContactPageDetails.md +13 -0
  105. package/docs/ContactsApi.md +176 -0
  106. package/docs/ContactsDetails.md +16 -0
  107. package/docs/ContactsList.md +12 -0
  108. package/docs/CreateContactResponse.md +11 -0
  109. package/docs/CreateSenderIdentityRequest.md +16 -0
  110. package/docs/CreateTeamRequest.md +11 -0
  111. package/docs/CreateTemplateRequest.md +35 -0
  112. package/docs/CreateUser.md +14 -0
  113. package/docs/CustomDomainSettings.md +12 -0
  114. package/docs/CustomFieldApi.md +174 -0
  115. package/docs/CustomFieldCollection.md +11 -0
  116. package/docs/CustomFieldMessage.md +12 -0
  117. package/docs/CustomFormField.md +43 -0
  118. package/docs/Date.md +13 -0
  119. package/docs/DeleteCustomFieldReply.md +11 -0
  120. package/docs/Document.md +26 -0
  121. package/docs/DocumentApi.md +756 -0
  122. package/docs/DocumentCC.md +11 -0
  123. package/docs/DocumentCcDetails.md +12 -0
  124. package/docs/DocumentCreated.md +11 -0
  125. package/docs/DocumentExpirySettings.md +16 -0
  126. package/docs/DocumentFiles.md +13 -0
  127. package/docs/DocumentFormFields.md +49 -0
  128. package/docs/DocumentInfo.md +14 -0
  129. package/docs/DocumentProperties.md +50 -0
  130. package/docs/DocumentReassign.md +13 -0
  131. package/docs/DocumentRecords.md +12 -0
  132. package/docs/DocumentSenderDetail.md +14 -0
  133. package/docs/DocumentSigner.md +31 -0
  134. package/docs/DocumentSignerDetails.md +37 -0
  135. package/docs/DocumentTags.md +12 -0
  136. package/docs/DownloadImageRequest.md +16 -0
  137. package/docs/EditSenderIdentityRequest.md +14 -0
  138. package/docs/EditTemplateRequest.md +29 -0
  139. package/docs/EditableDateFieldSettings.md +13 -0
  140. package/docs/EmbeddedCreateTemplateRequest.md +46 -0
  141. package/docs/EmbeddedCustomFieldCreated.md +11 -0
  142. package/docs/EmbeddedDocumentRequest.md +55 -0
  143. package/docs/EmbeddedFileDetails.md +16 -0
  144. package/docs/EmbeddedFileLink.md +11 -0
  145. package/docs/EmbeddedMergeTemplateFormRequest.md +56 -0
  146. package/docs/EmbeddedSendCreated.md +12 -0
  147. package/docs/EmbeddedSendTemplateFormRequest.md +53 -0
  148. package/docs/EmbeddedSigningLink.md +11 -0
  149. package/docs/EmbeddedTemplateCreated.md +12 -0
  150. package/docs/EmbeddedTemplateEditRequest.md +21 -0
  151. package/docs/EmbeddedTemplateEdited.md +11 -0
  152. package/docs/Error.md +12 -0
  153. package/docs/ErrorResult.md +11 -0
  154. package/docs/ExistingFormField.md +15 -0
  155. package/docs/ExtendExpiry.md +14 -0
  156. package/docs/FileInfo.md +14 -0
  157. package/docs/Font.md +18 -0
  158. package/docs/FormField.md +50 -0
  159. package/docs/FormGroup.md +15 -0
  160. package/docs/FormulaFieldSettings.md +12 -0
  161. package/docs/IdDocument.md +21 -0
  162. package/docs/IdReport.md +14 -0
  163. package/docs/IdVerification.md +18 -0
  164. package/docs/IdentityVerificationApi.md +109 -0
  165. package/docs/IdentityVerificationSettings.md +16 -0
  166. package/docs/ImageInfo.md +13 -0
  167. package/docs/MergeAndSendForSignForm.md +46 -0
  168. package/docs/NotificationSettings.md +22 -0
  169. package/docs/PageDetails.md +16 -0
  170. package/docs/PhoneNumber.md +12 -0
  171. package/docs/PlanApi.md +38 -0
  172. package/docs/PrefillField.md +12 -0
  173. package/docs/PrefillFieldRequest.md +12 -0
  174. package/docs/ProblemDetails.md +15 -0
  175. package/docs/RecipientNotificationSettings.md +22 -0
  176. package/docs/Rectangle.md +14 -0
  177. package/docs/ReminderMessage.md +13 -0
  178. package/docs/ReminderSettings.md +13 -0
  179. package/docs/RemoveAuthentication.md +14 -0
  180. package/docs/RevokeDocument.md +12 -0
  181. package/docs/Role.md +33 -0
  182. package/docs/Roles.md +33 -0
  183. package/docs/SendForSign.md +45 -0
  184. package/docs/SendForSignFromTemplateForm.md +43 -0
  185. package/docs/SenderIdentitiesApi.md +209 -0
  186. package/docs/SenderIdentityCreated.md +11 -0
  187. package/docs/SenderIdentityList.md +12 -0
  188. package/docs/SenderIdentityViewModel.md +19 -0
  189. package/docs/SignerAuthenticationSettings.md +12 -0
  190. package/docs/Size.md +12 -0
  191. package/docs/TeamCreated.md +11 -0
  192. package/docs/TeamDocumentRecords.md +12 -0
  193. package/docs/TeamListResponse.md +12 -0
  194. package/docs/TeamPageDetails.md +12 -0
  195. package/docs/TeamResponse.md +15 -0
  196. package/docs/TeamUpdateRequest.md +12 -0
  197. package/docs/TeamUsers.md +16 -0
  198. package/docs/Teams.md +14 -0
  199. package/docs/TeamsApi.md +141 -0
  200. package/docs/Template.md +29 -0
  201. package/docs/TemplateApi.md +484 -0
  202. package/docs/TemplateCC.md +12 -0
  203. package/docs/TemplateCreated.md +11 -0
  204. package/docs/TemplateFormFields.md +50 -0
  205. package/docs/TemplateProperties.md +37 -0
  206. package/docs/TemplateRecords.md +12 -0
  207. package/docs/TemplateRole.md +28 -0
  208. package/docs/TemplateSenderDetail.md +12 -0
  209. package/docs/TemplateSenderDetails.md +13 -0
  210. package/docs/TemplateSharedTemplateDetail.md +12 -0
  211. package/docs/TemplateSignerDetails.md +27 -0
  212. package/docs/TemplateTag.md +14 -0
  213. package/docs/TextTagDefinition.md +40 -0
  214. package/docs/TextTagOffset.md +12 -0
  215. package/docs/UpdateUser.md +14 -0
  216. package/docs/UpdateUserMetaData.md +12 -0
  217. package/docs/UserApi.md +240 -0
  218. package/docs/UserPageDetails.md +12 -0
  219. package/docs/UserProperties.md +21 -0
  220. package/docs/UserRecords.md +12 -0
  221. package/docs/UsersDetails.md +21 -0
  222. package/docs/Validation.md +13 -0
  223. package/docs/VerificationDataRequest.md +15 -0
  224. package/docs/ViewBrandDetails.md +34 -0
  225. package/docs/ViewCustomFieldDetails.md +17 -0
  226. package/model/accessCodeDetail.ts +7 -0
  227. package/model/authenticationSettings.ts +39 -0
  228. package/model/documentSigner.ts +7 -0
  229. package/model/documentSignerDetails.ts +7 -0
  230. package/model/index.ts +7 -0
  231. package/model/role.ts +7 -0
  232. package/model/signerAuthenticationSettings.ts +37 -0
  233. package/package.json +2 -1
@@ -0,0 +1,12 @@
1
+ # # PrefillFieldRequest
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `fields`<sup>*_required_</sup> | [```Array<PrefillField>```](PrefillField.md) | | |
10
+ | `onBehalfOf` | ```string``` | | |
11
+
12
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,15 @@
1
+ # # ProblemDetails
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `type` | ```string``` | | |
10
+ | `title` | ```string``` | | |
11
+ | `status` | ```number``` | | |
12
+ | `detail` | ```string``` | | |
13
+ | `instance` | ```string``` | | |
14
+
15
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,22 @@
1
+ # # RecipientNotificationSettings
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `signatureRequest` | ```boolean``` | | [default to true] |
10
+ | `declined` | ```boolean``` | | [default to true] |
11
+ | `revoked` | ```boolean``` | | [default to true] |
12
+ | `signed` | ```boolean``` | | [default to true] |
13
+ | `completed` | ```boolean``` | | [default to true] |
14
+ | `expired` | ```boolean``` | | [default to true] |
15
+ | `reassigned` | ```boolean``` | | [default to true] |
16
+ | `deleted` | ```boolean``` | | [default to true] |
17
+ | `reminders` | ```boolean``` | | [default to true] |
18
+ | `editRecipient` | ```boolean``` | | [default to true] |
19
+ | `editDocument` | ```boolean``` | | [default to true] |
20
+ | `viewed` | ```boolean``` | | |
21
+
22
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,14 @@
1
+ # # Rectangle
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `x` | ```number``` | | [default to 0] |
10
+ | `y` | ```number``` | | [default to 0] |
11
+ | `width` | ```number``` | | [default to 1] |
12
+ | `height` | ```number``` | | [default to 1] |
13
+
14
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,13 @@
1
+ # # ReminderMessage
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `message` | ```string``` | | |
10
+ | `onBehalfOf` | ```string``` | | |
11
+ | `reminderPhoneNumbers` | [```Array<PhoneNumber>```](PhoneNumber.md) | | |
12
+
13
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,13 @@
1
+ # # ReminderSettings
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `enableAutoReminder` | ```boolean``` | | [default to false] |
10
+ | `reminderDays` | ```number``` | | [default to 3] |
11
+ | `reminderCount` | ```number``` | | [default to 3] |
12
+
13
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,14 @@
1
+ # # RemoveAuthentication
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `emailId` | ```string``` | | |
10
+ | `zOrder` | ```number``` | | |
11
+ | `phoneNumber` | [```PhoneNumber```](PhoneNumber.md) | | |
12
+ | `onBehalfOf` | ```string``` | | |
13
+
14
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,12 @@
1
+ # # RevokeDocument
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `message`<sup>*_required_</sup> | ```string``` | | |
10
+ | `onBehalfOf` | ```string``` | | |
11
+
12
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
package/docs/Role.md ADDED
@@ -0,0 +1,33 @@
1
+ # # Role
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `roleIndex` | ```number``` | | |
10
+ | `signerName` | ```string``` | | |
11
+ | `signerOrder` | ```number``` | | |
12
+ | `signerEmail` | ```string``` | | |
13
+ | `hostEmail` | ```string``` | | |
14
+ | `privateMessage` | ```string``` | | |
15
+ | `authenticationCode` | ```string``` | | |
16
+ | `enableEmailOTP` | ```boolean``` | | |
17
+ | `authenticationType` | ```string``` | | |
18
+ | `phoneNumber` | [```PhoneNumber```](PhoneNumber.md) | | |
19
+ | `deliveryMode` | ```string``` | | |
20
+ | `signerType` | ```string``` | | |
21
+ | `signerRole` | ```string``` | | |
22
+ | `allowFieldConfiguration` | ```boolean``` | | |
23
+ | `formFields` | [```Array<FormField>```](FormField.md) | | |
24
+ | `existingFormFields` | [```Array<ExistingFormField>```](ExistingFormField.md) | | |
25
+ | `identityVerificationSettings` | [```IdentityVerificationSettings```](IdentityVerificationSettings.md) | | |
26
+ | `language` | ```number``` | &lt;p&gt;Description:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;i&gt;0&lt;/i&gt; - None&lt;/li&gt;&lt;li&gt;&lt;i&gt;1&lt;/i&gt; - English&lt;/li&gt;&lt;li&gt;&lt;i&gt;2&lt;/i&gt; - Spanish&lt;/li&gt;&lt;li&gt;&lt;i&gt;3&lt;/i&gt; - German&lt;/li&gt;&lt;li&gt;&lt;i&gt;4&lt;/i&gt; - French&lt;/li&gt;&lt;li&gt;&lt;i&gt;5&lt;/i&gt; - Romanian&lt;/li&gt;&lt;li&gt;&lt;i&gt;6&lt;/i&gt; - Norwegian&lt;/li&gt;&lt;li&gt;&lt;i&gt;7&lt;/i&gt; - Bulgarian&lt;/li&gt;&lt;li&gt;&lt;i&gt;8&lt;/i&gt; - Italian&lt;/li&gt;&lt;li&gt;&lt;i&gt;9&lt;/i&gt; - Danish&lt;/li&gt;&lt;li&gt;&lt;i&gt;10&lt;/i&gt; - Polish&lt;/li&gt;&lt;li&gt;&lt;i&gt;11&lt;/i&gt; - Portuguese&lt;/li&gt;&lt;li&gt;&lt;i&gt;12&lt;/i&gt; - Czech&lt;/li&gt;&lt;li&gt;&lt;i&gt;13&lt;/i&gt; - Dutch&lt;/li&gt;&lt;li&gt;&lt;i&gt;14&lt;/i&gt; - Swedish&lt;/li&gt;&lt;li&gt;&lt;i&gt;15&lt;/i&gt; - Russian&lt;/li&gt;&lt;/ul&gt; | |
27
+ | `locale` | ```string``` | | |
28
+ | `recipientNotificationSettings` | [```RecipientNotificationSettings```](RecipientNotificationSettings.md) | | |
29
+ | `authenticationRetryCount` | ```number``` | | |
30
+ | `enableQes` | ```boolean``` | | |
31
+ | `authenticationSettings` | [```AuthenticationSettings```](AuthenticationSettings.md) | | |
32
+
33
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
package/docs/Roles.md ADDED
@@ -0,0 +1,33 @@
1
+ # # Roles
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `name` | ```string``` | | |
10
+ | `index` | ```number``` | | |
11
+ | `defaultSignerName` | ```string``` | | |
12
+ | `defaultSignerEmail` | ```string``` | | |
13
+ | `phoneNumber` | [```PhoneNumber```](PhoneNumber.md) | | |
14
+ | `signerOrder` | ```number``` | | |
15
+ | `signerType` | ```string``` | | |
16
+ | `hostEmail` | ```string``` | | |
17
+ | `hostName` | ```string``` | | |
18
+ | `language` | ```number``` | &lt;p&gt;Description:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;i&gt;0&lt;/i&gt; - None&lt;/li&gt;&lt;li&gt;&lt;i&gt;1&lt;/i&gt; - English&lt;/li&gt;&lt;li&gt;&lt;i&gt;2&lt;/i&gt; - Spanish&lt;/li&gt;&lt;li&gt;&lt;i&gt;3&lt;/i&gt; - German&lt;/li&gt;&lt;li&gt;&lt;i&gt;4&lt;/i&gt; - French&lt;/li&gt;&lt;li&gt;&lt;i&gt;5&lt;/i&gt; - Romanian&lt;/li&gt;&lt;li&gt;&lt;i&gt;6&lt;/i&gt; - Norwegian&lt;/li&gt;&lt;li&gt;&lt;i&gt;7&lt;/i&gt; - Bulgarian&lt;/li&gt;&lt;li&gt;&lt;i&gt;8&lt;/i&gt; - Italian&lt;/li&gt;&lt;li&gt;&lt;i&gt;9&lt;/i&gt; - Danish&lt;/li&gt;&lt;li&gt;&lt;i&gt;10&lt;/i&gt; - Polish&lt;/li&gt;&lt;li&gt;&lt;i&gt;11&lt;/i&gt; - Portuguese&lt;/li&gt;&lt;li&gt;&lt;i&gt;12&lt;/i&gt; - Czech&lt;/li&gt;&lt;li&gt;&lt;i&gt;13&lt;/i&gt; - Dutch&lt;/li&gt;&lt;li&gt;&lt;i&gt;14&lt;/i&gt; - Swedish&lt;/li&gt;&lt;li&gt;&lt;i&gt;15&lt;/i&gt; - Russian&lt;/li&gt;&lt;/ul&gt; | |
19
+ | `locale` | ```string``` | | |
20
+ | `allowRoleEdit` | ```boolean``` | | |
21
+ | `allowRoleDelete` | ```boolean``` | | |
22
+ | `enableAccessCode` | ```boolean``` | | |
23
+ | `enableEmailOTP` | ```boolean``` | | |
24
+ | `imposeAuthentication` | ```string``` | | |
25
+ | `deliveryMode` | ```string``` | | |
26
+ | `allowFieldConfiguration` | ```boolean``` | | |
27
+ | `formFields` | [```Array<TemplateFormFields>```](TemplateFormFields.md) | | |
28
+ | `enableEditRecipients` | ```boolean``` | | |
29
+ | `enableDeleteRecipients` | ```boolean``` | | |
30
+ | `recipientNotificationSettings` | [```RecipientNotificationSettings```](RecipientNotificationSettings.md) | | |
31
+ | `enableQes` | ```boolean``` | | |
32
+
33
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,45 @@
1
+ # # SendForSign
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `files` | ```Array<RequestFile>``` | | |
10
+ | `title` | ```string``` | | |
11
+ | `message` | ```string``` | | |
12
+ | `signers` | [```Array<DocumentSigner>```](DocumentSigner.md) | | |
13
+ | `cc` | [```Array<DocumentCC>```](DocumentCC.md) | | |
14
+ | `enableSigningOrder` | ```boolean``` | | [default to false] |
15
+ | `expiryDays` | ```number``` | | |
16
+ | `expiryDateType` | ```string``` | | |
17
+ | `expiryValue` | ```number``` | | [default to 60] |
18
+ | `reminderSettings` | [```ReminderSettings```](ReminderSettings.md) | | |
19
+ | `enableEmbeddedSigning` | ```boolean``` | | [default to false] |
20
+ | `disableEmails` | ```boolean``` | | [default to false] |
21
+ | `disableSMS` | ```boolean``` | | [default to false] |
22
+ | `brandId` | ```string``` | | |
23
+ | `hideDocumentId` | ```boolean``` | | [default to false] |
24
+ | `labels` | ```Array<string>``` | | |
25
+ | `fileUrls` | ```Array<string>``` | | |
26
+ | `sendLinkValidTill` | ```Date``` | | |
27
+ | `useTextTags` | ```boolean``` | | [default to false] |
28
+ | `textTagDefinitions` | [```Array<TextTagDefinition>```](TextTagDefinition.md) | | |
29
+ | `enablePrintAndSign` | ```boolean``` | | [default to false] |
30
+ | `enableReassign` | ```boolean``` | | [default to true] |
31
+ | `disableExpiryAlert` | ```boolean``` | | |
32
+ | `documentInfo` | [```Array<DocumentInfo>```](DocumentInfo.md) | | |
33
+ | `onBehalfOf` | ```string``` | | |
34
+ | `autoDetectFields` | ```boolean``` | | [default to false] |
35
+ | `documentDownloadOption` | ```string``` | | |
36
+ | `isSandbox` | ```boolean``` | | |
37
+ | `metaData` | ```{ [key: string]: string | null; }``` | | |
38
+ | `recipientNotificationSettings` | [```RecipientNotificationSettings```](RecipientNotificationSettings.md) | | |
39
+ | `formGroups` | [```Array<FormGroup>```](FormGroup.md) | | |
40
+ | `enableAuditTrailLocalization` | ```boolean``` | | |
41
+ | `downloadFileName` | ```string``` | | |
42
+ | `scheduledSendTime` | ```number``` | | |
43
+ | `allowScheduledSend` | ```boolean``` | | [default to false] |
44
+
45
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,43 @@
1
+ # # SendForSignFromTemplateForm
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `files` | ```Array<RequestFile>``` | | |
10
+ | `fileUrls` | ```Array<string>``` | | |
11
+ | `documentId` | ```string``` | | |
12
+ | `title` | ```string``` | | |
13
+ | `message` | ```string``` | | |
14
+ | `roles` | [```Array<Role>```](Role.md) | | |
15
+ | `brandId` | ```string``` | | |
16
+ | `labels` | ```Array<string>``` | | |
17
+ | `disableEmails` | ```boolean``` | | |
18
+ | `disableSMS` | ```boolean``` | | [default to false] |
19
+ | `hideDocumentId` | ```boolean``` | | |
20
+ | `reminderSettings` | [```ReminderSettings```](ReminderSettings.md) | | |
21
+ | `cc` | [```Array<DocumentCC>```](DocumentCC.md) | | |
22
+ | `expiryDays` | ```number``` | | |
23
+ | `expiryDateType` | ```string``` | | |
24
+ | `expiryValue` | ```number``` | | [default to 60] |
25
+ | `enablePrintAndSign` | ```boolean``` | | |
26
+ | `enableReassign` | ```boolean``` | | |
27
+ | `enableSigningOrder` | ```boolean``` | | |
28
+ | `disableExpiryAlert` | ```boolean``` | | |
29
+ | `documentInfo` | [```Array<DocumentInfo>```](DocumentInfo.md) | | |
30
+ | `onBehalfOf` | ```string``` | | |
31
+ | `isSandbox` | ```boolean``` | | |
32
+ | `roleRemovalIndices` | ```Array<number>``` | | |
33
+ | `documentDownloadOption` | ```string``` | | |
34
+ | `metaData` | ```{ [key: string]: string | null; }``` | | |
35
+ | `recipientNotificationSettings` | [```RecipientNotificationSettings```](RecipientNotificationSettings.md) | | |
36
+ | `formGroups` | [```Array<FormGroup>```](FormGroup.md) | | |
37
+ | `removeFormFields` | ```Array<string>``` | | |
38
+ | `enableAuditTrailLocalization` | ```boolean``` | | |
39
+ | `downloadFileName` | ```string``` | | |
40
+ | `scheduledSendTime` | ```number``` | | |
41
+ | `allowScheduledSend` | ```boolean``` | | [default to false] |
42
+
43
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,209 @@
1
+ # SenderIdentitiesApi
2
+
3
+ All URIs are relative to https://api.boldsign.com.
4
+
5
+ | Method | HTTP request | Description |
6
+ | ------------- | ------------- | ------------- |
7
+ | [**createSenderIdentities()**](SenderIdentitiesApi.md#createSenderIdentities) | **POST** /v1/senderIdentities/create | Creates sender identity. |
8
+ | [**deleteSenderIdentities()**](SenderIdentitiesApi.md#deleteSenderIdentities) | **DELETE** /v1/senderIdentities/delete | Deletes sender identity. |
9
+ | [**listSenderIdentities()**](SenderIdentitiesApi.md#listSenderIdentities) | **GET** /v1/senderIdentities/list | Lists sender identity. |
10
+ | [**reRequestSenderIdentities()**](SenderIdentitiesApi.md#reRequestSenderIdentities) | **POST** /v1/senderIdentities/rerequest | Rerequests denied sender identity. |
11
+ | [**resendInvitationSenderIdentities()**](SenderIdentitiesApi.md#resendInvitationSenderIdentities) | **POST** /v1/senderIdentities/resendInvitation | Resends sender identity invitation. |
12
+ | [**updateSenderIdentities()**](SenderIdentitiesApi.md#updateSenderIdentities) | **POST** /v1/senderIdentities/update | Updates sender identity. |
13
+
14
+
15
+ ## `createSenderIdentities()`
16
+
17
+ ```typescript
18
+ createSenderIdentities(createSenderIdentityRequest: CreateSenderIdentityRequest): SenderIdentityCreated
19
+ ```
20
+
21
+ Creates sender identity.
22
+
23
+
24
+ ### Parameters
25
+
26
+ |Name | Type | Description | Notes |
27
+ | ------------- | ------------- | ------------- | ------------- |
28
+ | **createSenderIdentityRequest** | [**CreateSenderIdentityRequest**](../docs/CreateSenderIdentityRequest.md)| The create sender identity request. | |
29
+
30
+ ### Return type
31
+
32
+ [**SenderIdentityCreated**](../docs/SenderIdentityCreated.md)
33
+
34
+ ### Authorization
35
+
36
+ [X-API-KEY](../README.md#X-API-KEY), [Bearer](../README.md#Bearer)
37
+
38
+ ### HTTP request headers
39
+
40
+ - **Content-Type**: `application/json;odata.metadata=minimal;odata.streaming=true`, `application/json;odata.metadata=minimal;odata.streaming=false`, `application/json;odata.metadata=minimal`, `application/json;odata.metadata=full;odata.streaming=true`, `application/json;odata.metadata=full;odata.streaming=false`, `application/json;odata.metadata=full`, `application/json;odata.metadata=none;odata.streaming=true`, `application/json;odata.metadata=none;odata.streaming=false`, `application/json;odata.metadata=none`, `application/json;odata.streaming=true`, `application/json;odata.streaming=false`, `application/json`, `application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false`, `application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true`, `application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false`, `application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true`, `application/json;odata.metadata=minimal;IEEE754Compatible=false`, `application/json;odata.metadata=minimal;IEEE754Compatible=true`, `application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false`, `application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true`, `application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false`, `application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true`, `application/json;odata.metadata=full;IEEE754Compatible=false`, `application/json;odata.metadata=full;IEEE754Compatible=true`, `application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false`, `application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true`, `application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true`, `application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false`, `application/json;odata.metadata=none;IEEE754Compatible=false`, `application/json;odata.metadata=none;IEEE754Compatible=true`, `application/json;odata.streaming=true;IEEE754Compatible=false`, `application/json;odata.streaming=true;IEEE754Compatible=true`, `application/json;odata.streaming=false;IEEE754Compatible=false`, `application/json;odata.streaming=false;IEEE754Compatible=true`, `application/json;IEEE754Compatible=false`, `application/json;IEEE754Compatible=true`, `application/xml`, `text/plain`, `application/json-patch+json`, `text/json`, `application/*+json`
41
+ - **Accept**: `application/json`
42
+
43
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints)
44
+ [[Back to Model list]](../README.md#models)
45
+ [[Back to README]](../README.md)
46
+
47
+ ## `deleteSenderIdentities()`
48
+
49
+ ```typescript
50
+ deleteSenderIdentities(email: string)
51
+ ```
52
+
53
+ Deletes sender identity.
54
+
55
+
56
+ ### Parameters
57
+
58
+ |Name | Type | Description | Notes |
59
+ | ------------- | ------------- | ------------- | ------------- |
60
+ | **email** | **string**| The email address. | |
61
+
62
+ ### Return type
63
+
64
+ void (empty response body)
65
+
66
+ ### Authorization
67
+
68
+ [X-API-KEY](../README.md#X-API-KEY), [Bearer](../README.md#Bearer)
69
+
70
+ ### HTTP request headers
71
+
72
+ - **Content-Type**: Not defined
73
+ - **Accept**: `application/json`
74
+
75
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints)
76
+ [[Back to Model list]](../README.md#models)
77
+ [[Back to README]](../README.md)
78
+
79
+ ## `listSenderIdentities()`
80
+
81
+ ```typescript
82
+ listSenderIdentities(page: number, pageSize: number, search: string, brandIds: Array<string>): SenderIdentityList
83
+ ```
84
+
85
+ Lists sender identity.
86
+
87
+
88
+ ### Parameters
89
+
90
+ |Name | Type | Description | Notes |
91
+ | ------------- | ------------- | ------------- | ------------- |
92
+ | **page** | **number**| Page index specified in get sender identity request. | [default to 1] |
93
+ | **pageSize** | **number**| Page size specified in get sender identity list request. | [optional] [default to 10] |
94
+ | **search** | **string**| Users can be listed by the search key present in the sender identity like sender identity name and email address | [optional] |
95
+ | **brandIds** | [**Array<string>**](../docs/string.md)| A list of brand IDs to filter associated with the sender identity. | [optional] |
96
+
97
+ ### Return type
98
+
99
+ [**SenderIdentityList**](../docs/SenderIdentityList.md)
100
+
101
+ ### Authorization
102
+
103
+ [X-API-KEY](../README.md#X-API-KEY), [Bearer](../README.md#Bearer)
104
+
105
+ ### HTTP request headers
106
+
107
+ - **Content-Type**: Not defined
108
+ - **Accept**: `application/json`
109
+
110
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints)
111
+ [[Back to Model list]](../README.md#models)
112
+ [[Back to README]](../README.md)
113
+
114
+ ## `reRequestSenderIdentities()`
115
+
116
+ ```typescript
117
+ reRequestSenderIdentities(email: string)
118
+ ```
119
+
120
+ Rerequests denied sender identity.
121
+
122
+
123
+ ### Parameters
124
+
125
+ |Name | Type | Description | Notes |
126
+ | ------------- | ------------- | ------------- | ------------- |
127
+ | **email** | **string**| The email address. | |
128
+
129
+ ### Return type
130
+
131
+ void (empty response body)
132
+
133
+ ### Authorization
134
+
135
+ [X-API-KEY](../README.md#X-API-KEY), [Bearer](../README.md#Bearer)
136
+
137
+ ### HTTP request headers
138
+
139
+ - **Content-Type**: Not defined
140
+ - **Accept**: `application/json`
141
+
142
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints)
143
+ [[Back to Model list]](../README.md#models)
144
+ [[Back to README]](../README.md)
145
+
146
+ ## `resendInvitationSenderIdentities()`
147
+
148
+ ```typescript
149
+ resendInvitationSenderIdentities(email: string)
150
+ ```
151
+
152
+ Resends sender identity invitation.
153
+
154
+
155
+ ### Parameters
156
+
157
+ |Name | Type | Description | Notes |
158
+ | ------------- | ------------- | ------------- | ------------- |
159
+ | **email** | **string**| The email address. | |
160
+
161
+ ### Return type
162
+
163
+ void (empty response body)
164
+
165
+ ### Authorization
166
+
167
+ [X-API-KEY](../README.md#X-API-KEY), [Bearer](../README.md#Bearer)
168
+
169
+ ### HTTP request headers
170
+
171
+ - **Content-Type**: Not defined
172
+ - **Accept**: `application/json`
173
+
174
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints)
175
+ [[Back to Model list]](../README.md#models)
176
+ [[Back to README]](../README.md)
177
+
178
+ ## `updateSenderIdentities()`
179
+
180
+ ```typescript
181
+ updateSenderIdentities(email: string, editSenderIdentityRequest: EditSenderIdentityRequest)
182
+ ```
183
+
184
+ Updates sender identity.
185
+
186
+
187
+ ### Parameters
188
+
189
+ |Name | Type | Description | Notes |
190
+ | ------------- | ------------- | ------------- | ------------- |
191
+ | **email** | **string**| The email address. | |
192
+ | **editSenderIdentityRequest** | [**EditSenderIdentityRequest**](../docs/EditSenderIdentityRequest.md)| The create sender identity request. | |
193
+
194
+ ### Return type
195
+
196
+ void (empty response body)
197
+
198
+ ### Authorization
199
+
200
+ [X-API-KEY](../README.md#X-API-KEY), [Bearer](../README.md#Bearer)
201
+
202
+ ### HTTP request headers
203
+
204
+ - **Content-Type**: `application/json;odata.metadata=minimal;odata.streaming=true`, `application/json;odata.metadata=minimal;odata.streaming=false`, `application/json;odata.metadata=minimal`, `application/json;odata.metadata=full;odata.streaming=true`, `application/json;odata.metadata=full;odata.streaming=false`, `application/json;odata.metadata=full`, `application/json;odata.metadata=none;odata.streaming=true`, `application/json;odata.metadata=none;odata.streaming=false`, `application/json;odata.metadata=none`, `application/json;odata.streaming=true`, `application/json;odata.streaming=false`, `application/json`, `application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false`, `application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true`, `application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false`, `application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true`, `application/json;odata.metadata=minimal;IEEE754Compatible=false`, `application/json;odata.metadata=minimal;IEEE754Compatible=true`, `application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false`, `application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true`, `application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false`, `application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true`, `application/json;odata.metadata=full;IEEE754Compatible=false`, `application/json;odata.metadata=full;IEEE754Compatible=true`, `application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false`, `application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true`, `application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true`, `application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false`, `application/json;odata.metadata=none;IEEE754Compatible=false`, `application/json;odata.metadata=none;IEEE754Compatible=true`, `application/json;odata.streaming=true;IEEE754Compatible=false`, `application/json;odata.streaming=true;IEEE754Compatible=true`, `application/json;odata.streaming=false;IEEE754Compatible=false`, `application/json;odata.streaming=false;IEEE754Compatible=true`, `application/json;IEEE754Compatible=false`, `application/json;IEEE754Compatible=true`, `application/xml`, `text/plain`, `application/json-patch+json`, `text/json`, `application/*+json`
205
+ - **Accept**: `application/json`
206
+
207
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints)
208
+ [[Back to Model list]](../README.md#models)
209
+ [[Back to README]](../README.md)
@@ -0,0 +1,11 @@
1
+ # # SenderIdentityCreated
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `senderIdentityId` | ```string``` | | |
10
+
11
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,12 @@
1
+ # # SenderIdentityList
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `result` | [```Array<SenderIdentityViewModel>```](SenderIdentityViewModel.md) | | |
10
+ | `pageDetails` | [```PageDetails```](PageDetails.md) | | |
11
+
12
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,19 @@
1
+ # # SenderIdentityViewModel
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `name` | ```string``` | | |
10
+ | `email` | ```string``` | | |
11
+ | `status` | ```string``` | | |
12
+ | `createdBy` | ```string``` | | |
13
+ | `approvedDate` | ```string``` | | |
14
+ | `notificationSettings` | [```NotificationSettings```](NotificationSettings.md) | | |
15
+ | `brandId` | ```string``` | | |
16
+ | `redirectUrl` | ```string``` | | |
17
+ | `metaData` | ```{ [key: string]: string | null; }``` | | |
18
+
19
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,12 @@
1
+ # # SignerAuthenticationSettings
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `authenticationFrequency` | ```string``` | | |
10
+ | `status` | ```string``` | | |
11
+
12
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
package/docs/Size.md ADDED
@@ -0,0 +1,12 @@
1
+ # # Size
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `width` | ```number``` | | [default to 0] |
10
+ | `height` | ```number``` | | [default to 0] |
11
+
12
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,11 @@
1
+ # # TeamCreated
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `teamId` | ```string``` | | |
10
+
11
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,12 @@
1
+ # # TeamDocumentRecords
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `pageDetails` | [```PageDetails```](PageDetails.md) | | |
10
+ | `result` | [```Array<Document>```](Document.md) | | |
11
+
12
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,12 @@
1
+ # # TeamListResponse
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `pageDetails` | [```TeamPageDetails```](TeamPageDetails.md) | | |
10
+ | `results` | [```Array<Teams>```](Teams.md) | | |
11
+
12
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,12 @@
1
+ # # TeamPageDetails
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `pageSize` | ```number``` | | |
10
+ | `page` | ```number``` | | |
11
+
12
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,15 @@
1
+ # # TeamResponse
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `teamId` | ```string``` | | |
10
+ | `teamName` | ```string``` | | |
11
+ | `users` | [```Array<TeamUsers>```](TeamUsers.md) | | |
12
+ | `createdDate` | ```number``` | | |
13
+ | `modifiedDate` | ```number``` | | |
14
+
15
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,12 @@
1
+ # # TeamUpdateRequest
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `teamId`<sup>*_required_</sup> | ```string``` | | |
10
+ | `teamName`<sup>*_required_</sup> | ```string``` | | |
11
+
12
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)