GET api/Signing/Documents/{documentId}/ActionLog

Gets the action log for the document.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
documentId

The document identifier.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The action log for the document.

ESignSystems.SmartSAFE.Models.Signing.DocumentUserActionModel
NameDescriptionTypeAdditional information
ReviewedDate

Gets or sets the date and time that the user reviewed the document.

date

None.

Signed

Gets or sets a value indicating whether the document is signed by the user.

boolean

None.

SignedDate

Gets or sets the date and time that the user signed the document.

date

None.

FirstName

Gets or sets the user's first name.

string

None.

LastName

Gets or sets the user's last name.

string

None.

LastNameUserForFilter

Gets or sets the last name user for filter.

string

None.

Email

Gets or sets the user's email address.

string

None.

UserName

Gets or sets the user's user name.

string

None.

UserId

Gets or sets the user identifier.

integer

None.

Reviewed

Gets or sets a value indicating whether the document is reviewed by the user.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ReviewedDate": "2026-01-01T17:29:15.5708534-05:00",
  "Signed": true,
  "SignedDate": "2026-01-01T17:29:15.5708534-05:00",
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "LastNameUserForFilter": "sample string 4",
  "Email": "sample string 5",
  "UserName": "sample string 6",
  "UserId": 1,
  "Reviewed": true
}

application/xml, text/xml

Sample:
<DocumentUserActionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Signing">
  <Email>sample string 5</Email>
  <FirstName>sample string 2</FirstName>
  <LastName>sample string 3</LastName>
  <LastNameUserForFilter>sample string 4</LastNameUserForFilter>
  <Reviewed>true</Reviewed>
  <ReviewedDate>2026-01-01T17:29:15.5708534-05:00</ReviewedDate>
  <Signed>true</Signed>
  <SignedDate>2026-01-01T17:29:15.5708534-05:00</SignedDate>
  <UserId>1</UserId>
  <UserName>sample string 6</UserName>
</DocumentUserActionModel>