Tasks
Manage Configs
Manage different types of configs for a Stubber Organization
This task provides CRUD operations for managing organization configurations such as credentials and notification settings.
Usage Scenarios
This task is used to automate setup and configuration of various organization settings in Stubber. It supports creating, reading, updating, and deleting configurations for different resources.
Examples include:
- Creating a new webchat profile
- Updating an existing webchat profile
Supported Manage Config Types
The following configuration types are currently supported:
- Notifications
- Webchat profiles (
/notifications/webchat/profiles
)
- Webchat profiles (
Support for additional configuration types is added gradually based on requirements. Check the latest documentation for newly supported config types. Inform us if you need support for a specific config type.
Basic usage
Parameters
string
target_path The path to the resource being managed. This specifies the type and location of the configuration. For UUID-specific operations, you can either include the UUID in the path or provide it as a parameter.
Examples:
/notifications/webchat/profiles
- for general profile operations/notifications/webchat/profiles/{{profile_uuid}}
- for specific profile operations
string
operation The operation to perform on the configuration. Available operations:
create
- Create a new configurationread
- Read an existing configurationupdate
- Update an existing configurationdelete
- Delete an existing configuration
object
params Resource specific parameters to the operation being performed. For read
, update
, and delete
operations, this typically includes the UUID of the resource. For create
and update
operations, this includes the configuration data.
Examples
Create a webchat profile
Update a webchat profile
Read a webchat profile (using params)
Read a webchat profile (using target_path)