diff --git a/src/content/partials/magic-wan/connector/app-aware-policies/breakout-prioritized.mdx b/src/content/partials/magic-wan/connector/app-aware-policies/breakout-prioritized.mdx index f8abb1b2d0d919..54e2fec0d6ff55 100644 --- a/src/content/partials/magic-wan/connector/app-aware-policies/breakout-prioritized.mdx +++ b/src/content/partials/magic-wan/connector/app-aware-policies/breakout-prioritized.mdx @@ -6,7 +6,7 @@ params: - jsonType --- -import { APIRequest, Aside, AnchorHeading, Render, TabItem, Tabs } from "~/components"; +import { APIRequest, Aside, AnchorHeading, CURL, Render, TabItem, Tabs } from "~/components"; { props.magicWord === "breakout" && ( <> @@ -96,11 +96,11 @@ The traffic for the application you chose {props.whatHappensApp}. 2. Send a [`POST` request](/api/resources/magic_transit/subresources/apps/methods/create/) to add new apps to the breakout traffic policy. ", - "type": "" + "managed_app_id": "", + "breakout": true }} /> @@ -138,7 +138,7 @@ The traffic for the application you chose {props.whatHappensApp}. 1. Send a [`GET` request](/api/resources/magic_transit/subresources/apps/methods/list/) to list the applications associated with a site. @@ -146,37 +146,35 @@ The traffic for the application you chose {props.whatHappensApp}. { "result": [ { - "managed_app_id": "", - "name": "", - "type": "File Sharing", - "hostnames": [ - "", - "" - ] + "id": "", + "site_id": "", + "managed_app_id": "", + "breakout": true } ] } ``` - Take note of the `"account_app_id"` value for the application that want to delete. + Take note of the `"id"` value for the application that want to delete. 2. Send a [`DELETE` request](/api/resources/magic_transit/subresources/apps/methods/delete/) to delete an application from the breakout traffic policy. - ```json output { - "result": { - "account_app_id": "", - "name": "", - "type": "" - }, - "success": true, - "errors": [], - "messages": [] + "result": { + "id": "", + "site_id": "", + "managed_app_id": "", + "breakout": true + }, + "success": true, + "errors": [], + "messages": [] } ```