Service Discovery + Management
Understanding Amigo Services
Your integration may include multiple service types, each designed for specific interaction scenarios:
Meet & Greet: Optimized for new user onboarding
Adaptive Support: Designed for returning user support
Each service has a unique service ID that must be referenced when creating conversations. Though services may be connected in a workflow (e.g., Meet & Greet leading to Adaptive Support), you must initiate conversations with the correct service ID to ensure proper user experience.
Retrieving Available Services
To discover all available services for your organization:
The response will contain a list of services with their respective IDs, names, and other metadata.
Create a Service
The response will contain the ID of the created service:
Update a Service
To update a service's non-functional metadata, use the following:
To change a service's functional fields such as its agent ID, create a new service and delete the old service.
Service Mapping Best Practices
For effective service routing in your application:
Service ID Persistence: Store service IDs in your system with descriptive labels
User Journey Mapping: Create logical mappings between user states and appropriate services:
First-time users → Meet & Greet service (e.g. service ID:
67a23a08b02fe1e74341a6f8
)Returning users → Reactive Support service (e.g. service ID:
675769a1d71dbf8cf042271f
)
Dynamic Routing: Implement logic in your application to direct users to the appropriate service based on their status or needs
Service Versioning
When creating new conversations, you can specify the service version:
service_version_set_name
: Typically set to"release"
for production environmentsservice_id
: The unique identifier for the specific service you want to use
This approach ensures users are routed to the correct conversation flow based on their context and needs.
Last updated
Was this helpful?