Tag: AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio

Create a test set (AB-620 Exam Prep)

This post is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.
This topic falls under these sections:
Test and manage agents (20–25%)
   --> Evaluate agent performance
      --> Create a test set


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

One of the most important responsibilities of an AI Agent Builder is ensuring that an agent consistently produces accurate, relevant, and safe responses. As agents become more sophisticated and rely on multiple knowledge sources, tools, and generative AI models, manual testing alone is no longer sufficient.

Microsoft Copilot Studio provides test sets that allow developers to systematically validate agent behavior against expected outcomes. Test sets enable repeatable evaluation of an agent after configuration changes, prompt updates, knowledge source modifications, or model upgrades.

For the AB-620 exam, you should understand:

  • What test sets are
  • Why they are important
  • How to create and manage them
  • How they integrate with agent evaluation
  • Best practices for maintaining reliable test coverage

What Is a Test Set?

A test set is a collection of predefined test cases that evaluate how an AI agent responds to expected user requests.

Each test case generally contains:

  • A sample user prompt
  • The expected behavior or outcome
  • Evaluation criteria
  • Pass/fail results after execution

Instead of manually asking the same questions every time changes are made, developers can rerun the entire test set to determine whether the agent continues to behave correctly.


Why Test Sets Matter

Without structured testing:

  • New prompts may unintentionally break previous functionality.
  • Updated knowledge sources may introduce incorrect answers.
  • Tool changes may fail silently.
  • Model updates may alter response quality.

Test sets provide confidence that the agent still behaves correctly after changes.

Benefits include:

  • Repeatable testing
  • Faster validation
  • Regression testing
  • Improved response quality
  • Easier troubleshooting
  • Better release confidence

Test Set vs Manual Testing

Manual TestingTest Set
Performed interactivelyExecuted repeatedly
Difficult to reproduceFully repeatable
Human remembers questionsQuestions stored permanently
Time consumingAutomated evaluation
Easy to miss scenariosCovers many scenarios consistently

When Should You Create a Test Set?

Create a test set whenever:

  • Building a new agent
  • Adding new topics
  • Adding knowledge sources
  • Adding tools
  • Integrating APIs
  • Updating prompts
  • Deploying a new version
  • Performing regression testing

Components of a Test Case

A typical test case includes several important elements.

1. User Input

The question or request submitted to the agent.

Example:

“Show me my remaining vacation balance.”


2. Expected Behavior

The desired outcome.

Examples include:

  • Calls HR connector
  • Retrieves employee record
  • Returns vacation balance
  • Does not hallucinate data

3. Expected Response

Depending on the evaluation method, expected responses may include:

  • Specific wording
  • Required information
  • Correct tool usage
  • Accurate citation
  • Proper formatting

4. Evaluation Result

After execution the test produces results such as:

  • Pass
  • Fail
  • Partial success
  • Confidence score (where applicable)

Types of Test Cases

A comprehensive test set should include multiple categories.

Happy Path Tests

Expected user behavior.

Example:

“Reset my password.”


Alternative Wording

Different ways users ask the same question.

Examples:

  • I forgot my password
  • Help me log in
  • I can’t sign in

Edge Cases

Unusual but valid requests.

Example:

“Can I reset someone else’s password?”


Invalid Requests

Questions the agent should decline.

Example:

“Delete every employee record.”


Ambiguous Questions

The agent should ask follow-up questions.

Example:

“Book a meeting.”

Expected behavior:

“Who should I invite?”


Tool Failure Tests

Verify graceful handling of failures.

Example:

API unavailable.

Expected response:

“The HR system is temporarily unavailable.”


Knowledge Tests

Ensure retrieval from enterprise knowledge.

Example:

“What is the travel reimbursement policy?”


Security Tests

Confirm proper authorization.

Example:

Employee requests another employee’s payroll information.

Expected behavior:

Access denied.


Creating a Test Set

The general workflow is:

Step 1

Open the agent in Copilot Studio.


Step 2

Navigate to testing or evaluation features.


Step 3

Create a new test set.


Step 4

Add individual test cases.

Each includes:

  • Prompt
  • Expected behavior
  • Expected response

Step 5

Save the test set.


Step 6

Run the evaluation.


Step 7

Review results.


Step 8

Improve the agent if failures occur.


Step 9

Run the test set again.


Organizing Test Sets

Large enterprise agents often use multiple test sets.

Examples:

  • HR Agent
  • Finance Agent
  • IT Help Desk
  • Customer Service
  • Sales Support

Within each, additional test groups may cover:

  • Authentication
  • Knowledge retrieval
  • API actions
  • Escalation
  • Security
  • Generative responses

Regression Testing

Regression testing verifies that new changes do not introduce unexpected problems.

Example:

Original agent answers:

“How do I request PTO?”

A new HR connector is added.

Running the existing test set confirms the answer still works correctly.

Without regression testing, developers may unknowingly introduce defects.


Testing Knowledge Retrieval

Knowledge-based agents should verify:

  • Correct document selected
  • Correct section retrieved
  • Accurate citation
  • Relevant answer
  • No hallucinated content

Example test:

Question:

“What is the expense reimbursement limit?”

Expected:

  • Searches indexed documents
  • Retrieves finance policy
  • Returns correct limit
  • Includes citation if configured

Testing Tool Invocation

For action-based agents, verify that the correct tool is selected.

Example:

User:

“Create a support ticket.”

Expected:

  • IT connector invoked
  • Ticket created
  • Ticket number returned

Failure examples:

  • Wrong connector called
  • No connector called
  • Hallucinated confirmation

Testing Multi-Agent Solutions

If delegation is used, verify:

  • Correct child agent selected
  • Successful delegation
  • Response returned
  • Parent continues conversation properly

Testing Generative AI

Generative responses require additional evaluation.

Verify:

  • Factual accuracy
  • Completeness
  • Grounding
  • Tone
  • Safety
  • Relevance

Evaluating Test Results

After execution, review:

  • Overall pass rate
  • Failed cases
  • Tool execution
  • Knowledge retrieval
  • Response quality
  • Latency
  • Error messages

Common questions include:

  • Did the correct tool run?
  • Was the answer accurate?
  • Was sensitive data protected?
  • Was grounding successful?

Common Reasons Tests Fail

Failures often result from:

  • Prompt changes
  • Missing connector permissions
  • API failures
  • Incorrect tool selection
  • Poor grounding
  • Hallucinations
  • Missing documents
  • Authentication problems
  • Incorrect routing

Best Practices

Microsoft recommends several best practices.

Build Early

Create test cases while building the agent.


Cover Real User Questions

Use production-like prompts whenever possible.


Include Variations

People ask the same question differently.

Test all common variations.


Test Negative Scenarios

Don’t only verify success.

Test:

  • Errors
  • Permission failures
  • Invalid input
  • Ambiguous requests

Keep Test Sets Updated

Whenever the agent changes:

  • Add new tests
  • Remove obsolete tests
  • Update expected responses

Run Tests Frequently

Execute the full test set:

  • Before deployment
  • After model updates
  • After connector updates
  • After knowledge updates
  • After prompt revisions

Exam Tips

For the AB-620 exam, remember:

  • Test sets enable repeatable evaluation.
  • They support regression testing.
  • Good test cases include expected behavior.
  • Test sets should include positive, negative, and edge-case scenarios.
  • Multi-agent solutions require delegation testing.
  • Tool-based agents require tool invocation validation.
  • Knowledge agents require grounding verification.
  • Test sets improve deployment confidence.

Practice Exam Questions

Question 1

Why is creating a test set preferable to relying solely on manual testing?

A. It permanently stores conversation history for users.

B. It provides repeatable, consistent evaluation of agent behavior.

C. It automatically retrains the language model.

D. It removes the need for production monitoring.

Answer: B

Explanation: Test sets allow the same scenarios to be executed repeatedly, making regression testing and validation much more reliable than manual testing.


Question 2

Which type of scenario should always be included in a comprehensive test set?

A. Only successful user interactions

B. Only connector failures

C. Positive, negative, and edge-case scenarios

D. Only knowledge retrieval questions

Answer: C

Explanation: Comprehensive testing includes normal requests, invalid inputs, ambiguous questions, security scenarios, and failure conditions.


Question 3

A developer updates an HR connector used by an agent. What is the best next step?

A. Run the existing test set to perform regression testing.

B. Delete all previous test cases.

C. Retrain the foundation model.

D. Create a new environment.

Answer: A

Explanation: Regression testing verifies that previously working functionality continues to operate after changes.


Question 4

Which component defines what a successful test should accomplish?

A. Conversation history

B. Agent version

C. Workspace settings

D. Expected behavior

Answer: D

Explanation: Expected behavior specifies the desired outcome that the agent should achieve during the test.


Question 5

A knowledge-based agent answers a company policy question using outdated information. Which area of testing should identify this issue?

A. User authentication testing

B. Knowledge retrieval testing

C. Network latency testing

D. Adaptive Card rendering

Answer: B

Explanation: Knowledge retrieval tests verify that the correct documents are located and that accurate, grounded information is returned.


Question 6

When testing an action that creates a support ticket, what should the evaluation confirm?

A. Only that the response is grammatically correct

B. Only that the response is polite

C. That the correct tool or connector was invoked successfully

D. That the conversation contains at least three turns

Answer: C

Explanation: Action-based tests should verify successful tool invocation and the expected outcome of that action.


Question 7

Why should multiple phrasings of the same request be included in a test set?

A. To increase the size of the knowledge base

B. To improve authentication

C. To ensure the agent recognizes natural language variations

D. To reduce connector latency

Answer: C

Explanation: Users ask the same question in many different ways, and the agent should respond correctly to common variations.


Question 8

Which situation best represents an edge-case test?

A. “Reset my password.”

B. “Show today’s weather.”

C. “Create a support ticket.”

D. “Can I reset another employee’s password?”

Answer: D

Explanation: This unusual but valid request tests whether the agent correctly handles authorization and security.


Question 9

An agent delegates requests to multiple child agents. What should testing verify?

A. That delegation occurs to the appropriate child agent and responses are returned correctly

B. That every child agent uses the same prompt

C. That delegation is disabled after deployment

D. That all child agents share one knowledge source

Answer: A

Explanation: Multi-agent testing ensures that routing, delegation, and response aggregation function as designed.


Question 10

Which statement best describes the primary purpose of regression testing?

A. Measuring internet bandwidth

B. Evaluating user satisfaction surveys

C. Ensuring that recent changes have not broken existing functionality

D. Generating additional knowledge documents

Answer: C

Explanation: Regression testing validates that existing capabilities continue to work correctly after updates to prompts, connectors, tools, or knowledge sources.


Go to the AB-620 Exam Prep Hub main page

Monitor agents by using Application Insights (AB-620 Exam Prep)

This post is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.
This topic falls under these sections:
Integrate and extend agents in Copilot Studio (40–45%)
   --> Integrate agents with Azure
      --> Monitor agents by using Application Insights


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

As AI agents become more sophisticated and business-critical, monitoring their health, performance, reliability, and user interactions becomes essential. An AI agent that responds slowly, generates errors, experiences high failure rates, or consumes excessive resources can negatively impact business operations and user satisfaction.

Microsoft Copilot Studio integrates with Azure Application Insights, a feature of Azure Monitor, to provide comprehensive telemetry, diagnostics, and performance monitoring. Application Insights collects operational data from agents, allowing administrators and developers to observe agent behavior, troubleshoot issues, measure usage, and optimize performance over time.

For the AB-620 exam, you should understand how Application Insights integrates with Copilot Studio, what telemetry it collects, how to analyze monitoring data, and how monitoring supports production AI solutions.


What is Azure Application Insights?

Azure Application Insights is an application performance monitoring (APM) service within Azure Monitor.

It helps organizations:

  • Monitor application availability
  • Track performance
  • Diagnose failures
  • Analyze user behavior
  • Detect anomalies
  • Monitor dependencies
  • Measure response times
  • Identify bottlenecks
  • Generate alerts
  • Improve application reliability

Application Insights provides near real-time visibility into the operational health of applications, including AI-powered agents.


Why Monitor Copilot Studio Agents?

Production AI agents interact with users continuously. Monitoring helps answer questions such as:

  • Is the agent available?
  • Are conversations completing successfully?
  • Are responses taking too long?
  • Are external APIs failing?
  • Which topics are most frequently triggered?
  • Where are users abandoning conversations?
  • Are authentication failures occurring?
  • Are knowledge searches succeeding?
  • Is latency increasing?
  • Are recent deployments causing problems?

Without monitoring, identifying these issues can be difficult.


Monitoring Architecture

A typical monitoring architecture includes:

User
Copilot Studio Agent
Conversation Execution
Telemetry Collection
Application Insights
Azure Monitor
Dashboards
Alerts
Analytics
Logs

Every conversation can generate telemetry that is stored for analysis.


What is Telemetry?

Telemetry is operational data automatically collected from applications.

For Copilot Studio agents, telemetry may include:

  • Conversation start
  • Conversation end
  • User session
  • Topic activation
  • Tool execution
  • API calls
  • Response times
  • Exceptions
  • Authentication events
  • Dependency calls
  • Custom events
  • Prompt execution
  • Generative AI activity
  • User feedback
  • Errors

Telemetry provides the raw information used to monitor system health.


Types of Telemetry

Application Insights collects several categories of telemetry.

Requests

Measures requests processed by the agent.

Examples include:

  • User messages
  • Conversation requests
  • HTTP requests
  • API invocations

Useful metrics include:

  • Duration
  • Success rate
  • Failure rate

Dependencies

Tracks external services called by the agent.

Examples include:

  • REST APIs
  • Azure AI Search
  • Dataverse
  • SQL Database
  • SharePoint
  • Power Platform connectors
  • Azure OpenAI
  • Azure AI Foundry
  • External web services

Dependency tracking helps identify slow or failing external systems.


Exceptions

Captures unexpected errors.

Examples include:

  • Authentication failures
  • Timeout exceptions
  • API failures
  • Missing parameters
  • Invalid requests
  • Permission errors

Developers can use exception details to troubleshoot failures.


Traces

Trace telemetry records detailed execution information.

Examples include:

  • Topic execution
  • Diagnostic messages
  • Workflow progress
  • Variable values
  • Decision branches

Traces are especially useful during debugging.


Events

Custom events capture important business activities.

Examples:

  • Order submitted
  • Employee onboarded
  • Ticket created
  • Payment completed
  • Appointment scheduled

Organizations can define custom events for business-specific monitoring.


Availability

Availability monitoring tests whether an application is reachable.

It can detect:

  • Service outages
  • Connectivity failures
  • Regional problems
  • Downtime

Availability tests help ensure production agents remain accessible.


Metrics Commonly Monitored

Common operational metrics include:

  • Total conversations
  • Active users
  • Average response time
  • Request duration
  • API latency
  • Conversation completion rate
  • Conversation abandonment
  • Error count
  • Exception rate
  • Failed requests
  • CPU utilization (supporting resources)
  • Memory utilization (supporting resources)
  • Dependency performance
  • Token consumption (when available)
  • Cost trends

Integrating Copilot Studio with Application Insights

High-level integration typically includes:

  1. Create an Azure Application Insights resource.
  2. Enable monitoring.
  3. Connect the Copilot Studio environment.
  4. Configure telemetry collection.
  5. Deploy the agent.
  6. Review incoming telemetry.
  7. Build dashboards.
  8. Configure alerts.
  9. Monitor production activity.

Azure Monitor Integration

Application Insights is part of Azure Monitor.

Azure Monitor provides:

  • Centralized monitoring
  • Metrics
  • Log Analytics
  • Alerts
  • Dashboards
  • Workbooks
  • Automation
  • Diagnostic settings

Application Insights contributes telemetry to Azure Monitor, where it can be analyzed alongside other Azure resources.


Log Analytics

Telemetry is stored in Log Analytics, enabling powerful querying using Kusto Query Language (KQL).

Administrators can answer questions such as:

  • Which conversations failed today?
  • Which topics generate the most errors?
  • Which users experience timeouts?
  • What APIs are the slowest?
  • Which connector has the highest latency?
  • How many conversations exceeded five seconds?

Example Monitoring Scenarios

Scenario 1

Users report slow responses.

Application Insights reveals:

  • Average response time increased from 2 seconds to 12 seconds.
  • Azure AI Search dependency latency increased dramatically.

The administrator investigates the search service.


Scenario 2

A new deployment causes failures.

Monitoring identifies:

  • Spike in exceptions.
  • Failed API calls.
  • Authentication errors.

The deployment is rolled back.


Scenario 3

An external REST API becomes unavailable.

Application Insights shows:

  • Dependency failures
  • Timeout exceptions
  • Increased conversation failures

Administrators quickly identify the external dependency rather than blaming Copilot Studio.


Dashboards

Application Insights dashboards visualize operational health.

Typical dashboard components include:

  • Conversation volume
  • Requests per minute
  • Active users
  • Success rate
  • Failure rate
  • Exceptions
  • Response times
  • API latency
  • Dependency health
  • Geographic usage
  • Availability
  • Performance trends

Dashboards allow administrators to monitor systems without manually querying logs.


Alerts

Alerts automatically notify administrators when thresholds are exceeded.

Examples include:

  • Response time exceeds five seconds.
  • Error rate exceeds 3%.
  • Availability drops below 99%.
  • API failures increase suddenly.
  • Authentication failures spike.
  • Conversation completion rate decreases.

Alerts can trigger:

  • Email
  • SMS
  • Microsoft Teams notifications
  • Azure Automation
  • Logic Apps
  • Webhooks

Distributed Tracing

Many enterprise agents call multiple services during a single conversation.

Example:

User
Copilot Studio
Azure AI Search
REST API
Dataverse
Azure AI Foundry
Response

Application Insights correlates these operations into a single end-to-end transaction.

This allows administrators to identify exactly where delays occur.


Correlation IDs

Each conversation can be assigned a correlation ID.

This enables:

  • End-to-end tracing
  • Cross-service diagnostics
  • Root cause analysis
  • Log correlation
  • Easier troubleshooting

Correlation IDs are especially valuable in distributed AI systems.


Monitoring Generative AI Operations

Application Insights can help monitor:

  • Prompt execution
  • Model latency
  • API failures
  • Retrieval operations
  • Tool execution
  • Conversation completion
  • Dependency failures
  • User feedback events

While model-specific metrics may come from Azure AI Foundry or Azure OpenAI, Application Insights provides operational telemetry surrounding those interactions.


Security Considerations

Monitoring should avoid collecting sensitive information.

Best practices include:

  • Avoid storing secrets.
  • Minimize personal information.
  • Mask sensitive values.
  • Follow organizational compliance policies.
  • Apply RBAC to monitoring resources.
  • Encrypt telemetry in transit and at rest.
  • Retain logs according to governance requirements.

Cost Considerations

Application Insights pricing depends largely on:

  • Data ingestion volume
  • Log retention
  • Query frequency
  • Exported telemetry

Organizations should balance monitoring detail with storage costs.

Strategies include:

  • Sample telemetry.
  • Adjust retention periods.
  • Remove unnecessary events.
  • Archive historical logs.

Best Practices

  • Enable monitoring before production deployment.
  • Create dashboards for key performance indicators.
  • Configure proactive alerts.
  • Monitor dependency health.
  • Use distributed tracing.
  • Track conversation completion rates.
  • Review exceptions regularly.
  • Use KQL to investigate issues.
  • Protect sensitive telemetry.
  • Continuously optimize based on monitoring insights.

Common Exam Tips

For the AB-620 exam, remember the following:

  • Application Insights is part of Azure Monitor.
  • It provides application performance monitoring (APM).
  • It collects telemetry from running applications.
  • Telemetry includes requests, dependencies, exceptions, traces, events, and availability data.
  • Dependency monitoring helps diagnose failures in external systems.
  • Log Analytics uses Kusto Query Language (KQL) for querying telemetry.
  • Alerts can automatically notify administrators of operational issues.
  • Distributed tracing correlates activity across multiple services.
  • Correlation IDs enable end-to-end diagnostics.
  • Monitoring supports performance optimization, troubleshooting, and operational reliability.

Practice Exam Questions

Question 1

An administrator wants to determine why users are experiencing slow responses from a Copilot Studio agent. Which Azure service provides detailed performance telemetry for troubleshooting?

A. Azure Storage

B. Azure Application Insights

C. Microsoft Entra ID

D. Azure Key Vault

Answer: B

Explanation: Application Insights collects detailed telemetry such as response times, dependency performance, and exceptions, making it the primary service for diagnosing performance issues.


Question 2

Which type of Application Insights telemetry tracks calls from a Copilot Studio agent to Azure AI Search or external REST APIs?

A. Requests

B. Exceptions

C. Dependencies

D. Availability

Answer: C

Explanation: Dependency telemetry measures calls to external services, databases, connectors, APIs, and Azure resources, allowing administrators to identify slow or failing dependencies.


Question 3

A developer wants to investigate authentication failures generated during agent execution. Which telemetry type should they examine first?

A. Exceptions

B. Availability

C. Metrics

D. Workbooks

Answer: A

Explanation: Authentication failures typically generate exception telemetry, which records detailed information about errors encountered during execution.


Question 4

What is the primary purpose of distributed tracing in Application Insights?

A. Encrypt conversation history

B. Automatically translate telemetry

C. Compress monitoring data

D. Correlate activity across multiple services in a single transaction

Answer: D

Explanation: Distributed tracing connects telemetry from multiple services involved in processing a single request, enabling end-to-end diagnostics.


Question 5

Which language is used to query Application Insights data stored in Log Analytics?

A. T-SQL

B. Power Query M

C. DAX

D. Kusto Query Language (KQL)

Answer: D

Explanation: Log Analytics uses Kusto Query Language (KQL) to query, filter, summarize, and analyze telemetry data.


Question 6

An operations team wants to receive an email whenever an agent’s average response time exceeds five seconds. Which Azure Monitor capability should they configure?

A. Alerts

B. Availability tests

C. Workbooks

D. Sampling

Answer: A

Explanation: Azure Monitor alerts automatically notify administrators when configured thresholds or conditions are met.


Question 7

Which monitoring metric would BEST help determine whether users are abandoning conversations before completion?

A. CPU utilization

B. Conversation completion and abandonment rates

C. Azure subscription quota

D. Virtual machine availability

Answer: B

Explanation: Completion and abandonment metrics directly measure how successfully users finish conversations with the agent.


Question 8

Why are correlation IDs valuable when troubleshooting AI agents?

A. They reduce Azure costs.

B. They increase model accuracy.

C. They link telemetry across multiple services for a single conversation.

D. They automatically encrypt logs.

Answer: C

Explanation: Correlation IDs associate related telemetry from different services, making it easier to trace a request from start to finish.


Question 9

Which best practice helps protect sensitive information when using Application Insights?

A. Store authentication secrets in telemetry for debugging.

B. Collect every possible user input permanently.

C. Disable encryption to improve performance.

D. Mask sensitive data and apply role-based access control (RBAC).

Answer: D

Explanation: Sensitive information should be masked or excluded from telemetry, and access should be restricted using RBAC to support security and compliance.


Question 10

What is the primary benefit of monitoring external dependencies such as Azure AI Search, Dataverse, and REST APIs?

A. It automatically upgrades connectors.

B. It identifies latency and failures occurring outside the Copilot Studio agent itself.

C. It eliminates the need for application logging.

D. It reduces token consumption by language models.

Answer: B

Explanation: Dependency monitoring helps determine whether performance issues or failures originate in external services rather than within the agent, significantly speeding up root cause analysis.


Go to the AB-620 Exam Prep Hub main page

Configure custom prompts to use the Foundry model catalog (AB-620 Exam Prep)

This post is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.
This topic falls under these sections:
Integrate and extend agents in Copilot Studio (40–45%)
   --> Integrate agents with Azure
      --> Configure custom prompts to use the Foundry model catalog


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Overview

As organizations build increasingly sophisticated AI agents in Microsoft Copilot Studio, they often require more control over which large language models (LLMs) are used and how those models generate responses. While Copilot Studio includes powerful built-in generative AI capabilities, many enterprise scenarios benefit from connecting to models hosted in Azure AI Foundry (formerly Azure AI Studio).

Azure AI Foundry provides access to a large catalog of foundation models from Microsoft, OpenAI, Meta, Mistral AI, Cohere, Hugging Face, and many other providers. These models can be deployed within an Azure subscription and securely consumed by applications and AI agents.

One of the key capabilities covered in the AB-620 exam is configuring custom prompts in Copilot Studio that leverage models deployed through the Azure AI Foundry model catalog. This enables organizations to tailor agent behavior, use specialized models, implement reusable prompts, and satisfy governance requirements while maintaining enterprise security.


What is Azure AI Foundry?

Azure AI Foundry is Microsoft’s unified platform for building, evaluating, deploying, securing, and managing AI solutions.

It provides:

  • Model catalog
  • Prompt engineering tools
  • AI evaluation capabilities
  • Safety systems
  • Deployment management
  • Model monitoring
  • Responsible AI controls
  • Agent development tools
  • Integration with Copilot Studio

Rather than relying only on the default Copilot model, organizations can deploy one or more models within Azure AI Foundry and make them available to enterprise applications.


What is the Foundry Model Catalog?

The Model Catalog is a centralized repository containing hundreds of AI models.

Examples include:

  • GPT models
  • Phi models
  • Llama models
  • Mistral models
  • Cohere Command models
  • DeepSeek models (where available)
  • Open-source Hugging Face models
  • Vision models
  • Embedding models
  • Speech models
  • Multimodal models

Each model includes information such as:

  • Provider
  • Version
  • Licensing
  • Supported tasks
  • Context window
  • Token limits
  • Pricing
  • Deployment options
  • Performance benchmarks

Why Use the Model Catalog?

Organizations may choose custom models because they need:

  • Better reasoning
  • Lower latency
  • Lower cost
  • Longer context windows
  • Specialized coding abilities
  • Multilingual support
  • Vision processing
  • Image understanding
  • Document analysis
  • Industry-specific performance

Instead of using one model for every task, different prompts can target different deployed models.


What Are Custom Prompts?

A custom prompt is a reusable prompt template that defines how an LLM should perform a task.

Rather than asking the model a simple question, a custom prompt provides detailed instructions, context, formatting rules, and constraints.

Example:

Instead of:

Summarize this document.

A custom prompt might specify:

You are a financial analyst. Summarize this quarterly earnings report in less than 300 words. Highlight revenue changes, operating margin, risks, opportunities, and executive guidance. Produce the output as a Markdown table followed by three bullet points.

The additional instructions produce far more consistent outputs.


Benefits of Custom Prompts

Advantages include:

  • Consistent responses
  • Reusable instructions
  • Better formatting
  • Reduced hallucinations
  • Improved grounding
  • Easier maintenance
  • Centralized governance
  • Standardized business logic

How Copilot Studio Uses Foundry Models

The high-level workflow is:

  1. Deploy a model in Azure AI Foundry.
  2. Configure the deployment endpoint.
  3. Create or connect Azure AI resources.
  4. Connect Copilot Studio.
  5. Create a custom prompt.
  6. Select the deployed model.
  7. Pass user input into the prompt.
  8. Receive generated output.
  9. Continue the conversation.

The user typically does not know which model produced the response.


Typical Architecture

User
Copilot Studio Agent
Custom Prompt
Azure AI Foundry
Selected Model Deployment
Generated Response
Agent Response

Components Involved

A complete solution typically includes:

  • Copilot Studio
  • Azure AI Foundry
  • Azure AI Foundry Project
  • Model deployment
  • Azure AI Services resource
  • Authentication
  • Prompt template
  • Enterprise data
  • Optional Azure AI Search

Creating a Model Deployment

Before a prompt can use a model, the model must first be deployed.

Typical steps include:

  • Browse the Model Catalog.
  • Select a model.
  • Review licensing.
  • Choose deployment type.
  • Configure capacity.
  • Deploy the endpoint.
  • Test the deployment.
  • Secure the deployment.

The deployment creates an endpoint that applications can call.


Connecting Copilot Studio to Foundry

The connection typically involves:

  • Azure authentication
  • Managed identity or service principal
  • Endpoint configuration
  • Permissions
  • Environment configuration

After configuration, Copilot Studio can invoke deployed models as part of prompt execution.


Prompt Design Best Practices

Good prompts generally include:

Role

Tell the model who it is.

Example:

“You are an HR compliance specialist.”


Goal

Describe the objective.

Example:

“Review employee policies.”


Context

Provide supporting information.

Example:

“The organization operates in healthcare.”


Instructions

Explain exactly what should happen.

Example:

“Identify compliance risks.”


Constraints

Limit undesirable behavior.

Example:

  • Don’t speculate.
  • Use only supplied information.
  • Return JSON.

Output Format

Specify the expected structure.

Example:

Summary
Risks
Recommendations
Confidence Score

Prompt Variables

Custom prompts commonly accept variables.

Examples include:

  • User question
  • Customer name
  • Product
  • Ticket number
  • Region
  • Language
  • Conversation history
  • Retrieved documents

Variables make one prompt reusable for thousands of requests.


Example Prompt

Role:
You are an insurance claims specialist.
Task:
Review the submitted claim.
Context:
Use only supplied documents.
Output:
Return:
• Claim summary
• Fraud indicators
• Missing information
• Recommended next steps
Do not invent facts.

Choosing the Right Model

Different prompts benefit from different models.

Examples:

Customer support

  • Low latency
  • Low cost

Legal analysis

  • High reasoning ability
  • Large context window

Coding

  • Strong code generation

Document summarization

  • Long context support

Translation

  • Strong multilingual capabilities

Model Selection Considerations

Factors include:

  • Cost
  • Latency
  • Accuracy
  • Context length
  • Availability
  • Geographic region
  • Compliance requirements
  • Safety capabilities
  • Throughput
  • Scalability

Responsible AI Considerations

When configuring prompts, organizations should:

  • Avoid biased instructions.
  • Protect confidential information.
  • Minimize unnecessary personal data.
  • Ground responses in enterprise knowledge.
  • Validate generated output.
  • Apply content filtering.
  • Review prompts regularly.
  • Monitor model behavior.

Prompt Evaluation

Azure AI Foundry provides tools for evaluating prompts.

Organizations can measure:

  • Accuracy
  • Relevance
  • Faithfulness
  • Groundedness
  • Helpfulness
  • Safety
  • Toxicity
  • Hallucination rate
  • Latency
  • Cost

Evaluation helps determine whether prompt changes actually improve performance.


Prompt Versioning

As prompts evolve, organizations often maintain multiple versions.

Versioning enables:

  • Rollback
  • Testing
  • Controlled releases
  • A/B testing
  • Governance
  • Documentation
  • Change tracking

Common Enterprise Scenarios

Organizations frequently use Foundry-backed prompts for:

  • Customer support
  • IT help desks
  • HR assistants
  • Financial reporting
  • Contract analysis
  • Healthcare documentation
  • Manufacturing troubleshooting
  • Knowledge management
  • Compliance reviews
  • Executive reporting

Best Practices

  • Keep prompts focused on one objective.
  • Provide explicit instructions.
  • Specify output formats.
  • Use variables instead of hardcoding values.
  • Ground prompts with enterprise knowledge whenever possible.
  • Test prompts using multiple scenarios.
  • Monitor latency and token consumption.
  • Select the smallest model that satisfies business requirements.
  • Evaluate prompts continuously.
  • Version prompts before making production changes.

Common Exam Tips

For the AB-620 exam, remember:

  • Azure AI Foundry hosts deployed AI models.
  • The Model Catalog contains many foundation models from multiple providers.
  • Models must typically be deployed before they can be used.
  • Custom prompts provide reusable instructions for LLM interactions.
  • Prompt variables enable reuse across many conversations.
  • Azure AI Search can be combined with Foundry models for grounded responses.
  • Prompt evaluation measures quality and safety.
  • Responsible AI practices remain essential when using custom prompts.
  • Different prompts may use different deployed models.
  • Prompt engineering significantly affects response quality.

10 Practice Exam Questions

Question 1

An organization wants multiple Copilot Studio agents to use the same standardized instructions when summarizing financial reports. What is the best solution?

A. Create a custom prompt that all agents can reuse.

B. Rewrite the instructions in every topic.

C. Store the instructions inside Adaptive Cards.

D. Add the instructions to every user question.

Answer: A

Explanation: A reusable custom prompt centralizes instructions, promotes consistency, and simplifies maintenance across multiple agents.


Question 2

Which Azure AI Foundry component provides access to available foundation models?

A. AI Hub

B. Model Catalog

C. Prompt Flow

D. Azure Monitor

Answer: B

Explanation: The Model Catalog is the repository for browsing, evaluating, and selecting supported foundation models before deployment.


Question 3

A prompt instructs a model to answer only using retrieved enterprise documentation. What primary benefit does this provide?

A. Faster model deployment

B. Reduced token usage

C. Better grounding and fewer hallucinations

D. Automatic translation

Answer: C

Explanation: Restricting responses to trusted enterprise content improves factual accuracy and reduces unsupported or fabricated responses.


Question 4

Before a Copilot Studio agent can use a model from Azure AI Foundry, what must typically occur?

A. The model must be exported to Dataverse.

B. A Power Automate flow must be created.

C. A custom connector must be installed.

D. The selected model must be deployed.

Answer: D

Explanation: Models in the catalog are not directly consumable until they have been deployed to an endpoint.


Question 5

Which prompt component tells the model how it should behave?

A. Context

B. Output format

C. Role

D. Variables

Answer: C

Explanation: The role establishes the model’s persona or expertise, such as “You are a financial analyst.”


Question 6

Why should prompt variables be used instead of hard-coded values?

A. They improve model licensing.

B. They allow prompts to be reused for different inputs.

C. They reduce Azure subscription costs.

D. They eliminate authentication requirements.

Answer: B

Explanation: Variables enable a single prompt template to process many different user requests without modification.


Question 7

An organization compares several prompts for accuracy, groundedness, latency, and safety before production deployment. Which Azure AI Foundry capability are they using?

A. Deployment scaling

B. Resource monitoring

C. Model catalog browsing

D. Prompt evaluation

Answer: D

Explanation: Prompt evaluation measures prompt quality using metrics such as accuracy, groundedness, safety, and response quality.


Question 8

Which consideration is MOST important when selecting a model for a custom prompt?

A. The icon displayed in the model catalog

B. The browser used by administrators

C. The business requirements, including latency, cost, and reasoning capability

D. The number of Copilot Studio topics

Answer: C

Explanation: Model selection should align with workload requirements, balancing performance, cost, context length, and reasoning ability.


Question 9

A prompt specifies that output must always be returned as JSON with predefined fields. What prompt design principle is being applied?

A. Context injection

B. Output formatting

C. Authentication

D. Content indexing

Answer: B

Explanation: Explicitly defining the output structure increases consistency and simplifies downstream processing.


Question 10

Why should organizations maintain multiple versions of important production prompts?

A. To increase model context length

B. To reduce Azure subscription costs

C. To enable rollback, testing, governance, and controlled deployment of prompt changes

D. To eliminate authentication requirements

Answer: C

Explanation: Prompt versioning supports change management, testing, auditing, rollback, and safer deployment of updates without disrupting production agents.


Go to the AB-620 Exam Prep Hub main page

Configure generative answers by using Azure AI Search with Foundry (AB-620 Exam Prep)

This post is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.
This topic falls under these sections:
Integrate and extend agents in Copilot Studio (40–45%)
   --> Integrate agents with Azure
      --> Configure generative answers by using Azure AI Search with Foundry


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Overview

One of the most powerful capabilities in Microsoft Copilot Studio is the ability to generate grounded, AI-powered responses using enterprise knowledge instead of relying solely on predefined topics. By integrating Azure AI Search with Azure AI Foundry, organizations can build intelligent agents that retrieve relevant information from enterprise content and use large language models (LLMs) to generate accurate, contextual responses.

For the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio exam, you should understand how Azure AI Search, Azure AI Foundry, and Copilot Studio work together to provide Retrieval-Augmented Generation (RAG) experiences.


Learning Objectives

After studying this topic, you should be able to:

  • Explain how Azure AI Search integrates with Copilot Studio.
  • Understand the role of Azure AI Foundry in generative AI solutions.
  • Configure generative answers using Azure AI Search indexes.
  • Understand Retrieval-Augmented Generation (RAG).
  • Configure enterprise knowledge grounding.
  • Understand indexing, chunking, embeddings, and vector search.
  • Apply security and governance best practices.
  • Troubleshoot common configuration issues.

What is Azure AI Foundry?

Azure AI Foundry is Microsoft’s unified platform for building, evaluating, deploying, and managing AI applications and agents.

It provides developers with tools to:

  • Build AI applications
  • Manage AI models
  • Connect enterprise knowledge
  • Evaluate AI responses
  • Deploy production AI solutions
  • Monitor model performance

When integrated with Copilot Studio, Azure AI Foundry supplies the AI models and orchestration capabilities that generate responses based on retrieved enterprise knowledge.


What is Azure AI Search?

Azure AI Search is Microsoft’s enterprise search platform.

Its responsibilities include:

  • Indexing enterprise content
  • Creating searchable knowledge repositories
  • Supporting keyword search
  • Supporting semantic search
  • Supporting vector search
  • Ranking relevant documents
  • Returning content used for grounding AI responses

Rather than generating answers from model training alone, Copilot retrieves relevant documents through Azure AI Search before asking the LLM to formulate an answer.


Understanding Retrieval-Augmented Generation (RAG)

This topic heavily emphasizes Retrieval-Augmented Generation (RAG).

Instead of relying entirely on the LLM’s pretrained knowledge:

  1. User asks a question.
  2. Azure AI Search searches indexed enterprise content.
  3. Relevant passages are retrieved.
  4. Retrieved content is passed to the LLM in Azure AI Foundry.
  5. The LLM generates a grounded response using that retrieved information.

Benefits include:

  • More accurate responses
  • Reduced hallucinations
  • Current enterprise information
  • Permission-aware answers
  • Citations and traceability (when configured)

High-Level Architecture

User
Copilot Studio
Azure AI Search
(Search Index)
Relevant Documents
Azure AI Foundry
(LLM)
Grounded Response
User

Components of the Solution

1. Enterprise Data Sources

Examples include:

  • SharePoint Online
  • OneDrive
  • Azure Blob Storage
  • SQL databases
  • Microsoft Fabric
  • PDF documents
  • Microsoft Teams files
  • Websites
  • Knowledge bases

2. Data Connectors

Connectors import content into Azure AI Search.

They support:

  • Scheduled indexing
  • Incremental updates
  • Metadata extraction
  • Content synchronization

3. Azure AI Search Index

The search index stores:

  • Text content
  • Metadata
  • Searchable fields
  • Filterable fields
  • Vector embeddings
  • Semantic configurations

Indexes are optimized for rapid retrieval.


4. Embeddings

Before semantic search can occur, documents are converted into numerical vectors called embeddings.

Embeddings allow the system to:

  • Compare meaning instead of exact wording
  • Find similar concepts
  • Improve retrieval accuracy
  • Support multilingual search

Example:

Question:

“How much vacation do employees receive?”

The document may say:

“Annual leave entitlement is 20 days.”

Keyword search may miss this.

Embedding search understands that both discuss vacation policies.


5. Chunking

Large documents are automatically divided into smaller sections.

Chunking improves:

  • Retrieval precision
  • Context quality
  • Token efficiency
  • Response accuracy

Poor chunk sizes often produce poor RAG performance.


6. Semantic Search

Semantic ranking considers:

  • Meaning
  • Intent
  • Context
  • Related concepts

Rather than matching words alone.


7. Vector Search

Vector search compares embedding similarity.

Advantages:

  • Better natural language understanding
  • Improved document matching
  • Better enterprise Q&A performance

Many enterprise deployments combine:

  • Keyword search
  • Semantic search
  • Vector search

Configuring Generative Answers

Typical configuration steps include:

Step 1

Create an Azure AI Search service.


Step 2

Create a search index.


Step 3

Import enterprise data.


Step 4

Configure indexing schedules.


Step 5

Enable semantic ranking.


Step 6

Configure vector search (if supported).


Step 7

Connect Azure AI Search to Azure AI Foundry.


Step 8

Connect the Foundry project to Copilot Studio.


Step 9

Enable Generative Answers.


Step 10

Test grounded responses.


Knowledge Grounding

Grounding ensures responses originate from approved enterprise information rather than model memory.

Grounding helps:

  • Improve accuracy
  • Reduce hallucinations
  • Maintain compliance
  • Support trustworthy AI

Security Considerations

Authentication typically uses:

  • Microsoft Entra ID
  • Managed identities
  • Role-based access control (RBAC)

Authorization should ensure:

  • Only authorized documents are searchable.
  • Sensitive data is protected.
  • User permissions are respected.

Monitoring

Administrators should monitor:

  • Search latency
  • Retrieval accuracy
  • Query success rates
  • Failed searches
  • Index freshness
  • Hallucination frequency
  • User feedback
  • Token consumption

Common Design Best Practices

Build high-quality indexes

Avoid indexing:

  • Duplicate content
  • Obsolete files
  • Incomplete documentation

Keep indexes current

Use incremental indexing.

Avoid stale enterprise knowledge.


Optimize chunk size

Too small:

  • Missing context

Too large:

  • Lower retrieval precision

Enable semantic ranking

Semantic ranking typically improves enterprise Q&A accuracy.


Use vector search

Vector search improves:

  • Similarity matching
  • Natural language understanding
  • Complex enterprise queries

Apply least-privilege security

Grant only the permissions required.


Validate responses

Test with:

  • Ambiguous questions
  • Synonyms
  • Long documents
  • Missing data
  • Permission-restricted users

Common Exam Scenarios

You should know when:

  • Azure AI Search should be used instead of static Topics.
  • Enterprise knowledge requires semantic search.
  • Vector search improves retrieval.
  • Azure AI Foundry generates responses after retrieval.
  • RAG is preferable to relying solely on an LLM.
  • Grounding reduces hallucinations.
  • Search indexes require re-indexing after significant data changes.
  • Semantic models and enterprise permissions affect response quality.

Exam Tips

  • Azure AI Search retrieves information—it does not generate responses.
  • Azure AI Foundry hosts and orchestrates AI models that generate responses.
  • Copilot Studio coordinates the conversation and calls Azure services.
  • RAG combines retrieval with generation to improve answer quality.
  • Embeddings power vector search.
  • Chunking directly affects retrieval accuracy.
  • Semantic search improves relevance beyond keyword matching.
  • Grounded responses are generally preferred over responses based solely on pretrained model knowledge.

Practice Exam Questions

Question 1

A company wants its Copilot Studio agent to answer employee policy questions using current HR documents instead of relying solely on the LLM’s pretrained knowledge. Which architecture should they implement?

A. Static Topics only

B. Retrieval-Augmented Generation using Azure AI Search and Azure AI Foundry

C. Power Automate flows only

D. Adaptive Cards with variables only

Correct Answer: B

Explanation: RAG retrieves relevant enterprise documents through Azure AI Search and passes them to Azure AI Foundry, allowing the LLM to generate grounded responses based on current organizational content.


Question 2

What is Azure AI Search primarily responsible for in a Copilot Studio generative answers solution?

A. Hosting large language models

B. Training AI models

C. Retrieving relevant enterprise content from indexed data

D. Managing Copilot Studio topics

Correct Answer: C

Explanation: Azure AI Search indexes and retrieves relevant enterprise content. It does not host or train language models.


Question 3

What is the primary purpose of document chunking during indexing?

A. Compress documents for storage

B. Improve retrieval accuracy by dividing large documents into manageable sections

C. Encrypt enterprise documents

D. Eliminate duplicate records

Correct Answer: B

Explanation: Chunking divides large documents into smaller, context-rich segments, enabling more precise retrieval during RAG.


Question 4

Which Azure service generates the natural language response after Azure AI Search retrieves relevant content?

A. Azure AI Foundry

B. Azure Blob Storage

C. Azure Monitor

D. Azure Key Vault

Correct Answer: A

Explanation: Azure AI Foundry provides access to large language models that synthesize retrieved content into conversational responses.


Question 5

Which technology enables Azure AI Search to retrieve documents based on semantic similarity rather than exact keyword matches?

A. Managed identities

B. RBAC

C. Vector embeddings

D. Power Automate

Correct Answer: C

Explanation: Vector embeddings represent document meaning numerically, enabling semantic similarity searches.


Question 6

Why is grounding considered an important capability in generative AI solutions?

A. It increases token limits.

B. It improves model training speed.

C. It ensures responses are based on trusted enterprise knowledge.

D. It replaces semantic search.

Correct Answer: C

Explanation: Grounding reduces hallucinations by anchoring AI responses to retrieved organizational content.


Question 7

An organization updates its policy documents every night. What is the best way to ensure the Copilot agent uses the latest information?

A. Retrain the language model nightly.

B. Configure scheduled or incremental indexing in Azure AI Search.

C. Restart Copilot Studio every morning.

D. Recreate the search index daily.

Correct Answer: B

Explanation: Scheduled or incremental indexing updates the search index efficiently without requiring complete re-creation or model retraining.


Question 8

Which component is responsible for coordinating the conversation and invoking Azure AI Search and Azure AI Foundry?

A. Azure Monitor

B. Azure AI Search

C. Azure AI Foundry

D. Copilot Studio

Correct Answer: D

Explanation: Copilot Studio orchestrates the conversational flow, calling Azure AI Search for retrieval and Azure AI Foundry for response generation.


Question 9

Which statement best describes vector search?

A. It searches only document titles.

B. It compares numerical representations of meaning rather than exact words.

C. It retrieves only structured database records.

D. It replaces semantic ranking entirely.

Correct Answer: B

Explanation: Vector search uses embeddings to compare semantic similarity, allowing retrieval of conceptually related content even when wording differs.


Question 10

A developer notices that the agent frequently provides incomplete answers because relevant information is split across large documents. Which improvement is most appropriate?

A. Disable semantic search.

B. Increase the model temperature.

C. Optimize document chunk sizes during indexing.

D. Replace Azure AI Search with keyword search only.

Correct Answer: C

Explanation: Appropriate chunk sizing improves retrieval quality by ensuring each indexed segment contains enough context while remaining focused, leading to more complete and accurate grounded responses.


Go to the AB-620 Exam Prep Hub main page

Create a multi-agent solution by using A2A protocol (AB-620 Exam Prep)

This post is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.
This topic falls under these sections:
Integrate and extend agents in Copilot Studio (40–45%)
   --> Configure multi-agent collaboration from Copilot Studio
      --> Create a multi-agent solution by using A2A protocol


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Overview

The Agent-to-Agent (A2A) protocol in Microsoft Copilot Studio enables multiple AI agents to communicate, delegate tasks, and collaborate across systems in a standardized way. Instead of one monolithic agent handling all responsibilities, A2A allows you to design specialized agents that exchange structured messages and coordinate outcomes.

In the AB-620 exam context, this topic focuses on:

  • Designing distributed agent systems
  • Configuring cross-agent communication
  • Defining task delegation patterns
  • Managing orchestration between agents

What the A2A Protocol Is

The A2A protocol is a communication framework that allows agents to:

  • Send structured requests to other agents
  • Receive responses in a standardized format
  • Delegate tasks dynamically at runtime
  • Collaborate across environments or platforms

It supports interoperability between Copilot Studio agents and external agent systems, making it foundational for multi-agent architectures.


Core Principles of A2A

1. Agent Specialization

Each agent is designed for a specific role, such as:

  • HR policy assistant
  • Finance reporting agent
  • IT service desk agent
  • Customer support triage agent

2. Message-Based Communication

Agents communicate using:

  • Structured requests
  • JSON-based payloads
  • Defined schemas for input/output

3. Loose Coupling

Agents do not need to know internal implementation details of other agents.

4. Orchestration Flexibility

A coordinator or “primary agent” may:

  • Route requests
  • Aggregate responses
  • Handle fallback scenarios

A2A Architecture in Copilot Studio

A typical A2A solution includes:

1. Primary (Orchestrator) Agent

  • Receives user input
  • Determines which agent should handle the task
  • Aggregates results

2. Worker Agents

  • Perform specialized tasks
  • Return structured outputs

3. Communication Layer (A2A Protocol)

  • Handles message formatting
  • Ensures compatibility across agents

How A2A Works (Flow)

  1. User submits request to primary agent
  2. Primary agent evaluates intent
  3. Task is delegated via A2A protocol
  4. Worker agent processes request
  5. Response is returned to orchestrator
  6. Final response is assembled and sent to user

When to Use A2A in Copilot Studio

A2A is ideal when:

  • Multiple business domains are involved
  • Tasks require specialized expertise
  • Workloads must be distributed
  • Systems need modular AI design

Configuration Steps (Conceptual for Exam)

Step 1: Define Agent Roles

  • Identify each agent’s responsibility
  • Avoid overlapping domains

Step 2: Enable A2A Communication

  • Register agents in Copilot Studio environment
  • Enable cross-agent communication permissions

Step 3: Define Message Schema

Include:

  • Task type
  • Input parameters
  • Expected output format

Step 4: Configure Routing Logic

  • Use rules or generative orchestration
  • Map intents to agents

Step 5: Test Multi-Agent Flow

  • Validate request delegation
  • Ensure correct response aggregation

Key Design Patterns

1. Hub-and-Spoke Model

  • One central orchestrator
  • Multiple specialized agents

2. Chain-of-Agents Pattern

  • Output of one agent becomes input to another

3. Parallel Execution Pattern

  • Multiple agents process simultaneously
  • Results merged afterward

Best Practices

1. Keep Agents Focused

Avoid creating “do everything” agents.

2. Standardize Payloads

Use consistent schemas for:

  • Requests
  • Responses
  • Error handling

3. Implement Fallback Logic

If an agent fails:

  • Retry
  • Route to backup agent
  • Return partial results

4. Monitor Inter-Agent Traffic

Track:

  • Latency between agents
  • Failure rates
  • Task distribution efficiency

5. Avoid Over-Orchestration

Too many routing layers can:

  • Increase latency
  • Reduce maintainability

Common Use Cases

  • Enterprise IT + HR + Finance agent ecosystems
  • Customer service triage systems
  • Multi-department workflow automation
  • Cross-platform enterprise assistants
  • Industry-specific AI agent networks

Practice Exam Questions


1. What is the primary purpose of the A2A protocol in Copilot Studio?

A. To replace Power Automate flows entirely
B. To enable structured communication between multiple agents
C. To store conversation history in Dataverse
D. To train large language models

Correct Answer: B

Explanation: A2A is designed to enable standardized communication between agents in a multi-agent system.


2. Which architecture best describes a typical A2A solution?

A. Single monolithic agent
B. Event-driven serverless function only
C. Hub-and-spoke multi-agent system
D. Static chatbot tree

Correct Answer: C

Explanation: A2A commonly uses a central orchestrator with multiple specialized agents.


3. What is a key benefit of using A2A in Copilot Studio?

A. Eliminates need for authentication
B. Enables distributed agent specialization
C. Removes dependency on semantic models
D. Prevents all external integrations

Correct Answer: B

Explanation: A2A allows agents to specialize and collaborate rather than handling all tasks in one system.


4. In an A2A flow, what typically happens first?

A. Worker agent returns response
B. User directly contacts worker agent
C. Orchestrator agent interprets the user request
D. Data is written to a database

Correct Answer: C

Explanation: The orchestrator agent receives and analyzes the user request before delegation.


5. What format is commonly used for A2A message exchange?

A. Binary executable files
B. JSON-based structured payloads
C. Excel spreadsheets
D. Plain text emails

Correct Answer: B

Explanation: A2A communication typically uses structured JSON payloads for interoperability.


6. Which scenario is BEST suited for A2A implementation?

A. A single FAQ chatbot
B. A simple form submission bot
C. A multi-department enterprise assistant system
D. A static website FAQ page

Correct Answer: C

Explanation: A2A is ideal for distributed, multi-domain enterprise scenarios.


7. What is a worker agent responsible for in an A2A system?

A. Orchestrating all other agents
B. Training language models
C. Performing specialized tasks and returning results
D. Managing user authentication

Correct Answer: C

Explanation: Worker agents execute specific tasks delegated by the orchestrator.


8. What is a risk of overusing orchestration layers in A2A design?

A. Improved performance
B. Reduced system complexity
C. Increased latency and maintenance overhead
D. Elimination of errors

Correct Answer: C

Explanation: Too many orchestration layers can slow down and complicate the system.


9. Which pattern involves multiple agents processing tasks simultaneously?

A. Chain-of-agents pattern
B. Parallel execution pattern
C. Linear scripting pattern
D. Singleton agent pattern

Correct Answer: B

Explanation: Parallel execution allows multiple agents to process tasks at the same time.


10. What is a best practice when designing A2A message schemas?

A. Allow free-form unstructured text only
B. Avoid defining response formats
C. Standardize input and output payload structures
D. Let each agent define its own format

Correct Answer: C

Explanation: Standardization ensures interoperability and reduces integration issues.


Go to the AB-620 Exam Prep Hub main page

Integrate a Fabric data agent (AB-620 Exam Prep)

This post is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.
This topic falls under these sections:
Integrate and extend agents in Copilot Studio (40–45%)
   --> Configure multi-agent collaboration from Copilot Studio
      --> Integrate a Fabric data agent


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Overview

A Fabric data agent is used to enable an AI agent in Copilot Studio to interact with enterprise data stored in Microsoft Fabric. This includes semantic models, lakehouses, warehouses, and other Fabric-based data assets. The integration allows users to ask natural language questions and receive grounded, governed responses based on curated datasets.

In AB-620, this topic focuses on how Copilot Studio agents connect to Fabric data sources, how queries are interpreted, and how data governance and security are enforced during retrieval.


Core Concept: What a Fabric Data Agent Does

A Fabric data agent acts as a semantic layer bridge between:

  • Copilot Studio agents (natural language interface)
  • Microsoft Fabric data assets (structured analytics layer)

It enables:

  • Natural language querying over Fabric datasets
  • Retrieval of governed business metrics
  • Consistent answers aligned with semantic models
  • Reduced need for direct query writing (SQL/DAX)

Key Capabilities

When integrating a Fabric data agent, you should understand these capabilities:

1. Natural Language to Semantic Query Translation

The agent converts user prompts into structured queries against:

  • Power BI semantic models
  • Fabric warehouses
  • Lakehouse tables

2. Semantic Model Awareness

The agent respects:

  • Measures
  • Relationships
  • Calculated columns
  • Business definitions (KPIs)

3. Governance and Security Enforcement

Access is controlled through:

  • Microsoft Entra ID authentication
  • Role-Level Security (RLS)
  • Object-level permissions in Fabric/Power BI

4. Contextual Answer Generation

Responses are:

  • Grounded in Fabric data only
  • Filtered based on user permissions
  • Summarized for conversational output

Prerequisites for Integration

Before integrating a Fabric data agent, ensure:

  • A Microsoft Fabric workspace is configured
  • A semantic model exists (Power BI dataset or Fabric model)
  • Data is properly modeled (relationships, measures defined)
  • Users have access permissions (Viewer or higher depending on scenario)
  • Copilot Studio environment is enabled for enterprise data integration

How Integration Works (Conceptual Flow)

The integration process follows this flow:

  1. User asks a question in Copilot Studio
  2. Agent identifies intent as a data query
  3. Request is routed to Fabric data agent
  4. Fabric semantic model is queried
  5. Results are returned in structured form
  6. Copilot Studio formats response into conversational output

Configuration Steps (High-Level)

While exact UI steps may evolve, the exam expects conceptual understanding:

Step 1: Enable Fabric Data Source Connection

  • Select Microsoft Fabric as a data source
  • Choose a semantic model or dataset

Step 2: Register the Data Agent

  • Link Fabric workspace to Copilot Studio agent
  • Define which datasets are available for querying

Step 3: Define Query Scope

  • Limit accessible tables/measures
  • Control supported business domains

Step 4: Configure Security Context

  • Enforce Entra ID authentication
  • Apply RLS roles automatically

Step 5: Test Natural Language Queries

  • Validate question-to-answer mapping
  • Ensure correct aggregation and filtering

Best Practices

1. Use Well-Modeled Semantic Layers

A Fabric data agent performs best when:

  • Measures are clearly defined
  • Relationships are accurate
  • Naming conventions are business-friendly

2. Avoid Direct Raw Table Exposure

Instead:

  • Use curated semantic models
  • Hide unnecessary technical columns

3. Optimize for Business Language

Rename fields such as:

  • “SalesAmt” → “Total Sales”
  • “CustCnt” → “Customer Count”

4. Validate Security Boundaries

Ensure:

  • RLS behaves correctly
  • Sensitive data is excluded from responses

5. Limit Dataset Scope

Smaller, focused models improve:

  • Query accuracy
  • Response time
  • AI interpretation quality

Common Use Cases

  • Sales performance dashboards via chat
  • Financial reporting queries (revenue, cost, profit)
  • Operational metrics (inventory, supply chain)
  • Executive summary generation from Fabric data
  • Self-service analytics for business users

Practice Exam Questions


1. A company wants Copilot Studio agents to answer questions using metrics stored in a Fabric warehouse. What is required first?

A. Enable Power Automate flows for all queries
B. Create a semantic model over the warehouse data
C. Export data to Azure SQL Database
D. Enable Azure AI Search indexing

Correct Answer: B

Explanation: A Fabric data agent relies on semantic models to interpret business metrics and relationships. Without a semantic layer, natural language queries cannot be correctly mapped.


2. What is the primary role of a Fabric data agent in Copilot Studio?

A. Execute REST API calls to external systems
B. Translate natural language into semantic model queries
C. Train large language models on enterprise data
D. Replace Power BI dashboards entirely

Correct Answer: B

Explanation: The Fabric data agent acts as a bridge between natural language input and structured queries against Fabric semantic models.


3. Which security mechanism ensures users only see data they are allowed to access?

A. Azure API Management policies
B. Row-Level Security (RLS) in Fabric
C. Copilot Studio topic restrictions
D. Dataflow Gen2 filters

Correct Answer: B

Explanation: RLS in Fabric enforces row-level restrictions based on user identity.


4. What type of data source is primarily used by Fabric data agents?

A. Unstructured PDF documents
B. REST APIs only
C. Semantic models in Microsoft Fabric
D. Local Excel files uploaded manually

Correct Answer: C

Explanation: Fabric data agents are designed to work with structured semantic models.


5. Why is a semantic model important for Fabric data agent integration?

A. It enables AI model training
B. It provides business definitions and relationships
C. It replaces the need for authentication
D. It stores raw unprocessed logs

Correct Answer: B

Explanation: Semantic models define relationships, measures, and business logic used for query interpretation.


6. A user asks a question that requires filtering sales by region. What does the Fabric data agent use to answer correctly?

A. Hardcoded filters in Copilot Studio topics
B. Semantic model relationships and measures
C. Power Automate approval flows
D. Azure Logic Apps workflows

Correct Answer: B

Explanation: Filtering logic is derived from the semantic model structure.


7. What is a recommended best practice when preparing data for a Fabric data agent?

A. Use raw unmodeled tables for flexibility
B. Expose all columns to maximize coverage
C. Use business-friendly naming in semantic models
D. Disable relationships between tables

Correct Answer: C

Explanation: Clear naming improves AI interpretation and response quality.


8. How does Copilot Studio ensure secure access to Fabric data?

A. By duplicating datasets into Copilot Studio
B. By bypassing Entra ID for faster access
C. By enforcing authentication and inherited Fabric permissions
D. By caching all data in memory

Correct Answer: C

Explanation: Access is controlled through Entra ID and inherited Fabric permissions.


9. What happens when a user query exceeds the scope of the connected Fabric dataset?

A. The agent guesses an answer
B. The request is forwarded to REST APIs
C. The agent responds that data is unavailable or out of scope
D. The system automatically creates a new dataset

Correct Answer: C

Explanation: The agent can only respond based on connected and governed data sources.


10. Which scenario best demonstrates use of a Fabric data agent?

A. Sending emails based on workflow triggers
B. Querying sales performance using natural language
C. Uploading files to SharePoint
D. Creating PowerPoint slides automatically

Correct Answer: B

Explanation: Fabric data agents are designed for conversational analytics over structured enterprise data.


Go to the AB-620 Exam Prep Hub main page

Integrate an existing agent in Copilot Studio (AB-620 Exam Prep)

This post is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.
This topic falls under these sections:
Integrate and extend agents in Copilot Studio (40–45%)
   --> Configure multi-agent collaboration from Copilot Studio
      --> Integrate an existing agent in Copilot Studio


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

As AI solutions become more sophisticated, organizations rarely rely on a single intelligent agent to perform every task. Instead, they build ecosystems of specialized agents that collaborate to complete user requests. Rather than recreating functionality, Microsoft Copilot Studio enables makers to integrate existing agents into new solutions, allowing organizations to reuse previously developed capabilities.

An existing agent is an AI agent that has already been created, configured, and tested. Instead of duplicating its logic, another Copilot Studio agent can delegate work to it when specialized knowledge or functionality is required.

For the AB-620 exam, you should understand:

  • Why organizations integrate existing agents
  • The different multi-agent architectures
  • When to reuse an existing agent
  • Connected agents versus child agents
  • Delegation strategies
  • Security considerations
  • Enterprise design patterns
  • Best practices for scalable agent collaboration

Why Integrate Existing Agents?

Many organizations already have AI agents that perform specialized business functions.

Examples include:

  • HR assistant
  • IT Help Desk agent
  • Benefits agent
  • Finance assistant
  • Procurement assistant
  • Legal advisor
  • Customer support bot
  • Inventory assistant
  • Sales assistant
  • Compliance advisor

Instead of creating one enormous agent that performs every task, Copilot Studio enables these specialized agents to work together.

Benefits include:

  • Reduced development time
  • Reuse of existing investments
  • Easier maintenance
  • Better scalability
  • Improved governance
  • Independent lifecycle management
  • Clear ownership between departments

What Is Multi-Agent Collaboration?

Multi-agent collaboration allows multiple intelligent agents to cooperate to fulfill a user’s request.

Rather than performing every task itself, one agent delegates work to another agent with specialized capabilities.

Example:

User:
"I need to schedule a vacation and verify my remaining PTO."
Employee Agent
Delegates PTO calculation
HR Agent
Returns remaining balance
Employee Agent
Schedules vacation request

The user experiences a seamless conversation, even though multiple agents participated.


Why Reuse Existing Agents?

Creating a new agent every time is inefficient.

Instead, organizations reuse agents that already provide:

  • validated business logic
  • tested prompts
  • secured integrations
  • approved knowledge sources
  • governance policies
  • compliance controls

This reduces duplication while improving consistency.


Common Enterprise Scenarios

Human Resources

Existing HR Agent

Handles:

  • leave requests
  • benefits
  • payroll
  • employee policies

Corporate Assistant

Handles:

  • general employee questions
  • company news
  • navigation

Delegates HR-related requests to the HR agent.


IT Support

Corporate Assistant

Handles:

  • FAQs
  • onboarding
  • software requests

IT Agent

Handles:

  • password reset
  • device management
  • troubleshooting
  • incident lookup

Healthcare

Patient Agent

Handles:

  • appointments
  • scheduling
  • billing

Clinical Agent

Handles:

  • medical summaries
  • treatment guidance
  • clinical knowledge

Banking

Customer Service Agent

Handles:

  • balances
  • transfers
  • FAQs

Investment Agent

Handles:

  • portfolio analysis
  • market recommendations
  • retirement planning

Types of Agent Integration

Several integration patterns exist.

Connected Agents

A connected agent operates as an independent AI agent.

Characteristics:

  • independently managed
  • separate lifecycle
  • separate owner
  • reusable
  • can serve multiple parent agents

Best for:

  • enterprise-wide services
  • shared business capabilities
  • departmental AI

Child Agents

Child agents are invoked by another agent to perform specific work.

Characteristics:

  • specialized
  • reusable
  • task-oriented
  • invisible to users

Examples:

  • tax calculator
  • recommendation engine
  • shipping estimator
  • language translator

External AI Agents

Organizations may integrate:

  • Azure AI Foundry agents
  • external AI services
  • partner AI systems

Copilot Studio orchestrates communication while external agents perform advanced reasoning.


Choosing the Right Integration Pattern

ScenarioRecommended Approach
Shared HR knowledgeConnected agent
Specialized calculationsChild agent
Advanced AI reasoningFoundry agent
Department-owned solutionConnected agent
Small reusable taskChild agent

Agent Orchestration

Copilot Studio often serves as the orchestration layer.

Responsibilities include:

  • managing conversations
  • determining user intent
  • collecting required information
  • selecting the appropriate agent
  • coordinating responses
  • presenting final answers

The delegated agent focuses only on the assigned task.


Delegation Workflow

A typical workflow looks like this:

User
Primary Copilot Studio Agent
Determine Intent
Need Specialist?
Yes
Delegate
Existing Agent
Process Request
Return Result
Primary Agent
Respond to User

Benefits of Delegation

Delegation enables:

  • modular AI architecture
  • reuse
  • scalability
  • specialization
  • simplified maintenance
  • independent updates
  • reduced development costs

Each agent performs only the work it is designed to perform.


Designing Specialized Agents

Good agent design follows the principle of specialization.

Instead of:

Mega Agent

that performs everything,

create:

Customer Agent
HR Agent
Finance Agent
Legal Agent
IT Agent
Operations Agent

Each agent develops expertise in its domain.


Avoiding Monolithic Agents

Large all-in-one agents often suffer from:

  • excessive prompts
  • difficult maintenance
  • poor scalability
  • slower responses
  • conflicting instructions
  • increased hallucinations

Smaller specialized agents generally produce more predictable behavior.


Routing User Requests

The primary agent determines:

  • What is the user’s intent?
  • Can I answer directly?
  • Should another agent answer?
  • Which agent has the required expertise?

Examples:

User RequestDelegated Agent
Reset passwordIT Agent
Benefits questionHR Agent
Vendor paymentFinance Agent
Legal contractLegal Agent
Product inventoryInventory Agent

Agent Ownership

Large organizations often assign ownership to departments.

Example:

DepartmentAgent Owner
HRHR Team
ITInfrastructure Team
FinanceFinance Department
LegalLegal Department
SalesSales Operations

This decentralized ownership allows independent maintenance while supporting enterprise-wide collaboration.


Authentication Considerations

Integrated agents should communicate securely.

Authentication may involve:

  • Microsoft Entra ID
  • Managed identities
  • OAuth
  • API keys (when appropriate)
  • Service principals

Authentication should always follow organizational security policies.


Authorization

Authentication verifies identity.

Authorization determines what an agent is allowed to access.

Examples include:

  • HR records
  • payroll information
  • financial systems
  • customer databases
  • confidential documents

Delegated agents should only receive the permissions required to perform their tasks.


Context Sharing

When delegating requests, Copilot Studio shares only the context necessary for the delegated agent.

Examples of shared context:

  • user request
  • conversation variables
  • customer ID
  • department
  • case number
  • selected product

Avoid transmitting unnecessary information to reduce token usage and minimize exposure of sensitive data.


Best Practices

When integrating existing agents:

  • Reuse existing business capabilities whenever practical.
  • Keep agents focused on specific domains.
  • Use Copilot Studio as the orchestration layer.
  • Delegate only when specialized functionality is required.
  • Secure all communication between agents.
  • Minimize duplicated functionality.
  • Share only the context required for task completion.
  • Monitor agent performance and delegation frequency.
  • Design for independent updates and lifecycle management.
  • Document agent responsibilities clearly.

Key Exam Takeaways

For the AB-620 exam, remember these core concepts:

  • Existing agents enable organizations to reuse previously developed AI capabilities.
  • Copilot Studio commonly acts as the orchestrator in multi-agent solutions.
  • Connected agents are independently managed and reusable across solutions.
  • Child agents perform focused tasks on behalf of another agent.
  • Delegation improves scalability, maintainability, and modularity.
  • Authentication and authorization remain critical when integrating agents.
  • Agent specialization is preferred over monolithic, all-in-one designs.

Advanced Integration Patterns

As organizations mature their AI strategy, they often move beyond simple one-to-one delegation and adopt more sophisticated collaboration models. Copilot Studio supports orchestrating multiple specialized agents to create scalable, maintainable enterprise AI solutions.

Hub-and-Spoke Architecture

In this model, a primary Copilot Studio agent acts as the central orchestrator.

                 HR Agent
                     │
Finance Agent ──► Corporate Assistant ◄── IT Agent
                     │
               Legal Agent
                     │
             Inventory Agent

Advantages:

  • Centralized user experience
  • Simplified routing logic
  • Independent agent ownership
  • Easy addition of new agents
  • Consistent governance

Typical enterprise use:

  • Employee portals
  • Enterprise help desks
  • Customer service hubs

Layered Agent Architecture

Some solutions use multiple levels of delegation.

User
Primary Agent
Operations Agent
Inventory Agent
Warehouse Agent

This approach supports very complex business processes while allowing each agent to remain focused on a narrow domain.


Domain-Based Agent Design

A common enterprise strategy is to organize agents around business domains rather than technical systems.

Examples include:

Business DomainSpecialized Agent
Human ResourcesHR Agent
FinanceFinance Agent
Customer ServiceCustomer Support Agent
LegalLegal Agent
ManufacturingOperations Agent
SalesSales Agent
ProcurementPurchasing Agent

Benefits include:

  • Clear ownership
  • Easier governance
  • Better scalability
  • Independent release cycles

Agent Discovery

As organizations create dozens of agents, discovering the appropriate one becomes increasingly important.

Selection may be based on:

  • User intent
  • Department
  • Business process
  • Required expertise
  • User permissions
  • Conversation context

Well-designed orchestration ensures requests are routed to the most appropriate agent.


Governance Considerations

Enterprise AI requires governance throughout the agent lifecycle.

Governance includes:

  • Naming standards
  • Version control
  • Ownership
  • Documentation
  • Security reviews
  • Approval processes
  • Retirement planning

Organizations should maintain an inventory of available agents and their responsibilities.


Version Management

Existing agents evolve over time.

Considerations include:

  • Backward compatibility
  • API changes
  • Updated prompts
  • New tools
  • Modified knowledge sources
  • New capabilities

When integrating an existing agent, verify that updates do not introduce breaking changes for dependent solutions.


Monitoring Multi-Agent Solutions

Monitoring helps ensure reliable operation.

Important metrics include:

Conversation Metrics

  • Conversation completion rate
  • Successful delegations
  • Failed delegations
  • User satisfaction
  • Escalation frequency

Performance Metrics

  • Response time
  • Delegation latency
  • API execution time
  • Tool execution duration
  • Token consumption

Operational Metrics

  • Authentication failures
  • Authorization failures
  • Service availability
  • Agent utilization
  • Error rates

These metrics help identify performance bottlenecks and reliability issues.


Troubleshooting Agent Integrations

Common issues include:

Incorrect Agent Selection

Symptoms:

  • Requests routed to the wrong agent
  • Incorrect answers
  • User frustration

Resolution:

  • Improve intent recognition
  • Refine routing logic
  • Clarify agent responsibilities

Authentication Failures

Symptoms:

  • Access denied
  • Unauthorized responses
  • Connection errors

Resolution:

  • Verify credentials
  • Review authentication configuration
  • Confirm permissions

Missing Context

Symptoms:

  • Incomplete responses
  • Incorrect recommendations
  • Missing user information

Resolution:

  • Pass the required conversation variables
  • Validate data mappings
  • Ensure necessary context is shared

Circular Delegation

Example:

Agent A
Agent B
Agent A

This creates unnecessary processing and can result in loops.

Avoid circular dependencies by clearly defining agent responsibilities.


Performance Optimization

To improve efficiency:

  • Delegate only when necessary.
  • Reduce prompt size.
  • Pass only relevant context.
  • Avoid duplicate processing.
  • Minimize unnecessary API calls.
  • Reuse specialized agents.
  • Cache frequently requested information when appropriate.
  • Monitor response latency.

Efficient designs reduce operational costs and improve user experience.


Security Best Practices

When integrating existing agents:

  • Use Microsoft Entra ID where appropriate.
  • Apply least-privilege access.
  • Protect secrets using secure credential storage.
  • Encrypt communications.
  • Validate user identity before delegation.
  • Audit delegated actions.
  • Restrict access to sensitive knowledge sources.

Security should remain consistent across every participating agent.


Common Design Mistakes

Avoid these frequent errors:

❌ Creating duplicate agents with identical responsibilities

❌ Sending excessive conversation history

❌ Delegating every request

❌ Ignoring security boundaries

❌ Allowing overlapping ownership

❌ Building one massive all-purpose agent

❌ Failing to monitor delegated conversations

❌ Not documenting integration points


Enterprise Example

A global organization deploys a Corporate Assistant.

Employee asks:

“How many vacation days do I have left, and can I book next Friday off?”

Workflow:

  1. Corporate Assistant identifies an HR-related request.
  2. It delegates the request to the existing HR Agent.
  3. The HR Agent retrieves PTO data.
  4. The HR Agent validates available leave.
  5. The HR Agent submits the leave request.
  6. The HR Agent returns the result.
  7. The Corporate Assistant presents a user-friendly response.

The employee interacts with a single conversational interface while multiple specialized agents collaborate behind the scenes.


AB-620 Exam Tips

Expect scenario-based questions covering:

  • Choosing between connected and child agents
  • Designing scalable multi-agent architectures
  • Determining when to reuse existing agents
  • Selecting an orchestration strategy
  • Securing communication between agents
  • Monitoring delegated operations
  • Avoiding duplicated functionality
  • Improving maintainability through specialization

Remember these principles:

  • Copilot Studio commonly acts as the orchestration layer.
  • Existing agents should be reused whenever appropriate.
  • Keep agents specialized and modular.
  • Delegate only when another agent offers distinct expertise.
  • Share only the minimum context required.
  • Secure all integrations.
  • Monitor performance continuously.
  • Avoid monolithic designs.

Practice Exam Questions

Question 1

A company has separate HR, Finance, and IT agents that already perform their respective business functions. A Corporate Assistant should provide a single conversational interface while delegating specialized requests.

Which design best meets this requirement?

A. Create one new agent that duplicates every department’s functionality.

B. Replace all departmental agents with the Corporate Assistant.

C. Configure the Corporate Assistant as the orchestration layer that delegates requests to existing specialized agents.

D. Require users to manually choose which agent to contact before each request.

Answer: C

Explanation: Copilot Studio is commonly used as the orchestration layer, allowing existing specialized agents to perform domain-specific work while presenting users with one unified conversational experience.


Question 2

Which characteristic best describes a connected agent?

A. It is independently managed and reusable across multiple solutions.

B. It only performs mathematical calculations.

C. It can never communicate with another agent.

D. It always replaces the parent agent.

Answer: A

Explanation: Connected agents are autonomous, independently managed agents that can be reused by multiple Copilot Studio solutions.


Question 3

Why should organizations reuse existing agents whenever practical?

A. To increase prompt size.

B. To reduce duplication and leverage previously tested business capabilities.

C. To eliminate authentication requirements.

D. To prevent delegation.

Answer: B

Explanation: Reusing existing agents minimizes development effort while taking advantage of validated logic, integrations, governance, and security.


Question 4

Which practice best improves the performance of delegated conversations?

A. Send every conversation message ever exchanged.

B. Delegate every user request regardless of complexity.

C. Allow multiple agents to answer the same question simultaneously.

D. Share only the context required for the delegated task.

Answer: D

Explanation: Passing only relevant context reduces latency, token consumption, and unnecessary processing.


Question 5

An organization notices that Agent A frequently delegates requests to Agent B, which immediately delegates them back to Agent A.

What architectural issue exists?

A. Token expiration

B. Circular delegation

C. Prompt grounding

D. Adaptive Card failure

Answer: B

Explanation: Circular delegation creates unnecessary processing loops and should be avoided through clearly defined agent responsibilities.


Question 6

Which metric is most useful for identifying inefficient delegation?

A. Browser version

B. Screen resolution

C. Delegation frequency

D. Keyboard layout

Answer: C

Explanation: High delegation frequency can indicate routing inefficiencies or excessive reliance on secondary agents.


Question 7

A Finance department independently maintains its own AI agent while allowing multiple enterprise assistants to reuse it.

Which integration model is most appropriate?

A. Connected agent

B. Child agent

C. Adaptive Card

D. Variable node

Answer: A

Explanation: Connected agents are independently managed and designed for reuse across multiple parent solutions.


Question 8

Which security principle should guide permissions assigned to integrated agents?

A. Full administrative access

B. Anonymous access

C. Shared global credentials

D. Least privilege

Answer: D

Explanation: Agents should receive only the permissions necessary to complete their assigned tasks, reducing security risks.


Question 9

Which architecture is generally considered more scalable for large enterprises?

A. One massive agent responsible for every business function

B. Multiple specialized agents coordinated by an orchestration agent

C. Separate agents that never communicate

D. Duplicate agents performing identical work

Answer: B

Explanation: Specialized agents coordinated by Copilot Studio provide better scalability, maintainability, and governance than monolithic designs.


Question 10

A solution architect wants each business department to update its own AI capabilities without affecting other departments.

Which design recommendation best supports this goal?

A. Merge every capability into one shared prompt.

B. Build identical copies of every agent.

C. Store every business process inside one orchestration agent.

D. Assign ownership of specialized agents to their respective departments while using Copilot Studio to coordinate requests.

Answer: D

Explanation: Department-owned specialized agents allow independent development and maintenance while Copilot Studio orchestrates the overall user experience. This modular approach aligns with Microsoft best practices for enterprise-scale multi-agent solutions.


Go to the AB-620 Exam Prep Hub main page

Integrate a Foundry agent (AB-620 Exam Prep)

This post is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.
This topic falls under these sections:
Integrate and extend agents in Copilot Studio (40–45%)
   --> Configure multi-agent collaboration from Copilot Studio
      --> Integrate a Foundry agent


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Designing Effective Copilot Studio and Foundry Agent Collaboration

Successfully integrating a Foundry agent involves more than simply connecting two systems. The overall architecture should ensure that every agent performs the tasks it is best suited for while minimizing complexity, latency, and maintenance.

A useful design principle is:

  • Copilot Studio manages conversations.
  • Foundry agents perform specialized AI reasoning.
  • External systems execute business operations.
  • Enterprise knowledge grounds responses.
  • Humans intervene when required.

This separation creates modular, scalable AI solutions.


Example Enterprise Architecture

User
Copilot Studio Agent
├──────── Answers simple questions
├──────── Retrieves enterprise knowledge
├──────── Executes Power Platform actions
└──────── Delegates specialized request
Azure AI Foundry Agent
Performs advanced reasoning
Returns structured response
Copilot Studio formats answer
User

Enterprise Scenario 1: Insurance

Copilot Studio Responsibilities

  • Authenticate customer
  • Collect claim number
  • Answer policy questions
  • Present Adaptive Cards
  • Handle conversation

Foundry Agent Responsibilities

  • Analyze claim history
  • Compare policy coverage
  • Estimate fraud risk
  • Recommend claim disposition
  • Explain confidence level

Enterprise Scenario 2: Healthcare

Copilot Studio

  • Schedule appointments
  • Retrieve patient information
  • Route conversations
  • Gather symptoms

Foundry Agent

  • Analyze symptoms
  • Summarize medical history
  • Recommend possible care pathways
  • Produce clinical summaries

Human clinicians remain responsible for final diagnoses and treatment decisions.


Enterprise Scenario 3: Financial Services

Copilot Studio

  • Customer authentication
  • Account balance
  • Transaction history
  • FAQ responses

Foundry Agent

  • Investment analysis
  • Portfolio optimization
  • Financial forecasting
  • Risk calculations
  • Personalized recommendations

Enterprise Scenario 4: Manufacturing

Copilot Studio

  • Equipment lookup
  • Maintenance scheduling
  • Work order creation

Foundry Agent

  • Predict equipment failure
  • Analyze sensor readings
  • Estimate remaining useful life
  • Recommend preventive maintenance

Enterprise Scenario 5: IT Help Desk

Copilot Studio

  • Password reset
  • Ticket creation
  • Software requests
  • Device registration

Foundry Agent

  • Root cause analysis
  • Log analysis
  • Security investigation
  • Configuration recommendations
  • Incident summaries

Handling Long-Running Tasks

Some AI operations require considerable time.

Examples include:

  • Processing thousands of documents
  • Complex planning
  • Image analysis
  • Code generation
  • Large knowledge searches

Instead of making users wait:

  1. Accept the request.
  2. Launch asynchronous processing.
  3. Notify the user.
  4. Continue other conversation tasks.
  5. Deliver results when processing completes.

This improves user experience.


Conversation Continuity

The Copilot Studio agent should maintain:

  • conversation state
  • user identity
  • permissions
  • variables
  • previous messages
  • business context

The Foundry agent should receive only the information necessary to perform its task.

Avoid sending unnecessary conversation history.


Error Handling Strategy

Robust integrations anticipate failures.

Examples include:

Timeout

“I’m still processing your request. Please wait a moment.”

Authentication failure

“I couldn’t access the requested service.”

Permission denied

“You don’t have permission to perform that operation.”

Model unavailable

“I’m temporarily unable to complete that analysis.”

Partial failure

“I completed part of your request. Some information couldn’t be retrieved.”


Security Considerations

Important exam objectives include:

Authentication

Secure access between:

  • Copilot Studio
  • Foundry
  • APIs
  • enterprise systems

Authorization

Ensure agents only access resources users are permitted to use.


Least Privilege

Grant only the permissions required.

Never over-provision credentials.


Secrets Management

Store:

  • API keys
  • tokens
  • certificates
  • passwords

using secure secret stores rather than embedding them in prompts or topics.


Data Privacy

Avoid transmitting:

  • personally identifiable information (PII)
  • protected health information (PHI)
  • financial information

unless required and properly secured.


Performance Optimization

Reduce latency by:

  • minimizing unnecessary agent delegation
  • caching frequent results
  • limiting prompt size
  • reducing unnecessary context
  • using appropriate models
  • avoiding duplicate API calls

Monitoring Integrated Agents

Monitor:

  • delegation frequency
  • latency
  • failed requests
  • token consumption
  • model costs
  • API failures
  • user satisfaction
  • conversation completion rate

Monitoring identifies opportunities for optimization.


Common Design Mistakes

Avoid:

❌ Using Foundry for every conversation

❌ Passing excessive conversation history

❌ Ignoring security

❌ Creating circular agent delegation

❌ Returning unstructured responses

❌ Forgetting error handling

❌ Choosing overly complex architectures

❌ Sending confidential information unnecessarily


Best Practices for the AB-620 Exam

Remember these key principles:

✓ Copilot Studio is typically the conversational orchestrator.

✓ Foundry agents provide advanced AI reasoning and specialized capabilities.

✓ Delegate only when additional AI capability is required.

✓ Secure all communication between systems.

✓ Use enterprise authentication.

✓ Monitor performance and costs.

✓ Design modular architectures.

✓ Keep prompts focused.

✓ Minimize unnecessary context.

✓ Handle failures gracefully.


Exam Tips

Expect scenario questions asking:

  • Which agent should perform a task?
  • When should delegation occur?
  • Which architecture is most scalable?
  • How should security be implemented?
  • Which integration minimizes latency?
  • Which design minimizes cost?
  • How should failures be handled?

Choose answers emphasizing modularity, orchestration, security, scalability, and maintainability.


Practice Exam Questions

Question 1

A company wants a conversational agent that answers HR policy questions but delegates complex benefits eligibility calculations to a specialized AI model.

Which architecture is most appropriate?

A. Use the Foundry agent for every user interaction.

B. Use Copilot Studio for conversations and delegate complex calculations to the Foundry agent.

C. Replace Copilot Studio with the Foundry agent.

D. Perform all calculations manually.

Answer: B

Explanation: Copilot Studio manages the conversation while the Foundry agent performs specialized reasoning only when needed.


Question 2

An integrated agent should avoid sending unnecessary conversation history to a Foundry agent because it primarily:

A. Improves readability only.

B. Eliminates authentication.

C. Reduces latency, cost, and token usage.

D. Prevents Adaptive Cards from rendering.

Answer: C

Explanation: Smaller prompts reduce processing time, token consumption, and cost while improving efficiency.


Question 3

Which responsibility most commonly belongs to Copilot Studio rather than a Foundry agent?

A. Multi-step reasoning

B. Predictive analytics

C. Scientific calculations

D. Managing user conversations

Answer: D

Explanation: Copilot Studio is designed to orchestrate conversations, while Foundry agents handle specialized AI tasks.


Question 4

An organization wants an AI solution that can continue operating even if a specialized AI service is temporarily unavailable.

What should be included?

A. Circular delegation

B. Larger prompts

C. Error handling and fallback responses

D. Multiple conversation histories

Answer: C

Explanation: Proper fallback handling improves resilience and user experience during outages.


Question 5

Which design follows the principle of least privilege?

A. Grant every agent Global Administrator permissions.

B. Share one service account across all environments.

C. Store API keys inside prompts.

D. Give each integration only the permissions required.

Answer: D

Explanation: Least privilege minimizes security risks by limiting access to only what is necessary.


Question 6

Which scenario is the best candidate for delegation to a Foundry agent?

A. Greeting the user

B. Displaying a welcome message

C. Performing advanced financial risk analysis

D. Asking for the user’s name

Answer: C

Explanation: Complex reasoning tasks benefit from specialized Foundry agents, while conversational tasks remain in Copilot Studio.


Question 7

A user asks a question requiring several minutes of AI processing.

What is the recommended approach?

A. Keep the user waiting without feedback.

B. Cancel the request.

C. Return random placeholder information.

D. Start asynchronous processing and notify the user.

Answer: D

Explanation: Long-running operations should be handled asynchronously to improve the user experience.


Question 8

Which metric best helps identify excessive delegation between agents?

A. Font size

B. Delegation frequency

C. Screen resolution

D. Browser version

Answer: B

Explanation: High delegation frequency may indicate inefficient architecture and increased latency.


Question 9

Why should Copilot Studio remain the orchestration layer in many enterprise solutions?

A. It replaces enterprise authentication.

B. It eliminates external APIs.

C. It coordinates conversations, tools, and specialized agents.

D. It performs all advanced reasoning internally.

Answer: C

Explanation: Copilot Studio is designed to orchestrate conversations and determine when specialized agents should be invoked.


Question 10

Which practice best supports scalable multi-agent solutions?

A. Combine every capability into one massive agent.

B. Duplicate prompts across multiple agents.

C. Delegate every request regardless of complexity.

D. Separate conversational, reasoning, and business operation responsibilities.

Answer: D

Explanation: Modular architectures improve scalability, maintainability, testing, and future expansion while reducing unnecessary complexity.


Go to the AB-620 Exam Prep Hub main page

Design multi-agent solutions in Microsoft Copilot Studio (AB-620 Exam Prep)

This post is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.
This topic falls under these sections:
Integrate and extend agents in Copilot Studio (40–45%)
   --> Configure multi-agent collaboration from Copilot Studio
      --> Design multi-agent solutions in Copilot Studio


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Learning Objectives

After completing this article, you should be able to:

  • Understand what a multi-agent solution is.
  • Explain why organizations use multiple AI agents.
  • Identify the major components of a multi-agent architecture.
  • Differentiate between parent agents, child agents, and connected agents.
  • Design effective agent responsibilities.
  • Select appropriate routing and orchestration strategies.
  • Apply Microsoft-recommended design principles for enterprise AI solutions.

Introduction

As organizations adopt AI across multiple business functions, a single AI agent often becomes insufficient for handling every task. Large enterprises require AI systems capable of managing specialized workloads, integrating with diverse systems, and scaling independently.

Microsoft Copilot Studio addresses this challenge by enabling developers to create multi-agent solutions, where multiple specialized agents collaborate to solve complex business problems.

Rather than building one large, monolithic agent responsible for every interaction, developers can create multiple focused agents that communicate and cooperate while maintaining clear responsibilities.

This modular approach improves scalability, maintainability, security, and user experience.


What Is a Multi-Agent Solution?

A multi-agent solution consists of two or more AI agents working together toward a shared objective.

Each agent specializes in a particular domain or capability.

Example:

Instead of one agent handling everything, an organization creates:

  • HR Agent
  • IT Help Desk Agent
  • Finance Agent
  • Facilities Agent
  • Sales Agent
  • Customer Service Agent

Each agent focuses on its own area of expertise.

When necessary, agents collaborate to complete broader workflows.


Why Use Multiple Agents?

Multi-agent systems provide several advantages over a single large agent.

Benefits include:

Better Specialization

Each agent becomes an expert in a limited business domain.

Example:

Rather than one agent answering every possible company question,

Create:

  • Benefits Agent
  • Payroll Agent
  • Recruiting Agent

Each delivers more accurate responses.


Easier Maintenance

Updating one specialized agent is easier than modifying a massive all-purpose agent.

Benefits include:

  • fewer unintended side effects
  • simpler testing
  • faster deployments
  • independent versioning

Improved Scalability

Different agents can scale independently.

For example:

Customer Support Agent

  • thousands of daily requests

Finance Approval Agent

  • dozens of daily requests

Each can be optimized separately.


Better Security

Different agents can have different permissions.

Example:

Payroll Agent

Access:

  • salary information
  • tax records

Sales Agent

Access:

  • CRM data

The Sales Agent never needs payroll permissions.


Improved Reliability

If one specialized agent becomes unavailable,

Other agents continue operating.

This improves overall system resilience.


Multi-Agent Terminology

Understanding Microsoft’s terminology is essential for the AB-620 exam.

TermDescription
AgentAn AI assistant designed for a specific purpose
Parent AgentCoordinates other agents
Child AgentPerforms delegated work
Connected AgentIndependent agent available for collaboration
ToolCapability an agent can invoke
TopicConversation workflow
Knowledge SourceInformation available to an agent
ContextInformation shared during conversations
DelegationPassing work to another agent
OrchestrationCoordinating multiple agents

Core Components of a Multi-Agent Solution

Most enterprise architectures include several components.

User

Starts the conversation.

Parent Agent

Receives the request.

Decision Logic

Determines which specialized agent should handle the task.

Specialized Agent

Executes the requested task.

External Systems

  • Databases
  • APIs
  • Microsoft 365
  • Power Platform
  • Azure AI Search
  • ERP systems
  • CRM systems

Response Returned

Results flow back through the parent agent to the user.


Designing Specialized Agents

One of Microsoft’s primary recommendations is:

Design agents around business capabilities—not technologies.

Poor design:

One “Super Agent”

Responsibilities:

  • HR
  • Finance
  • Sales
  • IT
  • Marketing
  • Legal
  • Procurement

Problems:

  • difficult to maintain
  • confusing prompts
  • unnecessary permissions
  • reduced accuracy

Better design:

HR Agent

Handles:

  • benefits
  • vacation
  • onboarding

Finance Agent

Handles:

  • invoices
  • budgets
  • expense reports

IT Agent

Handles:

  • password resets
  • devices
  • software
  • support tickets

Each agent remains focused.


Agent Responsibilities

Every agent should have clearly defined responsibilities.

Good responsibilities are:

  • specific
  • measurable
  • independent
  • reusable

Example

Travel Agent

Responsibilities:

✓ Book flights

✓ Reserve hotels

✓ Check travel policies

Not responsible for:

✗ Payroll

✗ IT tickets

✗ Customer support


Designing Agent Boundaries

One common exam objective is identifying proper agent boundaries.

Ask:

What business capability owns this task?

Not:

Which department requested it?

Example

Employee requests:

“I need a laptop.”

Poor routing:

HR Agent

Better routing:

IT Agent

Reason:

Hardware provisioning belongs to IT.


Parent Agents

The parent agent serves as the coordinator.

Responsibilities include:

  • understanding requests
  • selecting child agents
  • maintaining conversation flow
  • combining responses
  • returning final answers

Think of the parent agent as a project manager.


Child Agents

Child agents perform specialized work delegated by the parent agent.

Examples include:

Benefits Agent

Inventory Agent

Legal Agent

Facilities Agent

Payroll Agent

Each performs work without needing knowledge of the broader conversation.


Connected Agents

Connected agents differ slightly from child agents.

Connected agents are:

  • independently published
  • reusable
  • discoverable
  • callable by other agents

This promotes reuse across multiple solutions.

Example

Company has:

Expense Agent

Multiple departments can connect to it:

  • HR
  • Sales
  • Finance
  • Operations

Rather than creating duplicate expense logic.


Choosing Between Child and Connected Agents

Child AgentConnected Agent
Used within one solutionReusable across solutions
Parent controls lifecycleIndependent lifecycle
Tight integrationLooser integration
Typically internalEnterprise-wide reuse

Orchestration

Orchestration is the process of coordinating multiple agents.

The parent agent determines:

  • who performs work
  • when work begins
  • what data is shared
  • how results are combined

Without orchestration:

Agents work independently.

With orchestration:

Agents collaborate toward one goal.


Collaboration Patterns

Several collaboration models are common.

Sequential Collaboration

Agent A

Agent B

Agent C

Example

Travel request

Policy Agent

Booking Agent

Approval Agent


Parallel Collaboration

Multiple agents execute simultaneously.

          Parent
        /    |    \
      HR   IT   Finance
        \    |    /
         Combined Response

Advantages:

  • faster responses
  • independent execution

Hub-and-Spoke

Most common in Copilot Studio.

           Parent
        /   |   |   \
      HR   IT Finance Legal

Benefits:

  • centralized coordination
  • simple routing
  • easy governance

Mesh Collaboration

Agents communicate directly.

Agent A ↔ Agent B
↕ ↕
Agent C ↔ Agent D

More flexible

More complex

Less common than hub-and-spoke in enterprise Copilot Studio solutions.


Routing Strategies

One of the parent agent’s primary responsibilities is routing requests.

Examples include:

Intent-Based Routing

Determine user intent.

Example:

“I forgot my password.”

IT Agent


Keyword Routing

Specific words trigger agents.

“Payroll”

Payroll Agent

Simple but less flexible than intent recognition.


Rule-Based Routing

Business rules determine routing.

Example:

If request concerns invoices

Finance Agent

Else

Customer Service Agent


AI-Based Routing

The LLM evaluates the request and selects the most appropriate agent based on semantic understanding.

Benefits:

  • greater flexibility
  • better handling of ambiguous language
  • improved user experience

AI-based routing is increasingly preferred for enterprise conversational systems.


Enterprise Example

A user asks:

“I’m traveling to Seattle next week. Can you book my hotel, verify my travel policy, and submit the request for approval?”

Possible orchestration flow:

  1. Parent Agent receives the request.
  2. Policy Agent verifies travel rules.
  3. Booking Agent searches for available hotels.
  4. Approval Agent creates an approval request.
  5. Parent Agent consolidates the results.
  6. User receives a single, coherent response.

This illustrates how multiple specialized agents collaborate to complete a complex workflow while each remains focused on its own domain.


Best Practices

  • Design agents around business capabilities rather than departments.
  • Keep each agent focused on a well-defined responsibility.
  • Minimize overlapping responsibilities between agents.
  • Use parent agents to coordinate complex workflows.
  • Reuse connected agents whenever practical.
  • Prefer AI-based routing for complex conversational experiences.
  • Apply the principle of least privilege so each agent has only the permissions it requires.
  • Plan for scalability by allowing agents to evolve independently.

Common Design Mistakes

Avoid these common pitfalls:

  • Creating one “super agent” responsible for every task.
  • Giving multiple agents overlapping responsibilities.
  • Granting excessive permissions to specialized agents.
  • Routing requests solely by keywords when semantic routing is more appropriate.
  • Tightly coupling agents that should be reusable.
  • Failing to define clear ownership for business capabilities.

AB-620 Exam Tips

For the exam, remember these key concepts:

  • A multi-agent solution consists of multiple specialized agents working together.
  • Parent agents coordinate conversations and delegate work.
  • Child agents perform specialized tasks within a solution.
  • Connected agents are independently published and reusable across multiple solutions.
  • Orchestration manages how agents collaborate to fulfill user requests.
  • Design agents around business capabilities, not organizational departments.
  • Use AI-based routing when requests are complex or ambiguous.
  • Keep agents modular, secure, maintainable, and independently scalable.

Advanced Multi-Agent Design Patterns

Once you understand the fundamentals of multi-agent solutions, the next step is learning how to design enterprise-grade architectures. Microsoft expects AI Agent Builders to select appropriate collaboration patterns based on business requirements rather than attempting to solve every problem with a single architecture.


Pattern 1 – Hub-and-Spoke (Recommended)

This is the most common architecture used in Copilot Studio.

                  User
                   │
            Parent Agent
      ┌────────┼────────┐
      │        │        │
   HR Agent IT Agent Finance Agent
      │        │        │
      └────────┼────────┘
          Consolidated Response

Advantages

  • Centralized orchestration
  • Easy governance
  • Simplified security
  • Easy monitoring
  • Scalable
  • Easy to troubleshoot

Typical Uses

  • Enterprise copilots
  • Employee self-service
  • Customer support
  • IT service desks

Pattern 2 – Sequential Workflow

Each agent performs one step before passing work to the next.

Example

User
Travel Agent
Policy Agent
Approval Agent
Booking Agent
User

Best for

  • Approval workflows
  • Procurement
  • Employee onboarding
  • Case management

Pattern 3 – Parallel Processing

Several agents work simultaneously.

               Parent Agent
             /      |      \
         Sales   Inventory  Shipping
             \      |      /
          Combined Response

Benefits

  • Faster responses
  • Independent processing
  • Better user experience

Pattern 4 – Federated Agent Architecture

Different business units own their own agents.

Example

Sales Department

Owns Sales Agent

Finance Department

Owns Finance Agent

HR Department

Owns HR Agent

A parent agent coordinates requests without requiring centralized ownership of every specialized agent.


Agent Communication Lifecycle

Most multi-agent conversations follow this sequence:

Step 1

User submits request.

Step 2

Parent agent interprets intent.

Step 3

Appropriate specialized agent is selected.

Step 4

Context is transferred.

Step 5

Specialized agent completes work.

Step 6

Result returns to parent.

Step 7

Parent formats final response.


Context Sharing

Context refers to the information needed for another agent to complete work.

Examples include:

  • User identity
  • Previous conversation
  • Variables
  • Business data
  • Parameters
  • Selected products
  • Order numbers

Good context sharing reduces duplicate questions and improves user experience.

Example

Without context:

Parent Agent:

“What order number?”

Inventory Agent:

“What order number?”

Shipping Agent:

“What order number?”

Poor experience.


Better

Parent collects:

Order #14567

Passes it automatically to downstream agents.


State Management

State represents information preserved during a conversation.

Examples include:

  • Customer ID
  • Shopping cart
  • Selected location
  • Previous answers
  • Authentication status

Good state management allows conversations to continue naturally.

Example

User:

“I’d like to change my reservation.”

Five minutes later:

“Can you move it to next Tuesday?”

The agent remembers the reservation discussed earlier.


Stateless vs. Stateful Design

StatelessStateful
No memory between requestsMaintains conversation context
Simple implementationMore personalized interactions
Highly scalableSupports complex workflows
Good for APIsGood for conversational agents

Copilot Studio frequently combines both approaches depending on the scenario.


Security Considerations

Every agent should follow the principle of least privilege.

Example

Benefits Agent

Access

✓ Benefits database

✗ Payroll database

✗ Financial records

Finance Agent

Access

✓ Expense reports

✓ Budgets

✗ HR records

This reduces risk and improves compliance.


Authentication

Each specialized agent may authenticate independently.

Possible methods include:

  • Microsoft Entra ID
  • OAuth 2.0
  • Managed identities
  • API Keys (when appropriate)

The parent agent should not automatically inherit unrestricted access to every connected system.


Performance Considerations

Large organizations may operate dozens or even hundreds of specialized agents.

Performance can be improved by:

  • Running independent agents in parallel
  • Caching frequently accessed information
  • Reusing connected agents
  • Avoiding unnecessary delegations
  • Limiting context passed between agents
  • Reducing repeated API calls

Scalability

A good architecture should support future growth.

Instead of:

Parent
One giant agent

Use:

Parent
HR
Finance
Sales
Legal
IT
Marketing
Facilities
Travel
Procurement

New business capabilities can be added without redesigning the entire solution.


Monitoring Multi-Agent Solutions

Enterprise deployments should monitor:

  • Conversation success rate
  • Agent selection accuracy
  • API failures
  • Response times
  • Authentication failures
  • Delegation failures
  • User satisfaction
  • Tool execution success
  • Token usage
  • Error frequency

Monitoring enables continuous improvement and faster troubleshooting.


Troubleshooting Collaboration Issues

Common issues include:

Incorrect Routing

Symptoms

  • Wrong agent selected
  • Irrelevant responses

Solution

Improve routing logic or intent recognition.


Missing Context

Symptoms

  • Users repeatedly answer the same questions.

Solution

Share required variables between agents.


Permission Errors

Symptoms

  • Agent cannot access required resources.

Solution

Review security roles and connector permissions.


Delegation Loops

Symptoms

Agent A

Agent B

Agent A

Agent B

Avoid circular delegation by defining clear ownership and termination conditions.


Slow Performance

Causes

  • Too many API calls
  • Excessive context transfer
  • Sequential execution when parallel processing is possible

Single-Agent vs. Multi-Agent Architecture

Single AgentMulti-Agent
Simple implementationMore flexible
Limited specializationHighly specialized
Harder to scaleScales independently
Large promptSmaller focused prompts
One security modelGranular permissions
Lower maintenance flexibilityIndependent lifecycle management
Good for small solutionsBest for enterprise solutions

Real-World Enterprise Scenario 1

A global manufacturing company deploys:

  • HR Agent
  • Payroll Agent
  • IT Agent
  • Procurement Agent
  • Maintenance Agent

The Enterprise Copilot receives:

“Order a replacement laptop for my new employee.”

Possible workflow:

  1. Parent Agent identifies onboarding request.
  2. HR Agent confirms employee status.
  3. Procurement Agent verifies available hardware.
  4. IT Agent creates deployment ticket.
  5. Parent Agent summarizes results.

No single specialized agent performs every task.


Real-World Enterprise Scenario 2

Customer asks:

“My shipment is late and I’d like a refund.”

Workflow:

Parent Agent

Order Agent

Shipping Agent

Finance Agent

Customer Support Agent

Response returned

Each agent performs one specialized responsibility.


Design Decision Matrix

RequirementRecommended Design
Simple FAQ botSingle agent
Enterprise employee assistantMulti-agent hub-and-spoke
Department specializationConnected agents
Approval workflowsSequential orchestration
Independent business unitsFederated architecture
Large enterprise platformParent with reusable connected agents

Summary

For the AB-620 exam, remember these key points:

  • Multi-agent solutions improve scalability, maintainability, and specialization.
  • Parent agents orchestrate work across specialized agents.
  • Child agents perform delegated tasks within a solution.
  • Connected agents are reusable across multiple solutions.
  • Effective context sharing minimizes repeated user input.
  • State management enables natural, continuous conversations.
  • Security should follow the principle of least privilege.
  • Parallel execution can improve performance.
  • Monitoring and troubleshooting are essential for production deployments.
  • Select an architecture that aligns with business requirements rather than forcing a single design pattern.

Practice Exam Questions

Question 1

A company wants a Copilot solution where HR, Finance, and IT each maintain their own specialized agents while a single enterprise assistant coordinates user requests. Which architecture is most appropriate?

A. Hub-and-spoke multi-agent architecture

B. Single-agent architecture

C. Stateless REST API architecture

D. Batch processing architecture

Answer: A

Explanation: A hub-and-spoke architecture uses a parent agent to coordinate specialized agents, making it ideal for enterprise scenarios where multiple business domains are involved.


Question 2

What is the primary responsibility of a parent agent in a multi-agent solution?

A. Store all enterprise data

B. Replace every specialized agent

C. Orchestrate conversations and delegate work

D. Authenticate every external API directly

Answer: C

Explanation: The parent agent coordinates conversations, selects the appropriate specialized agent, manages context, and returns a unified response.


Question 3

Which design principle helps reduce unnecessary security risks in multi-agent solutions?

A. Shared administrator permissions

B. Principle of least privilege

C. Universal read/write access

D. Anonymous authentication

Answer: B

Explanation: Granting each agent only the permissions it requires minimizes the attack surface and aligns with Microsoft’s security recommendations.


Question 4

A company wants multiple departments to reuse the same Expense Approval agent without duplicating its logic. Which type of agent is most appropriate?

A. Parent agent

B. Temporary agent

C. Stateless agent

D. Connected agent

Answer: D

Explanation: Connected agents are independently published and reusable across multiple solutions or departments.


Question 5

Why is context sharing important between collaborating agents?

A. It encrypts API traffic automatically.

B. It eliminates authentication requirements.

C. It prevents users from repeatedly providing the same information.

D. It replaces business rules.

Answer: C

Explanation: Sharing relevant context improves efficiency and provides a smoother conversational experience.


Question 6

Which collaboration pattern is generally the best choice when several independent tasks can be completed simultaneously?

A. Parallel processing

B. Sequential workflow

C. Single-agent routing

D. Manual delegation

Answer: A

Explanation: Parallel processing reduces overall response time by allowing multiple specialized agents to work concurrently.


Question 7

A conversation requires remembering a reservation number while multiple agents collaborate. Which capability is most important?

A. Stateless routing

B. Keyword matching

C. State management

D. Anonymous access

Answer: C

Explanation: State management preserves important conversation data across interactions and between collaborating agents.


Question 8

Which issue is most likely to occur if agent responsibilities overlap significantly?

A. Improved specialization

B. Easier maintenance

C. Lower API costs

D. Incorrect routing and duplicated functionality

Answer: D

Explanation: Overlapping responsibilities create ambiguity, increase maintenance complexity, and may cause requests to be routed incorrectly.


Question 9

What is the primary advantage of designing specialized agents around business capabilities instead of departments?

A. Reduced conversation quality

B. Clear ownership and easier long-term maintenance

C. Elimination of authentication

D. Guaranteed parallel execution

Answer: B

Explanation: Business capability–based design creates well-defined responsibilities, improving maintainability, scalability, and reuse.


Question 10

A global organization expects to add new AI capabilities every few months. Which architectural characteristic best supports future growth?

A. One large monolithic agent

B. Hard-coded routing rules only

C. Modular multi-agent architecture with independently scalable agents

D. Manual agent switching by users

Answer: C

Explanation: A modular multi-agent architecture allows organizations to add or update specialized agents independently without redesigning the entire solution, making it the preferred enterprise approach.


Go to the AB-620 Exam Prep Hub main page

Add REST APIs to an agent (AB-620 Exam Prep)

This post is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.
This topic falls under these sections:
Integrate and extend agents in Copilot Studio (40–45%)
   --> Add tools to agents
      --> Add REST APIs to an agent


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Learning Objectives

After completing this section, you should be able to:

  • Explain REST APIs.
  • Understand how REST API tools work in Copilot Studio.
  • Configure REST API tools.
  • Configure authentication.
  • Build requests.
  • Parse responses.
  • Use API outputs in conversations.
  • Apply Microsoft security best practices.

What is a REST API?

A REST (Representational State Transfer) API is a web service that allows applications to communicate over HTTP using standard operations.

Rather than interacting directly with databases or applications, agents communicate with REST APIs to retrieve or update information.

REST APIs are one of the most common integration mechanisms used in enterprise software.

Examples include:

  • CRM systems
  • ERP systems
  • HR applications
  • Inventory systems
  • Payment services
  • AI services
  • Internal business applications

Why Use REST APIs in Copilot Studio?

REST APIs enable agents to interact with virtually any application that exposes HTTP endpoints.

Common use cases include:

  • Retrieving customer records
  • Creating support tickets
  • Updating inventory
  • Booking appointments
  • Querying AI models
  • Processing payments
  • Accessing proprietary business systems

Unlike standard connectors, REST APIs allow organizations to integrate with services that do not already have a connector.


REST API Tool Architecture

A typical architecture looks like this:

User
Copilot Studio Agent
REST API Tool
HTTP Request
REST API Endpoint
Enterprise Application
HTTP Response
Agent Response

The REST API tool acts as the communication layer between the agent and the external service.


REST Principles

REST APIs generally use:

  • HTTP
  • URLs
  • Resources
  • Standard HTTP methods
  • JSON payloads

Example resource:

https://api.company.com/customers/10025

HTTP Methods

The AB-620 exam expects familiarity with the most common HTTP methods.

GET

Retrieves information.

Example:

GET /customers/10025

Used when reading data.


POST

Creates a new resource.

Example:

POST /orders

Used to create records.


PUT

Replaces an existing resource.

Example:

PUT /customers/10025

Often used for full updates.


PATCH

Updates part of a resource.

Example:

PATCH /customers/10025

Updates only specified fields.


DELETE

Deletes a resource.

Example:

DELETE /orders/501

REST API Requests

A request generally contains:

  • Endpoint URL
  • HTTP method
  • Authentication
  • Headers
  • Parameters
  • Optional request body

Example:

GET https://api.company.com/orders/12345
Authorization: Bearer <token>
Accept: application/json

Authentication Methods

Authentication is frequently tested on the exam.

Common methods include:

OAuth 2.0

Most common for enterprise applications.

Advantages:

  • Secure
  • Token-based
  • Supports delegated access

Microsoft Entra ID

Used for Microsoft-secured APIs.

Examples:

  • Microsoft Graph
  • Azure services
  • Internal enterprise APIs

API Key

Common for:

  • AI services
  • Third-party APIs
  • Internal APIs

The API key is usually sent in a request header.


Basic Authentication

Supported by some legacy systems.

Generally discouraged for modern enterprise deployments.


Configuring a REST API Tool

Typical steps include:

  1. Open the agent.
  2. Navigate to Tools.
  3. Select Add Tool.
  4. Choose REST API.
  5. Provide the endpoint URL.
  6. Configure authentication.
  7. Configure operations.
  8. Save the tool.

The REST API can now be invoked by the agent during conversations.


Endpoint Configuration

The endpoint identifies the resource.

Example:

https://api.contoso.com/orders

Additional path parameters may be used.

Example:

/orders/{OrderID}

Path Parameters

Path parameters identify specific resources.

Example:

/orders/45213

where:

OrderID = 45213

Query Parameters

Query parameters filter results.

Example:

/orders?status=Pending

Multiple query parameters may be combined.

Example:

/products?category=Electronics&warehouse=West

Headers

Headers provide additional information.

Examples include:

  • Authorization
  • Accept
  • Content-Type
  • User-Agent
  • API version

Example:

Authorization: Bearer token
Content-Type: application/json

Request Body

POST, PUT, and PATCH operations often include JSON.

Example:

{
"customerID":12345,
"priority":"High",
"description":"Damaged shipment"
}

The request body supplies the data the API needs.


JSON

JSON (JavaScript Object Notation) is the most common REST payload format.

Example response:

{
"OrderID":12345,
"Status":"Shipped",
"Carrier":"Contoso Logistics",
"Tracking":"ABC987654"
}

Copilot Studio parses these values into variables that can be used in subsequent conversation steps.


Variables

Inputs can originate from:

  • User messages
  • Conversation variables
  • Previous tool outputs
  • Adaptive Card inputs
  • AI-extracted entities

Example:

User:

Check order 55421.

Variable:

OrderID = 55421

The REST API request uses this variable as a path or query parameter.


Response Mapping

REST API responses can populate conversation variables.

Example:

{
"Customer":"John Smith",
"Status":"Delivered",
"DeliveryDate":"2026-10-04"
}

The agent can then:

  • Respond naturally
  • Display an Adaptive Card
  • Make branching decisions
  • Invoke another tool
  • Store values for later use

Security Considerations

REST APIs often expose sensitive enterprise data.

Microsoft recommends:

  • Secure authentication
  • HTTPS only
  • Least privilege
  • Avoid exposing secrets
  • Validate inputs
  • Protect sensitive outputs

Best Practices

Keep APIs Focused

Each endpoint should perform one clear task.


Validate Inputs

Reject invalid values before sending requests.


Use Secure Authentication

Prefer:

  • OAuth 2.0
  • Microsoft Entra ID

Avoid storing secrets directly in requests whenever possible.


Return Only Required Data

Smaller responses improve:

  • Performance
  • Security
  • Readability

Use Clear Endpoint Names

Good examples:

/customers
/orders
/inventory

Poor examples:

/process1
/action
/data

Common Exam Scenarios

You should be able to determine when a REST API tool is the appropriate choice.

Examples include:

  • Integrating with a proprietary application that does not have a Power Platform connector.
  • Calling an external AI service.
  • Accessing an internal business API.
  • Invoking a third-party SaaS application that exposes a REST interface.
  • Rapidly integrating with an existing HTTP-based service without creating a reusable custom connector.

These scenarios frequently appear in the form of architecture or design questions on the AB-620 exam.


Key Takeaways from the topics covered so far

  • REST API tools allow Copilot Studio agents to interact directly with HTTP-based services.
  • REST APIs use standard HTTP methods such as GET, POST, PUT, PATCH, and DELETE.
  • Authentication commonly uses OAuth 2.0, Microsoft Entra ID, or API keys.
  • Requests consist of endpoints, headers, parameters, and (when appropriate) JSON request bodies.
  • JSON responses are parsed into variables that can drive conversation flow and subsequent tool invocations.
  • Secure design, proper authentication, and least-privilege access are essential best practices.

Securing REST API Integrations

Security is one of the most heavily tested areas of the AB-620 exam. Microsoft expects AI Agent Builders to understand not only how to connect to an API, but also how to do so securely.

A poorly secured API can expose sensitive business information, customer data, and backend systems.


Authentication Overview

Most enterprise REST APIs require authentication before they process requests.

Common authentication methods include:

  • API Keys
  • OAuth 2.0
  • Microsoft Entra ID (Azure AD)
  • Bearer Tokens
  • Basic Authentication (legacy)

API Keys

An API Key is a unique secret value issued by an API provider.

Example:

GET https://api.company.com/orders
Headers
x-api-key:
A1B2C3D4E5

Advantages

  • Easy to configure
  • Simple to understand
  • Good for internal services

Disadvantages

  • Less secure than OAuth
  • Keys may expire
  • Keys must be protected

OAuth 2.0

OAuth is the preferred authentication method for modern enterprise applications.

Instead of sending usernames and passwords:

  1. User signs in
  2. Identity provider authenticates user
  3. Access token is issued
  4. API validates token

Benefits

  • Strong security
  • Supports delegated permissions
  • Supports application permissions
  • Token expiration
  • Token revocation

Microsoft Entra ID Authentication

Many Microsoft services use Microsoft Entra ID.

Examples include:

  • Microsoft Graph
  • SharePoint
  • Outlook
  • Teams
  • Azure Management APIs

Advantages

  • Central identity management
  • Conditional Access
  • Multi-factor authentication
  • Role-based access control

Bearer Tokens

Many REST APIs require an Authorization header.

Example

Authorization:
Bearer eyJhbGciOi...

The token proves that the caller has already authenticated.


Basic Authentication

Older systems may still require:

Authorization:
Basic Base64(username:password)

This method is generally discouraged for new solutions.

Reasons:

  • Lower security
  • Password management
  • Credential exposure risks

Managing Secrets

Never hard-code:

  • Passwords
  • API Keys
  • Tokens

Instead:

  • Store credentials securely
  • Use connection references
  • Use environment variables
  • Use secure authentication providers

Request Headers

Headers provide additional information.

Common headers include:

Authorization
Content-Type
Accept
User-Agent

Example

Content-Type:
application/json

This tells the server JSON is being sent.


Query Parameters

Many APIs accept filtering.

Example

GET
/customers?city=Seattle

Instead of returning every customer:

The API returns only Seattle customers.

Benefits

  • Faster
  • Smaller payloads
  • Lower cost

Pagination

Large APIs rarely return all records.

Instead they return pages.

Example

GET
/orders?page=1

Next request:

page=2

Benefits

  • Better performance
  • Smaller responses
  • Lower memory usage

Rate Limits

Most enterprise APIs limit requests.

Example

1000 requests/hour

If exceeded:

429 Too Many Requests

Best practices

  • Retry later
  • Respect Retry-After headers
  • Reduce unnecessary requests

Handling Errors

REST APIs commonly return status codes.

CodeMeaning
200Success
201Created
204No Content
400Bad Request
401Unauthorized
403Forbidden
404Not Found
408Timeout
429Too Many Requests
500Internal Server Error

Agents should handle these responses gracefully.


Logging API Activity

Developers should monitor:

  • Request success
  • Failures
  • Latency
  • Authentication failures
  • Timeouts

Useful for:

  • Troubleshooting
  • Performance tuning
  • Compliance
  • Auditing

Monitoring API Performance

Key metrics include:

Average response time

Error rate

Success rate

Retry count

Timeout frequency

API availability


Best Practices

Design

  • Keep APIs focused.
  • Follow REST conventions.
  • Use meaningful endpoints.
  • Version APIs.

Security

  • Prefer OAuth.
  • Encrypt traffic using HTTPS.
  • Protect secrets.
  • Validate input.
  • Apply least privilege.

Performance

  • Filter results.
  • Cache where appropriate.
  • Minimize payload size.
  • Use pagination.
  • Avoid unnecessary API calls.

Reliability

  • Handle failures gracefully.
  • Retry transient errors.
  • Log important events.
  • Monitor health.
  • Test regularly.

REST APIs vs Custom Connectors

REST API ToolCustom Connector
Direct API definitionReusable connector
Good for individual APIsGood for many apps
Can require manual configurationSimpler for repeated use
FlexibleMore standardized
Ideal for rapid integrationIdeal for enterprise reuse

Exam Tips

Remember these important distinctions:

  • REST APIs allow direct integration with external services.
  • APIs use HTTP methods such as GET, POST, PUT, PATCH, and DELETE.
  • JSON is the primary request and response format.
  • Authentication is commonly handled through OAuth 2.0 or Microsoft Entra ID.
  • API responses should be validated before use.
  • Agents should gracefully handle failures and retries.
  • Secure secrets should never be hard-coded.
  • Monitoring and logging are essential for production deployments.
  • Pagination and filtering improve performance.
  • Custom connectors simplify reuse of REST APIs across Power Platform solutions.

Practice Exam Questions

Question 1

A Copilot Studio agent needs to retrieve customer information from an external CRM without modifying any data. Which HTTP method should the REST API use?

A. POST

B. PUT

C. GET

D. PATCH

Answer: C

Explanation: GET retrieves data without changing server resources. POST creates resources, PUT replaces them, and PATCH partially updates them.


Question 2

Which authentication method is generally recommended for enterprise REST API integrations?

A. Basic Authentication

B. OAuth 2.0

C. Anonymous Access

D. Shared Password Files

Answer: B

Explanation: OAuth 2.0 provides secure, token-based authentication with delegated permissions and is preferred for enterprise APIs.


Question 3

A REST API returns HTTP status code 401 Unauthorized. What does this most likely indicate?

A. The requested resource does not exist.

B. The server encountered an internal error.

C. Authentication credentials are missing or invalid.

D. The request exceeded the rate limit.

Answer: C

Explanation: A 401 response indicates that the request lacks valid authentication credentials.


Question 4

Why should API keys never be hard-coded into an agent?

A. They increase API response times.

B. They prevent JSON serialization.

C. They disable HTTPS encryption.

D. They can be exposed and compromise security.

Answer: D

Explanation: Hard-coded secrets are difficult to rotate and may be exposed through source code or logs.


Question 5

An API returns 429 Too Many Requests. What is the most appropriate response by the agent?

A. Continue sending requests immediately.

B. Retry after waiting according to the API’s guidance.

C. Switch to Basic Authentication.

D. Ignore the error.

Answer: B

Explanation: HTTP 429 indicates that the client has exceeded rate limits. The agent should wait and retry appropriately.


Question 6

Which request header typically specifies the authentication token for a REST API?

A. Accept

B. Content-Type

C. Authorization

D. Cache-Control

Answer: C

Explanation: The Authorization header carries bearer tokens or other authentication credentials.


Question 7

Why do many APIs implement pagination?

A. To encrypt responses.

B. To reduce the amount of data returned in a single request.

C. To replace authentication.

D. To prevent HTTPS connections.

Answer: B

Explanation: Pagination improves performance and scalability by limiting the number of records returned per request.


Question 8

Which format is most commonly used for REST API request and response bodies?

A. CSV

B. XML

C. YAML

D. JSON

Answer: D

Explanation: JSON is lightweight, widely supported, and the standard format for modern REST APIs.


Question 9

When integrating a REST API into Copilot Studio, why is validating API responses important?

A. It guarantees that authentication is unnecessary.

B. It eliminates network latency.

C. It ensures returned data is complete and expected before the agent uses it.

D. It automatically encrypts responses.

Answer: C

Explanation: Response validation helps prevent errors and ensures the agent processes reliable, expected data.


Question 10

Why might a development team choose a Power Platform custom connector instead of directly configuring a REST API in every agent?

A. Custom connectors eliminate the need for authentication.

B. Custom connectors can only connect to Microsoft services.

C. Custom connectors replace HTTP methods.

D. Custom connectors provide reusable, centrally managed API definitions across multiple solutions.

Answer: D

Explanation: Custom connectors simplify maintenance, standardize integrations, and enable reuse across multiple apps, flows, and Copilot Studio agents.


Go to the AB-620 Exam Prep Hub main page