Mate DB

Introduction

The Mate DB feature in Autom Mate is a Autom based tool designed to store keys and values essential for your workflows. Mate DB functions on a Redis DB and for the nature of the Redis, none of the keys and values are relationed with each other.

The primary purpose of the Mate DB is to store some keys and values for future needs. This Database will be logged on the Autom up to 10mb and none of the data will be deleted without users actions. This means that the keys and values that added to the DB in the Autom will be there in every session of the Autom.

Key Features

  • Add Keys and Values: Add the ekys and values of variables for future usage.

  • Future Usage: When the Autom runs everytime, users can read the current keys of the Mate DB and add new values to the DB for next Autom runs.

  • Store Data: Users can store data in the Mate DB. For example: Storing Ticket ID's of different ITSM tools.

How To Use Actions

Delete

Description: The action Deletes a key and it's Value from Mate DB.

Usage:

  • Put the name of the key to the "Key" input field.

Action Result: The key will be deleted from Mate DB.

Is Exists

Description: The action checks if the key provided exists in the Mate DB.

Usage:

  • Put the name of the key to the "Key" input field.

  • Assign a string type of variable to "Assign Data" field.

Action Result: String output will display "true" or "false" depending if the key exists or not.

Get

Description: The action fetches the value of the key provided.

Usage:

  • Put the name of the key to the "Key" input field.

  • Assign a string type of variable to "Assign Data" field.

Action Result: The value of the key provided will be assigned to the string variable.

Set

Description: The action adds a key - value to the Mate DB.

Usage:

  • Put the name of the key to the "Key" input field.

  • Put the value of the key to the "Value" input field.

  • If there is a need of adding more keys and values, press on the "+" button to add more to the Mate DB.

Action Result: The key and value will be added to the Mate DB.


Additional Tips

Last updated