Source: schemas/sign-request-create-request.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * Create a Box Sign request
  4. *
  5. * Creates a Box Sign request object.
  6. */
  7. export interface SignRequestCreateRequest extends schemas.SignRequestBase {
  8. /**
  9. * List of files to create a signing document from. This is currently limited to ten files. Only the ID and type fields are required for each file.
  10. */
  11. source_files?: schemas.FileBase[];
  12. /**
  13. * Force a specific color for the signature (blue, black, or red)
  14. * Example: blue
  15. */
  16. signature_color?: 'blue' | 'black' | 'red';
  17. /**
  18. * Array of signers for the signature request. 35 is the
  19. * max number of signers permitted.
  20. *
  21. * **Note**: It may happen that some signers belong to conflicting [segments](r://shield-information-barrier-segment-member) (user groups).
  22. * This means that due to the security policies, users are assigned to segments to prevent exchanges or communication that could lead to ethical conflicts.
  23. * In such a case, an attempt to send the sign request will result in an error.
  24. *
  25. * Read more about [segments and ethical walls](https://support.box.com/hc/en-us/articles/9920431507603-Understanding-Information-Barriers#h_01GFVJEHQA06N7XEZ4GCZ9GFAQ).
  26. */
  27. signers: schemas.SignRequestCreateSigner[];
  28. /**
  29. * The destination folder to place final, signed document and signing
  30. * log. Only `ID` and `type` fields are required. The root folder,
  31. * folder ID `0`, cannot be used and can also not be null.
  32. *
  33. * When this value is not passed in when the signature request, then
  34. * we will use a default folder which is either the parent folder of
  35. * the first source file in the payload if we have the permission to
  36. * upload to that folder or a folder called "My Sign Requests".
  37. */
  38. parent_folder?: schemas.FolderMini;
  39. }