{"id":57836,"date":"2026-07-12T20:56:59","date_gmt":"2026-07-12T10:56:59","guid":{"rendered":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/"},"modified":"2026-07-12T20:58:20","modified_gmt":"2026-07-12T10:58:20","slug":"implementing-secure-a2a-auth-in-microsoft-foundry-agent-service","status":"publish","type":"post","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/","title":{"rendered":"Implementing Secure A2A Auth in Microsoft Foundry Agent Service"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">In this blog post <strong>Implementing Secure A2A Auth in Microsoft Foundry Agent Service<\/strong> we will explain how to let Microsoft Foundry agents talk to other agents safely, without turning your AI project into another unmanaged security risk.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p class=\"wp-block-paragraph\">Most organisations are now past the \u201ccan AI answer a question?\u201d stage. The bigger question is whether an AI agent can safely do useful work across sales, finance, service desk, HR, security and operations systems.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That is where A2A authentication matters. A2A stands for Agent-to-Agent. In plain English, it is a standard way for one AI agent to ask another AI agent to do something, while keeping identity, permissions and audit trails under control.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Microsoft Foundry Agent Service is Microsoft\u2019s platform for building, running and managing AI agents. When you combine it with Microsoft Entra ID, which is Microsoft\u2019s identity and access control platform, you can give each agent a proper digital identity instead of relying on shared passwords, copied API keys or hidden secrets in code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why this matters to business leaders<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The risk with agent-to-agent communication is not that agents talk to each other. The risk is that they talk to each other without anyone being clear on who is allowed to do what.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Imagine a customer service agent asking a finance agent to check an overdue invoice. That sounds useful. But should the customer service agent be able to see full credit history, bank account details or internal write-off notes?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Now imagine the same setup at scale across dozens of agents. Without proper authentication, you can quickly end up with AI agents that have too much access, unclear ownership and poor auditability.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For Australian organisations working towards Essential 8, the Australian Government\u2019s cybersecurity framework that many boards and insurers now expect businesses to follow, this is not a small issue. Identity control, least privilege access and logging are all part of running AI responsibly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The technology behind A2A authentication in simple terms<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A2A, or Agent-to-Agent, gives agents a common language. Instead of every AI tool needing a custom integration, an agent can expose an A2A endpoint, which is a secure web address other agents can call.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That endpoint usually publishes an agent card. Think of the agent card as a business card for the agent. It describes what the agent can do, how it can be contacted and what protocol version it supports.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Authentication is the gatekeeper. It answers a simple question before the work starts: \u201cWho is calling, and are they allowed to do this?\u201d<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In Microsoft Foundry Agent Service, the strongest pattern is to use Microsoft Entra ID rather than long-lived API keys. Entra ID can issue short-lived access tokens, apply access rules, support managed identities and produce logs that security teams can review later.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A managed identity is a secure identity automatically managed by Microsoft Azure. It lets your agent prove who it is without storing a password or secret in your application.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where this fits with your existing AI agent architecture<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you have read our earlier guide on connecting Microsoft Foundry agents to external A2A endpoints, this article goes one layer deeper. We are focusing on the authentication design that decides whether the connection is safe enough for real business use.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It also builds on our post about securing A2A agent communication using Microsoft Entra ID. That article explains the \u201cwhy\u201d. This one explains the practical implementation pattern.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If your agents are also connecting into CRMs, ERPs, service desks or document platforms, the same thinking applies to MCP and OpenAPI connections. We covered that broader integration pattern in connecting Foundry agents to business systems with MCP and OpenAPI.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The three authentication decisions you need to make first<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before anyone writes code, your leadership and technical teams should agree on three decisions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Is the agent acting as itself or as the user?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">There are two common models.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n <li><strong>Shared agent identity:<\/strong> every user triggers the same agent identity. This works when the agent should provide the same answer or action for everyone.<\/li>\n <li><strong>Individual user context:<\/strong> the agent acts with the permissions of the signed-in user. This is needed when access must reflect each person\u2019s role.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">For example, an internal policy agent can often use a shared identity because everyone can read the same policy library. A finance approvals agent should usually use individual user context because a team leader and CFO should not see or approve the same things.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Are API keys acceptable or should you use Entra ID?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">API keys are simple. They are also easy to copy, hard to trace to a specific person and often forgotten until they become a security incident.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For prototypes, an API key may be fine. For production, Microsoft Entra ID is usually the better choice because it supports identity-based control, role-based access and better logging.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Role-based access control, often called RBAC, simply means assigning permissions based on a role. For example, your invoice-checking agent may be allowed to read invoice status but not change supplier bank details.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Who owns the agent identity lifecycle?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">AI agents should be treated like employees, service accounts or privileged applications. They need owners, access reviews, logging and a retirement process.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is where many organisations get into trouble. They build a useful proof of concept, connect it to real systems and never come back to clean up access.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A practical implementation pattern<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A safe A2A authentication design in Microsoft Foundry Agent Service usually follows this pattern.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n <li>Create or identify the Foundry agent that will call another agent.<\/li>\n <li>Confirm the remote A2A endpoint supports the authentication method you want to use.<\/li>\n <li>Use Microsoft Entra ID where possible for production workloads.<\/li>\n <li>Assign only the minimum permissions the calling agent needs.<\/li>\n <li>Store secrets in a managed connection or secure vault if a key is unavoidable.<\/li>\n <li>Test the connection with a low-risk task first.<\/li>\n <li>Turn on logging and monitor unusual calls, failures and permission errors.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">The business outcome is simple: your agents can collaborate without giving every agent broad access to everything.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Example architecture for a secure A2A call<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Let\u2019s use a common scenario.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A 180-person professional services firm wants a Microsoft Foundry agent to help project managers ask questions like, \u201cWhich client projects are at risk this month?\u201d The main project agent needs to call a finance agent for billing status and a resource planning agent for staff availability.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The wrong approach would be to give the project agent a single high-privilege key that can read everything in finance and HR.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The better approach is to give each agent its own identity in Microsoft Entra ID. The project agent can call the finance agent through A2A, but the finance agent only returns approved billing signals such as \u201cinvoice overdue\u201d, \u201cwithin terms\u201d or \u201crequires finance review\u201d. It does not expose bank details, payroll data or unrelated client records.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That design gives leaders the insight they need while reducing the amount of sensitive data moving between systems.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Sample configuration flow<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The exact code will vary depending on whether you are using Python, C#, REST APIs or the Foundry portal. The principle is the same: create the A2A connection, attach authentication and ensure the calling agent has permission.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here is a simplified example of what the process can look like using a REST-style approach. This is not intended to be copied directly into production. It shows the moving parts your team should expect.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># 1. Get an access token for Microsoft Foundry\nTOKEN=$(az account get-access-token \\\n --resource https:\/\/ai.azure.com \\\n --query accessToken -o tsv)\n\n# 2. Define your Foundry project endpoint\nBASE_URL=&quot;https:\/\/YOUR-FOUNDRY-ACCOUNT.services.ai.azure.com\/api\/projects\/YOUR-PROJECT&quot;\n\n# 3. Create or update an A2A connection with Entra-based authentication\ncurl -X POST &quot;$BASE_URL\/connections&quot; \\\n -H &quot;Authorization: Bearer $TOKEN&quot; \\\n -H &quot;Content-Type: application\/json&quot; \\\n -d &#39;{\n &quot;name&quot;: &quot;finance-agent-a2a&quot;,\n &quot;type&quot;: &quot;a2a&quot;,\n &quot;endpoint&quot;: &quot;https:\/\/finance-agent.example.internal\/a2a&quot;,\n &quot;authentication&quot;: {\n &quot;type&quot;: &quot;MicrosoftEntraID&quot;,\n &quot;audience&quot;: &quot;api:\/\/finance-agent&quot;\n }\n }&#39;\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The important part is not the syntax. The important part is that the agent is not relying on a hard-coded password. It is asking Entra ID for a short-lived token that proves the agent\u2019s identity to the receiving endpoint.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What the receiving A2A agent should validate<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Authentication is not complete just because a token exists. The receiving agent needs to validate that token properly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">At a minimum, it should check:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n <li><strong>Issuer:<\/strong> did the token come from the trusted Microsoft Entra tenant?<\/li>\n <li><strong>Audience:<\/strong> was the token meant for this agent endpoint?<\/li>\n <li><strong>Caller identity:<\/strong> which agent or application is calling?<\/li>\n <li><strong>Permissions:<\/strong> is this caller allowed to perform the requested task?<\/li>\n <li><strong>Expiry:<\/strong> is the token still valid?<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">In business terms, this is the difference between \u201csomeone has a pass\u201d and \u201cthis specific person has the right pass for this room, today\u201d.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Common mistakes we see<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Using one powerful identity for every agent<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">This feels convenient at first. It becomes painful when you need to investigate an incident, prove compliance or remove one agent\u2019s access without breaking everything else.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Leaving prototype keys in production<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Proofs of concept often move faster than governance. If an API key was used to test an A2A endpoint, make sure it is replaced or tightly controlled before real business data is involved.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Not separating read and write access<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">An agent that can read invoice status does not automatically need to create credit notes. Start with read-only access wherever possible, then add write permissions only when there is a clear business case.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Forgetting monitoring<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">A secure design still needs visibility. Monitor which agents are calling which endpoints, how often calls fail and whether any agent is attempting actions outside its normal pattern.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How this supports Essential 8 and governance<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Essential 8 is not an AI framework, but its principles are highly relevant. The Australian Cyber Security Centre expects organisations to control privileged access, reduce unnecessary permissions and maintain good operational discipline.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A2A authentication helps by making agent access visible and controllable. Instead of anonymous automation, you get identifiable agents, defined permissions and logs that can support security reviews.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is also useful for privacy and board reporting. If an AI agent touches customer, employee or financial data, leaders need confidence that access is intentional, limited and reviewable.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where CloudProInc helps<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">CloudProInc is a Melbourne-based Microsoft Partner and Wiz Security Integrator with more than 20 years of enterprise IT experience. We work with Australian and international organisations that want AI to improve productivity without weakening security.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In practical terms, that means helping teams design the agent identity model, configure Microsoft Foundry Agent Service, apply Microsoft Entra ID authentication, review Azure and Microsoft 365 permissions, and monitor the environment with tools such as Microsoft Defender and Wiz.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We are not interested in building impressive demos that cannot survive security review. The goal is to help you build agents that are useful, secure and manageable.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A simple checklist before you go live<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n <li>Have you documented which agents can call which A2A endpoints?<\/li>\n <li>Does each production agent have its own identity?<\/li>\n <li>Are you using Microsoft Entra ID instead of static keys wherever possible?<\/li>\n <li>Have you assigned the minimum permissions required?<\/li>\n <li>Are read and write permissions separated?<\/li>\n <li>Can you trace agent activity in logs?<\/li>\n <li>Is there an owner responsible for each agent?<\/li>\n <li>Do you have a process to remove access when an agent is retired?<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Final thought<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A2A authentication in Microsoft Foundry Agent Service is not just a technical setting. It is the control layer that decides whether your AI agents can safely become part of everyday operations.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Done well, it reduces manual work, improves response times and gives leaders confidence that AI is operating inside clear boundaries. Done poorly, it creates another hidden access path into your business systems.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are planning to connect Microsoft Foundry agents to other agents or business systems, CloudProInc can help review the design before it becomes difficult to unwind. If you are not sure whether your current AI setup is secure enough for production, we are happy to take a look \u2014 no strings attached.<\/p>\n\n\n","protected":false},"excerpt":{"rendered":"<p>AI agents are starting to call other agents. Here is how to implement A2A authentication in Microsoft Foundry Agent Service without creating a security blind spot.<\/p>\n","protected":false},"author":1,"featured_media":57843,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_opengraph-title":"A2A Authentication for Secure AI Agents","_yoast_wpseo_opengraph-description":"Learn how A2A authentication helps AI agents communicate safely with identity controls, least privilege access and audit trails for production systems.","_yoast_wpseo_twitter-title":"A2A Authentication for Secure AI Agents","_yoast_wpseo_twitter-description":"Learn how A2A authentication helps AI agents communicate safely with identity controls, least privilege access and audit trails for production systems.","_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[13],"tags":[],"class_list":["post-57836","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v28.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>A2A Authentication for Secure AI Agents<\/title>\n<meta name=\"description\" content=\"Learn how A2A authentication helps AI agents communicate safely with identity controls, least privilege access and audit trails for production systems.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A2A Authentication for Secure AI Agents\" \/>\n<meta property=\"og:description\" content=\"Learn how A2A authentication helps AI agents communicate safely with identity controls, least privilege access and audit trails for production systems.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/\" \/>\n<meta property=\"og:site_name\" content=\"CPI Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-12T10:56:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-12T10:58:20+00:00\" \/>\n<meta name=\"author\" content=\"CPI Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"A2A Authentication for Secure AI Agents\" \/>\n<meta name=\"twitter:description\" content=\"Learn how A2A authentication helps AI agents communicate safely with identity controls, least privilege access and audit trails for production systems.\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CPI Staff\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/\"},\"author\":{\"name\":\"CPI Staff\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\"},\"headline\":\"Implementing Secure A2A Auth in Microsoft Foundry Agent Service\",\"datePublished\":\"2026-07-12T10:56:59+00:00\",\"dateModified\":\"2026-07-12T10:58:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/\"},\"wordCount\":1930,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/\",\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/\",\"name\":\"A2A Authentication for Secure AI Agents\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png\",\"datePublished\":\"2026-07-12T10:56:59+00:00\",\"dateModified\":\"2026-07-12T10:58:20+00:00\",\"description\":\"Learn how A2A authentication helps AI agents communicate safely with identity controls, least privilege access and audit trails for production systems.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/#primaryimage\",\"url\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/12\\\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Implementing Secure A2A Auth in Microsoft Foundry Agent Service\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#website\",\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/\",\"name\":\"Cloud Pro Inc - CPI Consulting Pty Ltd\",\"description\":\"Cloud, AI &amp; Cybersecurity Consulting | Melbourne\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#organization\",\"name\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\",\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"width\":500,\"height\":500,\"caption\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\",\"name\":\"CPI Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"caption\":\"CPI Staff\"},\"sameAs\":[\"http:\\\/\\\/www.cloudproinc.com.au\"],\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/author\\\/cpiadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"A2A Authentication for Secure AI Agents","description":"Learn how A2A authentication helps AI agents communicate safely with identity controls, least privilege access and audit trails for production systems.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/","og_locale":"en_US","og_type":"article","og_title":"A2A Authentication for Secure AI Agents","og_description":"Learn how A2A authentication helps AI agents communicate safely with identity controls, least privilege access and audit trails for production systems.","og_url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/","og_site_name":"CPI Consulting","article_published_time":"2026-07-12T10:56:59+00:00","article_modified_time":"2026-07-12T10:58:20+00:00","author":"CPI Staff","twitter_card":"summary_large_image","twitter_title":"A2A Authentication for Secure AI Agents","twitter_description":"Learn how A2A authentication helps AI agents communicate safely with identity controls, least privilege access and audit trails for production systems.","twitter_misc":{"Written by":"CPI Staff","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/#article","isPartOf":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/"},"author":{"name":"CPI Staff","@id":"https:\/\/www.cloudproinc.com.au\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e"},"headline":"Implementing Secure A2A Auth in Microsoft Foundry Agent Service","datePublished":"2026-07-12T10:56:59+00:00","dateModified":"2026-07-12T10:58:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/"},"wordCount":1930,"commentCount":0,"publisher":{"@id":"https:\/\/www.cloudproinc.com.au\/#organization"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/","url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/","name":"A2A Authentication for Secure AI Agents","isPartOf":{"@id":"https:\/\/www.cloudproinc.com.au\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/#primaryimage"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png","datePublished":"2026-07-12T10:56:59+00:00","dateModified":"2026-07-12T10:58:20+00:00","description":"Learn how A2A authentication helps AI agents communicate safely with identity controls, least privilege access and audit trails for production systems.","breadcrumb":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/#primaryimage","url":"\/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png","contentUrl":"\/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.cloudproinc.com.au\/"},{"@type":"ListItem","position":2,"name":"Implementing Secure A2A Auth in Microsoft Foundry Agent Service"}]},{"@type":"WebSite","@id":"https:\/\/www.cloudproinc.com.au\/#website","url":"https:\/\/www.cloudproinc.com.au\/","name":"Cloud Pro Inc - CPI Consulting Pty Ltd","description":"Cloud, AI &amp; Cybersecurity Consulting | Melbourne","publisher":{"@id":"https:\/\/www.cloudproinc.com.au\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.cloudproinc.com.au\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.cloudproinc.com.au\/#organization","name":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd","url":"https:\/\/www.cloudproinc.com.au\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudproinc.com.au\/#\/schema\/logo\/image\/","url":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","contentUrl":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","width":500,"height":500,"caption":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.cloudproinc.com.au\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e","name":"CPI Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","caption":"CPI Staff"},"sameAs":["http:\/\/www.cloudproinc.com.au"],"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/author\/cpiadmin\/"}]}},"jetpack_featured_media_url":"\/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png","jetpack-related-posts":[{"id":57787,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints\/","url_meta":{"origin":57836,"position":0},"title":"Connecting Microsoft Foundry Agents to External A2A Endpoints","author":"CPI Staff","date":"July 7, 2026","format":false,"excerpt":"A practical guide for tech leaders on connecting Microsoft Foundry agents to external A2A endpoints safely, without creating cost, security, or governance surprises.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 1x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 1.5x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 2x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 3x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 4x"},"classes":[]},{"id":57768,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/06\/building-interoperable-ai-agents-with-a2a-and-agent-framework\/","url_meta":{"origin":57836,"position":1},"title":"Building Interoperable AI Agents with A2A and Agent Framework","author":"CPI Staff","date":"July 6, 2026","format":false,"excerpt":"A practical guide for tech leaders on using A2A and Microsoft Agent Framework to build AI agents that work together securely across business systems.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/building-interoperable-ai-agents-with-a2a-and-agent-framework.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/building-interoperable-ai-agents-with-a2a-and-agent-framework.png 1x, \/wp-content\/uploads\/2026\/07\/building-interoperable-ai-agents-with-a2a-and-agent-framework.png 1.5x, \/wp-content\/uploads\/2026\/07\/building-interoperable-ai-agents-with-a2a-and-agent-framework.png 2x, \/wp-content\/uploads\/2026\/07\/building-interoperable-ai-agents-with-a2a-and-agent-framework.png 3x, \/wp-content\/uploads\/2026\/07\/building-interoperable-ai-agents-with-a2a-and-agent-framework.png 4x"},"classes":[]},{"id":57803,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/08\/securing-a2a-agent-communication-using-microsoft-entra-id\/","url_meta":{"origin":57836,"position":2},"title":"Securing A2A Agent Communication Using Microsoft Entra ID","author":"CPI Staff","date":"July 8, 2026","format":false,"excerpt":"AI agents are starting to talk to each other. Here\u2019s how Microsoft Entra ID helps keep those conversations trusted, controlled, and audit-ready.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png 1x, \/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png 1.5x, \/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png 2x, \/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png 3x, \/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png 4x"},"classes":[]},{"id":57809,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/08\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely\/","url_meta":{"origin":57836,"position":3},"title":"Deploy Containerised Hosted Agents with Microsoft Foundry Safely","author":"CPI Staff","date":"July 8, 2026","format":false,"excerpt":"A practical guide for tech leaders on when containerised hosted agents make sense, how they work, and how to deploy them without creating security or cost surprises.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png 1x, \/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png 1.5x, \/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png 2x, \/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png 3x, \/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png 4x"},"classes":[]},{"id":57742,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/02\/why-a2a-protocol-matters-for-practical-business-ai-adoption\/","url_meta":{"origin":57836,"position":4},"title":"Why A2A Protocol Matters for Practical Business AI Adoption","author":"CPI Staff","date":"July 2, 2026","format":false,"excerpt":"A practical guide to the Agent-to-Agent protocol and why it matters for cost, security, productivity, and future-proof AI adoption.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/why-a2a-protocol-matters-for-practical-business-ai-adoption.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/why-a2a-protocol-matters-for-practical-business-ai-adoption.png 1x, \/wp-content\/uploads\/2026\/07\/why-a2a-protocol-matters-for-practical-business-ai-adoption.png 1.5x, \/wp-content\/uploads\/2026\/07\/why-a2a-protocol-matters-for-practical-business-ai-adoption.png 2x, \/wp-content\/uploads\/2026\/07\/why-a2a-protocol-matters-for-practical-business-ai-adoption.png 3x, \/wp-content\/uploads\/2026\/07\/why-a2a-protocol-matters-for-practical-business-ai-adoption.png 4x"},"classes":[]},{"id":57288,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/03\/22\/what-microsoft-ai-foundry-means-for-australian-organisations-designing-enterprise-ai-platforms\/","url_meta":{"origin":57836,"position":5},"title":"What Microsoft AI Foundry Means for Australian Organisations Designing Enterprise AI Platforms","author":"CPI Staff","date":"March 22, 2026","format":false,"excerpt":"Most Australian organisations that started building AI capabilities in the last two years are hitting the same wall. The proof of concept worked. The board approved the next phase. And now IT teams are drowning in questions nobody planned for. Where do the models run? Who approves new deployments? How\u2026","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 1x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 1.5x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 2x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 3x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/57836","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/comments?post=57836"}],"version-history":[{"count":1,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/57836\/revisions"}],"predecessor-version":[{"id":57841,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/57836\/revisions\/57841"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media\/57843"}],"wp:attachment":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media?parent=57836"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/categories?post=57836"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/tags?post=57836"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}