Workato Flashcards
Why would you use Batch processing?
It is an efficient way of moving large volumes of data across systems
If you have a large number of transactions that need to be migrated, should you use Batch processing or not?
Yes
True or False: Batch processing is a method of running high volume, repetitive data jobs
True
True or False: The batch method does not allow users to process data with little or no user interaction
False
True or False: To achieve best results match a batch trigger with a single dispatch
False
What field in the batch trigger is used to configure the number of records to be retrieved per batch?
Batch Trigger
True or False: By using Batch Processing, the total run time decreases significantly due to the reduction in wait time for API responses.
True
True or False: A source list does not need to be configured when using Batch Actions
False
Which kind of Batch Action does not require a list of records with unique ID’s?
Create
True or False: Bulk Action is useful in business processes that require mass data transactions and syncing data information
True
What is an upsert?
Create a list of new records in a single action or update the list of existing record
True or False: Bulk Action’s availability depends on the app’s API. (Such as Salesforce, Netsuite, Google Sheets etc.)
True
True or False: When using Bulk Actions, the output step of the job report shows the Failed/Successful records synced.
True
What is the most common type of delimiter?
commas
True or False: When processing CSV files using your CSV connectors, you can add Node.js codes to parse CSV files.
False
What is a connector in Workato?
Allows the Workato platform to interact with an application through a series of triggers and actions
What do triggers do?
monitor for events that occur in the application you want to connect to and start a workflow of actions that are called recipes on Workato.
What is an action?
Actions carry out specific predefined operations in the target application
What does OOB stand for?
Out of the box
What are application connectors?
OOB connectors readily available in Workato
What are File Connectors?
A way for Workato to connect to applications that support CSV import/export
If you want to connect to a custom application or to connect to an application that is not yet available through Workato, what should you think of?
HTTP connectors and SDK connectors
Are HTTP connectors scalable?
No
What is an API?
An Application Program Interface is a mechanism that allows two applications to exchange information using a set of rules
What is a helpful analogy to understand API’s?
API’s are waiters, the API documentation is our menu, and the database the API makes requests from is the kitchen. The API documentation lets us know what we can get from the database and the API is who we tell what we want from that database. The API then goes and grabs it.
What are the two common web service API’s?
SOAP and Rest API’s
What does SOAP stand for?
Simple Object Access Protocol
What does REST stand for?
Representational State Transfer
What is XML?
Extensible Mark-Up Language is a set of codes or tags that describe the text in digital documentation
What is JSON?
JavaScript Object Notation is an open standard file format and data interchange format that uses human readable text to store and transmit data objects
If a status code begins with a 1, what does that mean?
It is an information only message
If a status code begins with a 2, what does that mean?
It indicates success of some kind
If a status code begins with a 3, what does that mean?
Redirects the client to another URL
If a status code begins with a 4, what does that mean?
It indicates an error on the client’s part
If a status code begins with a 5, what does that mean?
Indicates an error on the server’s part
Does a webhook trigger require authentication?
No
Is a webhook trigger or a polling trigger happen in real time when the event occurs?
A webhook trigger
Do http triggers support pagination?
No
True or False: An error monitoring block should exist in almost all recipes
True
What does a 403 forbidden message mean?
Missing the correct authentication
What does a 401 unauthorized error message mean?
Invalid connection
If you need to deploy a custom connector, what tool should you use to build it?
Workato Connector SDK
What are the steps to take before building a SDK connector?
- Detail your integration use cases
- Define your base set of objects
- Explore possible actions and triggers
- Review your connector plan
How many objects should you shortlist for interacting with through a recipe in Workato?
4-5
The best connectors often have how many actions and triggers which focus on core use cases?
2-3
What do lambda functions do?
Allow you to write freeform ruby code to address specific tasks
What does OPA stand for?
On-prem agent
What does an OPA allow?
Workato to communicate with on prem applicaitons securely
True or False: The On-prem Agent runs within the customer’s datacenter, and establishes a TLS 1.2 websocket tunnel with Workato
True
Does Collections support SQL statements?
Yes
In the restaurant to API analogy, what is the menu?
An API contract because it tells you what you can do with an API
In the restaurant to API analogy, what is your order?
The API logic is the order because it is how the data will get processed and transformed to perform the function of the API
In the restaurant to API analogy, what is the kitchen?
The API connectivity is the kitchen because this where the API takes in the order and pulls or pushes the required data
What is an endpoint in regards to an API?
The address that you want to send your request to
Where do query parameters appear in the URL in API calls?
after the question mark
What enables control over the client’s usage of API’s?
Access Policies
If you do not associate an Access Policy with a client, what access does that client have?
They can access the API as much as they want
What is a JWT token?
A JSON web token is a compact, URL-safe means of representing claims between two parties. It is commonly used for authentication and authorization purposes in web applications and APIs.
How should API tokens be treated?
Like passwords
True and False: Recipe lifecycle management helps organizations create a collaborative environment to share recipes between developers, testers, and operations teams.
True
What are the three default roles in every team account?
Admin, Analyst, Operator
Which Workato capability can you use to assess the impact on shared assets such as callable recipes before implementing new changes?
What two processes are critical checkpoints in the recipe lifecycle?
- Recipe review before moving recipes from dev to test
- Release approval before moving recipes to production
Which Workato capability can you use to asses the impact on shared assets such as callable recipes before implementing new changes?
Dependency graph
What is a manifest?
A record of all the selected recipes and their dependencies such as applicaiton connections, lookup tables, and account properties
True or False: Exported zips include credentials for security reasons
False
What does CI/CD stand for?
Continuous Integration/ Continuous Delivery
Major release types include what two things?
New Automations or major enhancements
What are two ways to track release details?
Tags feature of git-based version control system; copies released in a shared drive
True or False: It is recommended to rename and move assets between releases
False
What 5 plans should you enact for releases?
- Build and Test
- Deployment Plan
- Review Plan
- Communication Plan
- Validation Plan
What are the three task optimization strategies?
Triggers strategies, batch strategies, efficiency strategies
What are the three components of the trigger strategies?
polling frequency, trigger conditions, batch/bulk triggers
What are the components of batch strategies?
Batch/bulk actions, Filtering events, Delta Sync, ELT (vs ETL), Streaming
What are the components of efficiency strategies?
Formula methods, list processing, use collections, use custom code, use Variables by Workato, use custom SDK
What is a task defined as?
A unit of work that occurs every time a recipe performs an action
What three things are not considered tasks?
Triggers, control flow logic, error handling logic
What is Workato’s Autonomous Operations Framework?
an automated solution for notifications, logging, and automated recovery when errors are encountered
What is CI/CD?
DevOps practice that helps organizations automate release policies. It establishes a consistent process to quickly and confidently deliver changes by providing traceability across environments.
Who is the Workato CI/CD Accelerator meant for?
Organizations planning to leverage Workato for building and operating 10+ recipes with multiple environments and who want error free release management and versioning for traceability
What is the OPA Accelerator?
a “plug and play” resource for Workato builders to adminster and manage OPA’s with no IT assistance required
Who is OPA Accelerator recommended for?
organizations that need to manage double-digit OPAs across multiple networks without needed constant IT assistance
What is Enterprise Data Hub Accelerator?
a robust solution for efficiently managing your organization’s key master records and ensuring you have a single trusted source for this data that remains cleansed, enriched, and always up-to-date using near real time data synchronization
What are the 4 principles that lie at the core of Workato pricing?
Value, Transparency, Ease, and Predictability
What do Workato customers get unlimited of?
Users, Community Recipes, Support, and Connectors