These docs are for v2.1. Click to read the latest docs for v3.

The signed file object

Signed documents are created once all signers have completed signing. In a typical API flow the rs.completed webhook event notifies the signed_file_id which is later used to perform operations such as listing/ downloading the completed signed document.

{  
   "created_time":1409296771,
   "checksum":"bc3dc717816e9ef027600c57b8370b1bd5fc50fe72d2b746d9",
   "id":1085102,
   "last_modified_time":1409296771,
   "name":"NDA for ACME.pdf",
   "pending_file": null,
   "public_identifier":"E740MX4j3vFOobTo7iWLZQ==",
   "pending_file": {
      "status":"incomplete",
      "owner_first_name":"Jack",
      "originals": [
        {
         "id": 33299021,
         "name": "LP Signing Contract Document" 
        },
        {
          "id" 33122312,
          "name": "LP Signing Contract Lease Document"
        }
      ],
      "recipients":[
         {
            "status":"not_viewed",
            "first_name":"",
            "last_name":"",
            "order_id":1,
            "last_modified_time":1505464109,
            "recipient_user_id":2,
            "recipient_id":7,
            "created_time":1505464109,
            "email":"[email protected]"
         },
         {
            "status":"not_viewed",
            "first_name":"",
            "last_name":"",
            "order_id":2,
            "last_modified_time":1505464109,
            "recipient_user_id":3,
            "recipient_id":8,
            "created_time":1505464109,
            "email":"[email protected]"
         }
      ],
      "owner_email":"[email protected]",
      "owner_last_name":"Barb",
      "next":7,
      "created_time":1505464109,
      "last_modified_time":1505464109,
      "has_markers":0,
      "is_ordered":0,
      "id":4936759,
      "owner_user_id": 1
   }  
}

AttributeTypeDescription
created_timetimeThe time in epoch, when this signed file was created.
checksumstringA unique document fingerprint associated with this signed file.
idintegerThe unique ID for this signed file.
last_modified_timetimeThe time in epoch, which this document was last updated.
namestringThe name of the signed document.
pending_filepending file objectThe pending file that this completed document originated from.

If it is a self-signed document, this attribute value would be null.

The object definition can be found here.