Microsoft Edge Publishing API

Publish and unpublish extensions

Operations 2

POST /v1/products/{productId}/submissions Microsoft Edge Create Submission #
GET /v1/products/{productId}/submissions/{submissionId} Microsoft Edge Get Submission Status #

Documentation

Specifications

Code Examples

Schemas & Data

📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-schema/addons-api-product-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-schema/addons-api-submission-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-schema/addons-api-product-list-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-schema/addons-api-package-upload-result-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-structure/addons-api-product-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-structure/addons-api-submission-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-structure/addons-api-product-list-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-structure/addons-api-package-upload-result-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-schema/devtools-api-target-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-schema/devtools-api-browser-version-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-schema/devtools-api-protocol-schema-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-structure/devtools-api-target-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-structure/devtools-api-browser-version-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-structure/devtools-api-protocol-schema-structure.json

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/microsoft-edge-publishing-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

microsoft-edge-publishing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Microsoft Edge Add-ons Publishing API
  description: REST API for managing Microsoft Edge browser extensions through the Partner Center. Enables programmatic publishing, updating, and managing Edge extensions in the Microsoft Edge Add-ons store, supporting the full extension lifecycle from upload to publication.
  version: 1.0.0
  contact:
    name: Microsoft Edge Developer
    url: https://developer.microsoft.com/microsoft-edge/
  license:
    name: Microsoft Software License
    url: https://www.microsoft.com/legal/terms-of-use
  x-generated-from: documentation
  x-last-validated: '2026-04-18'
servers:
- url: https://api.addons.microsoftedge.microsoft.com
  description: Microsoft Edge Add-ons API Production
security:
- bearerAuth: []
tags:
- name: Publishing
  description: Publish and unpublish extensions
paths:
  /v1/products/{productId}/submissions:
    post:
      operationId: createSubmission
      summary: Microsoft Edge Create Submission
      description: Create a new submission for an extension product, initiating the review and publishing process.
      tags:
      - Publishing
      parameters:
      - name: productId
        in: path
        required: true
        description: Product identifier
        schema:
          type: string
        example: ext-500123
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmissionCreate'
            examples:
              CreateSubmissionRequestExample:
                summary: Default createSubmission request
                x-microcks-default: true
                value:
                  notes: Updated permissions and bug fixes
      responses:
        '202':
          description: Submission created and queued for review
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Submission'
              examples:
                CreateSubmission202Example:
                  summary: Default createSubmission 202 response
                  x-microcks-default: true
                  value:
                    id: sub-600123
                    productId: ext-500123
                    status: InReview
                    createdUtc: '2026-04-18T12:00:00Z'
        '400':
          description: Invalid submission
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /v1/products/{productId}/submissions/{submissionId}:
    get:
      operationId: getSubmission
      summary: Microsoft Edge Get Submission Status
      description: Retrieve the current status and details of a submission for an extension product.
      tags:
      - Publishing
      parameters:
      - name: productId
        in: path
        required: true
        description: Product identifier
        schema:
          type: string
        example: ext-500123
      - name: submissionId
        in: path
        required: true
        description: Submission identifier
        schema:
          type: string
        example: sub-600123
      responses:
        '200':
          description: Submission status retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Submission'
              examples:
                GetSubmission200Example:
                  summary: Default getSubmission 200 response
                  x-microcks-default: true
                  value:
                    id: sub-600123
                    productId: ext-500123
                    status: Published
                    createdUtc: '2026-04-18T12:00:00Z'
                    completedUtc: '2026-04-18T14:00:00Z'
        '404':
          description: Submission not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ErrorResponse:
      type: object
      description: Error response
      properties:
        code:
          type: string
          description: Error code
          example: NotFound
        message:
          type: string
          description: Error message
          example: The specified product was not found
    SubmissionCreate:
      type: object
      description: Submission creation request
      properties:
        notes:
          type: string
          description: Notes for the review team
          example: Updated permissions and bug fixes
    Submission:
      type: object
      description: An extension submission for review and publishing
      properties:
        id:
          type: string
          description: Submission identifier
          example: sub-600123
        productId:
          type: string
          description: Parent product identifier
          example: ext-500123
        status:
          type: string
          description: Submission status
          enum:
          - Draft
          - InReview
          - Published
          - Failed
          - Cancelled
          example: InReview
        createdUtc:
          type: string
          format: date-time
          description: Submission creation timestamp
          example: '2026-04-18T12:00:00Z'
        completedUtc:
          type: string
          format: date-time
          description: Submission completion timestamp
          example: '2026-04-18T14:00:00Z'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth 2.0 access token obtained from Azure Active Directory using the client credentials flow with the Microsoft Partner Center API scope.