Source: managers/sign-requests.generated.ts

  1. import BoxClient from '../box-client';
  2. import urlPath from '../util/url-path';
  3. import * as schemas from '../schemas';
  4. /**
  5. * Simple manager for interacting with all Sign Requests endpoints and actions.
  6. */
  7. class SignRequestsManager {
  8. client: BoxClient;
  9. /**
  10. * @param {BoxClient} client The Box API Client that is responsible for making calls to the API
  11. */
  12. constructor(client: BoxClient) {
  13. this.client = client;
  14. }
  15. /**
  16. * Get Box Sign request by ID
  17. *
  18. * Gets a sign request by ID.
  19. * @param {object} options Options for the request
  20. * @param {string} options.sign_request_id The ID of the signature request
  21. * @param {Function} [callback] Passed the result if successful, error otherwise
  22. * @returns {Promise<schemas.SignRequest>} A promise resolving to the result or rejecting with an error
  23. */
  24. getById(
  25. options: {
  26. /**
  27. * The ID of the signature request
  28. */
  29. readonly sign_request_id: string;
  30. },
  31. callback?: Function
  32. ): Promise<schemas.SignRequest> {
  33. const { sign_request_id: signRequestId, ...queryParams } = options,
  34. apiPath = urlPath('sign_requests', signRequestId),
  35. params = {
  36. qs: queryParams,
  37. };
  38. return this.client.wrapWithDefaultHandler(this.client.get)(
  39. apiPath,
  40. params,
  41. callback
  42. );
  43. }
  44. /**
  45. * List Box Sign requests
  46. *
  47. * Gets signature requests created by a user. If the `sign_files` and/or
  48. * `parent_folder` are deleted, the signature request will not return in the list.
  49. * @param {object} [options] Options for the request
  50. * @param {string} [options.marker] Defines the position marker at which to begin returning results. This is used when paginating using marker-based pagination. This requires `usemarker` to be set to `true`.
  51. * @param {number} [options.limit] The maximum number of items to return per page.
  52. * @param {Function} [callback] Passed the result if successful, error otherwise
  53. * @returns {Promise<schemas.SignRequests>} A promise resolving to the result or rejecting with an error
  54. */
  55. getAll(
  56. options?: {
  57. /**
  58. * Defines the position marker at which to begin returning results. This is
  59. * used when paginating using marker-based pagination.
  60. *
  61. * This requires `usemarker` to be set to `true`.
  62. */
  63. readonly marker?: string;
  64. /**
  65. * The maximum number of items to return per page.
  66. */
  67. readonly limit?: number;
  68. },
  69. callback?: Function
  70. ): Promise<schemas.SignRequests> {
  71. const { ...queryParams } = options,
  72. apiPath = urlPath('sign_requests'),
  73. params = {
  74. qs: queryParams,
  75. };
  76. return this.client.wrapWithDefaultHandler(this.client.get)(
  77. apiPath,
  78. params,
  79. callback
  80. );
  81. }
  82. /**
  83. * Create Box Sign request
  84. *
  85. * Creates a signature request. This involves preparing a document for signing and
  86. * sending the signature request to signers.
  87. * @param {schemas.SignRequestCreateRequest} body
  88. * @param {object} [options] Options for the request
  89. * @param {Function} [callback] Passed the result if successful, error otherwise
  90. * @returns {Promise<schemas.SignRequest>} A promise resolving to the result or rejecting with an error
  91. */
  92. create(
  93. body: schemas.SignRequestCreateRequest,
  94. options?: {},
  95. callback?: Function
  96. ): Promise<schemas.SignRequest> {
  97. const { ...queryParams } = options,
  98. apiPath = urlPath('sign_requests'),
  99. params = {
  100. qs: queryParams,
  101. body: body,
  102. };
  103. return this.client.wrapWithDefaultHandler(this.client.post)(
  104. apiPath,
  105. params,
  106. callback
  107. );
  108. }
  109. /**
  110. * Cancel Box Sign request
  111. *
  112. * Cancels a sign request.
  113. * @param {object} options Options for the request
  114. * @param {string} options.sign_request_id The ID of the signature request
  115. * @param {Function} [callback] Passed the result if successful, error otherwise
  116. * @returns {Promise<schemas.SignRequest>} A promise resolving to the result or rejecting with an error
  117. */
  118. cancelById(
  119. options: {
  120. /**
  121. * The ID of the signature request
  122. */
  123. readonly sign_request_id: string;
  124. },
  125. callback?: Function
  126. ): Promise<schemas.SignRequest> {
  127. const { sign_request_id: signRequestId, ...queryParams } = options,
  128. apiPath = urlPath('sign_requests', signRequestId, 'cancel'),
  129. params = {
  130. qs: queryParams,
  131. };
  132. return this.client.wrapWithDefaultHandler(this.client.post)(
  133. apiPath,
  134. params,
  135. callback
  136. );
  137. }
  138. /**
  139. * Resend Box Sign request
  140. *
  141. * Resends a signature request email to all outstanding signers.
  142. * @param {object} options Options for the request
  143. * @param {string} options.sign_request_id The ID of the signature request
  144. * @param {Function} [callback] Passed the result if successful, error otherwise
  145. * @returns {Promise<void>} A promise resolving to the result or rejecting with an error
  146. */
  147. resendById(
  148. options: {
  149. /**
  150. * The ID of the signature request
  151. */
  152. readonly sign_request_id: string;
  153. },
  154. callback?: Function
  155. ): Promise<void> {
  156. const { sign_request_id: signRequestId, ...queryParams } = options,
  157. apiPath = urlPath('sign_requests', signRequestId, 'resend'),
  158. params = {
  159. qs: queryParams,
  160. };
  161. return this.client.wrapWithDefaultHandler(this.client.post)(
  162. apiPath,
  163. params,
  164. callback
  165. );
  166. }
  167. }
  168. export = SignRequestsManager;