You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/sdks/sdk-docs/integrations/_get-public-url-snippet.mdx
+10-12Lines changed: 10 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,26 +4,24 @@ import { Screenshot } from "@/mdx/components";
4
4
5
5
### Get the API's combined spec public URL from the registry
6
6
7
-
Navigate to the [Speakeasy Dashboard](https://app.speakeasy.com) and open the **API Registry**overview. Select the relevant API and open the entry labeled with type `Combined Spec`. This is typically at the bottom under "Related Documents".
7
+
Navigate to the [Speakeasy Dashboard](https://app.speakeasy.com) and click on the **Docs**tab. Select the **Integrate with a Docs Provider** option.
On the **Integrate with a Docs Provider** page, select the correct OpenAPI document using the **Change OpenAPI Documents** button. Then, copy the Spec URL.
20
18
21
-
From the registry entry's page, copy the provided public URL using the "Share" button on the top right.
@@ -38,8 +38,6 @@ To integrate Mintlify with Speakeasy, you'll need the following:
38
38
39
39
Add the combined spec URL to **Anchors** or **Tabs** in the `docs.json` configuration file of a Mintlify repository.
40
40
41
-
**Note:** Mintlify now uses `docs.json` as the primary configuration file. If you're still using the legacy `mint.json` format, follow the [migration guide](https://mintlify.com/docs/settings#upgrading-from-mintjson) to upgrade to `docs.json`.
42
-
43
41
#### Using docs.json
44
42
45
43
Add the combined spec URL to **Anchors** by updating the `anchor` field in the `docs.json` file as follows:
@@ -49,10 +47,9 @@ Add the combined spec URL to **Anchors** by updating the `anchor` field in the `
49
47
"anchors": [
50
48
{
51
49
"name": "API Reference",
52
-
// !mark
53
-
"openapi": "SPEAKEASY_COMBINED_SPEC_URL",
54
50
"url": "api-reference",
55
-
"icon": "square-terminal"
51
+
"icon": "square-terminal",
52
+
"openapi": "SPEAKEASY_COMBINED_SPEC_URL"
56
53
}
57
54
]
58
55
}
@@ -66,7 +63,6 @@ Add the combined spec URL to **Tabs** by updating the `tab` field in the `docs.j
0 commit comments