Suhas Reddy
- Total activity 66
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 0
Articles
Recent activity by Suhas Reddy-
Make/PUT API calls
The API_PUT extension sends a PUT request to a REST API endpoint and returns the response body as a JSON string that can be stored in a Virtuoso variable.This is useful when a journey needs to upda...
-
Make/POST API calls
Make POST API callsThe API_POST extension sends a POST request to a REST API endpoint and returns the response body as a JSON string that can be stored in a Virtuoso variable.This is useful when a ...
-
Make/GET API call
The API_GET extension sends a GET request to a REST API endpoint and returns the response body as a JSON string that can be stored in a Virtuoso variable.This is useful when a journey needs to retr...
-
Get account reference number
The Random/getAccountReferenceNumber extension is intended to request account data from a fixed endpoint and extract the AccountReferenceNumber field from the JSON response.This is useful when a jo...
-
Perform arithmetic operations
The Arithmetic/arithmeticOperations extension performs a basic arithmetic operation on two provided values and returns either the calculated result or an error message.This is useful when a journey...
-
Set local storage value
The Browser/localStorageSet extension stores a value in the browser's localStorage using a provided key.This is useful when a journey needs to prepare browser-side state before later steps read it,...
-
Get local storage value
The Browser/localStorageGet extension retrieves the value stored against a specific key in the browser's localStorage for the current page context.This is useful when a journey needs to reuse a val...
-
Convert CSV to JSON
The Conversion/CSVtoJSON extension fetches a CSV file from a provided file path or URL, parses the CSV content, and returns the data as JSON objects.This is useful when a journey downloads, uploads...
-
Compare values
The Compare extension compares two provided values and returns a pass-style message when both values match exactly.This is useful when a journey needs to compare an expected value with an actual va...
-
Check string contains either value
The StringOperations/containsEither extension checks whether an input string contains at least one of two expected values. If the input contains either value, the step passes. If neither value is f...