> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useparagon.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create And Send Signature Request



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#DROPBOX_SIGN_CREATE_AND_SEND_SIGNATURE_REQUEST
openapi: 3.0.0
info:
  title: ActionKit Tools API
  version: 1.0.0
servers:
  - url: https://actionkit.useparagon.com
    description: US Cloud
security: []
paths:
  /projects/{project_id}/tools/#DROPBOX_SIGN_CREATE_AND_SEND_SIGNATURE_REQUEST:
    post:
      summary: Create And Send Signature Request
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              Your Paragon Project ID. You can copy your Project ID from your
              dashboard URL or by clicking Copy Project ID under the Environment
              switcher.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                tool:
                  type: string
                  default: DROPBOX_SIGN_CREATE_AND_SEND_SIGNATURE_REQUEST
                parameters:
                  type: object
                  properties:
                    fileUrls:
                      type: string
                      description: >-
                        File URLs : Specify File URLs to have Dropbox Sign
                        download the file(s) to send for signature. (example:
                        "["https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf"]")
                    signers:
                      type: object
                      description: >-
                        Signers : Add Signers to your Signature Request.
                        (example: "[{
                          email_address: "jack@example.com",
                          name: "Jack",
                          order: 0
                        }]")
                      properties: {}
                    title:
                      type: string
                      description: >-
                        Title : Specify the title you want to assign to the
                        SignatureRequest.
                    subject:
                      type: string
                      description: >-
                        Subject : Specify the subject in the email that will be
                        sent to the signers.
                    message:
                      type: string
                      description: >-
                        Message : Specify the custom message in the email that
                        will be sent to the signers.
                    ccEmails:
                      type: string
                      description: >-
                        CC Email Addresses : Specify the email addresses that
                        should be CCed.
                    attachments:
                      type: object
                      description: >-
                        Attachments : A list describing the attachments.
                        (example: "[{
                          name: "Jack Doe File",
                          signer_index: 0
                        }]")
                      properties: {}
                    signingOptions:
                      type: object
                      description: >-
                        Signing Options : This allows the requester to specify
                        the types allowed for creating a signature. The allowed
                        types will default to those specified in the account
                        settings (example: "{
                          draw: true,
                          type: true,
                          default_type: "draw"
                        }")
                      properties: {}
                    additionalFields:
                      type: object
                      description: >-
                        Additional Fields : Specify any additional query
                        parameters that should be needed in the signature
                        request as JSON. Refer to the see the docs
                        (https://developers.hellosign.com/api/reference/operation/signatureRequestSend)
                        for more. (example: "{
                          hide_text_tags: true, 
                          allow_decline: true,
                          expires_at: 1672396800
                        }")
                      properties: {}
                  required:
                    - fileUrls
                    - signers
                  x-integration: dropboxsign
              required:
                - tool
                - parameters
      responses:
        '200':
          description: Success
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Your [Paragon User
        Token](/getting-started/installing-the-connect-sdk#setup) (JWT), which
        you can generate using your project's signing keys.

````