Box

Box Sign Requests API

Sign requests are used to submit a file for signature.

Operations 5

POST /sign_requests/{sign_request_id}/cancel Box Cancel sign request #
POST /sign_requests/{sign_request_id}/resend Box Resend sign request #
GET /sign_requests/{sign_request_id} Box Get sign request by ID #
GET /sign_requests Box List sign requests #
POST /sign_requests Box Create sign request #

Documentation

📖
Documentation
https://developer.box.com/reference/get-authorize
📖
Documentation
https://developer.box.com/reference/post-oauth2-token
📖
Documentation
https://developer.box.com/reference/post-files-id-copy
📖
Documentation
https://developer.box.com/reference/post-file-requests-id-copy
📖
Documentation
https://developer.box.com/reference/post-folders-id-copy
📖
Documentation
https://developer.box.com/reference/post-folder-locks
📖
Documentation
https://developer.box.com/reference/post-metadata-templates-schema
📖
Documentation
https://developer.box.com/reference/post-metadata-cascade-policies
📖
Documentation
https://developer.box.com/reference/post-metadata-queries-execute-read
📖
Documentation
https://developer.box.com/reference/post-comments
📖
Documentation
https://developer.box.com/reference/post-collaborations
📖
Documentation
https://developer.box.com/reference/post-tasks
📖
Documentation
https://developer.box.com/reference/post-task-assignments
📖
Documentation
https://developer.box.com/reference/put-files-id--add-shared-link
📖
Documentation
https://developer.box.com/reference/put-folders-id--add-shared-link
📖
Documentation
https://developer.box.com/reference/post-web-links
📖
Documentation
https://developer.box.com/reference/put-web-links-id--add-shared-link
📖
Documentation
https://developer.box.com/reference/post-users
📖
Documentation
https://developer.box.com/reference/post-invites
📖
Documentation
https://developer.box.com/reference/post-groups
📖
Documentation
https://developer.box.com/reference/post-group-memberships
📖
Documentation
https://developer.box.com/reference/post-webhooks
📖
Documentation
https://developer.box.com/reference/post-files-id-metadata-global-boxSkillsCards
📖
Documentation
https://developer.box.com/reference/options-events
📖
Documentation
https://developer.box.com/reference/get-collections-id
📖
Documentation
https://developer.box.com/reference/get-recent-items
📖
Documentation
https://developer.box.com/reference/post-retention-policies
📖
Documentation
https://developer.box.com/reference/post-retention-policy-assignments
📖
Documentation
https://developer.box.com/reference/post-legal-hold-policies
📖
Documentation
https://developer.box.com/reference/post-legal-hold-policy-assignments
📖
Documentation
https://developer.box.com/reference/get-file-version-retentions-id
📖
Documentation
https://developer.box.com/reference/get-file-version-legal-holds-id
📖
Documentation
https://developer.box.com/reference/post-shield-information-barriers-change-status
📖
Documentation
https://developer.box.com/reference/post-shield-information-barrier-reports
📖
Documentation
https://developer.box.com/reference/post-shield-information-barrier-segments
📖
Documentation
https://developer.box.com/reference/post-shield-information-barrier-segment-members
📖
Documentation
https://developer.box.com/reference/post-shield-information-barrier-segment-restrictions
📖
Documentation
https://developer.box.com/reference/get-device-pinners-id
📖
Documentation
https://developer.box.com/reference/post-terms-of-services
📖
Documentation
https://developer.box.com/reference/post-terms-of-service-user-statuses
📖
Documentation
https://developer.box.com/reference/post-collaboration-whitelist-entries
📖
Documentation
https://developer.box.com/

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/box-sign-requests-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

box-sign-requests-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Box Sign Requests API
  x-refined-note:
  - x-box-commit-hash differs across the merged source definitions and was not carried
  version: '1.0'
  description: 'Operations tagged Sign Requests across 2 of this provider''s published API definitions: box-openapi-original.yml, sign-requests-openapi-original.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.box.com/2.0
  description: Box Platform API server
tags:
- name: Sign Requests
  description: 'Sign requests are used

    to submit a file for

    signature.'
  x-box-tag: sign_requests
paths:
  /sign_requests/{sign_request_id}/cancel:
    post:
      operationId: post_sign_requests_id_cancel
      summary: Box Cancel sign request
      tags:
      - Sign Requests
      x-box-tag: sign_requests
      description: Cancels a sign request.
      parameters:
      - name: sign_request_id
        description: The ID of the sign request
        example: '33243242'
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns a Sign Request object.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SignRequest'
        '404':
          description: 'Returns an error when the sign request cannot be found or the user does

            not have access to the sign request.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientError'
        default:
          description: An unexpected client error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientError'
      security:
      - OAuth2Security: []
    servers:
    - url: https://api.box.com/2.0
      description: Box Platform API server
  /sign_requests/{sign_request_id}/resend:
    post:
      operationId: post_sign_requests_id_resend
      summary: Box Resend sign request
      tags:
      - Sign Requests
      x-box-tag: sign_requests
      description: Resends a sign request email to all outstanding signers.
      parameters:
      - name: sign_request_id
        description: The ID of the sign request
        example: '33243242'
        in: path
        required: true
        schema:
          type: string
      responses:
        '202':
          description: 'Returns an empty response when the API call was successful.

            The email notifications will be sent asynchronously.'
        '404':
          description: 'Returns an error when the sign request cannot be found or the user does

            not have access to the sign request.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientError'
        default:
          description: An unexpected client error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientError'
      security:
      - OAuth2Security: []
    servers:
    - url: https://api.box.com/2.0
      description: Box Platform API server
  /sign_requests/{sign_request_id}:
    get:
      operationId: get_sign_requests_id
      summary: Box Get sign request by ID
      tags:
      - Sign Requests
      x-box-tag: sign_requests
      description: Gets a sign request by ID.
      parameters:
      - name: sign_request_id
        description: The ID of the sign request
        example: '33243242'
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns a sign request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SignRequest'
        '404':
          description: 'Returns an error when the sign request cannot be found, the user does

            not have access to the sign request, or `sign_files` and/or

            `parent_folder` is deleted.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientError'
        default:
          description: An unexpected client error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientError'
      security:
      - OAuth2Security: []
    servers:
    - url: https://api.box.com/2.0
      description: Box Platform API server
  /sign_requests:
    get:
      operationId: get_sign_requests
      summary: Box List sign requests
      tags:
      - Sign Requests
      x-box-tag: sign_requests
      description: 'Gets sign requests created by a user. If the `sign_files` and/or

        `parent_folder` are deleted, the sign request will not return in the list.'
      parameters:
      - name: marker
        description: '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`.'
        in: query
        required: false
        example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii
        schema:
          type: string
      - name: limit
        description: The maximum number of items to return per page.
        in: query
        required: false
        example: 1000
        schema:
          type: integer
          format: int64
          maximum: 1000
      responses:
        '200':
          description: Returns a collection of sign requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SignRequests'
        default:
          description: An unexpected client error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientError'
      security:
      - OAuth2Security: []
    post:
      operationId: post_sign_requests
      summary: Box Create sign request
      tags:
      - Sign Requests
      x-box-tag: sign_requests
      description: 'Creates a sign request. This involves preparing a document for signing and

        sending the sign request to signers.'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignRequestCreateRequest'
      responses:
        '201':
          description: Returns a Sign Request object.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SignRequest'
        default:
          description: An unexpected client error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientError'
      security:
      - OAuth2Security: []
    servers:
    - url: https://api.box.com/2.0
      description: Box Platform API server
components:
  schemas:
    SignRequestCreateRequest:
      title: Create a sign request
      type: object
      description: A request to create a sign request object
      required:
      - signers
      allOf:
      - $ref: '#/components/schemas/SignRequest--Base'
      - properties:
          source_files:
            type:
            - array
            - 'null'
            items:
              $ref: '#/components/schemas/File--Base'
            description: 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.
            maxItems: 10
          signature_color:
            type:
            - string
            - 'null'
            example: blue
            description: Force a specific color for the signature (blue, black, or red)
            enum:
            - blue
            - black
            - red
          signers:
            type: array
            items:
              $ref: '#/components/schemas/SignRequestCreateSigner'
            description: Array of signers for the sign request. 35 is the max number of signers permitted.
          parent_folder:
            allOf:
            - $ref: '#/components/schemas/Folder--Mini'
            - description: 'The destination folder to place final, signed document and signing

                log. Only `ID` and `type` fields are required. The root folder,

                folder ID `0`, cannot be used and can also not be null.


                When this value is not passed in when the signature request, then

                we will use a default folder which is either the parent folder of

                the first source file in the payload if we have the permission to

                upload to that folder or a folder called "My Sign Requests".'
    SignRequestPrefillTag:
      title: Sign Request Prefill Tag
      type: object
      description: 'Prefill tags are used to prefill placeholders with signer input data. Only

        one value field can be included.'
      properties:
        document_tag_id:
          type:
          - string
          - 'null'
          example: '1234'
          description: This references the ID of a specific tag contained in a file of the sign request.
        text_value:
          type:
          - string
          - 'null'
          example: text
          description: Text prefill value
        checkbox_value:
          type:
          - boolean
          - 'null'
          example: true
          description: Checkbox prefill value
        date_value:
          type:
          - string
          - 'null'
          format: date
          example: '2021-04-26'
          description: Date prefill value
    ClientError:
      title: Client error
      type: object
      x-box-resource-id: client_error
      description: A generic error
      properties:
        type:
          description: error
          example: error
          type: string
          enum:
          - error
        status:
          description: The HTTP status of the response.
          example: 400
          type: integer
          format: int32
        code:
          description: A Box-specific error code
          example: item_name_invalid
          type: string
          enum:
          - created
          - accepted
          - no_content
          - redirect
          - not_modified
          - bad_request
          - unauthorized
          - forbidden
          - not_found
          - method_not_allowed
          - conflict
          - precondition_failed
          - too_many_requests
          - internal_server_error
          - unavailable
          - item_name_invalid
          - insufficient_scope
        message:
          description: A short message describing the error.
          example: Method Not Allowed
          type: string
        context_info:
          description: 'A free-form object that contains additional context

            about the error. The possible fields are defined on

            a per-endpoint basis. `message` is only one example.'
          type:
          - object
          - 'null'
          properties:
            message:
              type: string
              description: More details on the error.
              example: Something went wrong.
        help_url:
          description: A URL that links to more information about why this error occurred.
          example: https://developer.box.com/guides/api-calls/permissions-and-errors/common-errors/
          type: string
        request_id:
          description: 'A unique identifier for this response, which can be used

            when contacting Box support.'
          type: string
          example: abcdef123456
    Folder--Mini:
      title: Folder (Mini)
      type: object
      x-box-resource-id: folder--mini
      x-box-variant: mini
      description: 'A mini representation of a file version, used when

        nested under another resource.'
      allOf:
      - $ref: '#/components/schemas/Folder--Base'
      - properties:
          sequence_id:
            allOf:
            - type:
              - string
              - 'null'
              example: '3'
              description: 'A numeric identifier that represents the most recent user event

                that has been applied to this item.


                This can be used in combination with the `GET /events`-endpoint

                to filter out user events that would have occurred before this

                identifier was read.


                An example would be where a Box Drive-like application

                would fetch an item via the API, and then listen to incoming

                user events for changes to the item. The application would

                ignore any user events where the `sequence_id` in the event

                is smaller than or equal to the `sequence_id` in the originally

                fetched resource.'
            - {}
          name:
            type: string
            description: The name of the folder.
            example: Contracts
    FileVersion--Mini:
      title: File version (Mini)
      type: object
      x-box-resource-id: file_version--mini
      x-box-variant: mini
      description: 'A mini representation of a file version, used when

        nested within another resource.'
      allOf:
      - $ref: '#/components/schemas/FileVersion--Base'
      - properties:
          sha1:
            type: string
            description: The SHA1 hash of this version of the file.
            example: 134b65991ed521fcfe4724b7d814ab8ded5185dc
    SignRequest--Base:
      title: Sign Request (Base)
      type: object
      x-box-resource-id: sign_request--base
      x-box-tag: sign_requests
      x-box-variants:
      - standard
      - base
      x-box-variant: base
      description: A request to create a sign request object
      properties:
        is_document_preparation_needed:
          type: boolean
          description: Indicates if the sender should receive a `prepare_url` in the response to complete document preparation via UI.
          example: true
        redirect_url:
          type:
          - string
          - 'null'
          example: https://www.example.com
          description: When specified, signature request will be redirected to this url when a document is signed.
        declined_redirect_url:
          type:
          - string
          - 'null'
          example: https://declined-redirect.com
          description: The uri that a signer will be redirected to after declining to sign a document.
        are_text_signatures_enabled:
          type: boolean
          description: Disables the usage of signatures generated by typing (text).
          example: true
          default: true
        email_subject:
          type:
          - string
          - 'null'
          example: Sign Request from Acme
          description: Subject of sign request email. This is cleaned by sign request. If this field is not passed, a default subject will be used.
        email_message:
          type:
          - string
          - 'null'
          example: Hello! Please sign the document below
          description: Message to include in sign request email. The field is cleaned through sanitization of specific characters. However, some html tags are allowed. Links included in the message are also converted to hyperlinks in the email. The message may contain the following html tags including `a`, `abbr`, `acronym`, `b`, `blockquote`, `code`, `em`, `i`, `ul`, `li`, `ol`, and `strong`. Be aware that when the text to html ratio is too high, the email may end up in spam filters. Custom styles on these tags are not allowed. If this field is not passed, a default message will be used.
        are_reminders_enabled:
          type: boolean
          description: Reminds signers to sign a document on day 3, 8, 13 and 18. Reminders are only sent to outstanding signers.
          example: true
        name:
          type: string
          example: name
          description: Name of the sign request.
        prefill_tags:
          type: array
          items:
            $ref: '#/components/schemas/SignRequestPrefillTag'
          description: When a document contains sign related tags in the content, you can prefill them using this `prefill_tags` by referencing the 'id' of the tag as the `external_id` field of the prefill tag.
        days_valid:
          type:
          - integer
          - 'null'
          description: Set the number of days after which the created signature request will automatically expire if not completed. By default, we do not apply any expiration date on signature requests, and the signature request does not expire.
          minimum: 0
          maximum: 730
          example: 2
        external_id:
          type:
          - string
          - 'null'
          description: This can be used to reference an ID in an external system that the sign request is related to.
          example: '123'
        is_phone_verification_required_to_view:
          type:
          - boolean
          - 'null'
          description: Forces signers to verify a text message prior to viewing the document. You must specify the phone number of signers to have this setting apply to them.
          example: true
        template_id:
          type:
          - string
          - 'null'
          example: 123075213-af2c8822-3ef2-4952-8557-52d69c2fe9cb
          description: When a signature request is created from a template this field will indicate the id of that template.
    File--Mini:
      title: File (Mini)
      type:
      - object
      - 'null'
      x-box-resource-id: file--mini
      x-box-variant: mini
      description: 'A mini representation of a file, used when

        nested under another resource.'
      allOf:
      - $ref: '#/components/schemas/File--Base'
      - properties:
          sequence_id:
            allOf:
            - type:
              - string
              - 'null'
              example: '3'
              description: 'A numeric identifier that represents the most recent user event

                that has been applied to this item.


                This can be used in combination with the `GET /events`-endpoint

                to filter out user events that would have occurred before this

                identifier was read.


                An example would be where a Box Drive-like application

                would fetch an item via the API, and then listen to incoming

                user events for changes to the item. The application would

                ignore any user events where the `sequence_id` in the event

                is smaller than or equal to the `sequence_id` in the originally

                fetched resource.'
            - {}
          name:
            type: string
            description: The name of the file
            example: Contract.pdf
          sha1:
            type: string
            format: digest
            example: 85136C79CBF9FE36BB9D05D0639C70C265C18D37
            description: 'The SHA1 hash of the file. This can be used to compare the contents

              of a file on Box with a local file.'
          file_version:
            allOf:
            - $ref: '#/components/schemas/FileVersion--Mini'
            - description: The information about the current version of the file.
    SignRequestSigner:
      title: Signer fields for GET Sign Request response
      type: object
      description: The schema for a Signer in a GET Sign Request request body
      required:
      - email
      allOf:
      - $ref: '#/components/schemas/SignRequestCreateSigner'
      - properties:
          has_viewed_document:
            type: boolean
            readOnly: true
            example: true
            description: Set to `true` if the signer views the document
          signer_decision:
            type:
            - object
            - 'null'
            properties:
              type:
                type: string
                enum:
                - signed
                - declined
                example: signed
                description: Type of decision made by the signer
              finalized_at:
                type: string
                format: date-time
                example: '2021-04-26T08:12:13.982Z'
                description: Date and Time that the decision was made
              additional_info:
                type:
                - string
                - 'null'
                example: Requesting changes before signing.
                description: Additional info about the decision, such as the decline reason from the signer
            description: Final decision made by the signer
          inputs:
            type: array
            items:
              $ref: '#/components/schemas/SignRequestSignerInput'
            readOnly: true
          embed_url:
            type:
            - string
            - 'null'
            readOnly: true
            example: https://example.com
            description: URL to direct a signer to for signing
          iframeable_embed_url:
            type:
            - string
            - 'null'
            example: https://app.box.com/embed/sign/document/gfhr4222-a331-494b-808b-79bc7f3992a3/f14d7098-a331-494b-808b-79bc7f3992a4
            description: 'This URL is specifically designed for

              signing documents within an HTML `iframe` tag.

              It will be returned in the response

              only if the `embed_url_external_user_id`

              parameter was passed in the

              `create sign request` call.'
    SignRequestCreateSigner:
      title: Signer fields for Create Sign Request
      type: object
      description: The schema for a Signer in a POST Sign Request request body
      properties:
        email:
          type:
          - string
          - 'null'
          description: 'Email address of the signer.

            The email address of the signer is required when making signature requests, except when using templates that are configured to include emails.'
          example: example@gmail.com
        role:
          type: string
          enum:
          - signer
          - approver
          - final_copy_reader
          description: 'Defines the role of the signer in the sign request. A `signer`

            must sign the document and an `approver` must approve the document. A

            `final_copy_reader` only receives the final signed document and signing

            log.'
          example: signer
          default: signer
        is_in_person:
          type: boolean
          description: 'Used in combination with an embed URL for a sender. After the

            sender signs, they are redirected to the next `in_person` signer.'
          example: true
        order:
          type: integer
          description: Order of the signer
          minimum: 0
          example: 2
        embed_url_external_user_id:
          type:
          - string
          - 'null'
          description: 'User ID for the signer in an external application responsible

            for authentication when accessing the embed URL.'
          example: '1234'
        redirect_url:
          type:
          - string
          - 'null'
          description: 'The URL that a signer will be redirected

            to after signing a document. Defining this URL

            overrides default or global redirect URL

            settings for a specific signer.

            If no declined redirect URL is specified,

            this URL will be used for decline actions as well.'
          example: https://example.com
        declined_redirect_url:
          type:
          - string
          - 'null'
          description: 'The URL that a signer will be redirect

            to after declining to sign a document.

            Defining this URL overrides default or global

            declined redirect URL settings for a specific signer.'
          example: https://declined-example.com
        login_required:
          type:
          - boolean
          - 'null'
          description: 'If set to true, signer will need to login to a Box account

            before signing the request. If the signer does not have

            an existing account, they will have an option to create

            a free Box account.'
          example: true
        verification_phone_number:
          type:
          - string
          - 'null'
          description: 'If set, this phone number is be used to verify the signer

            via two factor authentication before they are able to sign the document.'
          example: '6314578901'
        password:
          type:
          - string
          - 'null'
          writeOnly: true
          description: 'If set, the signer is required to enter the password before they are able

            to sign a document. This field is write only.'
          example: SecretPassword123
        signer_group_id:
          type:
          - string
          - 'null'
          description: 'If set, signers who have the same value will be assigned to the same input and to the same signer group.

            A signer group is not a Box Group. It is an entity that belongs to a Sign Request and can only be

            used/accessed within this Sign Request. A signer group is expected to have more than one signer.

            If the provided value is only used for one signer, this value will be ignored and request will be handled

            as it was intended for an individual signer. The value provided can be any string and only used to

            determine which signers belongs to same group. A successful response will provide a generated UUID value

            instead for signers in the same signer group.'
          example: cd4ff89-8fc1-42cf-8b29-1890dedd26d7
    FileVersion--Base:
      title: File version (Base)
      type: object
      x-box-resource-id: file_version--base
      x-box-sanitized: true
      x-box-variants:
      - base
      - mini
      - standard
      - full
      x-box-variant: base
      description: 'The bare basic representation of a file version, the minimal

        amount of fields returned when using the `fields` query

        parameter.'
      required:
      - id
      - type
      properties:
        id:
          type: string
          description: The unique identifier that represent a file version.
          example: '12345'
        type:
          type: string
          description: '`file_version`'
          example: file_version
          enum:
          - file_version
    SignRequestSignerInput:
      title: Sign Request Signer Input
      type: object
      description: Input created by a Signer on a Sign Request
      required:
      - page_index
      allOf:
      - $ref: '#/components/schemas/SignRequestPrefillTag'
      - properties:
          type:
            type: string
            enum:
            - signature
            - date
            - text
            - checkbox
            - radio
            - dropdown
            description: Type of input
            example: text
          content_type:
            type: string
            enum:
            - signature
            - initial
            - stamp
            - date
            - checkbox
            - text
            - full_name
            - first_name
            - last_name
            - company
            - title
            - email
            - attachment
            - radio
            - dropdown
            description: Content type of input
            example: signature
          page_index:
            type: integer
            description: Index of page that the input is on
            example: 4
          read_only:
            type: boolean
            description: Whether this input was defined as read-only(immutable by signers) or not
            example: true
    SignRequest:
      title: Sign Request
      type: object
      x-box-resource-id: sign_request
      x-box-tag: sign_requests
      x-box-variants:
      - standard
      - base
      x-box-variant: standard
      description: A Sign Request Object
      allOf:
      - $ref: '#/components/schemas/SignRequest--Base'
      - properties:
          type:
            type: string
            example: sign-request
            enum:
            - sign-request
            description: object type
          source_files:
            type: array
            items:
              $ref: '#/components/schemas/File--Base'
            description: 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.
          signers:
            type: array
            items:
              $ref: '#/components/schemas/SignRequestSigner'
            description: Array of signers for the sign request
          signature_color:
            type:
            - string
            - 'null'
            example: blue
            description: Force a specific color for the signature (blue, black, or red).
          id:
            type: string
            example: '12345'
            description: Sign request ID
          prepare_url:
            type:
            - string
            - 'null'
            example: https://prepareurl.com
            description: 'This URL is returned if `is_document_preparation_needed` is

              set to `true` in the request. It is used to prepare the sign request

              via UI. The sign request is not sent until preparation is complete.'
          signing_log:
            allOf:
            - $ref: '#/components/schemas/File--Mini'
            - description: 'Reference to a file that holds a log of all signer activity for

                the request'
          status:
            type: string
            enum:
            - converting
            - created
            - sent
            - viewed
            - signed
            - cancelled
            - declined
            - error_converting
            - error_sending
            - expired
            - finalizing
            - error_finalizing
            example: converting
            description: Describes the status of the sign request
          sign_files:
            type: object
            properties:
              files:
                type: array
                items:
                  $ref: '#/components/schemas/File--Mini'
              is_ready_for_download:
                type: boolean
                example: true
                description: 'Indicates whether the `sign_files` documents are processing

                  and the PDFs may be out of date. A change to any document

                  requires processing on all `sign_files`. We

                  recommended waiting until processing is finished

                  (and this value is true) before downloading the PDFs.'
            description: 'List of files that will be signed, which are copies of the original

              source files. A new version of these files are created as signers sign

              and can be downloaded at any point in the signing process.'
          auto_expire_at:
            type:
            - string
            - 'null'
            format: date-time
            example: '2021-04-26T08:12:13.982Z'
            description: Uses `days_valid` to calculate the date and time, in GMT, the sign request will expire if unsigned.
          parent_folder:
            allOf:
            - $ref: '#/components/schemas/Folder--Mini'
            - description: "The destination folder to place final, signed document and signing\nlog.\n\nWhen this value was not passed in when the signature request was \ncreated, then we will use a default folder which is either the parent\nfolder of the first source file in the payload if we have the permission\nto upload to that folder or a folder called \"My Sign Requests\"."
    File--Base:
      title: File (Base)
      type:
      - object
      - 'null'
      x-box-resource-id: file--base
      x-box-sanitized: true
      x-box-tag: files
      x-box-variants:
      - base
      - mini
      - standard
      - full
      x-box-variant: base
      description: 'The bare basic representation of a file, the minimal

        amount of fields returned when using the `fields` query

        parameter.'
      required:
      - id
      - type
      properties:
        id:
          type: string
          description: 'The unique identifier that represent a file.


            The ID for any file can be determined

            by visiting a file in the we

# --- truncated at 32 KB (43 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/box/refs/heads/main/openapi/box-sign-requests-api-openapi.yml