server

JSON object that stores information about the workflow context of the server-side process.

Syntax

Copy
{
    b2C : WorkflowServerB2CObject;
    bus : WorkflowServerBusObject;
    clientCertificates : WorkflowClientCertificatesObject;
    convert : WorkflowServerObjectConvert;
    cryptography : WorkflowServerObjectCryptography;
    data : WorkflowDataObject;
    date : WorkflowServerDateUtilsObject;
    files : WorkflowServerObjectFiles;
    identityProvider: WorkflowServerObjectIdentityProvider;
    localization : WorkflowServerLocalizationObject;
    metadata : WorkflowMetadataObject;
    request : WorkflowServerRequest;
    text : WorkflowServerObjectText;
    transientData : WorkflowTransientDataObject;
    user : WorkflowUserObject;
    xml : WorkflowServerObjectXml;
    xss : WorkflowServerObjectXss;
}

Properties

All properties are read-only.

Property Type Description
b2C WorkflowServerB2CObject Facilitates working with B2C portals.
bus WorkflowServerBusObject  
clientCertificates WorkflowClientCertificatesObject See ftos.utils.getCertificate.
convert WorkflowServerObjectConvert Encodes and decodes binary data and text with various encodings.
cryptography WorkflowServerObjectCryptography Calculates hash values and message authentication codes (MACs) for IFtosWorkflowBlob objects.
data WorkflowDataObject Returns an entity extension's attributes and values.
date WorkflowServerDateUtilsObject  
files WorkflowServerObjectFiles Allows you to load the content of a text file in a WorkflowTextFileReader object for processing.
identityProvider WorkflowServerObjectIdentityProvider Allows you to log out or force a password reset for a user account.
localization WorkflowServerLocalizationObject Localization setting that the client is currently using.
metadata WorkflowMetadataObject Information about entity forms.
request WorkflowServerRequest Information about the client running the workflow.
text WorkflowServerObjectText  
transientData WorkflowTransientDataObject Information about a transient entity's data.
user WorkflowUserObject Information about the user account of the currently logged client.
xml WorkflowServerObjectXml Allows you to parse XML content.
xss WorkflowServerObjectXss Provides HTML sanitization against cross-site scripting.

Type Aliases

Examples