Box Developer Documentation
 
    Latest version

    Get Box Sign request by ID

    get
    https://api.box.com/2.0
    /sign_requests/:sign_request_id

    This endpoint is in the version 2024.0. No changes are required to continue using it. For more details, see Box API versioning.

    Gets a sign request by ID.

    Request

    bearer [ACCESS_TOKEN]
    application/json

    Path Parameters

    stringin pathrequired
    33243242

    The ID of the signature request

    Response

    application/jsonBox Sign request

    Returns a signature request.

    application/jsonClient error

    Returns an error when the signature request cannot be found, the user does not have access to the signature request, or sign_files and/or parent_folder is deleted.

    application/jsonClient error

    An unexpected client error.

    get
    Get Box Sign request by ID
    You can now try out some of our APIs live, right here in the documentation.
    Log in

    Request Example

    cURL
    curl -i -X GET "https://api.box.com/2.0/sign_requests/<SIGN_REQUEST_ID>" \
         -H "authorization: Bearer <ACCESS_TOKEN>"

    Response Example

    {
      "id": "12345",
      "type": "sign-request",
      "are_reminders_enabled": true,
      "are_text_signatures_enabled": true,
      "auto_expire_at": "2021-04-26T08:12:13.982Z",
      "collaborator_level": "owner",
      "days_valid": 2,
      "declined_redirect_url": "https://declined-redirect.com",
      "email_message": "Hello! Please sign the document below",
      "email_subject": "Sign Request from Acme",
      "external_id": "123",
      "external_system_name": "Box",
      "is_document_preparation_needed": true,
      "name": "name",
      "parent_folder": {
        "id": "12345",
        "type": "folder",
        "etag": "1",
        "name": "Contracts",
        "sequence_id": "3"
      },
      "prefill_tags": [
        {
          "checkbox_value": true,
          "date_value": "2021-04-26",
          "document_tag_id": "1234",
          "text_value": "text"
        }
      ],
      "prepare_url": "https://prepareurl.com",
      "redirect_url": "https://www.example.com",
      "sender_email": "sender@box.com",
      "sender_id": 12345,
      "sign_files": {
        "files": [
          {
            "etag": "1",
            "id": "12345",
            "type": "file",
            "file_version": {
              "id": "12345",
              "type": "file_version",
              "sha1": "134b65991ed521fcfe4724b7d814ab8ded5185dc"
            },
            "name": "Contract.pdf",
            "sequence_id": "3",
            "sha1": "85136C79CBF9FE36BB9D05D0639C70C265C18D37"
          }
        ],
        "is_ready_for_download": true
      },
      "signature_color": "blue",
      "signers": [
        {
          "declined_redirect_url": "https://declined-example.com",
          "email": "example@gmail.com",
          "embed_url_external_user_id": "1234",
          "is_in_person": true,
          "login_required": true,
          "order": 2,
          "password": "SecretPassword123",
          "redirect_url": "https://example.com",
          "role": "signer",
          "signer_group_id": "cd4ff89-8fc1-42cf-8b29-1890dedd26d7",
          "suppress_notifications": false,
          "embed_url": "https://example.com",
          "has_viewed_document": true,
          "iframeable_embed_url": "https://app.box.com/embed/sign/document/gfhr4222-a331-494b-808b-79bc7f3992a3/f14d7098-a331-494b-808b-79bc7f3992a4",
          "inputs": [
            {
              "checkbox_value": true,
              "date_value": "2021-04-26",
              "document_tag_id": "1234",
              "text_value": "text",
              "content_type": "signature",
              "page_index": 4,
              "read_only": true,
              "type": "text"
            }
          ],
          "signer_decision": {
            "additional_info": "Requesting changes before signing.",
            "finalized_at": "2021-04-26T08:12:13.982Z",
            "type": "signed"
          }
        }
      ],
      "signing_log": {
        "id": "12345",
        "type": "file",
        "etag": "1",
        "file_version": {
          "id": "12345",
          "type": "file_version",
          "sha1": "134b65991ed521fcfe4724b7d814ab8ded5185dc"
        },
        "name": "Contract.pdf",
        "sequence_id": "3",
        "sha1": "85136C79CBF9FE36BB9D05D0639C70C265C18D37"
      },
      "source_files": [
        {
          "etag": "1",
          "id": "12345",
          "type": "file"
        }
      ],
      "status": "converting",
      "template_id": "123075213-af2c8822-3ef2-4952-8557-52d69c2fe9cb"
    }