Skip to content

Commit d2ecfbc

Browse files
committed
Retitle, remove section
1 parent c555313 commit d2ecfbc

5 files changed

Lines changed: 29 additions & 30 deletions

File tree

microsoft-edge/extensions-chromium/publish/api/addons-api-reference.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Microsoft Edge Add-ons API Reference
2+
title: Microsoft Edge Add-ons REST API Reference
33
description: The Add-ons API Reference, for REST endpoints to automate publishing updates to add-ons that are submitted to the Microsoft Edge Add-ons store.
44
author: MSEdgeTeam
55
ms.author: msedgedevrel
@@ -8,11 +8,11 @@ ms.service: microsoft-edge
88
ms.subservice: extensions
99
ms.date: 11/07/2022
1010
---
11-
# Microsoft Edge Add-ons API Reference
11+
# Microsoft Edge Add-ons REST API Reference
1212

1313
This article is the REST endpoint reference for the Microsoft Edge Add-ons API. This API automates publishing updates to add-ons that have been submitted to the Microsoft Edge Add-ons store.
1414

15-
For an overview, see [Using the Microsoft Edge Add-ons API](using-addons-api.md).
15+
For an overview, see [Using the Microsoft Edge Add-ons REST API](using-addons-api.md).
1616

1717

1818
<!-- ====================================================================== -->
@@ -84,7 +84,7 @@ Gets the status of the package upload.
8484

8585
| URI parameter | Description |
8686
|---|---|
87-
| `operationID` | Required. The operation ID of the upload request submitted in the previous step. This information is available in the response header.
87+
| `operationID` | Required. The operation ID of the upload request submitted in the previous step. This information is available in the response header. |
8888

8989
###### Request headers
9090

@@ -397,7 +397,7 @@ Here's a list of common error codes and possible reasons. For a full list, see
397397
|---|---|---|
398398
| 400 Bad Request | The server didn't understand the request. | There's no package (zip file) in the body. Or, `Content-Type` header is missing or its value is incorrect. |
399399
| 401 Unauthorized | The request page needs an authorization. | The auth token is missing, expired, or not valid. |
400-
| 404 Not Found | The server can't find the requested page. | The specified `productID` or `operationID` doesn't have a valid GUID, isn't valid, or doesn't belong to the developer who is making the request. |
400+
| 404 Not Found | The server can't find the requested page. | The specified `productID` or `operationID` doesn't have a valid GUID, isn't valid, or doesn't belong to the developer who is making the request. |
401401
| 408 Request Timeout | The request took longer than the server was prepared to wait. | There was a timeout while uploading a package. |
402402
| 429 Too many requests | Too many requests were sent by the user. | Too many requests were sent and they got throttled. |
403403

@@ -411,4 +411,4 @@ Here's a list of common error codes and possible reasons. For a full list, see
411411
<!-- ====================================================================== -->
412412
## See also
413413

414-
* [Using the Microsoft Edge Add-ons API](using-addons-api.md)
414+
* [Using the Microsoft Edge Add-ons REST API](using-addons-api.md)

microsoft-edge/extensions-chromium/publish/api/using-addons-api.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,20 @@
11
---
2-
title: Using the Microsoft Edge Add-ons API
2+
title: Using the Microsoft Edge Add-ons REST API
33
description: REST endpoints to automate publishing updates to add-ons that are submitted to the Microsoft Edge Add-ons store.
44
author: MSEdgeTeam
55
ms.author: msedgedevrel
66
ms.topic: conceptual
77
ms.service: microsoft-edge
88
ms.subservice: extensions
9-
ms.date: 07/19/2023
9+
ms.date: 03/12/2024
1010
---
11-
# Using the Microsoft Edge Add-ons API
11+
# Using the Microsoft Edge Add-ons REST API
1212

1313
The Microsoft Edge Add-ons API provides a set of REST endpoints for programmatically publishing updates to add-ons submitted to the Microsoft Edge Add-ons store. You can use these REST endpoints to automate the process of uploading and publishing new versions of your add-ons to the Microsoft Edge Add-ons store. You'll use the **Publish API** page at Partner Center to work with these endpoints.
1414

1515
To submit suggestions and feedback, enter an [Issue about the Add-ons API](https://github.com/MicrosoftDocs/edge-developer/issues/new?title=[Add-ons%20API]).
1616

1717

18-
<!-- ====================================================================== -->
19-
## Library Support
20-
21-
| Language | Package | Source code | Notes |
22-
| --- | --- | --- | --- |
23-
| Node.js | [Edge Webstore Upload](https://www.npmjs.com/package/@plasmo-corp/ewu) | [GitHub](https://github.com/plasmo-corp/edge-webstore-upload)| This is a third party library. Microsoft makes no warranties, express or implied, with respect to the information provided here. |
24-
25-
2618
<!-- ====================================================================== -->
2719
## Terminology
2820

@@ -232,4 +224,4 @@ https://api.addons.microsoftedge.microsoft.com/v1/products/$productID/submission
232224

233225

234226
See also:
235-
* [Using the Microsoft Edge Add-ons API: Check the publishing status](addons-api-reference.md#check-the-publishing-status)
227+
* [Using the Microsoft Edge Add-ons REST API: Check the publishing status](addons-api-reference.md#check-the-publishing-status)

microsoft-edge/extensions-chromium/publish/update-extension.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,11 @@ To update your extension on the store, follow these steps:
2222

2323
1. Update either the extension package or the metadata of the extension. If you update the extension package, make sure that you increase the version number in the manifest file.
2424

25-
1. After you make the changes, select **Publish** to update your extension listing, and start the certification process.
26-
27-
> [!NOTE]
28-
> The certification process for an update to an extension can take up to 7 business days.
25+
1. After you make the changes, click **Publish** to update your extension listing and start the certification process. The certification process for an update to an extension can take up to 7 business days.
2926

3027
1. After the `Status` column displays `In the store`, your extension update is available on the Microsoft Edge Add-ons website.
3128

32-
> [!TIP]
33-
> After your extension has been created initially, you'll be able to update it programmatically [Using the Microsoft Edge Add-ons API (Beta)](api/using-addons-api.md).
29+
After your extension has been created initially, you can update your extension by [Using the Microsoft Edge Add-ons REST API](./api/using-addons-api.md).
3430

3531

3632
<!-- ====================================================================== -->
@@ -46,12 +42,11 @@ To edit your submission, follow these steps:
4642

4743
1. To open the **Extension overview** section, use the left navigation bar. To cancel the current submission, select **Cancel submission**.
4844

49-
1. Go to other sections and update either the extension package or the metadata of the extension. If you update the extension package, make sure that you increase the version number in the manifest file to match changes since the previous package submission.
45+
1. Go to other sections and update either the extension package or the metadata of the extension. If you update the extension package, make sure that you increase the version number in the manifest file to match changes that were made after the previous package submission.
5046

5147
1. After you finish making changes, select **Publish**.
5248

53-
> [!IMPORTANT]
54-
> The process stops and removes your current submission from the Microsoft Edge extensions certification pipeline and a new review starts with the latest submission.
49+
**Important:** The review process stops, your current submission is removed from the Microsoft Edge extensions certification pipeline, and then a new review starts, using the new submission.
5550

5651

5752
<!-- ====================================================================== -->

microsoft-edge/extensions-chromium/whats-new/released-features.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Microsoft Partner Center only accepts new Manifest V3 Microsoft Edge extension s
2828

2929
*Released July 2022*
3030

31+
3132
<!-- ====================================================================== -->
3233
## You can respond to user reviews about your Microsoft Edge Add-on
3334

@@ -37,76 +38,87 @@ To share your feedback and comments about this feature, see [GitHub discussion t
3738

3839
*Released May 2022*
3940

41+
4042
<!-- ====================================================================== -->
4143
## Publish and update extensions using the Microsoft Edge Add-ons API
4244

43-
You can integrate APIs directly into your Continuous Integration / Continuous Delivery (CI/CD) pipeline. You can also publish extension package updates to the Microsoft Edge Add-ons website without using Partner Center. For more information, see [Using the Microsoft Edge Add-ons API](/microsoft-edge/extensions-chromium/publish/api/using-addons-api)
45+
You can integrate APIs directly into your Continuous Integration / Continuous Delivery (CI/CD) pipeline. You can also publish extension package updates to the Microsoft Edge Add-ons website without using Partner Center. For more information, see [Using the Microsoft Edge Add-ons REST API](../publish/api/using-addons-api.md).
4446

4547
*Released March 2022*
4648

49+
4750
<!-- ====================================================================== -->
4851
## Addition of breadcrumbs to Microsoft Partner Center
4952

5053
Developers can view the navigation bar / tree path while using Partner Center to track the exact Partner Center path users are visiting. Developers can maintain awareness of their location within Microsoft Partner Center.
5154

5255
*Released March 2022*
5356

57+
5458
<!-- ====================================================================== -->
5559
## Microsoft Edge extensions developer portal
5660

5761
The new edition of the developer portal contains relevant resources and documentation for Microsoft Edge extensions. For more information, see [Microsoft Edge Add-ons Developer](https://developer.microsoft.com/microsoft-edge/extensions/).
5862

5963
*Released January 2022*
6064

65+
6166
<!-- ====================================================================== -->
6267
## Extension Analytics Dashboard on Microsoft Partner Center
6368

6469
The Extensions Analytics Dashboard enables you to view your extension's usage, adoption, and in-market performance. You can also track active user installs, weekly users, total downloads, and usage distribution over a period from [Partner Center](https://partner.microsoft.com/dashboard/microsoftedge/).
6570

6671
*Released September 2021*
6772

73+
6874
<!-- ====================================================================== -->
6975
## Add team members to your Partner Center account
7076

7177
You can add members from your organization and manage the settings on your Partner Center Account. See [Add users to the Microsoft Edge program](/microsoft-edge/extensions-chromium/publish/aad-account).
7278

7379
*Released August 2021*
7480

81+
7582
<!-- ====================================================================== -->
7683
## Sign into Microsoft Partner Center using your GitHub account
7784

7885
You can use your personal GitHub account credentials to sign into Microsoft Partner Center to submit your Microsoft Edge Extension. See [Publish a Microsoft Edge extension by using a GitHub account](/microsoft-edge/extensions-chromium/publish/github).
7986

8087
*Released August 2021*
8188

89+
8290
<!-- ====================================================================== -->
8391
## Manage your extension submissions on Partner Center
8492

8593
This feature allows you to view your extension submission from the [Partner Center](https://partner.microsoft.com/dashboard/microsoftedge/) dashboard and overview pages. You can easily track your extension submission review status, view past updates, view the status of submissions, and manage extensions on Partner Center.
8694

8795
*Released May 2021*
8896

97+
8998
<!-- ====================================================================== -->
9099
## Support for Manifest V3 extensions
91100

92101
Microsoft Edge Add-ons now support extensions with Manifest V3. For more information, see the blog [Manifest V3 changes are now available in Microsoft Edge](https://techcommunity.microsoft.com/t5/articles/manifest-v3-changes-are-now-available-in-microsoft-edge/m-p/1780254) for more details.
93102

94103
*Released April 2021*
95104

105+
96106
<!-- ====================================================================== -->
97107
## Request to get your extension featured
98108

99109
You can request the Collection where your extension should be featured on the Microsoft Edge Add-ons store. You can submit your request at the [Submit a request to add an extension to the collections on the Microsoft Edge Add-ons home page](https://forms.office.com/pages/responsepage.aspx?id=v4j5cvGGr0GRqy180BHbRw01UwyBfAxNna_1ZkP3X2VUN0lBSU1YMEU3VFY0VURRODEwSjgwU00yRy4u).
100110

101111
*Released April 2021*
102112

113+
103114
<!-- ====================================================================== -->
104115
## Extension store listing localization
105116

106117
You can choose a subset of languages instead of manually entering each language in the listing details on Microsoft Partner Center. You can also elect to use the same marketing assets across all marketplaces. See [Partner Center improvements related to Microsoft Edge extensions store listing and certification](https://techcommunity.microsoft.com/t5/articles/partner-center-improvements-related-to-microsoft-edge-extensions/m-p/2118981).
107118

108119
*Released February 2021*
109120

121+
110122
<!-- ====================================================================== -->
111123
## Extension certification report link
112124

microsoft-edge/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,10 +1030,10 @@
10301030

10311031
- name: Microsoft Edge Add-ons API
10321032
items:
1033-
- name: Using the Microsoft Edge Add-ons API
1033+
- name: Using the Microsoft Edge Add-ons REST API
10341034
href: extensions-chromium/publish/api/using-addons-api.md
10351035

1036-
- name: Microsoft Edge Add-ons API Reference
1036+
- name: Microsoft Edge Add-ons REST API Reference
10371037
href: extensions-chromium/publish/api/addons-api-reference.md
10381038

10391039
- name: Samples

0 commit comments

Comments
 (0)