getWorkStepInfo

IMPORTANT!  
Starting with v24.3, this is deprecated.

Gets information about an eSing workstep.

Syntax

Copy
function getWorkstepInfo(workstepId : string): WorkflowWorkStepInfo;
 
Parameter Type Description
workstepId string ID of the eSign workstep.

Return Value

Returns a JSON object containing the expiration time and the execution status of the workstep.

Copy
{
    expirationDateTime : Date;
    isSuccess : boolean;
}

Examples