Skip to content

Volt MX Mock Data Adapter

User Guide: Integration > Configure the Integration Service > How to Test a Mock Data Response from Admin Console

Mock Data Adapter

The VoltMX Mock Data adapter capability helps you to continue to develop apps when the back-end services that an app connects to are not ready to be leveraged.

There are several instances in an app development life-cycle when back-end systems and app development happen in parallel and only the contract or interface for the app to communicate to a backend is finalized. In this scenario, you can create a response template to stub the response that is expected from the actual backend. The response template can have hard-coded values or use pre-built functions such as concat, firstName, lastName, gender, random, email, and phone, and options to randomize the output within the required criteria.

For example, in the scenario mentioned earlier, a Volt MX app developer can create the service based on a stub template. The stub response template can be set for each operation of a service. The app developers can continue to develop apps based on a sample back-end response from the stub template.

Important: Services built with Mock Data adapter will always give you mock data and cannot be switch between live backend and mock data like Stub backend response feature.

Configure Mock Data Adapter

To configure your Mock Data Adapter, provide the following details:

  1. In the Name field, provide a unique name for your service.
  2. From the Service Type list, select Mock Data.

  3. For additional configuration of your service definition, provide the following details in the Advanced section:

Field Description
Custom Code Custom Code enables you to specify dependent JAR.
To specify dependent JAR, select the JAR containing preprocessor or postprocessor libraries from the drop-down list, or click Upload New to browse the JAR file from your local system. This step allows you to further filter the data sent to the back end.

Important: Make sure that you upload a custom JAR file that is built on the same JDK version used for installing Volt MX Foundry Integration.

For example, if the JDK version on the machine where Volt MX Foundry Integration is installed is 1.6, you must use the same JDK version to build your custom jar files. If the JDK version is different, an unsupported class version error will appear when a service is used from a device.

You can download the uploaded jars to your local system.
Throttling API throttling enables you to limit the number of request calls within a minute. If an API exceeds the throttling limit, it will not return the service response.

1. To specify throttling in Volt MX Foundry Console, follow these steps:

i.
In the Total Rate Limit text box, enter a required value. With this value, you can limit the number of requests configured in your Volt MX Foundry console in terms of Total Rate Limit.

ii. In the Rate Limit Per IP text box, enter a required value. With this value, you can limit the number of IP address requests configured in your Volt MX Foundry console in terms of Per IP Rate Limit.

2. To override throttling in App Services Console, refer to Override API Throttling Configuration.

Note: All options in the Advanced section are optional.

  1. In the Description field, provide a suitable description for the service.

  2. Click Save to save your service definition.

Create Operations for Mock Data

The Operations List tab appears only after the service definition is saved.

Note: Click Operations List tab > Configure Operation. The Configured Operations list appears.

To create an operation, follow these steps:

  1. Click SAVE & ADD OPERATION in your service definition page to save your service definition and display the NewOperation tab for adding operations.
                        OR
    Click Add Operation to add a new operation or from the tree in the left pane, click Add > Add New Operation.

    Note: To use an existing integration service, refer to How to Use an Existing Integration Service.

  2. In the Operation Modal tab, follow these steps:

    This tab contains the request input, response output, and advanced sections. The input values are data types, scope, and format types. By default, the system will display the Request Input tab.

    Note: You can add an entry by clicking the Add button if entries for the input and the output tabs do not exist.

    You can also delete an entry. Select the check box for an entry, and then click the Delete button.

  3. To configure an operation, provide the following details:

Field Description
Name It is prepopulated with the operation name. You can change the name if required.
Operation Security Level It specifies how a client must authenticate to invoke this operation.

Select one of the following security operations in the Operation Security Level field.

i. Authenticated App User
– It restricts the access to clients who have successfully authenticated using an Identity Service associated with the app.

ii. Anonymous App User – It allows the access from trusted clients that have the required App Key and App Secret. Authentication through an Identity Service is not required.

iii. Public – It allows any client to invoke this operation without any authentication. This setting does not provide any security to invoke this operation and you should avoid this authentication type if possible.

iv. Private - It blocks the access to this operation from any external client. It allows invocation either from an Orchestration/Object Service, or from the custom code in the same run-time environment.
  1. Configure your Mock data template in the Mock Data JSON Template text field. By default this field is enabled with a sample mock response template.

    Note: For more information on Pre-built functions supported in Mock Data template, refer Mock Data Template and Supported Pre-built functions in Mock Data

  2. response operations, provide the following details in the Advanced section:

    | Field | Description | | Custom Code Invocation - Preprocessor and Postprocessor (for Java and JavaScript) | You can add pre and post processing logic to services to modify the request inputs. When you test, the services details of various stages in the service execution are presented to you for better debugging. All options in the Advanced section are optional. For more details, refer to Preprocessor and Postprocessor. | | Properties | Additional configuration properties (timeout, cachable, unescape embedded xml in response, response encoding, number of connectioretries allows you to configure service call time out cache response | | Front End API | It allows you map your endpoint/back-end URL of an operation to a front-end URL. | | Server Events | Using Server Events you can configure this service to trigger or process server side events. For detailed information, refer Server Events. |

    Note: All options in the Advanced section are optional.

Configure Request Operation for Mock Data

Integration services accept only form-url-encoded inputs for all the input parameters provided in the service input parameters (request input).

  1. In the Request Input > Body tab, do the following:

    1. To forward the body of the client's request to backend as it is, select the Enable pass-through input body check box. For more details on API Proxy service, refer to How to Enable Pass-through Proxy for Operations.
    2. Click Add Parameter button to create new entries for the input.

      Note: - To make duplicate entries, select the check box for the entry, click Copy, and then click Paste.

      - To delete an entry, select the check box for an entry, and then click the Delete button.

    3. Configure parameters in the client's body, do the following:

      Field Description
      Name It Contains a Unique Identifier. Change the name if required.
      Value Select Request or Session. It is set to Request by default.

      i. Request indicates that the value must be retrieved from the HTTP request received from the mobile device.

      ii. Session indicates that the value must be retrieved from the HTTP session stored on Volt MX Foundry.

      iii. Identity If this is selected, you can filter the request parameters based on the response from the identity provider. For more details to configure identity filters, refer to Enhanced Identity Filters - Integration Services.
      TEST VALUE Enter a value. A test value is used for testing the service.
      DEFAULT VALUE Enter the value, if required. The default value will be used if the test value is empty.
      Datatype Select one of the following data types.

      i. String - A combination of alpha-numeric and special characters. Supports all formats including UTF-8 and UTF-16 with no maximum size limit.

      ii. Boolean - A value that can be true or false.Number - An integer or a floating number.

      iii. Collection - A group of data, also referred as data set.
      Encode Select the check box to enable encoding of an input parameter. For example, the name New York Times would be encoded as New_York_Times when the encoding is set to True. The encoding must also adhere to the HTML URL encoding standards.
      Description Provide a suitable description.
  2. In the Request Input > Header tab, do the following:

    1. To forward the body of the client's request to backend as it is, select the Enable pass-through input body check box. For more details on API Proxy service, refer to How to Enable Pass-through Proxy for Operations.
    2. Click Add Parameter button to create new entries for the input.

      Note: - To make duplicate entries, select the check box for the entry, click Copy, and then click Paste.

      - To delete an entry, select the check box for an entry, and then click the Delete button.

    3. Configure parameters in the client's header, do the following:

      Field Description
      Name It Contains a Unique Identifier. Change the name if required.
      Value Select Request or Session. It is set to Request by default. By default, this field is set to Request. Five different options are available in Volt MX Foundry under Request Input > Headers > VALUE during configuration of any operation. When you start editing this field, dependent identity services are auto populated. These options primarily determine the source of the value of the header.Request: If this option is selected, the Integration Server picks the value pairs from the client's request during run time and forwards the same to the back-end.User has the option to configure the default value. This default value is taken if the request does not have the header.Session: If this option is selected, the value of header is picked from session context based on the user configuration.Constant: Constant is used to configure the value that is picked and sent to back-end by the Integration Server during the run-time.Expression: Select this option to configure the velocity template expressions for the header values.You cannot edit the default value for expression.Identity: If this is selected, you can filter the request parameters based on the response from the identity provider. For more details to configure identity filters, refer to Enhanced Identity Filters - Integration Services.> Note: If the header value is scoped as a Request (or) Session and the same header is accessed under the Expression header value, then the expression must be represented as $request.header (or) $session.header.Example: If a header 1 value is a request and header 2 value is an expression, then the value of the expression must be $Request.header1.
      TEST VALUE Enter a value. A test value is used for testing the service.
      DEFAULT VALUE Enter the value, if required. The default value will be used if the test value is empty.
      Datatype Select one of the following data types.String - A combination of alpha-numeric and special characters. Supports all formats including UTF-8 and UTF-16 with no maximum size limit.Boolean - A value that can be true or false.Number - An integer or a floating number.Collection - A group of data, also referred as data set.
      Description Provide a suitable description.
  3. Click SAVE OPERATION to save the operation. The system updates the operation definition.

Create Response Operation for Mock Data

To forward the response to the client as it is, select the Enable pass-through input body check box. For more details on API Proxy service, refer to How to Enable Pass-through Proxy for Operations.

  1. Click the Response Output tab, and enter the values for required fields such as name, scope, data type, collection ID, record ID, format and format value.

    Note: If you define parameters inside a record as the session, the session scope will not get reflected for the parameters.

  2. Click SAVE OPERATION to save the operation. The system updates the operation definition.

    If you click Cancel, the Edit Service Parameters window will close without saving any information.

    Note: Only JSON Path is supported for Mock Data response parsing.

    Note: You can view the service in the Data Panel feature of Volt MX Iris. By using the Data Panel, you can link back-end data services to your application UI elements seamlessly with low-code to no code. For more information on Data Panel, click here.

How to Test a Mock Data Response from Admin Console

  1. Publish your app to a runtime server.
  2. Go to the runtime server in Admin Console.
  3. Go to the Integration Services tab.
  4. For the Mock Data service that you created, select the stubbed operation from the Operations list.
  5. Click Get Response.

    Note: The X-VoltMX-Stub-Response header as true in the back-end response indicates that the response is generated from the Mock Data template.

Advanced Parameters in Mock Data

How to Configure a Request Input and Request Header Parameters in Mock Data

You can access input parameters in a Stub template by using the { {requestBody("<request_param_name>")} } function. Additionally, you can access headers by using the { {requestHeader("<header_name>")} } function.

For example, you want to send the testUser request input parameter to the Stub template and the value of the parameter is defined in the Input Parameters section of Console. You can access the input parameter in the stub template as "inputtest": "{ {requestBody("testUser")} }".

The following sample Stub template has been configured with the testUser request input parameter.

 [
  '{ {repeat(30,40)} }',
  {
    "locationID": "{ {index()} }",
    "company": "{ {toUpperCase(company())} }",
    "phone": "+1 { {phone()} }",
    "address": "{ {integer(100, 999)} } { {street()} }, { {city()} }, { {state()} }, { {integer(100, 10000)} }",  
   ``"`inputtest": "{ {requestBody("testUser")} }"`,``
    "latitude": "{ {float(-90.000001, 90)} }",  
    "longitude": "{ {float(-180.000001, 180)} }",
    "office":"{ {random("HR Head Office","Sales Head Office","Marketing Head Office","Development Center")} }"
  }
]

Note: Volt MX functions for request input and header are as follows:

-  To access any header with name, requestHeader: Syntax: { {requestHeader("<header_name>")} }
-  To access a request parameter, requestBody: Syntax: { {requestBody("<request_param_name>")} }

Mock Data Template and Pre-built Functions Supported in Mock Data Template

Click here

Mock Data Template

The back-end stubbed response specifies a Mock Data template for stubbing and returning dynamically-generated mock data.

The following table details a sample Mock Data response template and a back-end response that is generated based on the Mock Data template.

Sample Mock Data Template (JSON) Sample Mock Data Response
[ '{ {repeat(1,2)} }', { "locationID": "{ {index()} }", "company": "{ {toUpperCase(company())} }", "phone": "+1 { {phone()} }", "address": "{ {integer(100, 999)} } { {street()} }, { {city()} }, { {state()} }, { {integer(100, 10000)} }", "latitude": "{ {float(-90.000001, 90)} }", "longitude": "{ {float(-180.000001, 180)} }", "office":"{ {random("HR Head Office","Sales Head Office","Marketing Head Office","Development Center")} }" } ] [{ "locationID": "0", "company": "RODEOMAD", "phone": "+1 371-222-9269", "address": "671 Division Place, Grill, South Dakota, 9220", "latitude": "-0.29528046", "longitude": "159.72824", "office": "Marketing Head Office" }, { "locationID": "1", "company": "ACME", "phone": "+1 311-324-8984", "address": "257 Adam Place, McCoy, South Carolina, 21245", "latitude": "-0.23528046", "longitude": "124.72824", "office": "Sales Head Office" }]

Pre-built Functions Supported in Mock Data Template

The following list of the sample pre-built functions are supported in the Mock Data response template:

repeat(< lower_value >, < upper_value >)

Descriptionrepeat function repeats JSON or XML objects randomly based on the value range provided in the syntax. This is typically set at the beginning of a collection to repeat number of times as required. For example, it can be set to get a random number of transactions for an account for a set format by setting repeat function at the head of the collection as shown in the default template above.
Syntax'{ {repeat (<lower_value>, <upper_value>)} }'
Sample Mock Data template'{ {repeat(30,40)} }'

repeat(< number >)

Descriptionrepeat function repeats JSON or XML objects randomly based on the fixed number provided in the syntax. This is typically set at the beginning of a collection to repeat number of times as required. For example, it can be set to get a random number of transactions for an account for a set format by setting repeat function at the head of the collection as shown in the default template above.
Syntax'{ {repeat (<number>)} }'
Sample Mock Data template'{ {repeat(2)} }'

integer(min,max)

DescriptionGenerates a random integer in the specified range. 
Syntax"{ {integer(min,max)} }"
Sample Mock Data template"productRating":"{ {integer(0,5)} }"
Sample Mock Data response"productRating": "4"

float(min,max)

DescriptionGenerates a random 32-bit floating point number in the specified range.
Syntax"{ {float(min,max)} }"
Sample Mock Data template"floatrange": "{ {float(3,9)} }"
Sample Mock Data response"floatrange": "6.718242"

float(min,max,"%.2f")

DescriptionGenerates a random 32-bit floating point number in the specified range of floating point numbers, with an option to round of the number of decimal places.
Syntax"{ {float(min,max,"%.2f")} }"
Sample Mock Data template"floatrange": "{ {float(3,9,"%.2f")} }"
Sample Mock Data response"floatrange": "8.87"

double(min,max)

DescriptionGenerates a random 64-bit double number in the specified range.
Syntax"{ {double(min,max)} }"
Sample Mock Data template"double": "{ {double(2,8)} }"
Sample Mock Data response"double": "7.654668228367652"

long(min,max)

DescriptionGenerates a random long number in the specified range.
Syntax"{ {long(min,max)} }"
Sample Mock Data template"network":"{ {long(200,500)} }"
Sample Mock Data response"network":"378"

uuid()

DescriptionGenerates a random GUID.
Syntax"{ {uuid()} }"
Sample Mock Data template"objects": "{ {uuid()} }"
Sample Mock Data response"objects": "fb81ad08-42e3-4b61-9a2c-636f95952766"

hex()

DescriptionGenerates a random 16 bytes hexadecimal string.
Syntax"{ {hex()} }"
Sample Mock Data template"color": "{ {hex()} }"
Sample Mock Data response"color": "b53ff7fa4b63b18cdf7729e85c39e660"

hex(size)

DescriptionGenerates a random hexadecimal string according to the specified size in bytes.
Syntax"{ {hex(size)} }"
Sample Mock Data template"color": "{ {hex(2)} }"
Sample Mock Data response"color": "1b41"

objectId()

DescriptionGenerates a hexadecimal string of size 12 bytes.
Syntax"{ {objectId()} }"
Sample Mock Data template"id": "{ {objectId()} }"
Sample Mock Data response"id": "1c91293a4c777000585e04e6"

bool()

DescriptionGenerates a random Boolean value, either True or False.
Syntax"{ {bool()} }"
Sample Mock Data template"stockAvailable": "{ {bool()} }"
Sample Mock Data response"stockAvailable": "true"

bool(< probability >)

DescriptionGenerates a random Boolean value, either True or False as per the given probability.
Syntax"{ {bool(probability)} }"
Sample Mock Data template"stockAvailable": "{ {bool(0.9)} }"
Sample Mock Data response"stockAvailable": "true"

index()

DescriptionGenerates an incrementing index integer for each record with a specific starting point.
Syntax"{ {index()} }"
Sample Mock Data template"locationID": "{ {index()} }"
Sample Mock Data response"locationID": "0"

index("index-name")

DescriptionGenerates an incrementing index integer for each record based on the name of the index.
Syntax"{ {index("index-name")} }"
Sample Mock Data template"index-number": "{ {index("abc")} }"
Sample Mock Data response"index-number": "42"

index(< number >)

DescriptionGenerates an incrementing index integer for each record with a specific starting point.
Syntax"{ {index(78)}"
Sample Mock Data template"index-number": "{ {index(78)} }"
Sample Mock Data response"index-number": "4248"

index("index-name",< number >)

DescriptionGenerates an incrementing index integer for each record based on both a specific starting point and name of the index.
Syntax"{ {index("index-name",78)}"
Sample Mock Data template"index-name-number": "{ {index("abc",78)} }"
Sample Mock Data response"index-name-number": "626"

lorem(count,"words")

DescriptionGenerates a random dummy text. User must specify the count of words required.
Syntax"{ {lorem(count,"words")} }"
Sample Mock Data template"productDescription": "{ {lorem(5, "words")} }"
Sample Mock Data response"productDescription": "lorem ipsum porta sit curabitur"

lorem(count,"paragraphs")

DescriptionGenerates a random dummy paragraph. User must specify the count of paragraphs required.
Syntax"{ {lorem(count,"paragraphs")} }"
Sample Mock Data template"about": "{ {lorem(2, "paragraphs")} }"
Sample Mock Data response"about": " Lorem ipsum eros amet accumsan non quisque ut molestie nullam sagittis tincidunt.Lorem ipsum quis aliquam nostra.Lorem ipsum litora tristique arcu habitant.Lorem ipsum nulla mauris inceptos fusce adipiscing tortor torquent."

lorem(count,"paragraphs")phone()

DescriptionGenerates a random phone number. The phone number is preceded by + to indicate a country code. This allows to set phone numbers for different countries. For example, for USA/Canada, the phone number format is +1 xxx xxx xxxx
Syntax"{ {phone()} }"
Sample Mock Data template"phone": "+1 { {phone()} }"
Sample Mock Data response"phone": "+1 371-222-9269"

gender()

DescriptionGenerates a random gender value, either male or female.
Syntax"{ {gender()} }"
Sample Mock Data template"gender": "{ {gender()} }"
Sample Mock Data response"gender": "female"

date()

DescriptionGenerates the current date.
Syntax"{ {date()} }"
Sample Mock Data template"date": "{ {date()} }"
Sample Mock Data response"date": "Tue, 11 Sep 2018 10:55:44 GMT"

date("java-simple-date-format")

DescriptionGenerates the current date in the specified date format.
Syntax"{ {date("java-simple-date-format")} }"
Sample Mock Data template"date_format": "{ {date("dd-MM-yyyy HH:mm:ss")} }"
Sample Mock Data response"date_format": "11-09-2018 12:00:00"

date("begin-date","end-date","java-simple-date-format")

DescriptionGenerates a random date in the specified range and specified format. Your date range input must be in this format: dd-MM-yyyy HH:mm:ss
Syntax"{ {date("begin-date","end-date","java-simple-date-format"} }"
Sample Mock Data template"{ {date("01-01-2014 12:00:00", "01-01-2018 12:00:00", "yyyy-MM-dd'T'HH:mm:ss Z")} }"
Sample Mock Data response"date_of_joining": "2015-12-22T22:00:33 +0000"

date("begin-date","end-date")

DescriptionGenerates a random date in the specified range of dates with default format. Your input must be in this format EEE, d MMM yyyy HH:mm:ss z
Syntax"{ {date("begin-date","end-date")}"
Sample Mock Data template"date_default_format": "{ {date("01-01-2014 12:00:00", "01-01-2018 12:00:00", "EEE, d MMM yyyy-MM-dd'T'HH:mm:ss Z")} }"
Sample Mock Data response"date_default_format": "Tue, 21 Jun 2016-06-21T19:26:18 +0000"

timestamp()

DescriptionGenerates the current timestamp (milliseconds, between the current time and midnight, January 1, 1970 UTC):
Syntax"{ {timestamp()} }"
Sample Mock Data template"time": "{ {timestamp()} }"
Sample Mock Data response"time": "1536662962710"

timestamp("begin-date","end-date")

DescriptionGenerates the current timestamp (milliseconds, between the current time and midnight, January 1, 1970 UTC) between two dates with default format. Your input must be in this format EEE, d MMM yyyy HH:mm:ss z
Syntax"{ {timestamp("begin-date","end-date"} }"

country()

DescriptionGenerates a random country name.
Syntax"{ {country()} }"
Sample Mock Data template"country": "{ {country()} }"
Sample Mock Data response"country": "Montenegro"

countryList()

DescriptionGenerates a JSON mapping with all country codes and country name.
Syntax"{ {countryList()} }"

countryList("country_code_1", "country_code_2")

DescriptionGenerates a JSON mapping with given country codes and country name.
Syntax"{ {countryList("IN", "US", "UK")} }"

city()

DescriptionGenerates a random city.
Syntax"{{city()} }"
Sample Mock Data template"city": "{ {city()} }"
Sample Mock Data response"city": "Belva"

state()

DescriptionGenerates a random state name.
Syntax"{{state()} }"
Sample Mock Data template"state": "{ {state()} }"
Sample Mock Data response"state": "Pennsylvania"

company()

DescriptionGenerates a random company name.
Syntax"{{company()} }"
Sample Mock Data template"company": "{ {company()} }"
Sample Mock Data response"company": "Gorganic"

lastName()

DescriptionGenerates a random last name.
Syntax"{{lastName()} }"
Sample Mock Data template"lastname": "{ {lastName()} }"
Sample Mock Data response"lastname": "Randolph"

firstName()

DescriptionGenerates a random first name.
Syntax"{{firstName()} }"
Sample Mock Data template"firstname": "{ {firstName()} }"
Sample Mock Data response"firstname": "Mays"

username()

DescriptionGenerates a random username based on the first initial of your random first name and random last name in lowercase.
Syntax"{{username()} }"
Sample Mock Data template"username": "{ {username()} }"
Sample Mock Data response"username": "nbarr"

email()

DescriptionGenerate a random email address in the standard format. For example: the email standard format is <firstName>.<lastName>@<domain>.<com>
Syntax"{ {email()} }"
Sample Mock Data template"email": "{ {email()} }"
Sample Mock Data response"email": "irma.england@mazuda.com"

email("mydomain.com")

DescriptionGenerates a random email address with the specified domain name in the standard format.For example: the email standard format is <firstName>.<lastName>@<"mydomain.com">
Syntax"{ {email("mydomain.com")} }"
Sample Mock Data template"email": "{ {email("mydomain.com")} }"
Sample Mock Data response"email": "wilson.allison@mydomain.com"

ssn()

DescriptionGenerates a random social security number.
Syntax"{ {ssn()} }"
Sample Mock Data template"ssn": "{ {ssn()} }"
Sample Mock Data response"ssn": "285-59-5039"

ipv4()

DescriptionGenerates a random ipv4 address.
Syntax"{ {ipv4()} }"
Sample Mock Data template"ipv4": "{ {ipv4()} }"
Sample Mock Data response"ipv4": "218.110.1.153"

ipv6()

DescriptionGenerates a random ipv6 address.
Syntax"{ {ipv6()} }"
Sample Mock Data template"ipv6": "{ {ipv6()} }"
Sample Mock Data response"ipv6": "ipv6": "e801:bde0:c898:3a0e:2401:1b23:2199:4d3f"

ipv6("upper")

DescriptionGenerates a random ipv6 address with all the alphabetical characters in uppercase.
Syntax"{ {ipv6("upper")} }"

ipv6("lower")

DescriptionGenerates a random ipv6 address with all the alphabetical characters in lowercase.
Syntax"{ {ipv6("lower")} }"

concat(var arg)

DescriptionGenerates a string by concatenating all the strings given as inputs.
Syntax"{concat("A","B","C","D")} }"
Sample Mock Data template"id": "{ {concat("EMP",index())} }"
Sample Mock Data response"id": "EMP2942"

substring("word",3)

DescriptionGenerates a substring from the given string and the starting position.
Syntax"{ {substring("word",3)} }"
Sample Mock Data template"substring":"{ {substring("SampleApps", 3)} }"
Sample Mock Data response"substring":"pleApps"

substring("long word", 1, 6)

DescriptionGenerates a substring from the given string, the starting position, and the end position.
Syntax"{ {substring("long word", 1, 6)} }"
Sample Mock Data template"substring":"{ {substring("Sampleword" , 1,6)} }"
Sample Mock Data response"substring":"ample"

random("SampleValue1","SampleValue2","SampleValue3","SampleValue4")

Descriptionrandom function provides string values to each record randomly based on the predefined sample string values provided while invoking the function.
Syntax"{ {random("SampleValue1","SampleValue2","SampleValue3","SampleValue4")} }"
Sample Mock Data template"office":"{ {random("HR Head Office","Sales Head Office","Marketing Head Office","Development Center")} }"
Sample Mock Data response"office": "Marketing Head Office"

alpha()

DescriptionGenerates a random string with alphabetic characters of length between 10 to 20 characters.
Syntax"{ {alpha()} }"
Sample Mock Data template"alpha": "{ {alpha()} }"
Sample Mock Data response"alpha": "jFulYDTuFQBk"

alpha(min,max)

DescriptionGenerates a random string with alphabetic characters and length in the given range.
Syntax"{ {alpha(min,max)} }"
Sample Mock Data template"alphaRange": "{ {alpha(15,20)} }"
Sample Mock Data response"alphaRange": "hTyLpLYMHGJkYrEB"

alpha(length)

DescriptionGenerates a random string with alphabetic characters of given length.
Syntax"{ {alpha(length)} }"
Sample Mock Data template"alphaLength": "{ {alpha(7)} }"
Sample Mock Data response"alphaLength": "ZKziDST"

alphaNumeric()

DescriptionGenerates a random string with alpha-numeric characters of length between 10 to 20 characters.
Syntax"{ {alphaNumeric()} }"
Sample Mock Data template"alphaNumeric": "{ {alphaNumeric()} }"
Sample Mock Data response"alphaNumeric": "hIrUkxDzdH4VIR86g6G"

alphaNumeric(min,max)

DescriptionGenerates a random string with alpha-numeric characters of length in the specified range.
Syntax"{ {alphaNumeric(min,max)} }"
Sample Mock Data template"alphaNumericRange": "{ {alphaNumeric(15,20)} }"
Sample Mock Data response"alphaNumericRange": "k5BBh4U45o19vhaO4LQ"

alphaNumeric(length)

DescriptionGenerates a random string with alpha-numeric characters of the given length.
Syntax"{ {alphaNumeric(length)} }"
Sample Mock Data template"alphaNumericLength": "{ {alphaNumeric(7)} }"
Sample Mock Data response"alphaNumericLength": "Zphdrag"

toLowerCase("text")

DescriptionConverts the string value to lowercase letters.
Syntax"{ {toLowerCase(company())} }"
Sample Mock Data template"company": "{ {toLowerCase(company())} }"
Sample Mock Data response"company": "rodeomad"

toUpperCase("text")

DescriptionConverts the string value to uppercase letters.
Syntax"{ {toUpperCase(company())} }"
Sample Mock Data template"company": "{ {toUpperCase(company())} }"
Sample Mock Data response"company": "RODEOMAD"

##Escape braces

DescriptionIf you want to escape braces from within a function use a single escape character as seen in the example below:
Syntax"{ {concat("\{", "test", "\}")} }

##Nesting functions

DescriptionMock Data service supports nesting functions as well. For example, if you wanted to create results that looked like dollar amounts, you can do the following:
Syntax"{ {concat("$",float(0.90310, 5.3421, "%.2f"))} } or something like this if you wanted a capitalized F or M: { {toUpperCase(substring(gender(),0,1))} }